@metriport/ihe-gateway-sdk 0.9.5 → 0.9.6

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.
@@ -134,6 +134,8 @@ declare const inboundDocumentQueryRespSuccessfulSchema: z.ZodObject<{
134
134
  } | undefined);
135
135
  }[];
136
136
  }>>;
137
+ retried: z.ZodOptional<z.ZodNumber>;
138
+ iheGatewayV2: z.ZodOptional<z.ZodBoolean>;
137
139
  extrinsicObjectXmls: z.ZodArray<z.ZodString, "many">;
138
140
  }, "strip", z.ZodTypeAny, {
139
141
  id: string;
@@ -171,6 +173,8 @@ declare const inboundDocumentQueryRespSuccessfulSchema: z.ZodObject<{
171
173
  } | undefined);
172
174
  }[];
173
175
  } | undefined;
176
+ retried?: number | undefined;
177
+ iheGatewayV2?: boolean | undefined;
174
178
  }, {
175
179
  id: string;
176
180
  timestamp: string;
@@ -207,6 +211,8 @@ declare const inboundDocumentQueryRespSuccessfulSchema: z.ZodObject<{
207
211
  } | undefined);
208
212
  }[];
209
213
  } | undefined;
214
+ retried?: number | undefined;
215
+ iheGatewayV2?: boolean | undefined;
210
216
  }>;
211
217
  export type InboundDocumentQueryRespSuccessful = z.infer<typeof inboundDocumentQueryRespSuccessfulSchema>;
212
218
  declare const inboundDocumentQueryRespFaultSchema: z.ZodObject<{
@@ -343,6 +349,8 @@ declare const inboundDocumentQueryRespFaultSchema: z.ZodObject<{
343
349
  } | undefined);
344
350
  }[];
345
351
  }>>;
352
+ retried: z.ZodOptional<z.ZodNumber>;
353
+ iheGatewayV2: z.ZodOptional<z.ZodBoolean>;
346
354
  extrinsicObjectXmls: z.ZodUnion<[z.ZodNever, z.ZodLiteral<undefined>]>;
347
355
  }, "strip", z.ZodTypeAny, {
348
356
  id: string;
@@ -379,6 +387,8 @@ declare const inboundDocumentQueryRespFaultSchema: z.ZodObject<{
379
387
  } | undefined);
380
388
  }[];
381
389
  } | undefined;
390
+ retried?: number | undefined;
391
+ iheGatewayV2?: boolean | undefined;
382
392
  extrinsicObjectXmls?: undefined;
383
393
  }, {
384
394
  id: string;
@@ -415,6 +425,8 @@ declare const inboundDocumentQueryRespFaultSchema: z.ZodObject<{
415
425
  } | undefined);
416
426
  }[];
417
427
  } | undefined;
428
+ retried?: number | undefined;
429
+ iheGatewayV2?: boolean | undefined;
418
430
  extrinsicObjectXmls?: undefined;
419
431
  }>;
420
432
  export type InboundDocumentQueryRespFault = z.infer<typeof inboundDocumentQueryRespFaultSchema>;
@@ -552,6 +564,8 @@ export declare const inboundDocumentQueryRespSchema: z.ZodUnion<[z.ZodObject<{
552
564
  } | undefined);
553
565
  }[];
554
566
  }>>;
567
+ retried: z.ZodOptional<z.ZodNumber>;
568
+ iheGatewayV2: z.ZodOptional<z.ZodBoolean>;
555
569
  extrinsicObjectXmls: z.ZodArray<z.ZodString, "many">;
556
570
  }, "strip", z.ZodTypeAny, {
557
571
  id: string;
@@ -589,6 +603,8 @@ export declare const inboundDocumentQueryRespSchema: z.ZodUnion<[z.ZodObject<{
589
603
  } | undefined);
590
604
  }[];
591
605
  } | undefined;
606
+ retried?: number | undefined;
607
+ iheGatewayV2?: boolean | undefined;
592
608
  }, {
593
609
  id: string;
594
610
  timestamp: string;
@@ -625,6 +641,8 @@ export declare const inboundDocumentQueryRespSchema: z.ZodUnion<[z.ZodObject<{
625
641
  } | undefined);
626
642
  }[];
627
643
  } | undefined;
644
+ retried?: number | undefined;
645
+ iheGatewayV2?: boolean | undefined;
628
646
  }>, z.ZodObject<{
629
647
  id: z.ZodString;
630
648
  cxId: z.ZodOptional<z.ZodString>;
@@ -759,6 +777,8 @@ export declare const inboundDocumentQueryRespSchema: z.ZodUnion<[z.ZodObject<{
759
777
  } | undefined);
760
778
  }[];
