@metriport/ihe-gateway-sdk 0.9.7 → 0.10.0
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/models/patient-discovery/patient-discovery-requests.d.ts +10 -10
- package/dist/models/patient-discovery/patient-discovery-responses.d.ts +10 -10
- package/dist/models/patient-discovery/patient.d.ts +4 -4
- package/dist/models/patient-discovery/patient.d.ts.map +1 -1
- package/dist/models/patient-discovery/patient.js +1 -1
- package/dist/models/patient-discovery/patient.js.map +1 -1
- package/package.json +3 -3
|
@@ -53,7 +53,7 @@ export declare const outboundPatientDiscoveryReqSchema: z.ZodObject<{
|
|
|
53
53
|
family: string;
|
|
54
54
|
given: string[];
|
|
55
55
|
}>, "many">;
|
|
56
|
-
gender: z.
|
|
56
|
+
gender: z.ZodEnum<["male", "female", "other", "unknown"]>;
|
|
57
57
|
birthDate: z.ZodString;
|
|
58
58
|
address: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
59
59
|
line: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -99,10 +99,10 @@ export declare const outboundPatientDiscoveryReqSchema: z.ZodObject<{
|
|
|
99
99
|
family: string;
|
|
100
100
|
given: string[];
|
|
101
101
|
}[];
|
|
102
|
+
gender: "unknown" | "male" | "female" | "other";
|
|
102
103
|
birthDate: string;
|
|
103
104
|
resourceType?: string | undefined;
|
|
104
105
|
id?: string | undefined;
|
|
105
|
-
gender?: "undefined" | "unknown" | "male" | "female" | "other" | undefined;
|
|
106
106
|
address?: {
|
|
107
107
|
line?: string[] | undefined;
|
|
108
108
|
city?: string | undefined;
|
|
@@ -123,10 +123,10 @@ export declare const outboundPatientDiscoveryReqSchema: z.ZodObject<{
|
|
|
123
123
|
family: string;
|
|
124
124
|
given: string[];
|
|
125
125
|
}[];
|
|
126
|
+
gender: "unknown" | "male" | "female" | "other";
|
|
126
127
|
birthDate: string;
|
|
127
128
|
resourceType?: string | undefined;
|
|
128
129
|
id?: string | undefined;
|
|
129
|
-
gender?: "undefined" | "unknown" | "male" | "female" | "other" | undefined;
|
|
130
130
|
address?: {
|
|
131
131
|
line?: string[] | undefined;
|
|
132
132
|
city?: string | undefined;
|
|
@@ -180,10 +180,10 @@ export declare const outboundPatientDiscoveryReqSchema: z.ZodObject<{
|
|
|
180
180
|
family: string;
|
|
181
181
|
given: string[];
|
|
182
182
|
}[];
|
|
183
|
+
gender: "unknown" | "male" | "female" | "other";
|
|
183
184
|
birthDate: string;
|
|
184
185
|
resourceType?: string | undefined;
|
|
185
186
|
id?: string | undefined;
|
|
186
|
-
gender?: "undefined" | "unknown" | "male" | "female" | "other" | undefined;
|
|
187
187
|
address?: {
|
|
188
188
|
line?: string[] | undefined;
|
|
189
189
|
city?: string | undefined;
|
|
@@ -228,10 +228,10 @@ export declare const outboundPatientDiscoveryReqSchema: z.ZodObject<{
|
|
|
228
228
|
family: string;
|
|
229
229
|
given: string[];
|
|
230
230
|
}[];
|
|
231
|
+
gender: "unknown" | "male" | "female" | "other";
|
|
231
232
|
birthDate: string;
|
|
232
233
|
resourceType?: string | undefined;
|
|
233
234
|
id?: string | undefined;
|
|
234
|
-
gender?: "undefined" | "unknown" | "male" | "female" | "other" | undefined;
|
|
235
235
|
address?: {
|
|
236
236
|
line?: string[] | undefined;
|
|
237
237
|
city?: string | undefined;
|
|
@@ -313,7 +313,7 @@ export declare const inboundPatientDiscoveryReqSchema: z.ZodObject<Omit<{
|
|
|
313
313
|
family: string;
|
|
314
314
|
given: string[];
|
|
315
315
|
}>, "many">;
|
|
316
|
-
gender: z.
|
|
316
|
+
gender: z.ZodEnum<["male", "female", "other", "unknown"]>;
|
|
317
317
|
birthDate: z.ZodString;
|
|
318
318
|
address: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
319
319
|
line: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -359,10 +359,10 @@ export declare const inboundPatientDiscoveryReqSchema: z.ZodObject<Omit<{
|
|
|
359
359
|
family: string;
|
|
360
360
|
given: string[];
|
|
361
361
|
}[];
|
|
362
|
+
gender: "unknown" | "male" | "female" | "other";
|
|
362
363
|
birthDate: string;
|
|
363
364
|
resourceType?: string | undefined;
|
|
364
365
|
id?: string | undefined;
|
|
365
|
-
gender?: "undefined" | "unknown" | "male" | "female" | "other" | undefined;
|
|
366
366
|
address?: {
|
|
367
367
|
line?: string[] | undefined;
|
|
368
368
|
city?: string | undefined;
|
|
@@ -383,10 +383,10 @@ export declare const inboundPatientDiscoveryReqSchema: z.ZodObject<Omit<{
|
|
|
383
383
|
family: string;
|
|
384
384
|
given: string[];
|
|
385
385
|
}[];
|
|
386
|
+
gender: "unknown" | "male" | "female" | "other";
|
|
386
387
|
birthDate: string;
|
|
387
388
|
resourceType?: string | undefined;
|
|
388
389
|
id?: string | undefined;
|
|
389
|
-
gender?: "undefined" | "unknown" | "male" | "female" | "other" | undefined;
|
|
390
390
|
address?: {
|
|
391
391
|
line?: string[] | undefined;
|
|
392
392
|
city?: string | undefined;
|
|
@@ -422,10 +422,10 @@ export declare const inboundPatientDiscoveryReqSchema: z.ZodObject<Omit<{
|
|
|
422
422
|
family: string;
|
|
423
423
|
given: string[];
|
|
424
424
|
}[];
|
|
425
|
+
gender: "unknown" | "male" | "female" | "other";
|
|
425
426
|
birthDate: string;
|
|
426
427
|
resourceType?: string | undefined;
|
|
427
428
|
id?: string | undefined;
|
|
428
|
-
gender?: "undefined" | "unknown" | "male" | "female" | "other" | undefined;
|
|
429
429
|
address?: {
|
|
430
430
|
line?: string[] | undefined;
|
|
431
431
|
city?: string | undefined;
|
|
@@ -463,10 +463,10 @@ export declare const inboundPatientDiscoveryReqSchema: z.ZodObject<Omit<{
|
|
|
463
463
|
family: string;
|
|
464
464
|
given: string[];
|
|
465
465
|
}[];
|
|
466
|
+
gender: "unknown" | "male" | "female" | "other";
|
|
466
467
|
birthDate: string;
|
|
467
468
|
resourceType?: string | undefined;
|
|
468
469
|
id?: string | undefined;
|
|
469
|
-
gender?: "undefined" | "unknown" | "male" | "female" | "other" | undefined;
|
|
470
470
|
address?: {
|
|
471
471
|
line?: string[] | undefined;
|
|
472
472
|
city?: string | undefined;
|
|
@@ -829,7 +829,7 @@ export declare const outboundPatientDiscoveryRespSuccessfulSchema: z.ZodObject<{
|
|
|
829
829
|
family: string;
|
|
830
830
|
given: string[];
|
|
831
831
|
}>, "many">;
|
|
832
|
-
gender: z.
|
|
832
|
+
gender: z.ZodEnum<["male", "female", "other", "unknown"]>;
|
|
833
833
|
birthDate: z.ZodString;
|
|
834
834
|
address: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
835
835
|
line: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -875,10 +875,10 @@ export declare const outboundPatientDiscoveryRespSuccessfulSchema: z.ZodObject<{
|
|
|
875
875
|
family: string;
|
|
876
876
|
given: string[];
|
|
877
877
|
}[];
|
|
878
|
+
gender: "unknown" | "male" | "female" | "other";
|
|
878
879
|
birthDate: string;
|
|
879
880
|
resourceType?: string | undefined;
|
|
880
881
|
id?: string | undefined;
|
|
881
|
-
gender?: "undefined" | "unknown" | "male" | "female" | "other" | undefined;
|
|
882
882
|
address?: {
|
|
883
883
|
line?: string[] | undefined;
|
|
884
884
|
city?: string | undefined;
|
|
@@ -899,10 +899,10 @@ export declare const outboundPatientDiscoveryRespSuccessfulSchema: z.ZodObject<{
|
|
|
899
899
|
family: string;
|
|
900
900
|
given: string[];
|
|
901
901
|
}[];
|
|
902
|
+
gender: "unknown" | "male" | "female" | "other";
|
|
902
903
|
birthDate: string;
|
|
903
904
|
resourceType?: string | undefined;
|
|
904
905
|
id?: string | undefined;
|
|
905
|
-
gender?: "undefined" | "unknown" | "male" | "female" | "other" | undefined;
|
|
906
906
|
address?: {
|
|
907
907
|
line?: string[] | undefined;
|
|
908
908
|
city?: string | undefined;
|
|
@@ -933,10 +933,10 @@ export declare const outboundPatientDiscoveryRespSuccessfulSchema: z.ZodObject<{
|
|
|
933
933
|
family: string;
|
|
934
934
|
given: string[];
|
|
935
935
|
}[];
|
|
936
|
+
gender: "unknown" | "male" | "female" | "other";
|
|
936
937
|
birthDate: string;
|
|
937
938
|
resourceType?: string | undefined;
|
|
938
939
|
id?: string | undefined;
|
|
939
|
-
gender?: "undefined" | "unknown" | "male" | "female" | "other" | undefined;
|
|
940
940
|
address?: {
|
|
941
941
|
line?: string[] | undefined;
|
|
942
942
|
city?: string | undefined;
|
|
@@ -1003,10 +1003,10 @@ export declare const outboundPatientDiscoveryRespSuccessfulSchema: z.ZodObject<{
|
|
|
1003
1003
|
family: string;
|
|
1004
1004
|
given: string[];
|
|
1005
1005
|
}[];
|
|
1006
|
+
gender: "unknown" | "male" | "female" | "other";
|
|
1006
1007
|
birthDate: string;
|
|
1007
1008
|
resourceType?: string | undefined;
|
|
1008
1009
|
id?: string | undefined;
|
|
1009
|
-
gender?: "undefined" | "unknown" | "male" | "female" | "other" | undefined;
|
|
1010
1010
|
address?: {
|
|
1011
1011
|
line?: string[] | undefined;
|
|
1012
1012
|
city?: string | undefined;
|
|
@@ -1467,7 +1467,7 @@ export declare const outboundPatientDiscoveryRespSchema: z.ZodUnion<[z.ZodObject
|
|
|
1467
1467
|
family: string;
|
|
1468
1468
|
given: string[];
|
|
1469
1469
|
}>, "many">;
|
|
1470
|
-
gender: z.
|
|
1470
|
+
gender: z.ZodEnum<["male", "female", "other", "unknown"]>;
|
|
1471
1471
|
birthDate: z.ZodString;
|
|
1472
1472
|
address: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1473
1473
|
line: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -1513,10 +1513,10 @@ export declare const outboundPatientDiscoveryRespSchema: z.ZodUnion<[z.ZodObject
|
|
|
1513
1513
|
family: string;
|
|
1514
1514
|
given: string[];
|
|
1515
1515
|
}[];
|
|
1516
|
+
gender: "unknown" | "male" | "female" | "other";
|
|
1516
1517
|
birthDate: string;
|
|
1517
1518
|
resourceType?: string | undefined;
|
|
1518
1519
|
id?: string | undefined;
|
|
1519
|
-
gender?: "undefined" | "unknown" | "male" | "female" | "other" | undefined;
|
|
1520
1520
|
address?: {
|
|
1521
1521
|
line?: string[] | undefined;
|
|
1522
1522
|
city?: string | undefined;
|
|
@@ -1537,10 +1537,10 @@ export declare const outboundPatientDiscoveryRespSchema: z.ZodUnion<[z.ZodObject
|
|
|
1537
1537
|
family: string;
|
|
1538
1538
|
given: string[];
|
|
1539
1539
|
}[];
|
|
1540
|
+
gender: "unknown" | "male" | "female" | "other";
|
|
1540
1541
|
birthDate: string;
|
|
1541
1542
|
resourceType?: string | undefined;
|
|
1542
1543
|
id?: string | undefined;
|
|
1543
|
-
gender?: "undefined" | "unknown" | "male" | "female" | "other" | undefined;
|
|
1544
1544
|
address?: {
|
|
1545
1545
|
line?: string[] | undefined;
|
|
1546
1546
|
city?: string | undefined;
|
|
@@ -1571,10 +1571,10 @@ export declare const outboundPatientDiscoveryRespSchema: z.ZodUnion<[z.ZodObject
|
|
|
1571
1571
|
family: string;
|
|
1572
1572
|
given: string[];
|
|
1573
1573
|
}[];
|
|
1574
|
+
gender: "unknown" | "male" | "female" | "other";
|
|
1574
1575
|
birthDate: string;
|
|
1575
1576
|
resourceType?: string | undefined;
|
|
1576
1577
|
id?: string | undefined;
|
|
1577
|
-
gender?: "undefined" | "unknown" | "male" | "female" | "other" | undefined;
|
|
1578
1578
|
address?: {
|
|
1579
1579
|
line?: string[] | undefined;
|
|
1580
1580
|
city?: string | undefined;
|
|
@@ -1641,10 +1641,10 @@ export declare const outboundPatientDiscoveryRespSchema: z.ZodUnion<[z.ZodObject
|
|
|
1641
1641
|
family: string;
|
|
1642
1642
|
given: string[];
|
|
1643
1643
|
}[];
|
|
1644
|
+
gender: "unknown" | "male" | "female" | "other";
|
|
1644
1645
|
birthDate: string;
|
|
1645
1646
|
resourceType?: string | undefined;
|
|
1646
1647
|
id?: string | undefined;
|
|
1647
|
-
gender?: "undefined" | "unknown" | "male" | "female" | "other" | undefined;
|
|
1648
1648
|
address?: {
|
|
1649
1649
|
line?: string[] | undefined;
|
|
1650
1650
|
city?: string | undefined;
|
|
@@ -52,7 +52,7 @@ export declare const personalIdentifierSchema: z.ZodObject<{
|
|
|
52
52
|
value?: string | undefined;
|
|
53
53
|
}>;
|
|
54
54
|
export type PersonalIdentifier = z.infer<typeof personalIdentifierSchema>;
|
|
55
|
-
export declare const genderSchema: z.
|
|
55
|
+
export declare const genderSchema: z.ZodEnum<["male", "female", "other", "unknown"]>;
|
|
56
56
|
export type Gender = z.infer<typeof genderSchema>;
|
|
57
57
|
export declare const patientResourceSchema: z.ZodObject<{
|
|
58
58
|
resourceType: z.ZodOptional<z.ZodString>;
|
|
@@ -67,7 +67,7 @@ export declare const patientResourceSchema: z.ZodObject<{
|
|
|
67
67
|
family: string;
|
|
68
68
|
given: string[];
|
|
69
69
|
}>, "many">;
|
|
70
|
-
gender: z.
|
|
70
|
+
gender: z.ZodEnum<["male", "female", "other", "unknown"]>;
|
|
71
71
|
birthDate: z.ZodString;
|
|
72
72
|
address: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
73
73
|
line: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -113,10 +113,10 @@ export declare const patientResourceSchema: z.ZodObject<{
|
|
|
113
113
|
family: string;
|
|
114
114
|
given: string[];
|
|
115
115
|
}[];
|
|
116
|
+
gender: "unknown" | "male" | "female" | "other";
|
|
116
117
|
birthDate: string;
|
|
117
118
|
resourceType?: string | undefined;
|
|
118
119
|
id?: string | undefined;
|
|
119
|
-
gender?: "undefined" | "unknown" | "male" | "female" | "other" | undefined;
|
|
120
120
|
address?: {
|
|
121
121
|
line?: string[] | undefined;
|
|
122
122
|
city?: string | undefined;
|
|
@@ -137,10 +137,10 @@ export declare const patientResourceSchema: z.ZodObject<{
|
|
|
137
137
|
family: string;
|
|
138
138
|
given: string[];
|
|
139
139
|
}[];
|
|
140
|
+
gender: "unknown" | "male" | "female" | "other";
|
|
140
141
|
birthDate: string;
|
|
141
142
|
resourceType?: string | undefined;
|
|
142
143
|
id?: string | undefined;
|
|
143
|
-
gender?: "undefined" | "unknown" | "male" | "female" | "other" | undefined;
|
|
144
144
|
address?: {
|
|
145
145
|
line?: string[] | undefined;
|
|
146
146
|
city?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"patient.d.ts","sourceRoot":"","sources":["../../../src/models/patient-discovery/patient.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,UAAU;;;;;;;;;EAGrB,CAAC;AACH,MAAM,MAAM,IAAI,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AAE9C,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;EAMxB,CAAC;AACH,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAEpD,eAAO,MAAM,aAAa;;;;;;;;;EAGxB,CAAC;AACH,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAEpD,eAAO,MAAM,wBAAwB;;;;;;;;;EAGnC,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,YAAY
|
|
1
|
+
{"version":3,"file":"patient.d.ts","sourceRoot":"","sources":["../../../src/models/patient-discovery/patient.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,eAAO,MAAM,UAAU;;;;;;;;;EAGrB,CAAC;AACH,MAAM,MAAM,IAAI,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AAE9C,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;EAMxB,CAAC;AACH,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAEpD,eAAO,MAAM,aAAa;;;;;;;;;EAGxB,CAAC;AACH,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAEpD,eAAO,MAAM,wBAAwB;;;;;;;;;EAGnC,CAAC;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAE1E,eAAO,MAAM,YAAY,mDAAiD,CAAC;AAC3E,MAAM,MAAM,MAAM,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,YAAY,CAAC,CAAC;AAElD,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAShC,CAAC;AAEH,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC"}
|
|
@@ -21,7 +21,7 @@ exports.personalIdentifierSchema = zod_1.z.object({
|
|
|
21
21
|
system: zod_1.z.string().optional(),
|
|
22
22
|
value: zod_1.z.string().optional(),
|
|
23
23
|
});
|
|
24
|
-
exports.genderSchema = zod_1.z.enum(["male", "female", "other", "unknown"
|
|
24
|
+
exports.genderSchema = zod_1.z.enum(["male", "female", "other", "unknown"]);
|
|
25
25
|
exports.patientResourceSchema = zod_1.z.object({
|
|
26
26
|
resourceType: zod_1.z.string().optional(),
|
|
27
27
|
id: zod_1.z.string().optional(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"patient.js","sourceRoot":"","sources":["../../../src/models/patient-discovery/patient.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAEX,QAAA,UAAU,GAAG,OAAC,CAAC,MAAM,CAAC;IACjC,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE;IAClB,KAAK,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC;CAC3B,CAAC,CAAC;AAGU,QAAA,aAAa,GAAG,OAAC,CAAC,MAAM,CAAC;IACpC,IAAI,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;IACpC,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC/B,CAAC,CAAC;AAGU,QAAA,aAAa,GAAG,OAAC,CAAC,MAAM,CAAC;IACpC,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC7B,CAAC,CAAC;AAGU,QAAA,wBAAwB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/C,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC7B,CAAC,CAAC;AAGU,QAAA,YAAY,GAAG,OAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,QAAQ,EAAE,OAAO,EAAE,SAAS,
|
|
1
|
+
{"version":3,"file":"patient.js","sourceRoot":"","sources":["../../../src/models/patient-discovery/patient.ts"],"names":[],"mappings":";;;AAAA,6BAAwB;AAEX,QAAA,UAAU,GAAG,OAAC,CAAC,MAAM,CAAC;IACjC,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE;IAClB,KAAK,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC;CAC3B,CAAC,CAAC;AAGU,QAAA,aAAa,GAAG,OAAC,CAAC,MAAM,CAAC;IACpC,IAAI,EAAE,OAAC,CAAC,KAAK,CAAC,OAAC,CAAC,MAAM,EAAE,CAAC,CAAC,QAAQ,EAAE;IACpC,IAAI,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC3B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC5B,UAAU,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACjC,OAAO,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC/B,CAAC,CAAC;AAGU,QAAA,aAAa,GAAG,OAAC,CAAC,MAAM,CAAC;IACpC,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC7B,CAAC,CAAC;AAGU,QAAA,wBAAwB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC/C,MAAM,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IAC7B,KAAK,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;CAC7B,CAAC,CAAC;AAGU,QAAA,YAAY,GAAG,OAAC,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,QAAQ,EAAE,OAAO,EAAE,SAAS,CAAC,CAAC,CAAC;AAG9D,QAAA,qBAAqB,GAAG,OAAC,CAAC,MAAM,CAAC;IAC5C,YAAY,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACnC,EAAE,EAAE,OAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE;IACzB,IAAI,EAAE,OAAC,CAAC,KAAK,CAAC,kBAAU,CAAC;IACzB,MAAM,EAAE,oBAAY;IACpB,SAAS,EAAE,OAAC,CAAC,MAAM,EAAE;IACrB,OAAO,EAAE,OAAC,CAAC,KAAK,CAAC,qBAAa,CAAC,CAAC,QAAQ,EAAE;IAC1C,OAAO,EAAE,OAAC,CAAC,KAAK,CAAC,qBAAa,CAAC,CAAC,QAAQ,EAAE;IAC1C,UAAU,EAAE,OAAC,CAAC,KAAK,CAAC,gCAAwB,CAAC,CAAC,QAAQ,EAAE;CACzD,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metriport/ihe-gateway-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "SDK to interact with other IHE Gateways - by Metriport Inc.",
|
|
5
5
|
"author": "Metriport Inc. <contact@metriport.com>",
|
|
6
6
|
"homepage": "https://metriport.com/",
|
|
@@ -52,9 +52,9 @@
|
|
|
52
52
|
"url": "https://github.com/metriport/metriport/issues"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@metriport/shared": "^0.
|
|
55
|
+
"@metriport/shared": "^0.10.0",
|
|
56
56
|
"axios": "^1.6.0",
|
|
57
57
|
"zod": "^3.22.1"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "264de9aeada5d3d96d9ca097c2949f92206358f9"
|
|
60
60
|
}
|