@medplum/cli 2.1.2 → 2.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.cjs +10 -5
- package/dist/cjs/index.cjs.map +4 -4
- package/dist/esm/index.mjs +10 -5
- package/dist/esm/index.mjs.map +4 -4
- package/dist/types/hl7.d.ts +3 -0
- package/dist/types/util/client.d.ts +1 -1
- package/dist/types/utils.d.ts +1 -1
- package/package.json +2 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MedplumClient, MedplumClientOptions } from '@medplum/core';
|
|
2
2
|
export declare function createMedplumClient(options: MedplumClientOptions & {
|
|
3
3
|
profile?: string;
|
|
4
|
-
}): Promise<MedplumClient>;
|
|
4
|
+
}, setupCredentials?: boolean): Promise<MedplumClient>;
|
|
5
5
|
export declare function onUnauthenticated(): void;
|
package/dist/types/utils.d.ts
CHANGED
|
@@ -52,7 +52,7 @@ export declare function readConfig(tagName?: string): MedplumConfig | undefined;
|
|
|
52
52
|
export declare function safeTarExtractor(destinationDir: string): internal.Writable;
|
|
53
53
|
export declare function getUnsupportedExtension(): Extension;
|
|
54
54
|
export declare function getCodeContentType(filename: string): string;
|
|
55
|
-
export declare function saveProfile(profileName: string, options: Profile):
|
|
55
|
+
export declare function saveProfile(profileName: string, options: Profile): Profile;
|
|
56
56
|
export declare function loadProfile(profileName: string): Profile;
|
|
57
57
|
export declare function profileExists(storage: FileSystemStorage, profile: string): boolean;
|
|
58
58
|
export declare function jwtBearerLogin(medplum: MedplumClient, profile: Profile): Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@medplum/cli",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.4",
|
|
4
4
|
"description": "Medplum Command Line Interface",
|
|
5
5
|
"author": "Medplum <hello@medplum.com>",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
"@aws-sdk/client-sts": "3.414.0",
|
|
30
30
|
"@aws-sdk/types": "3.413.0",
|
|
31
31
|
"@medplum/core": "*",
|
|
32
|
+
"@medplum/hl7": "*",
|
|
32
33
|
"aws-sdk-client-mock": "3.0.0",
|
|
33
34
|
"commander": "11.0.0",
|
|
34
35
|
"dotenv": "16.3.1",
|