761
779
  }>>;
780
+ retried: z.ZodOptional<z.ZodNumber>;
781
+ iheGatewayV2: z.ZodOptional<z.ZodBoolean>;
762
782
  extrinsicObjectXmls: z.ZodUnion<[z.ZodNever, z.ZodLiteral<undefined>]>;
763
783
  }, "strip", z.ZodTypeAny, {
764
784
  id: string;
@@ -795,6 +815,8 @@ export declare const inboundDocumentQueryRespSchema: z.ZodUnion<[z.ZodObject<{
795
815
  } | undefined);
796
816
  }[];
797
817
  } | undefined;
818
+ retried?: number | undefined;
819
+ iheGatewayV2?: boolean | undefined;
798
820
  extrinsicObjectXmls?: undefined;
799
821
  }, {
800
822
  id: string;
@@ -831,6 +853,8 @@ export declare const inboundDocumentQueryRespSchema: z.ZodUnion<[z.ZodObject<{
831
853
  } | undefined);
832
854
  }[];
833
855
  } | undefined;
856
+ retried?: number | undefined;
857
+ iheGatewayV2?: boolean | undefined;
834
858
  extrinsicObjectXmls?: undefined;
835
859
  }>]>;
836
860
  export type InboundDocumentQueryResp = z.infer<typeof inboundDocumentQueryRespSchema>;
@@ -968,6 +992,8 @@ export declare const outboundDocumentQueryRespSchema: z.ZodUnion<[z.ZodObject<{
968
992
  } | undefined);
969
993
  }[];
970
994
  }>>;
995
+ retried: z.ZodOptional<z.ZodNumber>;
996
+ iheGatewayV2: z.ZodOptional<z.ZodBoolean>;
971
997
  documentReference: z.ZodArray<z.ZodObject<{
972
998
  homeCommunityId: z.ZodString;
973
999
  docUniqueId: z.ZodString;
@@ -1115,6 +1141,8 @@ export declare const outboundDocumentQueryRespSchema: z.ZodUnion<[z.ZodObject<{
1115
1141
  } | undefined);
1116
1142
  }[];
1117
1143
  } | undefined;
1144
+ retried?: number | undefined;
1145
+ iheGatewayV2?: boolean | undefined;
1118
1146
  }, {
1119
1147
  id: string;
1120
1148
  timestamp: string;
@@ -1178,6 +1206,8 @@ export declare const outboundDocumentQueryRespSchema: z.ZodUnion<[z.ZodObject<{
1178
1206
  } | undefined);
1179
1207
  }[];
1180
1208
  } | undefined;
1209
+ retried?: number | undefined;
1210
+ iheGatewayV2?: boolean | undefined;
1181
1211
  }>, z.ZodObject<{
1182
1212
  id: z.ZodString;
1183
1213
  cxId: z.ZodOptional<z.ZodString>;
@@ -1312,6 +1342,8 @@ export declare const outboundDocumentQueryRespSchema: z.ZodUnion<[z.ZodObject<{
1312
1342
  } | undefined);
1313
1343
  }[];
1314
1344
  }>>;
1345
+ retried: z.ZodOptional<z.ZodNumber>;
1346
+ iheGatewayV2: z.ZodOptional<z.ZodBoolean>;
1315
1347
  documentReference: z.ZodUnion<[z.ZodNever, z.ZodLiteral<undefined>]>;
1316
1348
  gateway: z.ZodObject<{
1317
1349
  homeCommunityId: z.ZodString;
@@ -1362,6 +1394,8 @@ export declare const outboundDocumentQueryRespSchema: z.ZodUnion<[z.ZodObject<{
1362
1394
  } | undefined);
1363
1395
  }[];
1364
1396
  } | undefined;
1397
+ retried?: number | undefined;
1398
+ iheGatewayV2?: boolean | undefined;
1365
1399
  documentReference?: undefined;
1366
1400
  }, {
1367
1401
  id: string;
@@ -1402,6 +1436,8 @@ export declare const outboundDocumentQueryRespSchema: z.ZodUnion<[z.ZodObject<{
1402
1436
  } | undefined);
1403
1437
  }[];
1404
1438
  } | undefined;
1439
+ retried?: number | undefined;
1440
+ iheGatewayV2?: boolean | undefined;
1405
1441
  documentReference?: undefined;
1406
1442
  }>]>;
1407
1443
  export type OutboundDocumentQueryResp = z.infer<typeof outboundDocumentQueryRespSchema>;
