core.fetchversionmanifest | Medplum
fetchVersionManifest() function
Fetches the manifest for a given Medplum release version.
Signature:
export declare function fetchVersionManifest(appName: string, version?: string, params?: Record<string, string>): Promise<ReleaseManifest>;
Parameters
| Parameter | Type | Description |
|---|---|---|
| appName | string | The name of the app to fetch the manifest for. |
| version | string | (Optional) The version to fetch. If no version is provided, defaults to the latest version. |
| params | Record<string, string> | (Optional) An optional list of key-value pairs to be appended to the URL query string. |
Returns:
Promise< ReleaseManifest >
The manifest for the specified or latest version.