@metriport/api-sdk 7.6.0 → 7.6.1
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/medical/client/metriport.d.ts +1 -1
- package/dist/medical/client/metriport.js +1 -1
- package/dist/medical/models/patient.d.ts +57 -43
- package/dist/medical/models/patient.d.ts.map +1 -1
- package/dist/medical/models/patient.js +3 -1
- package/dist/medical/models/patient.js.map +1 -1
- package/dist/medical/models/patientDTO.d.ts +1 -0
- package/dist/medical/models/patientDTO.d.ts.map +1 -1
- package/package.json +3 -3
|
@@ -269,7 +269,7 @@ export declare class MetriportMedicalApi {
|
|
|
269
269
|
* @param req.body - the body of the webhook request.
|
|
270
270
|
* @param signature - the signature obtained from the webhook request header.
|
|
271
271
|
*
|
|
272
|
-
* @returns True if the signature is verified, false otherwise
|
|
272
|
+
* @returns True if the signature is verified, false otherwise.
|
|
273
273
|
*/
|
|
274
274
|
verifyWebhookSignature: (wh_key: string, reqBody: string, signature: string) => boolean;
|
|
275
275
|
}
|
|
@@ -39,7 +39,7 @@ class MetriportMedicalApi {
|
|
|
39
39
|
* @param req.body - the body of the webhook request.
|
|
40
40
|
* @param signature - the signature obtained from the webhook request header.
|
|
41
41
|
*
|
|
42
|
-
* @returns True if the signature is verified, false otherwise
|
|
42
|
+
* @returns True if the signature is verified, false otherwise.
|
|
43
43
|
*/
|
|
44
44
|
this.verifyWebhookSignature = (wh_key, reqBody, signature) => {
|
|
45
45
|
const signatureAsString = String(signature);
|
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const patientCreateSchema: z.ZodObject<{
|
|
3
|
+
address: z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
4
|
+
addressLine1: z.ZodString;
|
|
5
|
+
addressLine2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodOptional<z.ZodString>]>, string | undefined, string | undefined>;
|
|
6
|
+
city: z.ZodString;
|
|
7
|
+
state: z.ZodNativeEnum<typeof import("./common/us-data").USState>;
|
|
8
|
+
zip: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
9
|
+
country: z.ZodDefault<z.ZodOptional<z.ZodLiteral<"USA">>>;
|
|
10
|
+
}, "strip", z.ZodTypeAny, {
|
|
11
|
+
addressLine1: string;
|
|
12
|
+
city: string;
|
|
13
|
+
state: import("./common/us-data").USState;
|
|
14
|
+
zip: string;
|
|
15
|
+
country: "USA";
|
|
16
|
+
addressLine2?: string | undefined;
|
|
17
|
+
}, {
|
|
18
|
+
addressLine1: string;
|
|
19
|
+
city: string;
|
|
20
|
+
state: import("./common/us-data").USState;
|
|
21
|
+
zip: string;
|
|
22
|
+
addressLine2?: string | undefined;
|
|
23
|
+
country?: "USA" | undefined;
|
|
24
|
+
}>, "many">, z.ZodObject<{
|
|
25
|
+
addressLine1: z.ZodString;
|
|
26
|
+
addressLine2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodOptional<z.ZodString>]>, string | undefined, string | undefined>;
|
|
27
|
+
city: z.ZodString;
|
|
28
|
+
state: z.ZodNativeEnum<typeof import("./common/us-data").USState>;
|
|
29
|
+
zip: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
30
|
+
country: z.ZodDefault<z.ZodOptional<z.ZodLiteral<"USA">>>;
|
|
31
|
+
}, "strip", z.ZodTypeAny, {
|
|
32
|
+
addressLine1: string;
|
|
33
|
+
city: string;
|
|
34
|
+
state: import("./common/us-data").USState;
|
|
35
|
+
zip: string;
|
|
36
|
+
country: "USA";
|
|
37
|
+
addressLine2?: string | undefined;
|
|
38
|
+
}, {
|
|
39
|
+
addressLine1: string;
|
|
40
|
+
city: string;
|
|
41
|
+
state: import("./common/us-data").USState;
|
|
42
|
+
zip: string;
|
|
43
|
+
addressLine2?: string | undefined;
|
|
44
|
+
country?: "USA" | undefined;
|
|
45
|
+
}>]>;
|
|
3
46
|
firstName: z.ZodString;
|
|
4
47
|
lastName: z.ZodString;
|
|
5
48
|
dob: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -53,49 +96,6 @@ export declare const patientCreateSchema: z.ZodObject<{
|
|
|
53
96
|
} | undefined;
|
|
54
97
|
assigner?: string | undefined;
|
|
55
98
|
}>, "many">>;
|
|
56
|
-
address: z.ZodUnion<[z.ZodArray<z.ZodObject<{
|
|
57
|
-
addressLine1: z.ZodString;
|
|
58
|
-
addressLine2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodOptional<z.ZodString>]>, string | undefined, string | undefined>;
|
|
59
|
-
city: z.ZodString;
|
|
60
|
-
state: z.ZodNativeEnum<typeof import("./common/us-data").USState>;
|
|
61
|
-
zip: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
62
|
-
country: z.ZodDefault<z.ZodOptional<z.ZodLiteral<"USA">>>;
|
|
63
|
-
}, "strip", z.ZodTypeAny, {
|
|
64
|
-
addressLine1: string;
|
|
65
|
-
city: string;
|
|
66
|
-
state: import("./common/us-data").USState;
|
|
67
|
-
zip: string;
|
|
68
|
-
country: "USA";
|
|
69
|
-
addressLine2?: string | undefined;
|
|
70
|
-
}, {
|
|
71
|
-
addressLine1: string;
|
|
72
|
-
city: string;
|
|
73
|
-
state: import("./common/us-data").USState;
|
|
74
|
-
zip: string;
|
|
75
|
-
addressLine2?: string | undefined;
|
|
76
|
-
country?: "USA" | undefined;
|
|
77
|
-
}>, "many">, z.ZodObject<{
|
|
78
|
-
addressLine1: z.ZodString;
|
|
79
|
-
addressLine2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodOptional<z.ZodString>]>, string | undefined, string | undefined>;
|
|
80
|
-
city: z.ZodString;
|
|
81
|
-
state: z.ZodNativeEnum<typeof import("./common/us-data").USState>;
|
|
82
|
-
zip: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
83
|
-
country: z.ZodDefault<z.ZodOptional<z.ZodLiteral<"USA">>>;
|
|
84
|
-
}, "strip", z.ZodTypeAny, {
|
|
85
|
-
addressLine1: string;
|
|
86
|
-
city: string;
|
|
87
|
-
state: import("./common/us-data").USState;
|
|
88
|
-
zip: string;
|
|
89
|
-
country: "USA";
|
|
90
|
-
addressLine2?: string | undefined;
|
|
91
|
-
}, {
|
|
92
|
-
addressLine1: string;
|
|
93
|
-
city: string;
|
|
94
|
-
state: import("./common/us-data").USState;
|
|
95
|
-
zip: string;
|
|
96
|
-
addressLine2?: string | undefined;
|
|
97
|
-
country?: "USA" | undefined;
|
|
98
|
-
}>]>;
|
|
99
99
|
contact: z.ZodUnion<[z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
100
100
|
phone: z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodOptional<z.ZodString>]>, string | undefined, string | undefined>]>;
|
|
101
101
|
email: z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodOptional<z.ZodString>]>, string | undefined, string | undefined>]>;
|
|
@@ -127,6 +127,7 @@ export declare const patientCreateSchema: z.ZodObject<{
|
|
|
127
127
|
phone?: string | undefined;
|
|
128
128
|
email?: string | undefined;
|
|
129
129
|
}>>]>;
|
|
130
|
+
externalId: z.ZodOptional<z.ZodString>;
|
|
130
131
|
}, "strip", z.ZodTypeAny, {
|
|
131
132
|
address: ({
|
|
132
133
|
addressLine1: string;
|
|
@@ -181,6 +182,7 @@ export declare const patientCreateSchema: z.ZodObject<{
|
|
|
181
182
|
phone?: string | undefined;
|
|
182
183
|
email?: string | undefined;
|
|
183
184
|
}[] | undefined;
|
|
185
|
+
externalId?: string | undefined;
|
|
184
186
|
}, {
|
|
185
187
|
address: ({
|
|
186
188
|
addressLine1: string;
|
|
@@ -235,6 +237,7 @@ export declare const patientCreateSchema: z.ZodObject<{
|
|
|
235
237
|
phone?: string | undefined;
|
|
236
238
|
email?: string | undefined;
|
|
237
239
|
}[] | undefined;
|
|
240
|
+
externalId?: string | undefined;
|
|
238
241
|
}>;
|
|
239
242
|
export type PatientCreate = z.infer<typeof patientCreateSchema>;
|
|
240
243
|
export declare const patientUpdateSchema: z.ZodObject<{
|
|
@@ -365,6 +368,7 @@ export declare const patientUpdateSchema: z.ZodObject<{
|
|
|
365
368
|
phone?: string | undefined;
|
|
366
369
|
email?: string | undefined;
|
|
367
370
|
}>>]>;
|
|
371
|
+
externalId: z.ZodOptional<z.ZodString>;
|
|
368
372
|
id: z.ZodString;
|
|
369
373
|
eTag: z.ZodOptional<z.ZodString>;
|
|
370
374
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -422,6 +426,7 @@ export declare const patientUpdateSchema: z.ZodObject<{
|
|
|
422
426
|
phone?: string | undefined;
|
|
423
427
|
email?: string | undefined;
|
|
424
428
|
}[] | undefined;
|
|
429
|
+
externalId?: string | undefined;
|
|
425
430
|
eTag?: string | undefined;
|
|
426
431
|
}, {
|
|
427
432
|
id: string;
|
|
@@ -478,6 +483,7 @@ export declare const patientUpdateSchema: z.ZodObject<{
|
|
|
478
483
|
phone?: string | undefined;
|
|
479
484
|
email?: string | undefined;
|
|
480
485
|
}[] | undefined;
|
|
486
|
+
externalId?: string | undefined;
|
|
481
487
|
eTag?: string | undefined;
|
|
482
488
|
}>;
|
|
483
489
|
export type PatientUpdate = z.infer<typeof patientUpdateSchema>;
|
|
@@ -611,6 +617,7 @@ export declare const patientSchema: z.ZodObject<{
|
|
|
611
617
|
phone?: string | undefined;
|
|
612
618
|
email?: string | undefined;
|
|
613
619
|
}>>]>;
|
|
620
|
+
externalId: z.ZodOptional<z.ZodString>;
|
|
614
621
|
facilityIds: z.ZodArray<z.ZodString, "many">;
|
|
615
622
|
}, "strip", z.ZodTypeAny, {
|
|
616
623
|
id: string;
|
|
@@ -669,6 +676,7 @@ export declare const patientSchema: z.ZodObject<{
|
|
|
669
676
|
phone?: string | undefined;
|
|
670
677
|
email?: string | undefined;
|
|
671
678
|
}[] | undefined;
|
|
679
|
+
externalId?: string | undefined;
|
|
672
680
|
}, {
|
|
673
681
|
id: string;
|
|
674
682
|
address: ({
|
|
@@ -726,6 +734,7 @@ export declare const patientSchema: z.ZodObject<{
|
|
|
726
734
|
phone?: string | undefined;
|
|
727
735
|
email?: string | undefined;
|
|
728
736
|
}[] | undefined;
|
|
737
|
+
externalId?: string | undefined;
|
|
729
738
|
}>;
|
|
730
739
|
export type Patient = z.infer<typeof patientSchema>;
|
|
731
740
|
export declare const patientListSchema: z.ZodObject<{
|
|
@@ -859,6 +868,7 @@ export declare const patientListSchema: z.ZodObject<{
|
|
|
859
868
|
phone?: string | undefined;
|
|
860
869
|
email?: string | undefined;
|
|
861
870
|
}>>]>;
|
|
871
|
+
externalId: z.ZodOptional<z.ZodString>;
|
|
862
872
|
facilityIds: z.ZodArray<z.ZodString, "many">;
|
|
863
873
|
}, "strip", z.ZodTypeAny, {
|
|
864
874
|
id: string;
|
|
@@ -917,6 +927,7 @@ export declare const patientListSchema: z.ZodObject<{
|
|
|
917
927
|
phone?: string | undefined;
|
|
918
928
|
email?: string | undefined;
|
|
919
929
|
}[] | undefined;
|
|
930
|
+
externalId?: string | undefined;
|
|
920
931
|
}, {
|
|
921
932
|
id: string;
|
|
922
933
|
address: ({
|
|
@@ -974,6 +985,7 @@ export declare const patientListSchema: z.ZodObject<{
|
|
|
974
985
|
phone?: string | undefined;
|
|
975
986
|
email?: string | undefined;
|
|
976
987
|
}[] | undefined;
|
|
988
|
+
externalId?: string | undefined;
|
|
977
989
|
}>, "many">;
|
|
978
990
|
}, "strip", z.ZodTypeAny, {
|
|
979
991
|
patients: {
|
|
@@ -1033,6 +1045,7 @@ export declare const patientListSchema: z.ZodObject<{
|
|
|
1033
1045
|
phone?: string | undefined;
|
|
1034
1046
|
email?: string | undefined;
|
|
1035
1047
|
}[] | undefined;
|
|
1048
|
+
externalId?: string | undefined;
|
|
1036
1049
|
}[];
|
|
1037
1050
|
}, {
|
|
1038
1051
|
patients: {
|
|
@@ -1092,6 +1105,7 @@ export declare const patientListSchema: z.ZodObject<{
|
|
|
1092
1105
|
phone?: string | undefined;
|
|
1093
1106
|
email?: string | undefined;
|
|
1094
1107
|
}[] | undefined;
|
|
1108
|
+
externalId?: string | undefined;
|
|
1095
1109
|
}[];
|
|
1096
1110
|
}>;
|
|
1097
1111
|
export declare const queryStatusSchema: z.ZodEnum<["processing", "completed", "failed"]>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"patient.d.ts","sourceRoot":"","sources":["../../../src/medical/models/patient.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,mBAAmB
|
|
1
|
+
{"version":3,"file":"patient.d.ts","sourceRoot":"","sources":["../../../src/medical/models/patient.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAI/B,CAAC;AACF,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEhE,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA8C,CAAC;AAC/E,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC;AAEhE,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAExB,CAAC;AACH,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAEpD,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAE5B,CAAC;AAEH,eAAO,MAAM,iBAAiB,kDAAgD,CAAC;AAC/E,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE5D,eAAO,MAAM,mBAAmB;;;;;;EAE9B,CAAC;AACH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,mBAAmB,CAAC,CAAC"}
|
|
@@ -4,7 +4,9 @@ exports.queryProgressSchema = exports.queryStatusSchema = exports.patientListSch
|
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
const base_update_1 = require("./common/base-update");
|
|
6
6
|
const demographics_1 = require("./demographics");
|
|
7
|
-
exports.patientCreateSchema = demographics_1.demographicsSchema
|
|
7
|
+
exports.patientCreateSchema = demographics_1.demographicsSchema.merge(zod_1.z.object({
|
|
8
|
+
externalId: zod_1.z.string().optional(),
|
|
9
|
+
}));
|
|
8
10
|
exports.patientUpdateSchema = exports.patientCreateSchema.merge(base_update_1.baseUpdateSchema);
|
|
9
11
|
exports.patientSchema = exports.patientUpdateSchema.extend({
|
|
10
12
|
facilityIds: zod_1.z.array(zod_1.z.string()),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"patient.js","sourceRoot":"","sources":["../../../src/medical/models/patient.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,sDAAwD;AACxD,iDAAoD;AAEvC,QAAA,mBAAmB,GAAG,iCAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"patient.js","sourceRoot":"","sources":["../../../src/medical/models/patient.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AACxB,sDAAwD;AACxD,iDAAoD;AAEvC,QAAA,mBAAmB,GAAG,iCAAkB,CAAC,KAAK,CACzD,OAAC,CAAC,MAAM,CAAC;IACP,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAClC,CAAC,CACH,CAAC;AAGW,QAAA,mBAAmB,GAAG,2BAAmB,CAAC,KAAK,CAAC,8BAAgB,CAAC,CAAC;AAGlE,QAAA,aAAa,GAAG,2BAAmB,CAAC,MAAM,CAAC;IACtD,WAAW,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC;CACjC,CAAC,CAAC;AAGU,QAAA,iBAAiB,GAAG,OAAC,CAAC,MAAM,CAAC;IACxC,QAAQ,EAAE,OAAC,CAAC,KAAK,CAAC,qBAAa,CAAC;CACjC,CAAC,CAAC;AAEU,QAAA,iBAAiB,GAAG,OAAC,CAAC,IAAI,CAAC,CAAC,YAAY,EAAE,WAAW,EAAE,QAAQ,CAAC,CAAC,CAAC;AAGlE,QAAA,mBAAmB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC1C,MAAM,EAAE,yBAAiB;CAC1B,CAAC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"patientDTO.d.ts","sourceRoot":"","sources":["../../../src/medical/models/patientDTO.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAEhC,MAAM,MAAM,UAAU,GAAG;IACvB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC;IACZ,aAAa,EAAE,GAAG,GAAG,GAAG,CAAC;IACzB,mBAAmB,CAAC,EAAE,kBAAkB,EAAE,CAAC;IAC3C,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,OAAO,EAAE,OAAO,GAAG,OAAO,EAAE,CAAC;IAC7B,OAAO,CAAC,EAAE,OAAO,GAAG,OAAO,EAAE,CAAC;CAC/B,CAAC;AAEF,KAAK,OAAO,GAAG;IACb,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,GAAG,EAAE,MAAM,CAAC;IACZ,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,KAAK,kBAAkB,GAAG;IACxB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EACH;QACE,KAAK,EAAE,MAAM,CAAC;QACd,GAAG,CAAC,EAAE,MAAM,CAAC;KACd,GACD;QACE,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,GAAG,EAAE,MAAM,CAAC;KACb,CAAC;IACN,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,gBAAgB,CAAC;IACvB,KAAK,EAAE,MAAM,OAAO,OAAO,CAAC;CAC7B,CAAC;AAEF,KAAK,OAAO,GAAG;IACb,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC5B,CAAC"}
|
|
1
|
+
{"version":3,"file":"patientDTO.d.ts","sourceRoot":"","sources":["../../../src/medical/models/patientDTO.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,MAAM,OAAO,CAAC;AAEhC,MAAM,MAAM,UAAU,GAAG;IACvB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC;IACZ,aAAa,EAAE,GAAG,GAAG,GAAG,CAAC;IACzB,mBAAmB,CAAC,EAAE,kBAAkB,EAAE,CAAC;IAC3C,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,EAAE,OAAO,GAAG,OAAO,EAAE,CAAC;IAC7B,OAAO,CAAC,EAAE,OAAO,GAAG,OAAO,EAAE,CAAC;CAC/B,CAAC;AAEF,KAAK,OAAO,GAAG;IACb,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,GAAG,EAAE,MAAM,CAAC;IACZ,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC;AAEF,KAAK,kBAAkB,GAAG;IACxB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EACH;QACE,KAAK,EAAE,MAAM,CAAC;QACd,GAAG,CAAC,EAAE,MAAM,CAAC;KACd,GACD;QACE,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,GAAG,EAAE,MAAM,CAAC;KACb,CAAC;IACN,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,gBAAgB,CAAC;IACvB,KAAK,EAAE,MAAM,OAAO,OAAO,CAAC;CAC7B,CAAC;AAEF,KAAK,OAAO,GAAG;IACb,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CAC5B,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metriport/api-sdk",
|
|
3
|
-
"version": "7.6.
|
|
3
|
+
"version": "7.6.1",
|
|
4
4
|
"description": "Metriport helps you access and manage health and medical data, through a single open source API.",
|
|
5
5
|
"author": "Metriport Inc. <contact@metriport.com>",
|
|
6
6
|
"homepage": "https://metriport.com/",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"url": "https://github.com/metriport/metriport/issues"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@metriport/commonwell-sdk": "^4.9.
|
|
59
|
+
"@metriport/commonwell-sdk": "^4.9.1",
|
|
60
60
|
"axios": "^1.3.4",
|
|
61
61
|
"dayjs": "^1.11.7",
|
|
62
62
|
"dotenv": "^16.3.1",
|
|
@@ -74,5 +74,5 @@
|
|
|
74
74
|
"ts-jest": "29.1.1",
|
|
75
75
|
"typescript": "^4.9.5"
|
|
76
76
|
},
|
|
77
|
-
"gitHead": "
|
|
77
|
+
"gitHead": "096a630d04baf1325a443220b412a42aa2a15b15"
|
|
78
78
|
}
|