@@ -1 +1 @@
1
- {"version":3,"file":"document-query-responses.d.ts","sourceRoot":"","sources":["../../../src/models/document-query/document-query-responses.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"document-query-responses.d.ts","sourceRoot":"","sources":["../../../src/models/document-query/document-query-responses.ts"],"names":[],"mappings":"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"}
@@ -134,6 +134,8 @@ declare const inboundDocumentRetrievalRespSuccessfulSchema: z.ZodObject<{
134
134
  } | undefined);
135
135
  }[];
136
136
  }>>;
137
+ retried: z.ZodOptional<z.ZodNumber>;
138
+ iheGatewayV2: z.ZodOptional<z.ZodBoolean>;
137
139
  documentReference: z.ZodArray<z.ZodObject<{
138
140
  homeCommunityId: z.ZodString;
139
141
  docUniqueId: z.ZodString;
@@ -267,6 +269,8 @@ declare const inboundDocumentRetrievalRespSuccessfulSchema: z.ZodObject<{
267
269
  } | undefined);
268
270
  }[];
269
271
  } | undefined;
272
+ retried?: number | undefined;
273
+ iheGatewayV2?: boolean | undefined;
270
274
  }, {
271
275
  id: string;
272
276
  timestamp: string;
@@ -326,6 +330,8 @@ declare const inboundDocumentRetrievalRespSuccessfulSchema: z.ZodObject<{
326
330
  } | undefined);
327
331
  }[];
328
332
  } | undefined;
333
+ retried?: number | undefined;
334
+ iheGatewayV2?: boolean | undefined;
329
335
  }>;
330
336
  export type InboundDocumentRetrievalRespSuccessful = z.infer<typeof inboundDocumentRetrievalRespSuccessfulSchema>;
331
337
  declare const inboundDocumentRetrievalRespFaultSchema: z.ZodObject<{
@@ -462,6 +468,8 @@ declare const inboundDocumentRetrievalRespFaultSchema: z.ZodObject<{
462
468
  } | undefined);
463
469
  }[];
464
470
  }>>;
471
+ retried: z.ZodOptional<z.ZodNumber>;
472
+ iheGatewayV2: z.ZodOptional<z.ZodBoolean>;
465
473
  documentReference: z.ZodUnion<[z.ZodNever, z.ZodLiteral<undefined>]>;
466
474
  }, "strip", z.ZodTypeAny, {
467
475
  id: string;
@@ -498,6 +506,8 @@ declare const inboundDocumentRetrievalRespFaultSchema: z.ZodObject<{
498
506
  } | undefined);
499
507
  }[];
500
508
  } | undefined;
509
+ retried?: number | undefined;
510
+ iheGatewayV2?: boolean | undefined;
501
511
  documentReference?: undefined;
502
512
  }, {
503
513
  id: string;
@@ -534,6 +544,8 @@ declare const inboundDocumentRetrievalRespFaultSchema: z.ZodObject<{
534
544
  } | undefined);
535
545
  }[];
536
546
  } | undefined;
547
+ retried?: number | undefined;
548
+ iheGatewayV2?: boolean | undefined;
537
549
  documentReference?: undefined;
538
550
  }>;
539
551
  export type InboundDocumentRetrievalRespFault = z.infer<typeof inboundDocumentRetrievalRespFaultSchema>;
@@ -671,6 +683,8 @@ export declare const inboundDocumentRetrievalRespSchema: z.ZodUnion<[z.ZodObject
671
683
  } | undefined);
672
684
  }[];
673
685
  }>>;
686
+ retried: z.ZodOptional<z.ZodNumber>;
687
+ iheGatewayV2: z.ZodOptional<z.ZodBoolean>;
674
688
  documentReference: z.ZodArray<z.ZodObject<{
675
689
  homeCommunityId: z.ZodString;
676
690
  docUniqueId: z.ZodString;
@@ -804,6 +818,8 @@ export declare const inboundDocumentRetrievalRespSchema: z.ZodUnion<[z.ZodObject
804
818
  } | undefined);
805
819
  }[];
806
820
  } | undefined;
821
+ retried?: number | undefined;
822
+ iheGatewayV2?: boolean | undefined;
807
823
  }, {
808
824
  id: string;
809
825
  timestamp: string;
@@ -863,6 +879,8 @@ export declare const inboundDocumentRetrievalRespSchema: z.ZodUnion<[z.ZodObject
863
879
  } | undefined);
864
880
  }[];
865
881
  } | undefined;
882
+ retried?: number | undefined;
883
+ iheGatewayV2?: boolean | undefined;
866
884
  }>, z.ZodObject<{
867
885
  id: z.ZodString;
868
886
  cxId: z.ZodOptional<z.ZodString>;
@@ -997,6 +1015,8 @@ export declare const inboundDocumentRetrievalRespSchema: z.ZodUnion<[z.ZodObject
997
1015
  } | undefined);
