@metriport/commonwell-sdk 7.0.2 → 7.0.3
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/address.d.ts +4 -6
- package/dist/models/address.d.ts.map +1 -1
- package/dist/models/address.js +3 -5
- package/dist/models/address.js.map +1 -1
- package/dist/models/contact.d.ts +2 -3
- package/dist/models/contact.d.ts.map +1 -1
- package/dist/models/contact.js +2 -17
- package/dist/models/contact.js.map +1 -1
- package/dist/models/demographics.d.ts +18 -18
- package/dist/models/document.d.ts +280 -280
- package/dist/models/document.js +1 -1
- package/dist/models/document.js.map +1 -1
- package/dist/models/facility.d.ts +6 -6
- package/dist/models/human-name.d.ts +2 -3
- package/dist/models/human-name.d.ts.map +1 -1
- package/dist/models/human-name.js +2 -4
- package/dist/models/human-name.js.map +1 -1
- package/dist/models/identifier.d.ts +8 -16
- package/dist/models/identifier.d.ts.map +1 -1
- package/dist/models/identifier.js +5 -35
- package/dist/models/identifier.js.map +1 -1
- package/dist/models/organization.d.ts +89 -89
- package/dist/models/patient-organization.d.ts +2 -2
- package/dist/models/patient.d.ts +276 -276
- package/dist/models/reference.d.ts +6 -6
- package/package.json +3 -3
|
@@ -52,20 +52,20 @@ declare const organizationBaseSchema: z.ZodObject<{
|
|
|
52
52
|
country: string;
|
|
53
53
|
postalCode: string;
|
|
54
54
|
address1: string;
|
|
55
|
+
address2?: string | null | undefined;
|
|
55
56
|
phone?: string | null | undefined;
|
|
56
57
|
fax?: string | null | undefined;
|
|
57
58
|
email?: string | null | undefined;
|
|
58
|
-
address2?: string | null | undefined;
|
|
59
59
|
}, {
|
|
60
60
|
city: string;
|
|
61
61
|
country: string;
|
|
62
62
|
postalCode: string;
|
|
63
63
|
address1: string;
|
|
64
64
|
state?: unknown;
|
|
65
|
+
address2?: string | null | undefined;
|
|
65
66
|
phone?: string | null | undefined;
|
|
66
67
|
fax?: string | null | undefined;
|
|
67
68
|
email?: string | null | undefined;
|
|
68
|
-
address2?: string | null | undefined;
|
|
69
69
|
}>, "many">;
|
|
70
70
|
/** Gateway search radius in miles. One of: 50, 100, 150 */
|
|
71
71
|
searchRadius: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
@@ -75,15 +75,15 @@ declare const organizationBaseSchema: z.ZodObject<{
|
|
|
75
75
|
email: z.ZodString;
|
|
76
76
|
phone: z.ZodString;
|
|
77
77
|
}, "strip", z.ZodTypeAny, {
|
|
78
|
-
phone: string;
|
|
79
|
-
email: string;
|
|
80
78
|
name: string;
|
|
81
79
|
title: string;
|
|
82
|
-
}, {
|
|
83
80
|
phone: string;
|
|
84
81
|
email: string;
|
|
82
|
+
}, {
|
|
85
83
|
name: string;
|
|
86
84
|
title: string;
|
|
85
|
+
phone: string;
|
|
86
|
+
email: string;
|
|
87
87
|
}>, "many">;
|
|
88
88
|
isLegacyBridgeEnabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
89
89
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -101,16 +101,16 @@ declare const organizationBaseSchema: z.ZodObject<{
|
|
|
101
101
|
country: string;
|
|
102
102
|
postalCode: string;
|
|
103
103
|
address1: string;
|
|
104
|
+
address2?: string | null | undefined;
|
|
104
105
|
phone?: string | null | undefined;
|
|
105
106
|
fax?: string | null | undefined;
|
|
106
107
|
email?: string | null | undefined;
|
|
107
|
-
address2?: string | null | undefined;
|
|
108
108
|
}[];
|
|
109
109
|
technicalContacts: {
|
|
110
|
-
phone: string;
|
|
111
|
-
email: string;
|
|
112
110
|
name: string;
|
|
113
111
|
title: string;
|
|
112
|
+
phone: string;
|
|
113
|
+
email: string;
|
|
114
114
|
}[];
|
|
115
115
|
npiType1?: string | null | undefined;
|
|
116
116
|
npiType2?: string | null | undefined;
|
|
@@ -141,16 +141,16 @@ declare const organizationBaseSchema: z.ZodObject<{
|
|
|
141
141
|
postalCode: string;
|
|
142
142
|
address1: string;
|
|
143
143
|
state?: unknown;
|
|
144
|
+
address2?: string | null | undefined;
|
|
144
145
|
phone?: string | null | undefined;
|
|
145
146
|
fax?: string | null | undefined;
|
|
146
147
|
email?: string | null | undefined;
|
|
147
|
-
address2?: string | null | undefined;
|
|
148
148
|
}[];
|
|
149
149
|
technicalContacts: {
|
|
150
|
-
phone: string;
|
|
151
|
-
email: string;
|
|
152
150
|
name: string;
|
|
153
151
|
title: string;
|
|
152
|
+
phone: string;
|
|
153
|
+
email: string;
|
|
154
154
|
}[];
|
|
155
155
|
npiType1?: string | null | undefined;
|
|
156
156
|
npiType2?: string | null | undefined;
|
|
@@ -221,20 +221,20 @@ export declare const organizationSchemaWithNetworkInfo: z.ZodObject<z.objectUtil
|
|
|
221
221
|
country: string;
|
|
222
222
|
postalCode: string;
|
|
223
223
|
address1: string;
|
|
224
|
+
address2?: string | null | undefined;
|
|
224
225
|
phone?: string | null | undefined;
|
|
225
226
|
fax?: string | null | undefined;
|
|
226
227
|
email?: string | null | undefined;
|
|
227
|
-
address2?: string | null | undefined;
|
|
228
228
|
}, {
|
|
229
229
|
city: string;
|
|
230
230
|
country: string;
|
|
231
231
|
postalCode: string;
|
|
232
232
|
address1: string;
|
|
233
233
|
state?: unknown;
|
|
234
|
+
address2?: string | null | undefined;
|
|
234
235
|
phone?: string | null | undefined;
|
|
235
236
|
fax?: string | null | undefined;
|
|
236
237
|
email?: string | null | undefined;
|
|
237
|
-
address2?: string | null | undefined;
|
|
238
238
|
}>, "many">;
|
|
239
239
|
/** Gateway search radius in miles. One of: 50, 100, 150 */
|
|
240
240
|
searchRadius: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
@@ -244,15 +244,15 @@ export declare const organizationSchemaWithNetworkInfo: z.ZodObject<z.objectUtil
|
|
|
244
244
|
email: z.ZodString;
|
|
245
245
|
phone: z.ZodString;
|
|
246
246
|
}, "strip", z.ZodTypeAny, {
|
|
247
|
-
phone: string;
|
|
248
|
-
email: string;
|
|
249
247
|
name: string;
|
|
250
248
|
title: string;
|
|
251
|
-
}, {
|
|
252
249
|
phone: string;
|
|
253
250
|
email: string;
|
|
251
|
+
}, {
|
|
254
252
|
name: string;
|
|
255
253
|
title: string;
|
|
254
|
+
phone: string;
|
|
255
|
+
email: string;
|
|
256
256
|
}>, "many">;
|
|
257
257
|
isLegacyBridgeEnabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
258
258
|
}, {
|
|
@@ -354,16 +354,16 @@ export declare const organizationSchemaWithNetworkInfo: z.ZodObject<z.objectUtil
|
|
|
354
354
|
country: string;
|
|
355
355
|
postalCode: string;
|
|
356
356
|
address1: string;
|
|
357
|
+
address2?: string | null | undefined;
|
|
357
358
|
phone?: string | null | undefined;
|
|
358
359
|
fax?: string | null | undefined;
|
|
359
360
|
email?: string | null | undefined;
|
|
360
|
-
address2?: string | null | undefined;
|
|
361
361
|
}[];
|
|
362
362
|
technicalContacts: {
|
|
363
|
-
phone: string;
|
|
364
|
-
email: string;
|
|
365
363
|
name: string;
|
|
366
364
|
title: string;
|
|
365
|
+
phone: string;
|
|
366
|
+
email: string;
|
|
367
367
|
}[];
|
|
368
368
|
networks: {
|
|
369
369
|
purposeOfUse: {
|
|
@@ -421,16 +421,16 @@ export declare const organizationSchemaWithNetworkInfo: z.ZodObject<z.objectUtil
|
|
|
421
421
|
postalCode: string;
|
|
422
422
|
address1: string;
|
|
423
423
|
state?: unknown;
|
|
424
|
+
address2?: string | null | undefined;
|
|
424
425
|
phone?: string | null | undefined;
|
|
425
426
|
fax?: string | null | undefined;
|
|
426
427
|
email?: string | null | undefined;
|
|
427
|
-
address2?: string | null | undefined;
|
|
428
428
|
}[];
|
|
429
429
|
technicalContacts: {
|
|
430
|
-
phone: string;
|
|
431
|
-
email: string;
|
|
432
430
|
name: string;
|
|
433
431
|
title: string;
|
|
432
|
+
phone: string;
|
|
433
|
+
email: string;
|
|
434
434
|
}[];
|
|
435
435
|
networks: {
|
|
436
436
|
purposeOfUse: {
|
|
@@ -528,20 +528,20 @@ export declare const organizationSchemaWithoutNetworkInfo: z.ZodObject<Omit<z.ob
|
|
|
528
528
|
country: string;
|
|
529
529
|
postalCode: string;
|
|
530
530
|
address1: string;
|
|
531
|
+
address2?: string | null | undefined;
|
|
531
532
|
phone?: string | null | undefined;
|
|
532
533
|
fax?: string | null | undefined;
|
|
533
534
|
email?: string | null | undefined;
|
|
534
|
-
address2?: string | null | undefined;
|
|
535
535
|
}, {
|
|
536
536
|
city: string;
|
|
537
537
|
country: string;
|
|
538
538
|
postalCode: string;
|
|
539
539
|
address1: string;
|
|
540
540
|
state?: unknown;
|
|
541
|
+
address2?: string | null | undefined;
|
|
541
542
|
phone?: string | null | undefined;
|
|
542
543
|
fax?: string | null | undefined;
|
|
543
544
|
email?: string | null | undefined;
|
|
544
|
-
address2?: string | null | undefined;
|
|
545
545
|
}>, "many">;
|
|
546
546
|
/** Gateway search radius in miles. One of: 50, 100, 150 */
|
|
547
547
|
searchRadius: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
@@ -551,15 +551,15 @@ export declare const organizationSchemaWithoutNetworkInfo: z.ZodObject<Omit<z.ob
|
|
|
551
551
|
email: z.ZodString;
|
|
552
552
|
phone: z.ZodString;
|
|
553
553
|
}, "strip", z.ZodTypeAny, {
|
|
554
|
-
phone: string;
|
|
555
|
-
email: string;
|
|
556
554
|
name: string;
|
|
557
555
|
title: string;
|
|
558
|
-
}, {
|
|
559
556
|
phone: string;
|
|
560
557
|
email: string;
|
|
558
|
+
}, {
|
|
561
559
|
name: string;
|
|
562
560
|
title: string;
|
|
561
|
+
phone: string;
|
|
562
|
+
email: string;
|
|
563
563
|
}>, "many">;
|
|
564
564
|
isLegacyBridgeEnabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
565
565
|
}, {
|
|
@@ -661,16 +661,16 @@ export declare const organizationSchemaWithoutNetworkInfo: z.ZodObject<Omit<z.ob
|
|
|
661
661
|
country: string;
|
|
662
662
|
postalCode: string;
|
|
663
663
|
address1: string;
|
|
664
|
+
address2?: string | null | undefined;
|
|
664
665
|
phone?: string | null | undefined;
|
|
665
666
|
fax?: string | null | undefined;
|
|
666
667
|
email?: string | null | undefined;
|
|
667
|
-
address2?: string | null | undefined;
|
|
668
668
|
}[];
|
|
669
669
|
technicalContacts: {
|
|
670
|
-
phone: string;
|
|
671
|
-
email: string;
|
|
672
670
|
name: string;
|
|
673
671
|
title: string;
|
|
672
|
+
phone: string;
|
|
673
|
+
email: string;
|
|
674
674
|
}[];
|
|
675
675
|
networks: {
|
|
676
676
|
purposeOfUse: {
|
|
@@ -721,16 +721,16 @@ export declare const organizationSchemaWithoutNetworkInfo: z.ZodObject<Omit<z.ob
|
|
|
721
721
|
postalCode: string;
|
|
722
722
|
address1: string;
|
|
723
723
|
state?: unknown;
|
|
724
|
+
address2?: string | null | undefined;
|
|
724
725
|
phone?: string | null | undefined;
|
|
725
726
|
fax?: string | null | undefined;
|
|
726
727
|
email?: string | null | undefined;
|
|
727
|
-
address2?: string | null | undefined;
|
|
728
728
|
}[];
|
|
729
729
|
technicalContacts: {
|
|
730
|
-
phone: string;
|
|
731
|
-
email: string;
|
|
732
730
|
name: string;
|
|
733
731
|
title: string;
|
|
732
|
+
phone: string;
|
|
733
|
+
email: string;
|
|
734
734
|
}[];
|
|
735
735
|
networks: {
|
|
736
736
|
purposeOfUse: {
|
|
@@ -821,20 +821,20 @@ export declare const organizationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
|
|
|
821
821
|
country: string;
|
|
822
822
|
postalCode: string;
|
|
823
823
|
address1: string;
|
|
824
|
+
address2?: string | null | undefined;
|
|
824
825
|
phone?: string | null | undefined;
|
|
825
826
|
fax?: string | null | undefined;
|
|
826
827
|
email?: string | null | undefined;
|
|
827
|
-
address2?: string | null | undefined;
|
|
828
828
|
}, {
|
|
829
829
|
city: string;
|
|
830
830
|
country: string;
|
|
831
831
|
postalCode: string;
|
|
832
832
|
address1: string;
|
|
833
833
|
state?: unknown;
|
|
834
|
+
address2?: string | null | undefined;
|
|
834
835
|
phone?: string | null | undefined;
|
|
835
836
|
fax?: string | null | undefined;
|
|
836
837
|
email?: string | null | undefined;
|
|
837
|
-
address2?: string | null | undefined;
|
|
838
838
|
}>, "many">;
|
|
839
839
|
/** Gateway search radius in miles. One of: 50, 100, 150 */
|
|
840
840
|
searchRadius: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
@@ -844,15 +844,15 @@ export declare const organizationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
|
|
|
844
844
|
email: z.ZodString;
|
|
845
845
|
phone: z.ZodString;
|
|
846
846
|
}, "strip", z.ZodTypeAny, {
|
|
847
|
-
phone: string;
|
|
848
|
-
email: string;
|
|
849
847
|
name: string;
|
|
850
848
|
title: string;
|
|
851
|
-
}, {
|
|
852
849
|
phone: string;
|
|
853
850
|
email: string;
|
|
851
|
+
}, {
|
|
854
852
|
name: string;
|
|
855
853
|
title: string;
|
|
854
|
+
phone: string;
|
|
855
|
+
email: string;
|
|
856
856
|
}>, "many">;
|
|
857
857
|
isLegacyBridgeEnabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
858
858
|
}, {
|
|
@@ -954,16 +954,16 @@ export declare const organizationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
|
|
|
954
954
|
country: string;
|
|
955
955
|
postalCode: string;
|
|
956
956
|
address1: string;
|
|
957
|
+
address2?: string | null | undefined;
|
|
957
958
|
phone?: string | null | undefined;
|
|
958
959
|
fax?: string | null | undefined;
|
|
959
960
|
email?: string | null | undefined;
|
|
960
|
-
address2?: string | null | undefined;
|
|
961
961
|
}[];
|
|
962
962
|
technicalContacts: {
|
|
963
|
-
phone: string;
|
|
964
|
-
email: string;
|
|
965
963
|
name: string;
|
|
966
964
|
title: string;
|
|
965
|
+
phone: string;
|
|
966
|
+
email: string;
|
|
967
967
|
}[];
|
|
968
968
|
networks: {
|
|
969
969
|
purposeOfUse: {
|
|
@@ -1021,16 +1021,16 @@ export declare const organizationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
|
|
|
1021
1021
|
postalCode: string;
|
|
1022
1022
|
address1: string;
|
|
1023
1023
|
state?: unknown;
|
|
1024
|
+
address2?: string | null | undefined;
|
|
1024
1025
|
phone?: string | null | undefined;
|
|
1025
1026
|
fax?: string | null | undefined;
|
|
1026
1027
|
email?: string | null | undefined;
|
|
1027
|
-
address2?: string | null | undefined;
|
|
1028
1028
|
}[];
|
|
1029
1029
|
technicalContacts: {
|
|
1030
|
-
phone: string;
|
|
1031
|
-
email: string;
|
|
1032
1030
|
name: string;
|
|
1033
1031
|
title: string;
|
|
1032
|
+
phone: string;
|
|
1033
|
+
email: string;
|
|
1034
1034
|
}[];
|
|
1035
1035
|
networks: {
|
|
1036
1036
|
purposeOfUse: {
|
|
@@ -1126,20 +1126,20 @@ export declare const organizationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
|
|
|
1126
1126
|
country: string;
|
|
1127
1127
|
postalCode: string;
|
|
1128
1128
|
address1: string;
|
|
1129
|
+
address2?: string | null | undefined;
|
|
1129
1130
|
phone?: string | null | undefined;
|
|
1130
1131
|
fax?: string | null | undefined;
|
|
1131
1132
|
email?: string | null | undefined;
|
|
1132
|
-
address2?: string | null | undefined;
|
|
1133
1133
|
}, {
|
|
1134
1134
|
city: string;
|
|
1135
1135
|
country: string;
|
|
1136
1136
|
postalCode: string;
|
|
1137
1137
|
address1: string;
|
|
1138
1138
|
state?: unknown;
|
|
1139
|
+
address2?: string | null | undefined;
|
|
1139
1140
|
phone?: string | null | undefined;
|
|
1140
1141
|
fax?: string | null | undefined;
|
|
1141
1142
|
email?: string | null | undefined;
|
|
1142
|
-
address2?: string | null | undefined;
|
|
1143
1143
|
}>, "many">;
|
|
1144
1144
|
/** Gateway search radius in miles. One of: 50, 100, 150 */
|
|
1145
1145
|
searchRadius: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
@@ -1149,15 +1149,15 @@ export declare const organizationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
|
|
|
1149
1149
|
email: z.ZodString;
|
|
1150
1150
|
phone: z.ZodString;
|
|
1151
1151
|
}, "strip", z.ZodTypeAny, {
|
|
1152
|
-
phone: string;
|
|
1153
|
-
email: string;
|
|
1154
1152
|
name: string;
|
|
1155
1153
|
title: string;
|
|
1156
|
-
}, {
|
|
1157
1154
|
phone: string;
|
|
1158
1155
|
email: string;
|
|
1156
|
+
}, {
|
|
1159
1157
|
name: string;
|
|
1160
1158
|
title: string;
|
|
1159
|
+
phone: string;
|
|
1160
|
+
email: string;
|
|
1161
1161
|
}>, "many">;
|
|
1162
1162
|
isLegacyBridgeEnabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1163
1163
|
}, {
|
|
@@ -1259,16 +1259,16 @@ export declare const organizationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
|
|
|
1259
1259
|
country: string;
|
|
1260
1260
|
postalCode: string;
|
|
1261
1261
|
address1: string;
|
|
1262
|
+
address2?: string | null | undefined;
|
|
1262
1263
|
phone?: string | null | undefined;
|
|
1263
1264
|
fax?: string | null | undefined;
|
|
1264
1265
|
email?: string | null | undefined;
|
|
1265
|
-
address2?: string | null | undefined;
|
|
1266
1266
|
}[];
|
|
1267
1267
|
technicalContacts: {
|
|
1268
|
-
phone: string;
|
|
1269
|
-
email: string;
|
|
1270
1268
|
name: string;
|
|
1271
1269
|
title: string;
|
|
1270
|
+
phone: string;
|
|
1271
|
+
email: string;
|
|
1272
1272
|
}[];
|
|
1273
1273
|
networks: {
|
|
1274
1274
|
purposeOfUse: {
|
|
@@ -1319,16 +1319,16 @@ export declare const organizationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
|
|
|
1319
1319
|
postalCode: string;
|
|
1320
1320
|
address1: string;
|
|
1321
1321
|
state?: unknown;
|
|
1322
|
+
address2?: string | null | undefined;
|
|
1322
1323
|
phone?: string | null | undefined;
|
|
1323
1324
|
fax?: string | null | undefined;
|
|
1324
1325
|
email?: string | null | undefined;
|
|
1325
|
-
address2?: string | null | undefined;
|
|
1326
1326
|
}[];
|
|
1327
1327
|
technicalContacts: {
|
|
1328
|
-
phone: string;
|
|
1329
|
-
email: string;
|
|
1330
1328
|
name: string;
|
|
1331
1329
|
title: string;
|
|
1330
|
+
phone: string;
|
|
1331
|
+
email: string;
|
|
1332
1332
|
}[];
|
|
1333
1333
|
networks: {
|
|
1334
1334
|
purposeOfUse: {
|
|
@@ -1423,20 +1423,20 @@ export declare const organizationListSchema: z.ZodObject<{
|
|
|
1423
1423
|
country: string;
|
|
1424
1424
|
postalCode: string;
|
|
1425
1425
|
address1: string;
|
|
1426
|
+
address2?: string | null | undefined;
|
|
1426
1427
|
phone?: string | null | undefined;
|
|
1427
1428
|
fax?: string | null | undefined;
|
|
1428
1429
|
email?: string | null | undefined;
|
|
1429
|
-
address2?: string | null | undefined;
|
|
1430
1430
|
}, {
|
|
1431
1431
|
city: string;
|
|
1432
1432
|
country: string;
|
|
1433
1433
|
postalCode: string;
|
|
1434
1434
|
address1: string;
|
|
1435
1435
|
state?: unknown;
|
|
1436
|
+
address2?: string | null | undefined;
|
|
1436
1437
|
phone?: string | null | undefined;
|
|
1437
1438
|
fax?: string | null | undefined;
|
|
1438
1439
|
email?: string | null | undefined;
|
|
1439
|
-
address2?: string | null | undefined;
|
|
1440
1440
|
}>, "many">;
|
|
1441
1441
|
/** Gateway search radius in miles. One of: 50, 100, 150 */
|
|
1442
1442
|
searchRadius: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
@@ -1446,15 +1446,15 @@ export declare const organizationListSchema: z.ZodObject<{
|
|
|
1446
1446
|
email: z.ZodString;
|
|
1447
1447
|
phone: z.ZodString;
|
|
1448
1448
|
}, "strip", z.ZodTypeAny, {
|
|
1449
|
-
phone: string;
|
|
1450
|
-
email: string;
|
|
1451
1449
|
name: string;
|
|
1452
1450
|
title: string;
|
|
1453
|
-
}, {
|
|
1454
1451
|
phone: string;
|
|
1455
1452
|
email: string;
|
|
1453
|
+
}, {
|
|
1456
1454
|
name: string;
|
|
1457
1455
|
title: string;
|
|
1456
|
+
phone: string;
|
|
1457
|
+
email: string;
|
|
1458
1458
|
}>, "many">;
|
|
1459
1459
|
isLegacyBridgeEnabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1460
1460
|
}, {
|
|
@@ -1556,16 +1556,16 @@ export declare const organizationListSchema: z.ZodObject<{
|
|
|
1556
1556
|
country: string;
|
|
1557
1557
|
postalCode: string;
|
|
1558
1558
|
address1: string;
|
|
1559
|
+
address2?: string | null | undefined;
|
|
1559
1560
|
phone?: string | null | undefined;
|
|
1560
1561
|
fax?: string | null | undefined;
|
|
1561
1562
|
email?: string | null | undefined;
|
|
1562
|
-
address2?: string | null | undefined;
|
|
1563
1563
|
}[];
|
|
1564
1564
|
technicalContacts: {
|
|
1565
|
-
phone: string;
|
|
1566
|
-
email: string;
|
|
1567
1565
|
name: string;
|
|
1568
1566
|
title: string;
|
|
1567
|
+
phone: string;
|
|
1568
|
+
email: string;
|
|
1569
1569
|
}[];
|
|
1570
1570
|
networks: {
|
|
1571
1571
|
purposeOfUse: {
|
|
@@ -1623,16 +1623,16 @@ export declare const organizationListSchema: z.ZodObject<{
|
|
|
1623
1623
|
postalCode: string;
|
|
1624
1624
|
address1: string;
|
|
1625
1625
|
state?: unknown;
|
|
1626
|
+
address2?: string | null | undefined;
|
|
1626
1627
|
phone?: string | null | undefined;
|
|
1627
1628
|
fax?: string | null | undefined;
|
|
1628
1629
|
email?: string | null | undefined;
|
|
1629
|
-
address2?: string | null | undefined;
|
|
1630
1630
|
}[];
|
|
1631
1631
|
technicalContacts: {
|
|
1632
|
-
phone: string;
|
|
1633
|
-
email: string;
|
|
1634
1632
|
name: string;
|
|
1635
1633
|
title: string;
|
|
1634
|
+
phone: string;
|
|
1635
|
+
email: string;
|
|
1636
1636
|
}[];
|
|
1637
1637
|
networks: {
|
|
1638
1638
|
purposeOfUse: {
|
|
@@ -1728,20 +1728,20 @@ export declare const organizationListSchema: z.ZodObject<{
|
|
|
1728
1728
|
country: string;
|
|
1729
1729
|
postalCode: string;
|
|
1730
1730
|
address1: string;
|
|
1731
|
+
address2?: string | null | undefined;
|
|
1731
1732
|
phone?: string | null | undefined;
|
|
1732
1733
|
fax?: string | null | undefined;
|
|
1733
1734
|
email?: string | null | undefined;
|
|
1734
|
-
address2?: string | null | undefined;
|
|
1735
1735
|
}, {
|
|
1736
1736
|
city: string;
|
|
1737
1737
|
country: string;
|
|
1738
1738
|
postalCode: string;
|
|
1739
1739
|
address1: string;
|
|
1740
1740
|
state?: unknown;
|
|
1741
|
+
address2?: string | null | undefined;
|
|
1741
1742
|
phone?: string | null | undefined;
|
|
1742
1743
|
fax?: string | null | undefined;
|
|
1743
1744
|
email?: string | null | undefined;
|
|
1744
|
-
address2?: string | null | undefined;
|
|
1745
1745
|
}>, "many">;
|
|
1746
1746
|
/** Gateway search radius in miles. One of: 50, 100, 150 */
|
|
1747
1747
|
searchRadius: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNumber, number, number>>>;
|
|
@@ -1751,15 +1751,15 @@ export declare const organizationListSchema: z.ZodObject<{
|
|
|
1751
1751
|
email: z.ZodString;
|
|
1752
1752
|
phone: z.ZodString;
|
|
1753
1753
|
}, "strip", z.ZodTypeAny, {
|
|
1754
|
-
phone: string;
|
|
1755
|
-
email: string;
|
|
1756
1754
|
name: string;
|
|
1757
1755
|
title: string;
|
|
1758
|
-
}, {
|
|
1759
1756
|
phone: string;
|
|
1760
1757
|
email: string;
|
|
1758
|
+
}, {
|
|
1761
1759
|
name: string;
|
|
1762
1760
|
title: string;
|
|
1761
|
+
phone: string;
|
|
1762
|
+
email: string;
|
|
1763
1763
|
}>, "many">;
|
|
1764
1764
|
isLegacyBridgeEnabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1765
1765
|
}, {
|
|
@@ -1861,16 +1861,16 @@ export declare const organizationListSchema: z.ZodObject<{
|
|
|
1861
1861
|
country: string;
|
|
1862
1862
|
postalCode: string;
|
|
1863
1863
|
address1: string;
|
|
1864
|
+
address2?: string | null | undefined;
|
|
1864
1865
|
phone?: string | null | undefined;
|
|
1865
1866
|
fax?: string | null | undefined;
|
|
1866
1867
|
email?: string | null | undefined;
|
|
1867
|
-
address2?: string | null | undefined;
|
|
1868
1868
|
}[];
|
|
1869
1869
|
technicalContacts: {
|
|
1870
|
-
phone: string;
|
|
1871
|
-
email: string;
|
|
1872
1870
|
name: string;
|
|
1873
1871
|
title: string;
|
|
1872
|
+
phone: string;
|
|
1873
|
+
email: string;
|
|
1874
1874
|
}[];
|
|
1875
1875
|
networks: {
|
|
1876
1876
|
purposeOfUse: {
|
|
@@ -1921,16 +1921,16 @@ export declare const organizationListSchema: z.ZodObject<{
|
|
|
1921
1921
|
postalCode: string;
|
|
1922
1922
|
address1: string;
|
|
1923
1923
|
state?: unknown;
|
|
1924
|
+
address2?: string | null | undefined;
|
|
1924
1925
|
phone?: string | null | undefined;
|
|
1925
1926
|
fax?: string | null | undefined;
|
|
1926
1927
|
email?: string | null | undefined;
|
|
1927
|
-
address2?: string | null | undefined;
|
|
1928
1928
|
}[];
|
|
1929
1929
|
technicalContacts: {
|
|
1930
|
-
phone: string;
|
|
1931
|
-
email: string;
|
|
1932
1930
|
name: string;
|
|
1933
1931
|
title: string;
|
|
1932
|
+
phone: string;
|
|
1933
|
+
email: string;
|
|
1934
1934
|
}[];
|
|
1935
1935
|
networks: {
|
|
1936
1936
|
purposeOfUse: {
|
|
@@ -1986,16 +1986,16 @@ export declare const organizationListSchema: z.ZodObject<{
|
|
|
1986
1986
|
country: string;
|
|
1987
1987
|
postalCode: string;
|
|
1988
1988
|
address1: string;
|
|
1989
|
+
address2?: string | null | undefined;
|
|
1989
1990
|
phone?: string | null | undefined;
|
|
1990
1991
|
fax?: string | null | undefined;
|
|
1991
1992
|
email?: string | null | undefined;
|
|
1992
|
-
address2?: string | null | undefined;
|
|
1993
1993
|
}[];
|
|
1994
1994
|
technicalContacts: {
|
|
1995
|
-
phone: string;
|
|
1996
|
-
email: string;
|
|
1997
1995
|
name: string;
|
|
1998
1996
|
title: string;
|
|
1997
|
+
phone: string;
|
|
1998
|
+
email: string;
|
|
1999
1999
|
}[];
|
|
2000
2000
|
networks: {
|
|
2001
2001
|
purposeOfUse: {
|
|
@@ -2053,16 +2053,16 @@ export declare const organizationListSchema: z.ZodObject<{
|
|
|
2053
2053
|
country: string;
|
|
2054
2054
|
postalCode: string;
|
|
2055
2055
|
address1: string;
|
|
2056
|
+
address2?: string | null | undefined;
|
|
2056
2057
|
phone?: string | null | undefined;
|
|
2057
2058
|
fax?: string | null | undefined;
|
|
2058
2059
|
email?: string | null | undefined;
|
|
2059
|
-
address2?: string | null | undefined;
|
|
2060
2060
|
}[];
|
|
2061
2061
|
technicalContacts: {
|
|
2062
|
-
phone: string;
|
|
2063
|
-
email: string;
|
|
2064
2062
|
name: string;
|
|
2065
2063
|
title: string;
|
|
2064
|
+
phone: string;
|
|
2065
|
+
email: string;
|
|
2066
2066
|
}[];
|
|
2067
2067
|
networks: {
|
|
2068
2068
|
purposeOfUse: {
|
|
@@ -2118,16 +2118,16 @@ export declare const organizationListSchema: z.ZodObject<{
|
|
|
2118
2118
|
postalCode: string;
|
|
2119
2119
|
address1: string;
|
|
2120
2120
|
state?: unknown;
|
|
2121
|
+
address2?: string | null | undefined;
|
|
2121
2122
|
phone?: string | null | undefined;
|
|
2122
2123
|
fax?: string | null | undefined;
|
|
2123
2124
|
email?: string | null | undefined;
|
|
2124
|
-
address2?: string | null | undefined;
|
|
2125
2125
|
}[];
|
|
2126
2126
|
technicalContacts: {
|
|
2127
|
-
phone: string;
|
|
2128
|
-
email: string;
|
|
2129
2127
|
name: string;
|
|
2130
2128
|
title: string;
|
|
2129
|
+
phone: string;
|
|
2130
|
+
email: string;
|
|
2131
2131
|
}[];
|
|
2132
2132
|
networks: {
|
|
2133
2133
|
purposeOfUse: {
|
|
@@ -2185,16 +2185,16 @@ export declare const organizationListSchema: z.ZodObject<{
|
|
|
2185
2185
|
postalCode: string;
|
|
2186
2186
|
address1: string;
|
|
2187
2187
|
state?: unknown;
|
|
2188
|
+
address2?: string | null | undefined;
|
|
2188
2189
|
phone?: string | null | undefined;
|
|
2189
2190
|
fax?: string | null | undefined;
|
|
2190
2191
|
email?: string | null | undefined;
|
|
2191
|
-
address2?: string | null | undefined;
|
|
2192
2192
|
}[];
|
|
2193
2193
|
technicalContacts: {
|
|
2194
|
-
phone: string;
|
|
2195
|
-
email: string;
|
|
2196
2194
|
name: string;
|
|
2197
2195
|
title: string;
|
|
2196
|
+
phone: string;
|
|
2197
|
+
email: string;
|
|
2198
2198
|
}[];
|
|
2199
2199
|
networks: {
|
|
2200
2200
|
purposeOfUse: {
|
|
@@ -3,8 +3,8 @@ export declare const managingOrganizationSchema: z.ZodObject<{
|
|
|
3
3
|
identifier: z.ZodArray<z.ZodObject<Pick<{
|
|
4
4
|
value: z.ZodString;
|
|
5
5
|
system: z.ZodString;
|
|
6
|
-
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.
|
|
7
|
-
type: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.
|
|
6
|
+
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
7
|
+
type: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
8
8
|
assigner: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
9
9
|
period: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
10
10
|
start: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodString]>>>>;
|