998
1016
  }[];
999
1017
  }>>;
1018
+ retried: z.ZodOptional<z.ZodNumber>;
1019
+ iheGatewayV2: z.ZodOptional<z.ZodBoolean>;
1000
1020
  documentReference: z.ZodUnion<[z.ZodNever, z.ZodLiteral<undefined>]>;
1001
1021
  }, "strip", z.ZodTypeAny, {
1002
1022
  id: string;
@@ -1033,6 +1053,8 @@ export declare const inboundDocumentRetrievalRespSchema: z.ZodUnion<[z.ZodObject
1033
1053
  } | undefined);
1034
1054
  }[];
1035
1055
  } | undefined;
1056
+ retried?: number | undefined;
1057
+ iheGatewayV2?: boolean | undefined;
1036
1058
  documentReference?: undefined;
1037
1059
  }, {
1038
1060
  id: string;
@@ -1069,6 +1091,8 @@ export declare const inboundDocumentRetrievalRespSchema: z.ZodUnion<[z.ZodObject
1069
1091
  } | undefined);
1070
1092
  }[];
1071
1093
  } | undefined;
1094
+ retried?: number | undefined;
1095
+ iheGatewayV2?: boolean | undefined;
1072
1096
  documentReference?: undefined;
1073
1097
  }>]>;
1074
1098
  export type InboundDocumentRetrievalResp = z.infer<typeof inboundDocumentRetrievalRespSchema>;
@@ -1206,6 +1230,8 @@ export declare const outboundDocumentRetrievalRespSchema: z.ZodUnion<[z.ZodObjec
1206
1230
  } | undefined);
1207
1231
  }[];
1208
1232
  }>>;
1233
+ retried: z.ZodOptional<z.ZodNumber>;
1234
+ iheGatewayV2: z.ZodOptional<z.ZodBoolean>;
1209
1235
  gateway: z.ZodObject<{
1210
1236
  homeCommunityId: z.ZodString;
1211
1237
  url: z.ZodString;
@@ -1353,6 +1379,8 @@ export declare const outboundDocumentRetrievalRespSchema: z.ZodUnion<[z.ZodObjec
1353
1379
  } | undefined);
1354
1380
  }[];
1355
1381
  } | undefined;
1382
+ retried?: number | undefined;
1383
+ iheGatewayV2?: boolean | undefined;
1356
1384
  }, {
1357
1385
  id: string;
1358
1386
  timestamp: string;
@@ -1416,6 +1444,8 @@ export declare const outboundDocumentRetrievalRespSchema: z.ZodUnion<[z.ZodObjec
1416
1444
  } | undefined);
1417
1445
  }[];
1418
1446
  } | undefined;
1447
+ retried?: number | undefined;
1448
+ iheGatewayV2?: boolean | undefined;
1419
1449
  }>, z.ZodObject<{
1420
1450
  id: z.ZodString;
1421
1451
  cxId: z.ZodOptional<z.ZodString>;
@@ -1550,6 +1580,8 @@ export declare const outboundDocumentRetrievalRespSchema: z.ZodUnion<[z.ZodObjec
1550
1580
  } | undefined);
1551
1581
  }[];
1552
1582
  }>>;
1583
+ retried: z.ZodOptional<z.ZodNumber>;
1584
+ iheGatewayV2: z.ZodOptional<z.ZodBoolean>;
1553
1585
  gateway: z.ZodObject<{
1554
1586
  homeCommunityId: z.ZodString;
1555
1587
  url: z.ZodString;
@@ -1600,6 +1632,8 @@ export declare const outboundDocumentRetrievalRespSchema: z.ZodUnion<[z.ZodObjec
1600
1632
  } | undefined);
1601
1633
  }[];
1602
1634
  } | undefined;
1635
+ retried?: number | undefined;
1636
+ iheGatewayV2?: boolean | undefined;
1603
1637
  documentReference?: undefined;
1604
1638
  }, {
1605
1639
  id: string;
@@ -1640,6 +1674,8 @@ export declare const outboundDocumentRetrievalRespSchema: z.ZodUnion<[z.ZodObjec
1640
1674
  } | undefined);
1641
1675
  }[];
1642
1676
  } | undefined;
1677
+ retried?: number | undefined;
1678
+ iheGatewayV2?: boolean | undefined;
1643
1679
  documentReference?: undefined;
1644
1680
  }>]>;
1645
1681
  export type OutboundDocumentRetrievalResp = z.infer<typeof outboundDocumentRetrievalRespSchema>;
@@ -1 +1 @@
1
- {"version":3,"file":"document-retrieval-responses.d.ts","sourceRoot":"","sources":["../../../src/models/document-retrieval/document-retrieval-responses.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"document-retrieval-responses.d.ts","sourceRoot":"","sources":["../../../src/models/document-retrieval/document-retrieval-responses.ts"],"names":[],"mappings":"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"}
@@ -123,6 +123,8 @@ export declare const inboundPatientDiscoveryRespSchema: z.ZodUnion<[z.ZodObject<
123
123
  } | undefined);
124
124
  }[];
125
125
  }>>;
126
+ retried: z.ZodOptional<z.ZodNumber>;
127
+ iheGatewayV2: z.ZodOptional<z.ZodBoolean>;
126
128
  patientMatch: z.ZodLiteral<true>;
127
129
  gatewayHomeCommunityId: z.ZodString;
128
130
  patientMatchDegree: z.ZodOptional<z.ZodNumber>;
@@ -175,6 +177,8 @@ export declare const inboundPatientDiscoveryRespSchema: z.ZodUnion<[z.ZodObject<
175
177
  } | undefined);
176
178
  }[];
177
179
  } | undefined;
180
+ retried?: number | undefined;
181
+ iheGatewayV2?: boolean | undefined;
178
182
  patientMatchDegree?: number | undefined;
179
183
  }, {
180
184
  id: string;
@@ -214,6 +218,8 @@ export declare const inboundPatientDiscoveryRespSchema: z.ZodUnion<[z.ZodObject<
214
218
  } | undefined);
215
219
  }[];
216
220
  } | undefined;
221
+ retried?: number | undefined;
222
+ iheGatewayV2?: boolean | undefined;
217
223
  patientMatchDegree?: number | undefined;
218
224
  }>, z.ZodObject<{
219
225
  id: z.ZodString;
@@ -349,6 +355,8 @@ export declare const inboundPatientDiscoveryRespSchema: z.ZodUnion<[z.ZodObject<
349
355
  } | undefined);
350
356
  }[];
351
357
  }>>;
358
+ retried: z.ZodOptional<z.ZodNumber>;
359
+ iheGatewayV2: z.ZodOptional<z.ZodBoolean>;
352
360
  patientMatch: z.ZodLiteral<false>;
353
361
  gatewayHomeCommunityId: z.ZodString;
354
362
  }, "strip", z.ZodTypeAny, {
@@ -388,6 +396,8 @@ export declare const inboundPatientDiscoveryRespSchema: z.ZodUnion<[z.ZodObject<
388
396
  } | undefined);
389
397
  }[];
390
398
  } | undefined;
399
+ retried?: number | undefined;
400
+ iheGatewayV2?: boolean | undefined;
391
401
  }, {
392
402
  id: string;
393
403
  timestamp: string;
@@ -425,6 +435,8 @@ export declare const inboundPatientDiscoveryRespSchema: z.ZodUnion<[z.ZodObject<
425
435
  } | undefined);
426
436
  }[];
427
437
  } | undefined;
438
+ retried?: number | undefined;
439
+ iheGatewayV2?: boolean | undefined;
428
440
  }>, z.ZodObject<{
429
441
  id: z.ZodString;
430
442
  cxId: z.ZodOptional<z.ZodString>;
@@ -559,6 +571,8 @@ export declare const inboundPatientDiscoveryRespSchema: z.ZodUnion<[z.ZodObject<
559
571
  } | undefined);
560
572
  }[];
561
573
  }>>;
574
+ retried: z.ZodOptional<z.ZodNumber>;
575
+ iheGatewayV2: z.ZodOptional<z.ZodBoolean>;
562
576
  patientMatch: z.ZodLiteral<null>;
563
577
  gatewayHomeCommunityId: z.ZodString;
564
578
  }, "strip", z.ZodTypeAny, {
@@ -598,6 +612,8 @@ export declare const inboundPatientDiscoveryRespSchema: z.ZodUnion<[z.ZodObject<
598
612
  } | undefined);
599
613
  }[];
600
614
  } | undefined;
615
+ retried?: number | undefined;
616
+ iheGatewayV2?: boolean | undefined;
601
617
  }, {
602
618
  id: string;
603
619
  timestamp: string;
@@ -635,6 +651,8 @@ export declare const inboundPatientDiscoveryRespSchema: z.ZodUnion<[z.ZodObject<
635
651
  } | undefined);
636
652
  }[];
637
653
  } | undefined;
654
+ retried?: number | undefined;
655
+ iheGatewayV2?: boolean | undefined;
638
656
  }>]>;
639
657
  export type InboundPatientDiscoveryResp = z.infer<typeof inboundPatientDiscoveryRespSchema>;
640
658
  export declare const outboundPatientDiscoveryRespSuccessfulSchema: z.ZodObject<{
@@ -771,6 +789,8 @@ export declare const outboundPatientDiscoveryRespSuccessfulSchema: z.ZodObject<{
771
789
  } | undefined);
772
790
  }[];
773
791
  }>>;
792
+ retried: z.ZodOptional<z.ZodNumber>;
793
+ iheGatewayV2: z.ZodOptional<z.ZodBoolean>;
774
794
  gateway: z.ZodObject<{
775
795
  oid: z.ZodString;
776
796
  url: z.ZodString;
@@ -956,6 +976,8 @@ export declare const outboundPatientDiscoveryRespSuccessfulSchema: z.ZodObject<{
956
976
  } | undefined);
957
977
  }[];
958
978
  } | undefined;
979
+ retried?: number | undefined;
980
+ iheGatewayV2?: boolean | undefined;
959
981
  }, {
960
982
  id: string;
961
983
  timestamp: string;
@@ -1023,6 +1045,8 @@ export declare const outboundPatientDiscoveryRespSuccessfulSchema: z.ZodObject<{
1023
1045
  } | undefined);
1024
1046
  }[];
1025
1047
  } | undefined;
1048
+ retried?: number | undefined;
1049
+ iheGatewayV2?: boolean | undefined;
1026
1050
  }>;
1027
1051
  export declare const outboundPatientDiscoveryRespFaultSchema: z.ZodObject<{
1028
1052
  id: z.ZodString;
@@ -1158,6 +1182,8 @@ export declare const outboundPatientDiscoveryRespFaultSchema: z.ZodObject<{
1158
1182
  } | undefined);
1159
1183
  }[];
1160
1184
  }>>;
1185
+ retried: z.ZodOptional<z.ZodNumber>;
1186
+ iheGatewayV2: z.ZodOptional<z.ZodBoolean>;
1161
1187
  gateway: z.ZodObject<{
1162
1188
  oid: z.ZodString;
1163
1189
  url: z.ZodString;
@@ -1213,6 +1239,8 @@ export declare const outboundPatientDiscoveryRespFaultSchema: z.ZodObject<{
1213
1239
  } | undefined);
1214
1240
  }[];
1215
1241
  } | undefined;
1242
+ retried?: number | undefined;
1243
+ iheGatewayV2?: boolean | undefined;
1216
1244
  }, {
1217
1245
  id: string;
1218
1246
  timestamp: string;
@@ -1254,6 +1282,8 @@ export declare const outboundPatientDiscoveryRespFaultSchema: z.ZodObject<{
1254
1282
  } | undefined);
1255
1283
  }[];
1256
1284
  } | undefined;
1285
+ retried?: number | undefined;
1286
+ iheGatewayV2?: boolean | undefined;
1257
1287
  }>;
1258
1288
  export type OutboundPatientDiscoveryRespSuccessfulSchema = z.infer<typeof outboundPatientDiscoveryRespSuccessfulSchema>;
1259
1289
  export type OutboundPatientDiscoveryRespFaultSchema = z.infer<typeof outboundPatientDiscoveryRespFaultSchema>;
@@ -1391,6 +1421,8 @@ export declare const outboundPatientDiscoveryRespSchema: z.ZodUnion<[z.ZodObject
1391
1421
  } | undefined);
1392
1422
  }[];
1393
1423
  }>>;
1424
+ retried: z.ZodOptional<z.ZodNumber>;
1425
+ iheGatewayV2: z.ZodOptional<z.ZodBoolean>;
1394
1426
  gateway: z.ZodObject<{
1395
1427
  oid: z.ZodString;
1396
1428
  url: z.ZodString;
@@ -1576,6 +1608,8 @@ export declare const outboundPatientDiscoveryRespSchema: z.ZodUnion<[z.ZodObject
1576
1608
  } | undefined);
1577
1609
  }[];
1578
1610
  } | undefined;
1611
+ retried?: number | undefined;
1612
+ iheGatewayV2?: boolean | undefined;
1579
1613
  }, {
1580
1614
  id: string;
1581
1615
  timestamp: string;
@@ -1643,6 +1677,8 @@ export declare const outboundPatientDiscoveryRespSchema: z.ZodUnion<[z.ZodObject
1643
1677
  } | undefined);
1644
1678
  }[];
1645
1679
  } | undefined;
1680
+ retried?: number | undefined;
1681
+ iheGatewayV2?: boolean | undefined;
1646
1682
  }>, z.ZodObject<{
1647
1683
  id: z.ZodString;
1648
1684
  cxId: z.ZodOptional<z.ZodString>;
@@ -1777,6 +1813,8 @@ export declare const outboundPatientDiscoveryRespSchema: z.ZodUnion<[z.ZodObject
1777
1813
  } | undefined);
1778
1814
  }[];
1779
1815
  }>>;
1816
+ retried: z.ZodOptional<z.ZodNumber>;
1817
+ iheGatewayV2: z.ZodOptional<z.ZodBoolean>;
1780
1818
  gateway: z.ZodObject<{
1781
1819
  oid: z.ZodString;
1782
1820
  url: z.ZodString;
@@ -1832,6 +1870,8 @@ export declare const outboundPatientDiscoveryRespSchema: z.ZodUnion<[z.ZodObject
1832
1870
  } | undefined);
1833
1871
  }[];
1834
1872
  } | undefined;
1873
+ retried?: number | undefined;
1874
+ iheGatewayV2?: boolean | undefined;
1835
1875
  }, {
1836
1876
  id: string;
1837
1877
  timestamp: string;
@@ -1873,6 +1913,8 @@ export declare const outboundPatientDiscoveryRespSchema: z.ZodUnion<[z.ZodObject
1873
1913
  } | undefined);
1874
1914
  }[];
1875
1915
  } | undefined;
1916
+ retried?: number | undefined;
1917
+ iheGatewayV2?: boolean | undefined;
1876
1918
  }>]>;
1877
1919
  export type OutboundPatientDiscoveryResp = z.infer<typeof outboundPatientDiscoveryRespSchema>;
1878
1920
  //# sourceMappingURL=patient-discovery-responses.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"patient-discovery-responses.d.ts","sourceRoot":"","sources":["../../../src/models/patient-discovery/patient-discovery-responses.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"patient-discovery-responses.d.ts","sourceRoot":"","sources":["../../../src/models/patient-discovery/patient-discovery-responses.ts"],"names":[],"mappings":"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"}
@@ -492,6 +492,8 @@ export declare const baseResponseSchema: z.ZodObject<{
492
492
  } | undefined);
493
493
  }[];
494
494
  }>>;
495
+ retried: z.ZodOptional<z.ZodNumber>;
496
+ iheGatewayV2: z.ZodOptional<z.ZodBoolean>;
495
497
  }, "strip", z.ZodTypeAny, {
496
498
  id: string;
497
499
  timestamp: string;
@@ -527,6 +529,8 @@ export declare const baseResponseSchema: z.ZodObject<{
527
529
  } | undefined);
528
530
  }[];
529
531
  } | undefined;
532
+ retried?: number | undefined;
533
+ iheGatewayV2?: boolean | undefined;
530
534
  }, {
531
535
  id: string;
532
536
  timestamp: string;
@@ -562,6 +566,8 @@ export declare const baseResponseSchema: z.ZodObject<{
562
566
  } | undefined);
563
567
  }[];
564
568
  } | undefined;
569
+ retried?: number | undefined;
570
+ iheGatewayV2?: boolean | undefined;
565
571
  }>;
566
572
  export type BaseResponse = z.infer<typeof baseResponseSchema>;
567
573
  export declare const baseErrorResponseSchema: z.ZodObject<{
@@ -582,6 +588,8 @@ export declare const baseErrorResponseSchema: z.ZodObject<{
582
588
  id: string;
583
589
  system: string;
584
590
  }>>;
591
+ retried: z.ZodOptional<z.ZodNumber>;
592
+ iheGatewayV2: z.ZodOptional<z.ZodBoolean>;
585
593
  operationOutcome: z.ZodOptional<z.ZodObject<{
586
594
  resourceType: z.ZodString;
587
595
  id: z.ZodString;
@@ -710,6 +718,8 @@ export declare const baseErrorResponseSchema: z.ZodObject<{
710
718
  id: string;
711
719
  system: string;
712
720
  } | undefined;
721
+ retried?: number | undefined;
722
+ iheGatewayV2?: boolean | undefined;
713
723
  operationOutcome?: {
714
724
  id: string;
715
725
  resourceType: string;
@@ -745,6 +755,8 @@ export declare const baseErrorResponseSchema: z.ZodObject<{
745
755
  id: string;
746
756
  system: string;
747
757
  } | undefined;
758
+ retried?: number | undefined;
759
+ iheGatewayV2?: boolean | undefined;
748
760
  operationOutcome?: {
749
761
  id: string;
750
762
  resourceType: string;
@@ -1 +1 @@
1
- {"version":3,"file":"shared.d.ts","sourceRoot":"","sources":["../../src/models/shared.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,eAAe,2CAGuC,CAAC;AAEpE,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAExD,eAAO,MAAM,oBAAoB,+DAA2B,CAAC;AAE7D,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAElE,eAAO,MAAM,eAAe,2CAEwC,CAAC;AAErE,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAU/B,CAAC;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAElE,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM5B,CAAC;AAEH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE5D,eAAO,MAAM,UAAU;;;;;;;;;EAGrB,CAAC;AAEH,MAAM,MAAM,IAAI,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AAE9C,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;IAGxB,CAAC;AAEH,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAEpD,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAItB,CAAC;AACH,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEhD,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAIjC,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE,eAAO,MAAM,4BAA4B;;;;;;;;;EAGvC,CAAC;AACH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAEzE,eAAO,MAAM,kBAAkB;;;IAG7B,sDAAsD;;IAEtD,sDAAsD;;IAEtD,sDAAsD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMtD,CAAC;AACH,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE9D,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAElC,CAAC;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAExE,wBAAgB,mBAAmB,CAAC,GAAG,EAAE,OAAO,GAAG,GAAG,IAAI,iBAAiB,CAG1E;AAED,eAAO,MAAM,gBAAgB;;;;;;;;;EAG3B,CAAC;AACH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAE1D,eAAO,MAAM,iBAAiB;;;;;;;;;;;;EAI5B,CAAC;AACH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE5D,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2BlC,CAAC;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC"}
1
+ {"version":3,"file":"shared.d.ts","sourceRoot":"","sources":["../../src/models/shared.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB,eAAO,MAAM,eAAe,2CAGuC,CAAC;AAEpE,MAAM,MAAM,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,eAAe,CAAC,CAAC;AAExD,eAAO,MAAM,oBAAoB,+DAA2B,CAAC;AAE7D,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAElE,eAAO,MAAM,eAAe,2CAEwC,CAAC;AAErE,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAU/B,CAAC;AACH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAElE,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAM5B,CAAC;AAEH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE5D,eAAO,MAAM,UAAU;;;;;;;;;EAGrB,CAAC;AAEH,MAAM,MAAM,IAAI,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC;AAE9C,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;IAGxB,CAAC;AAEH,MAAM,MAAM,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;AAEpD,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAItB,CAAC;AACH,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC;AAEhD,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAIjC,CAAC;AACH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE,eAAO,MAAM,4BAA4B;;;;;;;;;EAGvC,CAAC;AACH,MAAM,MAAM,aAAa,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAEzE,eAAO,MAAM,kBAAkB;;;IAG7B,sDAAsD;;IAEtD,sDAAsD;;IAEtD,sDAAsD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQtD,CAAC;AACH,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAE9D,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAElC,CAAC;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAExE,wBAAgB,mBAAmB,CAAC,GAAG,EAAE,OAAO,GAAG,GAAG,IAAI,iBAAiB,CAG1E;AAED,eAAO,MAAM,gBAAgB;;;;;;;;;EAG3B,CAAC;AACH,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAE1D,eAAO,MAAM,iBAAiB;;;;;;;;;;;;EAI5B,CAAC;AACH,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE5D,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2BlC,CAAC;AACH,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC"}
@@ -64,6 +64,8 @@ exports.baseResponseSchema = zod_1.z.object({
64
64
  externalGatewayPatient: exports.externalGatewayPatientSchema.optional(),
65
65
  patientId: zod_1.z.string().nullish(),
66
66
  operationOutcome: exports.operationOutcomeSchema.optional(),
67
+ retried: zod_1.z.number().optional(),
68
+ iheGatewayV2: zod_1.z.boolean().optional(),
67
69
  });
68
70
  exports.baseErrorResponseSchema = exports.baseResponseSchema.extend({
69
71
  operationOutcome: exports.operationOutcomeSchema.optional(),
@@ -1 +1 @@
1
- {"version":3,"file":"shared.js","sourceRoot":"","sources":["../../src/models/shared.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"shared.js","sourceRoot":"","sources":["../../src/models/shared.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metriport/ihe-gateway-sdk",
3
- "version": "0.9.5",
3
+ "version": "0.9.6",
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.9.7",
55
+ "@metriport/shared": "^0.9.8",
56
56
  "axios": "^1.6.0",
57
57
  "zod": "^3.22.1"
58
58
  },
59
- "gitHead": "9f433dc6769599d08e34010319d1ac4a8fed57df"
59
+ "gitHead": "dfddbbe2a55f7deb2793a0031c49b9ab09898596"
60
60
  }