@metriport/commonwell-sdk 8.11.0 → 8.11.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.
Files changed (63) hide show
  1. package/dist/__tests__/env-setup.js +17 -7
  2. package/dist/__tests__/env-setup.js.map +1 -1
  3. package/dist/client/common.js +1 -1
  4. package/dist/client/common.js.map +1 -1
  5. package/dist/client/commonwell-api.d.ts +0 -1
  6. package/dist/client/commonwell-api.d.ts.map +1 -1
  7. package/dist/client/commonwell-base.d.ts.map +1 -1
  8. package/dist/client/commonwell-base.js.map +1 -1
  9. package/dist/client/commonwell-member.d.ts.map +1 -1
  10. package/dist/client/commonwell-member.js.map +1 -1
  11. package/dist/client/commonwell.d.ts +0 -1
  12. package/dist/client/commonwell.d.ts.map +1 -1
  13. package/dist/client/commonwell.js.map +1 -1
  14. package/dist/common/__tests__/validate-npi.test.js +1 -1
  15. package/dist/common/__tests__/validate-npi.test.js.map +1 -1
  16. package/dist/common/certificate.js +1 -2
  17. package/dist/common/certificate.js.map +1 -1
  18. package/dist/common/commonwell-error.d.ts.map +1 -1
  19. package/dist/common/commonwell-error.js.map +1 -1
  20. package/dist/common/fileDownload.d.ts +0 -2
  21. package/dist/common/fileDownload.d.ts.map +1 -1
  22. package/dist/common/fileDownload.js +19 -10
  23. package/dist/common/fileDownload.js.map +1 -1
  24. package/dist/common/make-jwt.js +18 -9
  25. package/dist/common/make-jwt.js.map +1 -1
  26. package/dist/common/util.js +7 -7
  27. package/dist/common/util.js.map +1 -1
  28. package/dist/common/zod.js +5 -5
  29. package/dist/common/zod.js.map +1 -1
  30. package/dist/models/__tests__/address.test.js +11 -11
  31. package/dist/models/__tests__/address.test.js.map +1 -1
  32. package/dist/models/address.d.ts +8 -8
  33. package/dist/models/address.js +5 -5
  34. package/dist/models/address.js.map +1 -1
  35. package/dist/models/certificates.d.ts +12 -12
  36. package/dist/models/certificates.js +1 -1
  37. package/dist/models/certificates.js.map +1 -1
  38. package/dist/models/contact.d.ts +2 -2
  39. package/dist/models/contact.js +1 -1
  40. package/dist/models/contact.js.map +1 -1
  41. package/dist/models/date.js +2 -2
  42. package/dist/models/date.js.map +1 -1
  43. package/dist/models/demographics.d.ts +36 -36
  44. package/dist/models/demographics.js +3 -3
  45. package/dist/models/demographics.js.map +1 -1
  46. package/dist/models/document.d.ts +2654 -2654
  47. package/dist/models/document.js +1 -1
  48. package/dist/models/document.js.map +1 -1
  49. package/dist/models/facility.d.ts +6 -6
  50. package/dist/models/human-name.d.ts +8 -8
  51. package/dist/models/human-name.js +1 -1
  52. package/dist/models/human-name.js.map +1 -1
  53. package/dist/models/identifier.d.ts +19 -19
  54. package/dist/models/identifier.js +1 -1
  55. package/dist/models/identifier.js.map +1 -1
  56. package/dist/models/organization.d.ts +618 -618
  57. package/dist/models/organization.d.ts.map +1 -1
  58. package/dist/models/organization.js +9 -13
  59. package/dist/models/organization.js.map +1 -1
  60. package/dist/models/patient.d.ts +651 -651
  61. package/dist/models/patient.js.map +1 -1
  62. package/dist/models/reference.d.ts +31 -31
  63. package/package.json +10 -10
@@ -47,42 +47,42 @@ declare const organizationBaseSchema: z.ZodObject<{
47
47
  fax: z.ZodOptional<z.ZodNullable<z.ZodString>>;
48
48
  email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
49
49
  }, "strip", z.ZodTypeAny, {
50
- city: string;
51
- country: string;
52
- postalCode: string;
53
50
  address1: string;
54
- state?: string | null | undefined;
55
51
  address2?: string | null | undefined;
52
+ city: string;
53
+ state?: string | null | undefined;
54
+ postalCode: string;
55
+ country: string;
56
56
  phone?: string | null | undefined;
57
57
  fax?: string | null | undefined;
58
58
  email?: string | null | undefined;
59
59
  }, {
60
- city: string;
61
- country: string;
62
- postalCode: string;
63
60
  address1: string;
64
- state?: unknown;
65
61
  address2?: string | null | undefined;
62
+ city: string;
63
+ state?: unknown;
64
+ postalCode: string;
65
+ country: string;
66
66
  phone?: string | null | undefined;
67
67
  fax?: string | null | undefined;
68
68
  email?: string | null | undefined;
69
69
  }>, "many">, {
70
- city: string;
71
- country: string;
72
- postalCode: string;
73
70
  address1: string;
74
- state?: string | null | undefined;
75
71
  address2?: string | null | undefined;
72
+ city: string;
73
+ state?: string | null | undefined;
74
+ postalCode: string;
75
+ country: string;
76
76
  phone?: string | null | undefined;
77
77
  fax?: string | null | undefined;
78
78
  email?: string | null | undefined;
79
79
  }[], {
80
- city: string;
81
- country: string;
82
- postalCode: string;
83
80
  address1: string;
84
- state?: unknown;
85
81
  address2?: string | null | undefined;
82
+ city: string;
83
+ state?: unknown;
84
+ postalCode: string;
85
+ country: string;
86
86
  phone?: string | null | undefined;
87
87
  fax?: string | null | undefined;
88
88
  email?: string | null | undefined;
@@ -96,43 +96,65 @@ declare const organizationBaseSchema: z.ZodObject<{
96
96
  }, "strip", z.ZodTypeAny, {
97
97
  name: string;
98
98
  title: string;
99
- phone: string;
100
99
  email: string;
100
+ phone: string;
101
101
  }, {
102
102
  name: string;
103
103
  title: string;
104
- phone: string;
105
104
  email: string;
105
+ phone: string;
106
106
  }>, "many">;
107
107
  isLegacyBridgeEnabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
108
108
  }, "strip", z.ZodTypeAny, {
109
+ organizationId: string;
109
110
  homeCommunityId: string;
110
- type: string;
111
111
  name: string;
112
- organizationId: string;
112
+ displayName?: string | null | undefined;
113
113
  memberName: string;
114
+ type: string;
115
+ npiType1?: string | null | undefined;
116
+ npiType2?: string | null | undefined;
114
117
  patientIdAssignAuthority: string;
118
+ sendingFacility?: {
119
+ namespaceId?: string | null | undefined;
120
+ universalId?: string | null | undefined;
121
+ universalIdType?: string | null | undefined;
122
+ } | null | undefined;
123
+ sendingApplication?: {
124
+ namespaceId?: string | null | undefined;
125
+ universalId?: string | null | undefined;
126
+ universalIdType?: string | null | undefined;
127
+ } | null | undefined;
115
128
  isActive: boolean;
116
129
  locations: {
117
- city: string;
118
- country: string;
119
- postalCode: string;
120
130
  address1: string;
121
- state?: string | null | undefined;
122
131
  address2?: string | null | undefined;
132
+ city: string;
133
+ state?: string | null | undefined;
134
+ postalCode: string;
135
+ country: string;
123
136
  phone?: string | null | undefined;
124
137
  fax?: string | null | undefined;
125
138
  email?: string | null | undefined;
126
139
  }[];
140
+ searchRadius?: number | null | undefined;
127
141
  technicalContacts: {
128
142
  name: string;
129
143
  title: string;
130
- phone: string;
131
144
  email: string;
145
+ phone: string;
132
146
  }[];
147
+ isLegacyBridgeEnabled?: boolean | null | undefined;
148
+ }, {
149
+ organizationId: string;
150
+ homeCommunityId: string;
151
+ name: string;
133
152
  displayName?: string | null | undefined;
153
+ memberName: string;
154
+ type: string;
134
155
  npiType1?: string | null | undefined;
135
156
  npiType2?: string | null | undefined;
157
+ patientIdAssignAuthority: string;
136
158
  sendingFacility?: {
137
159
  namespaceId?: string | null | undefined;
138
160
  universalId?: string | null | undefined;
@@ -143,47 +165,25 @@ declare const organizationBaseSchema: z.ZodObject<{
143
165
  universalId?: string | null | undefined;
144
166
  universalIdType?: string | null | undefined;
145
167
  } | null | undefined;
146
- searchRadius?: number | null | undefined;
147
- isLegacyBridgeEnabled?: boolean | null | undefined;
148
- }, {
149
- homeCommunityId: string;
150
- type: string;
151
- name: string;
152
- organizationId: string;
153
- memberName: string;
154
- patientIdAssignAuthority: string;
155
168
  isActive: boolean;
156
169
  locations: {
157
- city: string;
158
- country: string;
159
- postalCode: string;
160
170
  address1: string;
161
- state?: unknown;
162
171
  address2?: string | null | undefined;
172
+ city: string;
173
+ state?: unknown;
174
+ postalCode: string;
175
+ country: string;
163
176
  phone?: string | null | undefined;
164
177
  fax?: string | null | undefined;
165
178
  email?: string | null | undefined;
166
179
  }[];
180
+ searchRadius?: number | null | undefined;
167
181
  technicalContacts: {
168
182
  name: string;
169
183
  title: string;
170
- phone: string;
171
184
  email: string;
185
+ phone: string;
172
186
  }[];
173
- displayName?: string | null | undefined;
174
- npiType1?: string | null | undefined;
175
- npiType2?: string | null | undefined;
176
- sendingFacility?: {
177
- namespaceId?: string | null | undefined;
178
- universalId?: string | null | undefined;
179
- universalIdType?: string | null | undefined;
180
- } | null | undefined;
181
- sendingApplication?: {
182
- namespaceId?: string | null | undefined;
183
- universalId?: string | null | undefined;
184
- universalIdType?: string | null | undefined;
185
- } | null | undefined;
186
- searchRadius?: number | null | undefined;
187
187
  isLegacyBridgeEnabled?: boolean | null | undefined;
188
188
  }>;
189
189
  export type OrganizationBase = z.infer<typeof organizationBaseSchema>;
@@ -235,42 +235,42 @@ export declare const organizationSchemaWithNetworkInfo: z.ZodObject<z.objectUtil
235
235
  fax: z.ZodOptional<z.ZodNullable<z.ZodString>>;
236
236
  email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
237
237
  }, "strip", z.ZodTypeAny, {
238
- city: string;
239
- country: string;
240
- postalCode: string;
241
238
  address1: string;
242
- state?: string | null | undefined;
243
239
  address2?: string | null | undefined;
240
+ city: string;
241
+ state?: string | null | undefined;
242
+ postalCode: string;
243
+ country: string;
244
244
  phone?: string | null | undefined;
245
245
  fax?: string | null | undefined;
246
246
  email?: string | null | undefined;
247
247
  }, {
248
- city: string;
249
- country: string;
250
- postalCode: string;
251
248
  address1: string;
252
- state?: unknown;
253
249
  address2?: string | null | undefined;
250
+ city: string;
251
+ state?: unknown;
252
+ postalCode: string;
253
+ country: string;
254
254
  phone?: string | null | undefined;
255
255
  fax?: string | null | undefined;
256
256
  email?: string | null | undefined;
257
257
  }>, "many">, {
258
- city: string;
259
- country: string;
260
- postalCode: string;
261
258
  address1: string;
262
- state?: string | null | undefined;
263
259
  address2?: string | null | undefined;
260
+ city: string;
261
+ state?: string | null | undefined;
262
+ postalCode: string;
263
+ country: string;
264
264
  phone?: string | null | undefined;
265
265
  fax?: string | null | undefined;
266
266
  email?: string | null | undefined;
267
267
  }[], {
268
- city: string;
269
- country: string;
270
- postalCode: string;
271
268
  address1: string;
272
- state?: unknown;
273
269
  address2?: string | null | undefined;
270
+ city: string;
271
+ state?: unknown;
272
+ postalCode: string;
273
+ country: string;
274
274
  phone?: string | null | undefined;
275
275
  fax?: string | null | undefined;
276
276
  email?: string | null | undefined;
@@ -284,13 +284,13 @@ export declare const organizationSchemaWithNetworkInfo: z.ZodObject<z.objectUtil
284
284
  }, "strip", z.ZodTypeAny, {
285
285
  name: string;
286
286
  title: string;
287
- phone: string;
288
287
  email: string;
288
+ phone: string;
289
289
  }, {
290
290
  name: string;
291
291
  title: string;
292
- phone: string;
293
292
  email: string;
293
+ phone: string;
294
294
  }>, "many">;
295
295
  isLegacyBridgeEnabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
296
296
  }, {
@@ -317,43 +317,43 @@ export declare const organizationSchemaWithNetworkInfo: z.ZodObject<z.objectUtil
317
317
  excludes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
318
318
  doa: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
319
319
  }, "strip", z.ZodTypeAny, {
320
+ type: string;
320
321
  purposeOfUse: {
321
322
  id: string;
322
323
  queryInitiatorOnly: boolean;
323
324
  queryInitiator: boolean;
324
325
  queryResponder: boolean;
325
326
  }[];
326
- type: string;
327
327
  includes?: string[] | null | undefined;
328
328
  excludes?: string[] | null | undefined;
329
329
  doa?: string[] | null | undefined;
330
330
  }, {
331
+ type: string;
331
332
  purposeOfUse: {
332
333
  id: string;
333
334
  queryInitiatorOnly: boolean;
334
335
  queryInitiator: boolean;
335
336
  queryResponder: boolean;
336
337
  }[];
337
- type: string;
338
338
  includes?: string[] | null | undefined;
339
339
  excludes?: string[] | null | undefined;
340
340
  doa?: string[] | null | undefined;
341
341
  }>, "many">;
342
342
  gateways: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
343
- serviceType: z.ZodUnion<[z.ZodLiteral<"R4_Base">, z.ZodLiteral<"XCA-ITI-38">, z.ZodLiteral<"XCA-ITI-39">]>;
344
- gatewayType: z.ZodUnion<[z.ZodLiteral<"FHIR">, z.ZodLiteral<"XCA">]>;
343
+ serviceType: z.ZodString;
344
+ gatewayType: z.ZodString;
345
345
  isAsync: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
346
346
  gatewayTimeout: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
347
347
  endpointLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
348
348
  }, "strip", z.ZodTypeAny, {
349
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
350
- gatewayType: "FHIR" | "XCA";
349
+ serviceType: string;
350
+ gatewayType: string;
351
351
  isAsync?: boolean | null | undefined;
352
352
  gatewayTimeout?: number | null | undefined;
353
353
  endpointLocation?: string | null | undefined;
354
354
  }, {
355
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
356
- gatewayType: "FHIR" | "XCA";
355
+ serviceType: string;
356
+ gatewayType: string;
357
357
  isAsync?: boolean | null | undefined;
358
358
  gatewayTimeout?: number | null | undefined;
359
359
  endpointLocation?: string | null | undefined;
@@ -378,61 +378,61 @@ export declare const organizationSchemaWithNetworkInfo: z.ZodObject<z.objectUtil
378
378
  binaryScope?: string | null | undefined;
379
379
  }>>>;
380
380
  }>, "strip", z.ZodTypeAny, {
381
+ organizationId: string;
381
382
  homeCommunityId: string;
382
- type: string;
383
383
  name: string;
384
- organizationId: string;
384
+ displayName?: string | null | undefined;
385
385
  memberName: string;
386
+ type: string;
387
+ npiType1?: string | null | undefined;
388
+ npiType2?: string | null | undefined;
386
389
  patientIdAssignAuthority: string;
390
+ sendingFacility?: {
391
+ namespaceId?: string | null | undefined;
392
+ universalId?: string | null | undefined;
393
+ universalIdType?: string | null | undefined;
394
+ } | null | undefined;
395
+ sendingApplication?: {
396
+ namespaceId?: string | null | undefined;
397
+ universalId?: string | null | undefined;
398
+ universalIdType?: string | null | undefined;
399
+ } | null | undefined;
387
400
  isActive: boolean;
388
401
  locations: {
389
- city: string;
390
- country: string;
391
- postalCode: string;
392
402
  address1: string;
393
- state?: string | null | undefined;
394
403
  address2?: string | null | undefined;
404
+ city: string;
405
+ state?: string | null | undefined;
406
+ postalCode: string;
407
+ country: string;
395
408
  phone?: string | null | undefined;
396
409
  fax?: string | null | undefined;
397
410
  email?: string | null | undefined;
398
411
  }[];
412
+ searchRadius?: number | null | undefined;
399
413
  technicalContacts: {
400
414
  name: string;
401
415
  title: string;
402
- phone: string;
403
416
  email: string;
417
+ phone: string;
404
418
  }[];
419
+ isLegacyBridgeEnabled?: boolean | null | undefined;
420
+ securityTokenKeyType?: string | null | undefined;
405
421
  networks: {
422
+ type: string;
406
423
  purposeOfUse: {
407
424
  id: string;
408
425
  queryInitiatorOnly: boolean;
409
426
  queryInitiator: boolean;
410
427
  queryResponder: boolean;
411
428
  }[];
412
- type: string;
413
429
  includes?: string[] | null | undefined;
414
430
  excludes?: string[] | null | undefined;
415
431
  doa?: string[] | null | undefined;
416
432
  }[];
417
- displayName?: string | null | undefined;
418
- npiType1?: string | null | undefined;
419
- npiType2?: string | null | undefined;
420
- sendingFacility?: {
421
- namespaceId?: string | null | undefined;
422
- universalId?: string | null | undefined;
423
- universalIdType?: string | null | undefined;
424
- } | null | undefined;
425
- sendingApplication?: {
426
- namespaceId?: string | null | undefined;
427
- universalId?: string | null | undefined;
428
- universalIdType?: string | null | undefined;
429
- } | null | undefined;
430
- searchRadius?: number | null | undefined;
431
- isLegacyBridgeEnabled?: boolean | null | undefined;
432
- securityTokenKeyType?: string | null | undefined;
433
433
  gateways?: {
434
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
435
- gatewayType: "FHIR" | "XCA";
434
+ serviceType: string;
435
+ gatewayType: string;
436
436
  isAsync?: boolean | null | undefined;
437
437
  gatewayTimeout?: number | null | undefined;
438
438
  endpointLocation?: string | null | undefined;
@@ -445,61 +445,61 @@ export declare const organizationSchemaWithNetworkInfo: z.ZodObject<z.objectUtil
445
445
  binaryScope?: string | null | undefined;
446
446
  } | null | undefined;
447
447
  }, {
448
+ organizationId: string;
448
449
  homeCommunityId: string;
449
- type: string;
450
450
  name: string;
451
- organizationId: string;
451
+ displayName?: string | null | undefined;
452
452
  memberName: string;
453
+ type: string;
454
+ npiType1?: string | null | undefined;
455
+ npiType2?: string | null | undefined;
453
456
  patientIdAssignAuthority: string;
457
+ sendingFacility?: {
458
+ namespaceId?: string | null | undefined;
459
+ universalId?: string | null | undefined;
460
+ universalIdType?: string | null | undefined;
461
+ } | null | undefined;
462
+ sendingApplication?: {
463
+ namespaceId?: string | null | undefined;
464
+ universalId?: string | null | undefined;
465
+ universalIdType?: string | null | undefined;
466
+ } | null | undefined;
454
467
  isActive: boolean;
455
468
  locations: {
456
- city: string;
457
- country: string;
458
- postalCode: string;
459
469
  address1: string;
460
- state?: unknown;
461
470
  address2?: string | null | undefined;
471
+ city: string;
472
+ state?: unknown;
473
+ postalCode: string;
474
+ country: string;
462
475
  phone?: string | null | undefined;
463
476
  fax?: string | null | undefined;
464
477
  email?: string | null | undefined;
465
478
  }[];
479
+ searchRadius?: number | null | undefined;
466
480
  technicalContacts: {
467
481
  name: string;
468
482
  title: string;
469
- phone: string;
470
483
  email: string;
484
+ phone: string;
471
485
  }[];
486
+ isLegacyBridgeEnabled?: boolean | null | undefined;
487
+ securityTokenKeyType?: string | null | undefined;
472
488
  networks: {
489
+ type: string;
473
490
  purposeOfUse: {
474
491
  id: string;
475
492
  queryInitiatorOnly: boolean;
476
493
  queryInitiator: boolean;
477
494
  queryResponder: boolean;
478
495
  }[];
479
- type: string;
480
496
  includes?: string[] | null | undefined;
481
497
  excludes?: string[] | null | undefined;
482
498
  doa?: string[] | null | undefined;
483
499
  }[];
484
- displayName?: string | null | undefined;
485
- npiType1?: string | null | undefined;
486
- npiType2?: string | null | undefined;
487
- sendingFacility?: {
488
- namespaceId?: string | null | undefined;
489
- universalId?: string | null | undefined;
490
- universalIdType?: string | null | undefined;
491
- } | null | undefined;
492
- sendingApplication?: {
493
- namespaceId?: string | null | undefined;
494
- universalId?: string | null | undefined;
495
- universalIdType?: string | null | undefined;
496
- } | null | undefined;
497
- searchRadius?: number | null | undefined;
498
- isLegacyBridgeEnabled?: boolean | null | undefined;
499
- securityTokenKeyType?: string | null | undefined;
500
500
  gateways?: {
501
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
502
- gatewayType: "FHIR" | "XCA";
501
+ serviceType: string;
502
+ gatewayType: string;
503
503
  isAsync?: boolean | null | undefined;
504
504
  gatewayTimeout?: number | null | undefined;
505
505
  endpointLocation?: string | null | undefined;
@@ -561,42 +561,42 @@ export declare const organizationSchemaWithoutNetworkInfo: z.ZodObject<Omit<z.ob
561
561
  fax: z.ZodOptional<z.ZodNullable<z.ZodString>>;
562
562
  email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
563
563
  }, "strip", z.ZodTypeAny, {
564
- city: string;
565
- country: string;
566
- postalCode: string;
567
564
  address1: string;
568
- state?: string | null | undefined;
569
565
  address2?: string | null | undefined;
566
+ city: string;
567
+ state?: string | null | undefined;
568
+ postalCode: string;
569
+ country: string;
570
570
  phone?: string | null | undefined;
571
571
  fax?: string | null | undefined;
572
572
  email?: string | null | undefined;
573
573
  }, {
574
- city: string;
575
- country: string;
576
- postalCode: string;
577
574
  address1: string;
578
- state?: unknown;
579
575
  address2?: string | null | undefined;
580
- phone?: string | null | undefined;
581
- fax?: string | null | undefined;
582
- email?: string | null | undefined;
583
- }>, "many">, {
584
576
  city: string;
585
- country: string;
577
+ state?: unknown;
586
578
  postalCode: string;
579
+ country: string;
580
+ phone?: string | null | undefined;
581
+ fax?: string | null | undefined;
582
+ email?: string | null | undefined;
583
+ }>, "many">, {
587
584
  address1: string;
588
- state?: string | null | undefined;
589
585
  address2?: string | null | undefined;
586
+ city: string;
587
+ state?: string | null | undefined;
588
+ postalCode: string;
589
+ country: string;
590
590
  phone?: string | null | undefined;
591
591
  fax?: string | null | undefined;
592
592
  email?: string | null | undefined;
593
593
  }[], {
594
- city: string;
595
- country: string;
596
- postalCode: string;
597
594
  address1: string;
598
- state?: unknown;
599
595
  address2?: string | null | undefined;
596
+ city: string;
597
+ state?: unknown;
598
+ postalCode: string;
599
+ country: string;
600
600
  phone?: string | null | undefined;
601
601
  fax?: string | null | undefined;
602
602
  email?: string | null | undefined;
@@ -610,13 +610,13 @@ export declare const organizationSchemaWithoutNetworkInfo: z.ZodObject<Omit<z.ob
610
610
  }, "strip", z.ZodTypeAny, {
611
611
  name: string;
612
612
  title: string;
613
- phone: string;
614
613
  email: string;
614
+ phone: string;
615
615
  }, {
616
616
  name: string;
617
617
  title: string;
618
- phone: string;
619
618
  email: string;
619
+ phone: string;
620
620
  }>, "many">;
621
621
  isLegacyBridgeEnabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
622
622
  }, {
@@ -643,43 +643,43 @@ export declare const organizationSchemaWithoutNetworkInfo: z.ZodObject<Omit<z.ob
643
643
  excludes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
644
644
  doa: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
645
645
  }, "strip", z.ZodTypeAny, {
646
+ type: string;
646
647
  purposeOfUse: {
647
648
  id: string;
648
649
  queryInitiatorOnly: boolean;
649
650
  queryInitiator: boolean;
650
651
  queryResponder: boolean;
651
652
  }[];
652
- type: string;
653
653
  includes?: string[] | null | undefined;
654
654
  excludes?: string[] | null | undefined;
655
655
  doa?: string[] | null | undefined;
656
656
  }, {
657
+ type: string;
657
658
  purposeOfUse: {
658
659
  id: string;
659
660
  queryInitiatorOnly: boolean;
660
661
  queryInitiator: boolean;
661
662
  queryResponder: boolean;
662
663
  }[];
663
- type: string;
664
664
  includes?: string[] | null | undefined;
665
665
  excludes?: string[] | null | undefined;
666
666
  doa?: string[] | null | undefined;
667
667
  }>, "many">;
668
668
  gateways: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
669
- serviceType: z.ZodUnion<[z.ZodLiteral<"R4_Base">, z.ZodLiteral<"XCA-ITI-38">, z.ZodLiteral<"XCA-ITI-39">]>;
670
- gatewayType: z.ZodUnion<[z.ZodLiteral<"FHIR">, z.ZodLiteral<"XCA">]>;
669
+ serviceType: z.ZodString;
670
+ gatewayType: z.ZodString;
671
671
  isAsync: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
672
672
  gatewayTimeout: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
673
673
  endpointLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
674
674
  }, "strip", z.ZodTypeAny, {
675
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
676
- gatewayType: "FHIR" | "XCA";
675
+ serviceType: string;
676
+ gatewayType: string;
677
677
  isAsync?: boolean | null | undefined;
678
678
  gatewayTimeout?: number | null | undefined;
679
679
  endpointLocation?: string | null | undefined;
680
680
  }, {
681
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
682
- gatewayType: "FHIR" | "XCA";
681
+ serviceType: string;
682
+ gatewayType: string;
683
683
  isAsync?: boolean | null | undefined;
684
684
  gatewayTimeout?: number | null | undefined;
685
685
  endpointLocation?: string | null | undefined;
@@ -704,45 +704,75 @@ export declare const organizationSchemaWithoutNetworkInfo: z.ZodObject<Omit<z.ob
704
704
  binaryScope?: string | null | undefined;
705
705
  }>>>;
706
706
  }>, "authorizationInformation">, "strip", z.ZodTypeAny, {
707
+ organizationId: string;
707
708
  homeCommunityId: string;
708
- type: string;
709
709
  name: string;
710
- organizationId: string;
710
+ displayName?: string | null | undefined;
711
711
  memberName: string;
712
+ type: string;
713
+ npiType1?: string | null | undefined;
714
+ npiType2?: string | null | undefined;
712
715
  patientIdAssignAuthority: string;
716
+ sendingFacility?: {
717
+ namespaceId?: string | null | undefined;
718
+ universalId?: string | null | undefined;
719
+ universalIdType?: string | null | undefined;
720
+ } | null | undefined;
721
+ sendingApplication?: {
722
+ namespaceId?: string | null | undefined;
723
+ universalId?: string | null | undefined;
724
+ universalIdType?: string | null | undefined;
725
+ } | null | undefined;
713
726
  isActive: boolean;
714
727
  locations: {
715
- city: string;
716
- country: string;
717
- postalCode: string;
718
728
  address1: string;
719
- state?: string | null | undefined;
720
729
  address2?: string | null | undefined;
730
+ city: string;
731
+ state?: string | null | undefined;
732
+ postalCode: string;
733
+ country: string;
721
734
  phone?: string | null | undefined;
722
735
  fax?: string | null | undefined;
723
736
  email?: string | null | undefined;
724
737
  }[];
738
+ searchRadius?: number | null | undefined;
725
739
  technicalContacts: {
726
740
  name: string;
727
741
  title: string;
728
- phone: string;
729
742
  email: string;
743
+ phone: string;
730
744
  }[];
745
+ isLegacyBridgeEnabled?: boolean | null | undefined;
746
+ securityTokenKeyType?: string | null | undefined;
731
747
  networks: {
748
+ type: string;
732
749
  purposeOfUse: {
733
750
  id: string;
734
751
  queryInitiatorOnly: boolean;
735
752
  queryInitiator: boolean;
736
753
  queryResponder: boolean;
737
754
  }[];
738
- type: string;
739
755
  includes?: string[] | null | undefined;
740
756
  excludes?: string[] | null | undefined;
741
757
  doa?: string[] | null | undefined;
742
758
  }[];
759
+ gateways?: {
760
+ serviceType: string;
761
+ gatewayType: string;
762
+ isAsync?: boolean | null | undefined;
763
+ gatewayTimeout?: number | null | undefined;
764
+ endpointLocation?: string | null | undefined;
765
+ }[] | null | undefined;
766
+ }, {
767
+ organizationId: string;
768
+ homeCommunityId: string;
769
+ name: string;
743
770
  displayName?: string | null | undefined;
771
+ memberName: string;
772
+ type: string;
744
773
  npiType1?: string | null | undefined;
745
774
  npiType2?: string | null | undefined;
775
+ patientIdAssignAuthority: string;
746
776
  sendingFacility?: {
747
777
  namespaceId?: string | null | undefined;
748
778
  universalId?: string | null | undefined;
@@ -753,72 +783,42 @@ export declare const organizationSchemaWithoutNetworkInfo: z.ZodObject<Omit<z.ob
753
783
  universalId?: string | null | undefined;
754
784
  universalIdType?: string | null | undefined;
755
785
  } | null | undefined;
756
- searchRadius?: number | null | undefined;
757
- isLegacyBridgeEnabled?: boolean | null | undefined;
758
- securityTokenKeyType?: string | null | undefined;
759
- gateways?: {
760
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
761
- gatewayType: "FHIR" | "XCA";
762
- isAsync?: boolean | null | undefined;
763
- gatewayTimeout?: number | null | undefined;
764
- endpointLocation?: string | null | undefined;
765
- }[] | null | undefined;
766
- }, {
767
- homeCommunityId: string;
768
- type: string;
769
- name: string;
770
- organizationId: string;
771
- memberName: string;
772
- patientIdAssignAuthority: string;
773
786
  isActive: boolean;
774
787
  locations: {
775
- city: string;
776
- country: string;
777
- postalCode: string;
778
788
  address1: string;
779
- state?: unknown;
780
789
  address2?: string | null | undefined;
790
+ city: string;
791
+ state?: unknown;
792
+ postalCode: string;
793
+ country: string;
781
794
  phone?: string | null | undefined;
782
795
  fax?: string | null | undefined;
783
796
  email?: string | null | undefined;
784
797
  }[];
798
+ searchRadius?: number | null | undefined;
785
799
  technicalContacts: {
786
800
  name: string;
787
801
  title: string;
788
- phone: string;
789
802
  email: string;
803
+ phone: string;
790
804
  }[];
805
+ isLegacyBridgeEnabled?: boolean | null | undefined;
806
+ securityTokenKeyType?: string | null | undefined;
791
807
  networks: {
808
+ type: string;
792
809
  purposeOfUse: {
793
810
  id: string;
794
811
  queryInitiatorOnly: boolean;
795
812
  queryInitiator: boolean;
796
813
  queryResponder: boolean;
797
814
  }[];
798
- type: string;
799
815
  includes?: string[] | null | undefined;
800
816
  excludes?: string[] | null | undefined;
801
817
  doa?: string[] | null | undefined;
802
818
  }[];
803
- displayName?: string | null | undefined;
804
- npiType1?: string | null | undefined;
805
- npiType2?: string | null | undefined;
806
- sendingFacility?: {
807
- namespaceId?: string | null | undefined;
808
- universalId?: string | null | undefined;
809
- universalIdType?: string | null | undefined;
810
- } | null | undefined;
811
- sendingApplication?: {
812
- namespaceId?: string | null | undefined;
813
- universalId?: string | null | undefined;
814
- universalIdType?: string | null | undefined;
815
- } | null | undefined;
816
- searchRadius?: number | null | undefined;
817
- isLegacyBridgeEnabled?: boolean | null | undefined;
818
- securityTokenKeyType?: string | null | undefined;
819
819
  gateways?: {
820
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
821
- gatewayType: "FHIR" | "XCA";
820
+ serviceType: string;
821
+ gatewayType: string;
822
822
  isAsync?: boolean | null | undefined;
823
823
  gatewayTimeout?: number | null | undefined;
824
824
  endpointLocation?: string | null | undefined;
@@ -873,42 +873,42 @@ export declare const organizationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
873
873
  fax: z.ZodOptional<z.ZodNullable<z.ZodString>>;
874
874
  email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
875
875
  }, "strip", z.ZodTypeAny, {
876
- city: string;
877
- country: string;
878
- postalCode: string;
879
876
  address1: string;
880
- state?: string | null | undefined;
881
877
  address2?: string | null | undefined;
878
+ city: string;
879
+ state?: string | null | undefined;
880
+ postalCode: string;
881
+ country: string;
882
882
  phone?: string | null | undefined;
883
883
  fax?: string | null | undefined;
884
884
  email?: string | null | undefined;
885
885
  }, {
886
- city: string;
887
- country: string;
888
- postalCode: string;
889
886
  address1: string;
890
- state?: unknown;
891
887
  address2?: string | null | undefined;
888
+ city: string;
889
+ state?: unknown;
890
+ postalCode: string;
891
+ country: string;
892
892
  phone?: string | null | undefined;
893
893
  fax?: string | null | undefined;
894
894
  email?: string | null | undefined;
895
895
  }>, "many">, {
896
- city: string;
897
- country: string;
898
- postalCode: string;
899
896
  address1: string;
900
- state?: string | null | undefined;
901
897
  address2?: string | null | undefined;
898
+ city: string;
899
+ state?: string | null | undefined;
900
+ postalCode: string;
901
+ country: string;
902
902
  phone?: string | null | undefined;
903
903
  fax?: string | null | undefined;
904
904
  email?: string | null | undefined;
905
905
  }[], {
906
- city: string;
907
- country: string;
908
- postalCode: string;
909
906
  address1: string;
910
- state?: unknown;
911
907
  address2?: string | null | undefined;
908
+ city: string;
909
+ state?: unknown;
910
+ postalCode: string;
911
+ country: string;
912
912
  phone?: string | null | undefined;
913
913
  fax?: string | null | undefined;
914
914
  email?: string | null | undefined;
@@ -922,13 +922,13 @@ export declare const organizationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
922
922
  }, "strip", z.ZodTypeAny, {
923
923
  name: string;
924
924
  title: string;
925
- phone: string;
926
925
  email: string;
926
+ phone: string;
927
927
  }, {
928
928
  name: string;
929
929
  title: string;
930
- phone: string;
931
930
  email: string;
931
+ phone: string;
932
932
  }>, "many">;
933
933
  isLegacyBridgeEnabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
934
934
  }, {
@@ -955,43 +955,43 @@ export declare const organizationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
955
955
  excludes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
956
956
  doa: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
957
957
  }, "strip", z.ZodTypeAny, {
958
+ type: string;
958
959
  purposeOfUse: {
959
960
  id: string;
960
961
  queryInitiatorOnly: boolean;
961
962
  queryInitiator: boolean;
962
963
  queryResponder: boolean;
963
964
  }[];
964
- type: string;
965
965
  includes?: string[] | null | undefined;
966
966
  excludes?: string[] | null | undefined;
967
967
  doa?: string[] | null | undefined;
968
968
  }, {
969
+ type: string;
969
970
  purposeOfUse: {
970
971
  id: string;
971
972
  queryInitiatorOnly: boolean;
972
973
  queryInitiator: boolean;
973
974
  queryResponder: boolean;
974
975
  }[];
975
- type: string;
976
976
  includes?: string[] | null | undefined;
977
977
  excludes?: string[] | null | undefined;
978
978
  doa?: string[] | null | undefined;
979
979
  }>, "many">;
980
980
  gateways: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
981
- serviceType: z.ZodUnion<[z.ZodLiteral<"R4_Base">, z.ZodLiteral<"XCA-ITI-38">, z.ZodLiteral<"XCA-ITI-39">]>;
982
- gatewayType: z.ZodUnion<[z.ZodLiteral<"FHIR">, z.ZodLiteral<"XCA">]>;
981
+ serviceType: z.ZodString;
982
+ gatewayType: z.ZodString;
983
983
  isAsync: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
984
984
  gatewayTimeout: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
985
985
  endpointLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
986
986
  }, "strip", z.ZodTypeAny, {
987
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
988
- gatewayType: "FHIR" | "XCA";
987
+ serviceType: string;
988
+ gatewayType: string;
989
989
  isAsync?: boolean | null | undefined;
990
990
  gatewayTimeout?: number | null | undefined;
991
991
  endpointLocation?: string | null | undefined;
992
992
  }, {
993
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
994
- gatewayType: "FHIR" | "XCA";
993
+ serviceType: string;
994
+ gatewayType: string;
995
995
  isAsync?: boolean | null | undefined;
996
996
  gatewayTimeout?: number | null | undefined;
997
997
  endpointLocation?: string | null | undefined;
@@ -1016,61 +1016,61 @@ export declare const organizationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
1016
1016
  binaryScope?: string | null | undefined;
1017
1017
  }>>>;
1018
1018
  }>, "strip", z.ZodTypeAny, {
1019
+ organizationId: string;
1019
1020
  homeCommunityId: string;
1020
- type: string;
1021
1021
  name: string;
1022
- organizationId: string;
1022
+ displayName?: string | null | undefined;
1023
1023
  memberName: string;
1024
+ type: string;
1025
+ npiType1?: string | null | undefined;
1026
+ npiType2?: string | null | undefined;
1024
1027
  patientIdAssignAuthority: string;
1028
+ sendingFacility?: {
1029
+ namespaceId?: string | null | undefined;
1030
+ universalId?: string | null | undefined;
1031
+ universalIdType?: string | null | undefined;
1032
+ } | null | undefined;
1033
+ sendingApplication?: {
1034
+ namespaceId?: string | null | undefined;
1035
+ universalId?: string | null | undefined;
1036
+ universalIdType?: string | null | undefined;
1037
+ } | null | undefined;
1025
1038
  isActive: boolean;
1026
1039
  locations: {
1027
- city: string;
1028
- country: string;
1029
- postalCode: string;
1030
1040
  address1: string;
1031
- state?: string | null | undefined;
1032
1041
  address2?: string | null | undefined;
1042
+ city: string;
1043
+ state?: string | null | undefined;
1044
+ postalCode: string;
1045
+ country: string;
1033
1046
  phone?: string | null | undefined;
1034
1047
  fax?: string | null | undefined;
1035
1048
  email?: string | null | undefined;
1036
1049
  }[];
1050
+ searchRadius?: number | null | undefined;
1037
1051
  technicalContacts: {
1038
1052
  name: string;
1039
1053
  title: string;
1040
- phone: string;
1041
1054
  email: string;
1055
+ phone: string;
1042
1056
  }[];
1057
+ isLegacyBridgeEnabled?: boolean | null | undefined;
1058
+ securityTokenKeyType?: string | null | undefined;
1043
1059
  networks: {
1060
+ type: string;
1044
1061
  purposeOfUse: {
1045
1062
  id: string;
1046
1063
  queryInitiatorOnly: boolean;
1047
1064
  queryInitiator: boolean;
1048
1065
  queryResponder: boolean;
1049
1066
  }[];
1050
- type: string;
1051
1067
  includes?: string[] | null | undefined;
1052
1068
  excludes?: string[] | null | undefined;
1053
1069
  doa?: string[] | null | undefined;
1054
1070
  }[];
1055
- displayName?: string | null | undefined;
1056
- npiType1?: string | null | undefined;
1057
- npiType2?: string | null | undefined;
1058
- sendingFacility?: {
1059
- namespaceId?: string | null | undefined;
1060
- universalId?: string | null | undefined;
1061
- universalIdType?: string | null | undefined;
1062
- } | null | undefined;
1063
- sendingApplication?: {
1064
- namespaceId?: string | null | undefined;
1065
- universalId?: string | null | undefined;
1066
- universalIdType?: string | null | undefined;
1067
- } | null | undefined;
1068
- searchRadius?: number | null | undefined;
1069
- isLegacyBridgeEnabled?: boolean | null | undefined;
1070
- securityTokenKeyType?: string | null | undefined;
1071
1071
  gateways?: {
1072
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
1073
- gatewayType: "FHIR" | "XCA";
1072
+ serviceType: string;
1073
+ gatewayType: string;
1074
1074
  isAsync?: boolean | null | undefined;
1075
1075
  gatewayTimeout?: number | null | undefined;
1076
1076
  endpointLocation?: string | null | undefined;
@@ -1083,61 +1083,61 @@ export declare const organizationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
1083
1083
  binaryScope?: string | null | undefined;
1084
1084
  } | null | undefined;
1085
1085
  }, {
1086
+ organizationId: string;
1086
1087
  homeCommunityId: string;
1087
- type: string;
1088
1088
  name: string;
1089
- organizationId: string;
1089
+ displayName?: string | null | undefined;
1090
1090
  memberName: string;
1091
+ type: string;
1092
+ npiType1?: string | null | undefined;
1093
+ npiType2?: string | null | undefined;
1091
1094
  patientIdAssignAuthority: string;
1095
+ sendingFacility?: {
1096
+ namespaceId?: string | null | undefined;
1097
+ universalId?: string | null | undefined;
1098
+ universalIdType?: string | null | undefined;
1099
+ } | null | undefined;
1100
+ sendingApplication?: {
1101
+ namespaceId?: string | null | undefined;
1102
+ universalId?: string | null | undefined;
1103
+ universalIdType?: string | null | undefined;
1104
+ } | null | undefined;
1092
1105
  isActive: boolean;
1093
1106
  locations: {
1094
- city: string;
1095
- country: string;
1096
- postalCode: string;
1097
1107
  address1: string;
1098
- state?: unknown;
1099
1108
  address2?: string | null | undefined;
1109
+ city: string;
1110
+ state?: unknown;
1111
+ postalCode: string;
1112
+ country: string;
1100
1113
  phone?: string | null | undefined;
1101
1114
  fax?: string | null | undefined;
1102
1115
  email?: string | null | undefined;
1103
1116
  }[];
1117
+ searchRadius?: number | null | undefined;
1104
1118
  technicalContacts: {
1105
1119
  name: string;
1106
1120
  title: string;
1107
- phone: string;
1108
1121
  email: string;
1122
+ phone: string;
1109
1123
  }[];
1124
+ isLegacyBridgeEnabled?: boolean | null | undefined;
1125
+ securityTokenKeyType?: string | null | undefined;
1110
1126
  networks: {
1127
+ type: string;
1111
1128
  purposeOfUse: {
1112
1129
  id: string;
1113
1130
  queryInitiatorOnly: boolean;
1114
1131
  queryInitiator: boolean;
1115
1132
  queryResponder: boolean;
1116
1133
  }[];
1117
- type: string;
1118
1134
  includes?: string[] | null | undefined;
1119
1135
  excludes?: string[] | null | undefined;
1120
1136
  doa?: string[] | null | undefined;
1121
1137
  }[];
1122
- displayName?: string | null | undefined;
1123
- npiType1?: string | null | undefined;
1124
- npiType2?: string | null | undefined;
1125
- sendingFacility?: {
1126
- namespaceId?: string | null | undefined;
1127
- universalId?: string | null | undefined;
1128
- universalIdType?: string | null | undefined;
1129
- } | null | undefined;
1130
- sendingApplication?: {
1131
- namespaceId?: string | null | undefined;
1132
- universalId?: string | null | undefined;
1133
- universalIdType?: string | null | undefined;
1134
- } | null | undefined;
1135
- searchRadius?: number | null | undefined;
1136
- isLegacyBridgeEnabled?: boolean | null | undefined;
1137
- securityTokenKeyType?: string | null | undefined;
1138
1138
  gateways?: {
1139
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
1140
- gatewayType: "FHIR" | "XCA";
1139
+ serviceType: string;
1140
+ gatewayType: string;
1141
1141
  isAsync?: boolean | null | undefined;
1142
1142
  gatewayTimeout?: number | null | undefined;
1143
1143
  endpointLocation?: string | null | undefined;
@@ -1197,42 +1197,42 @@ export declare const organizationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
1197
1197
  fax: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1198
1198
  email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1199
1199
  }, "strip", z.ZodTypeAny, {
1200
- city: string;
1201
- country: string;
1202
- postalCode: string;
1203
1200
  address1: string;
1204
- state?: string | null | undefined;
1205
1201
  address2?: string | null | undefined;
1202
+ city: string;
1203
+ state?: string | null | undefined;
1204
+ postalCode: string;
1205
+ country: string;
1206
1206
  phone?: string | null | undefined;
1207
1207
  fax?: string | null | undefined;
1208
1208
  email?: string | null | undefined;
1209
1209
  }, {
1210
- city: string;
1211
- country: string;
1212
- postalCode: string;
1213
1210
  address1: string;
1214
- state?: unknown;
1215
1211
  address2?: string | null | undefined;
1212
+ city: string;
1213
+ state?: unknown;
1214
+ postalCode: string;
1215
+ country: string;
1216
1216
  phone?: string | null | undefined;
1217
1217
  fax?: string | null | undefined;
1218
1218
  email?: string | null | undefined;
1219
1219
  }>, "many">, {
1220
- city: string;
1221
- country: string;
1222
- postalCode: string;
1223
1220
  address1: string;
1224
- state?: string | null | undefined;
1225
1221
  address2?: string | null | undefined;
1222
+ city: string;
1223
+ state?: string | null | undefined;
1224
+ postalCode: string;
1225
+ country: string;
1226
1226
  phone?: string | null | undefined;
1227
1227
  fax?: string | null | undefined;
1228
1228
  email?: string | null | undefined;
1229
1229
  }[], {
1230
- city: string;
1231
- country: string;
1232
- postalCode: string;
1233
1230
  address1: string;
1234
- state?: unknown;
1235
1231
  address2?: string | null | undefined;
1232
+ city: string;
1233
+ state?: unknown;
1234
+ postalCode: string;
1235
+ country: string;
1236
1236
  phone?: string | null | undefined;
1237
1237
  fax?: string | null | undefined;
1238
1238
  email?: string | null | undefined;
@@ -1246,13 +1246,13 @@ export declare const organizationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
1246
1246
  }, "strip", z.ZodTypeAny, {
1247
1247
  name: string;
1248
1248
  title: string;
1249
- phone: string;
1250
1249
  email: string;
1250
+ phone: string;
1251
1251
  }, {
1252
1252
  name: string;
1253
1253
  title: string;
1254
- phone: string;
1255
1254
  email: string;
1255
+ phone: string;
1256
1256
  }>, "many">;
1257
1257
  isLegacyBridgeEnabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1258
1258
  }, {
@@ -1279,43 +1279,43 @@ export declare const organizationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
1279
1279
  excludes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1280
1280
  doa: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1281
1281
  }, "strip", z.ZodTypeAny, {
1282
+ type: string;
1282
1283
  purposeOfUse: {
1283
1284
  id: string;
1284
1285
  queryInitiatorOnly: boolean;
1285
1286
  queryInitiator: boolean;
1286
1287
  queryResponder: boolean;
1287
1288
  }[];
1288
- type: string;
1289
1289
  includes?: string[] | null | undefined;
1290
1290
  excludes?: string[] | null | undefined;
1291
1291
  doa?: string[] | null | undefined;
1292
1292
  }, {
1293
+ type: string;
1293
1294
  purposeOfUse: {
1294
1295
  id: string;
1295
1296
  queryInitiatorOnly: boolean;
1296
1297
  queryInitiator: boolean;
1297
1298
  queryResponder: boolean;
1298
1299
  }[];
1299
- type: string;
1300
1300
  includes?: string[] | null | undefined;
1301
1301
  excludes?: string[] | null | undefined;
1302
1302
  doa?: string[] | null | undefined;
1303
1303
  }>, "many">;
1304
1304
  gateways: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
1305
- serviceType: z.ZodUnion<[z.ZodLiteral<"R4_Base">, z.ZodLiteral<"XCA-ITI-38">, z.ZodLiteral<"XCA-ITI-39">]>;
1306
- gatewayType: z.ZodUnion<[z.ZodLiteral<"FHIR">, z.ZodLiteral<"XCA">]>;
1305
+ serviceType: z.ZodString;
1306
+ gatewayType: z.ZodString;
1307
1307
  isAsync: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1308
1308
  gatewayTimeout: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1309
1309
  endpointLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1310
1310
  }, "strip", z.ZodTypeAny, {
1311
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
1312
- gatewayType: "FHIR" | "XCA";
1311
+ serviceType: string;
1312
+ gatewayType: string;
1313
1313
  isAsync?: boolean | null | undefined;
1314
1314
  gatewayTimeout?: number | null | undefined;
1315
1315
  endpointLocation?: string | null | undefined;
1316
1316
  }, {
1317
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
1318
- gatewayType: "FHIR" | "XCA";
1317
+ serviceType: string;
1318
+ gatewayType: string;
1319
1319
  isAsync?: boolean | null | undefined;
1320
1320
  gatewayTimeout?: number | null | undefined;
1321
1321
  endpointLocation?: string | null | undefined;
@@ -1340,45 +1340,75 @@ export declare const organizationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
1340
1340
  binaryScope?: string | null | undefined;
1341
1341
  }>>>;
1342
1342
  }>, "authorizationInformation">, "strip", z.ZodTypeAny, {
1343
+ organizationId: string;
1343
1344
  homeCommunityId: string;
1344
- type: string;
1345
1345
  name: string;
1346
- organizationId: string;
1346
+ displayName?: string | null | undefined;
1347
1347
  memberName: string;
1348
+ type: string;
1349
+ npiType1?: string | null | undefined;
1350
+ npiType2?: string | null | undefined;
1348
1351
  patientIdAssignAuthority: string;
1352
+ sendingFacility?: {
1353
+ namespaceId?: string | null | undefined;
1354
+ universalId?: string | null | undefined;
1355
+ universalIdType?: string | null | undefined;
1356
+ } | null | undefined;
1357
+ sendingApplication?: {
1358
+ namespaceId?: string | null | undefined;
1359
+ universalId?: string | null | undefined;
1360
+ universalIdType?: string | null | undefined;
1361
+ } | null | undefined;
1349
1362
  isActive: boolean;
1350
1363
  locations: {
1351
- city: string;
1352
- country: string;
1353
- postalCode: string;
1354
1364
  address1: string;
1355
- state?: string | null | undefined;
1356
1365
  address2?: string | null | undefined;
1366
+ city: string;
1367
+ state?: string | null | undefined;
1368
+ postalCode: string;
1369
+ country: string;
1357
1370
  phone?: string | null | undefined;
1358
1371
  fax?: string | null | undefined;
1359
1372
  email?: string | null | undefined;
1360
1373
  }[];
1374
+ searchRadius?: number | null | undefined;
1361
1375
  technicalContacts: {
1362
1376
  name: string;
1363
1377
  title: string;
1364
- phone: string;
1365
1378
  email: string;
1379
+ phone: string;
1366
1380
  }[];
1381
+ isLegacyBridgeEnabled?: boolean | null | undefined;
1382
+ securityTokenKeyType?: string | null | undefined;
1367
1383
  networks: {
1384
+ type: string;
1368
1385
  purposeOfUse: {
1369
1386
  id: string;
1370
1387
  queryInitiatorOnly: boolean;
1371
1388
  queryInitiator: boolean;
1372
1389
  queryResponder: boolean;
1373
1390
  }[];
1374
- type: string;
1375
1391
  includes?: string[] | null | undefined;
1376
1392
  excludes?: string[] | null | undefined;
1377
1393
  doa?: string[] | null | undefined;
1378
1394
  }[];
1395
+ gateways?: {
1396
+ serviceType: string;
1397
+ gatewayType: string;
1398
+ isAsync?: boolean | null | undefined;
1399
+ gatewayTimeout?: number | null | undefined;
1400
+ endpointLocation?: string | null | undefined;
1401
+ }[] | null | undefined;
1402
+ }, {
1403
+ organizationId: string;
1404
+ homeCommunityId: string;
1405
+ name: string;
1379
1406
  displayName?: string | null | undefined;
1407
+ memberName: string;
1408
+ type: string;
1380
1409
  npiType1?: string | null | undefined;
1381
1410
  npiType2?: string | null | undefined;
1411
+ patientIdAssignAuthority: string;
1382
1412
  sendingFacility?: {
1383
1413
  namespaceId?: string | null | undefined;
1384
1414
  universalId?: string | null | undefined;
@@ -1389,72 +1419,42 @@ export declare const organizationSchema: z.ZodUnion<[z.ZodObject<z.objectUtil.ex
1389
1419
  universalId?: string | null | undefined;
1390
1420
  universalIdType?: string | null | undefined;
1391
1421
  } | null | undefined;
1392
- searchRadius?: number | null | undefined;
1393
- isLegacyBridgeEnabled?: boolean | null | undefined;
1394
- securityTokenKeyType?: string | null | undefined;
1395
- gateways?: {
1396
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
1397
- gatewayType: "FHIR" | "XCA";
1398
- isAsync?: boolean | null | undefined;
1399
- gatewayTimeout?: number | null | undefined;
1400
- endpointLocation?: string | null | undefined;
1401
- }[] | null | undefined;
1402
- }, {
1403
- homeCommunityId: string;
1404
- type: string;
1405
- name: string;
1406
- organizationId: string;
1407
- memberName: string;
1408
- patientIdAssignAuthority: string;
1409
1422
  isActive: boolean;
1410
1423
  locations: {
1411
- city: string;
1412
- country: string;
1413
- postalCode: string;
1414
1424
  address1: string;
1415
- state?: unknown;
1416
1425
  address2?: string | null | undefined;
1426
+ city: string;
1427
+ state?: unknown;
1428
+ postalCode: string;
1429
+ country: string;
1417
1430
  phone?: string | null | undefined;
1418
1431
  fax?: string | null | undefined;
1419
1432
  email?: string | null | undefined;
1420
1433
  }[];
1434
+ searchRadius?: number | null | undefined;
1421
1435
  technicalContacts: {
1422
1436
  name: string;
1423
1437
  title: string;
1424
- phone: string;
1425
1438
  email: string;
1439
+ phone: string;
1426
1440
  }[];
1441
+ isLegacyBridgeEnabled?: boolean | null | undefined;
1442
+ securityTokenKeyType?: string | null | undefined;
1427
1443
  networks: {
1444
+ type: string;
1428
1445
  purposeOfUse: {
1429
1446
  id: string;
1430
1447
  queryInitiatorOnly: boolean;
1431
1448
  queryInitiator: boolean;
1432
1449
  queryResponder: boolean;
1433
1450
  }[];
1434
- type: string;
1435
1451
  includes?: string[] | null | undefined;
1436
1452
  excludes?: string[] | null | undefined;
1437
1453
  doa?: string[] | null | undefined;
1438
1454
  }[];
1439
- displayName?: string | null | undefined;
1440
- npiType1?: string | null | undefined;
1441
- npiType2?: string | null | undefined;
1442
- sendingFacility?: {
1443
- namespaceId?: string | null | undefined;
1444
- universalId?: string | null | undefined;
1445
- universalIdType?: string | null | undefined;
1446
- } | null | undefined;
1447
- sendingApplication?: {
1448
- namespaceId?: string | null | undefined;
1449
- universalId?: string | null | undefined;
1450
- universalIdType?: string | null | undefined;
1451
- } | null | undefined;
1452
- searchRadius?: number | null | undefined;
1453
- isLegacyBridgeEnabled?: boolean | null | undefined;
1454
- securityTokenKeyType?: string | null | undefined;
1455
1455
  gateways?: {
1456
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
1457
- gatewayType: "FHIR" | "XCA";
1456
+ serviceType: string;
1457
+ gatewayType: string;
1458
1458
  isAsync?: boolean | null | undefined;
1459
1459
  gatewayTimeout?: number | null | undefined;
1460
1460
  endpointLocation?: string | null | undefined;
@@ -1513,42 +1513,42 @@ export declare const organizationListSchema: z.ZodObject<{
1513
1513
  fax: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1514
1514
  email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1515
1515
  }, "strip", z.ZodTypeAny, {
1516
- city: string;
1517
- country: string;
1518
- postalCode: string;
1519
1516
  address1: string;
1520
- state?: string | null | undefined;
1521
1517
  address2?: string | null | undefined;
1518
+ city: string;
1519
+ state?: string | null | undefined;
1520
+ postalCode: string;
1521
+ country: string;
1522
1522
  phone?: string | null | undefined;
1523
1523
  fax?: string | null | undefined;
1524
1524
  email?: string | null | undefined;
1525
1525
  }, {
1526
- city: string;
1527
- country: string;
1528
- postalCode: string;
1529
1526
  address1: string;
1530
- state?: unknown;
1531
1527
  address2?: string | null | undefined;
1528
+ city: string;
1529
+ state?: unknown;
1530
+ postalCode: string;
1531
+ country: string;
1532
1532
  phone?: string | null | undefined;
1533
1533
  fax?: string | null | undefined;
1534
1534
  email?: string | null | undefined;
1535
1535
  }>, "many">, {
1536
- city: string;
1537
- country: string;
1538
- postalCode: string;
1539
1536
  address1: string;
1540
- state?: string | null | undefined;
1541
1537
  address2?: string | null | undefined;
1538
+ city: string;
1539
+ state?: string | null | undefined;
1540
+ postalCode: string;
1541
+ country: string;
1542
1542
  phone?: string | null | undefined;
1543
1543
  fax?: string | null | undefined;
1544
1544
  email?: string | null | undefined;
1545
1545
  }[], {
1546
- city: string;
1547
- country: string;
1548
- postalCode: string;
1549
1546
  address1: string;
1550
- state?: unknown;
1551
1547
  address2?: string | null | undefined;
1548
+ city: string;
1549
+ state?: unknown;
1550
+ postalCode: string;
1551
+ country: string;
1552
1552
  phone?: string | null | undefined;
1553
1553
  fax?: string | null | undefined;
1554
1554
  email?: string | null | undefined;
@@ -1562,13 +1562,13 @@ export declare const organizationListSchema: z.ZodObject<{
1562
1562
  }, "strip", z.ZodTypeAny, {
1563
1563
  name: string;
1564
1564
  title: string;
1565
- phone: string;
1566
1565
  email: string;
1566
+ phone: string;
1567
1567
  }, {
1568
1568
  name: string;
1569
1569
  title: string;
1570
- phone: string;
1571
1570
  email: string;
1571
+ phone: string;
1572
1572
  }>, "many">;
1573
1573
  isLegacyBridgeEnabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1574
1574
  }, {
@@ -1595,43 +1595,43 @@ export declare const organizationListSchema: z.ZodObject<{
1595
1595
  excludes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1596
1596
  doa: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1597
1597
  }, "strip", z.ZodTypeAny, {
1598
+ type: string;
1598
1599
  purposeOfUse: {
1599
1600
  id: string;
1600
1601
  queryInitiatorOnly: boolean;
1601
1602
  queryInitiator: boolean;
1602
1603
  queryResponder: boolean;
1603
1604
  }[];
1604
- type: string;
1605
1605
  includes?: string[] | null | undefined;
1606
1606
  excludes?: string[] | null | undefined;
1607
1607
  doa?: string[] | null | undefined;
1608
1608
  }, {
1609
+ type: string;
1609
1610
  purposeOfUse: {
1610
1611
  id: string;
1611
1612
  queryInitiatorOnly: boolean;
1612
1613
  queryInitiator: boolean;
1613
1614
  queryResponder: boolean;
1614
1615
  }[];
1615
- type: string;
1616
1616
  includes?: string[] | null | undefined;
1617
1617
  excludes?: string[] | null | undefined;
1618
1618
  doa?: string[] | null | undefined;
1619
1619
  }>, "many">;
1620
1620
  gateways: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
1621
- serviceType: z.ZodUnion<[z.ZodLiteral<"R4_Base">, z.ZodLiteral<"XCA-ITI-38">, z.ZodLiteral<"XCA-ITI-39">]>;
1622
- gatewayType: z.ZodUnion<[z.ZodLiteral<"FHIR">, z.ZodLiteral<"XCA">]>;
1621
+ serviceType: z.ZodString;
1622
+ gatewayType: z.ZodString;
1623
1623
  isAsync: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1624
1624
  gatewayTimeout: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1625
1625
  endpointLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1626
1626
  }, "strip", z.ZodTypeAny, {
1627
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
1628
- gatewayType: "FHIR" | "XCA";
1627
+ serviceType: string;
1628
+ gatewayType: string;
1629
1629
  isAsync?: boolean | null | undefined;
1630
1630
  gatewayTimeout?: number | null | undefined;
1631
1631
  endpointLocation?: string | null | undefined;
1632
1632
  }, {
1633
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
1634
- gatewayType: "FHIR" | "XCA";
1633
+ serviceType: string;
1634
+ gatewayType: string;
1635
1635
  isAsync?: boolean | null | undefined;
1636
1636
  gatewayTimeout?: number | null | undefined;
1637
1637
  endpointLocation?: string | null | undefined;
@@ -1656,61 +1656,61 @@ export declare const organizationListSchema: z.ZodObject<{
1656
1656
  binaryScope?: string | null | undefined;
1657
1657
  }>>>;
1658
1658
  }>, "strip", z.ZodTypeAny, {
1659
+ organizationId: string;
1659
1660
  homeCommunityId: string;
1660
- type: string;
1661
1661
  name: string;
1662
- organizationId: string;
1662
+ displayName?: string | null | undefined;
1663
1663
  memberName: string;
1664
+ type: string;
1665
+ npiType1?: string | null | undefined;
1666
+ npiType2?: string | null | undefined;
1664
1667
  patientIdAssignAuthority: string;
1668
+ sendingFacility?: {
1669
+ namespaceId?: string | null | undefined;
1670
+ universalId?: string | null | undefined;
1671
+ universalIdType?: string | null | undefined;
1672
+ } | null | undefined;
1673
+ sendingApplication?: {
1674
+ namespaceId?: string | null | undefined;
1675
+ universalId?: string | null | undefined;
1676
+ universalIdType?: string | null | undefined;
1677
+ } | null | undefined;
1665
1678
  isActive: boolean;
1666
1679
  locations: {
1667
- city: string;
1668
- country: string;
1669
- postalCode: string;
1670
1680
  address1: string;
1671
- state?: string | null | undefined;
1672
1681
  address2?: string | null | undefined;
1682
+ city: string;
1683
+ state?: string | null | undefined;
1684
+ postalCode: string;
1685
+ country: string;
1673
1686
  phone?: string | null | undefined;
1674
1687
  fax?: string | null | undefined;
1675
1688
  email?: string | null | undefined;
1676
1689
  }[];
1690
+ searchRadius?: number | null | undefined;
1677
1691
  technicalContacts: {
1678
1692
  name: string;
1679
1693
  title: string;
1680
- phone: string;
1681
1694
  email: string;
1695
+ phone: string;
1682
1696
  }[];
1697
+ isLegacyBridgeEnabled?: boolean | null | undefined;
1698
+ securityTokenKeyType?: string | null | undefined;
1683
1699
  networks: {
1700
+ type: string;
1684
1701
  purposeOfUse: {
1685
1702
  id: string;
1686
1703
  queryInitiatorOnly: boolean;
1687
1704
  queryInitiator: boolean;
1688
1705
  queryResponder: boolean;
1689
1706
  }[];
1690
- type: string;
1691
1707
  includes?: string[] | null | undefined;
1692
1708
  excludes?: string[] | null | undefined;
1693
1709
  doa?: string[] | null | undefined;
1694
1710
  }[];
1695
- displayName?: string | null | undefined;
1696
- npiType1?: string | null | undefined;
1697
- npiType2?: string | null | undefined;
1698
- sendingFacility?: {
1699
- namespaceId?: string | null | undefined;
1700
- universalId?: string | null | undefined;
1701
- universalIdType?: string | null | undefined;
1702
- } | null | undefined;
1703
- sendingApplication?: {
1704
- namespaceId?: string | null | undefined;
1705
- universalId?: string | null | undefined;
1706
- universalIdType?: string | null | undefined;
1707
- } | null | undefined;
1708
- searchRadius?: number | null | undefined;
1709
- isLegacyBridgeEnabled?: boolean | null | undefined;
1710
- securityTokenKeyType?: string | null | undefined;
1711
1711
  gateways?: {
1712
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
1713
- gatewayType: "FHIR" | "XCA";
1712
+ serviceType: string;
1713
+ gatewayType: string;
1714
1714
  isAsync?: boolean | null | undefined;
1715
1715
  gatewayTimeout?: number | null | undefined;
1716
1716
  endpointLocation?: string | null | undefined;
@@ -1723,61 +1723,61 @@ export declare const organizationListSchema: z.ZodObject<{
1723
1723
  binaryScope?: string | null | undefined;
1724
1724
  } | null | undefined;
1725
1725
  }, {
1726
+ organizationId: string;
1726
1727
  homeCommunityId: string;
1727
- type: string;
1728
1728
  name: string;
1729
- organizationId: string;
1729
+ displayName?: string | null | undefined;
1730
1730
  memberName: string;
1731
+ type: string;
1732
+ npiType1?: string | null | undefined;
1733
+ npiType2?: string | null | undefined;
1731
1734
  patientIdAssignAuthority: string;
1735
+ sendingFacility?: {
1736
+ namespaceId?: string | null | undefined;
1737
+ universalId?: string | null | undefined;
1738
+ universalIdType?: string | null | undefined;
1739
+ } | null | undefined;
1740
+ sendingApplication?: {
1741
+ namespaceId?: string | null | undefined;
1742
+ universalId?: string | null | undefined;
1743
+ universalIdType?: string | null | undefined;
1744
+ } | null | undefined;
1732
1745
  isActive: boolean;
1733
1746
  locations: {
1734
- city: string;
1735
- country: string;
1736
- postalCode: string;
1737
1747
  address1: string;
1738
- state?: unknown;
1739
1748
  address2?: string | null | undefined;
1749
+ city: string;
1750
+ state?: unknown;
1751
+ postalCode: string;
1752
+ country: string;
1740
1753
  phone?: string | null | undefined;
1741
1754
  fax?: string | null | undefined;
1742
1755
  email?: string | null | undefined;
1743
1756
  }[];
1757
+ searchRadius?: number | null | undefined;
1744
1758
  technicalContacts: {
1745
1759
  name: string;
1746
1760
  title: string;
1747
- phone: string;
1748
1761
  email: string;
1762
+ phone: string;
1749
1763
  }[];
1764
+ isLegacyBridgeEnabled?: boolean | null | undefined;
1765
+ securityTokenKeyType?: string | null | undefined;
1750
1766
  networks: {
1767
+ type: string;
1751
1768
  purposeOfUse: {
1752
1769
  id: string;
1753
1770
  queryInitiatorOnly: boolean;
1754
1771
  queryInitiator: boolean;
1755
1772
  queryResponder: boolean;
1756
1773
  }[];
1757
- type: string;
1758
1774
  includes?: string[] | null | undefined;
1759
1775
  excludes?: string[] | null | undefined;
1760
1776
  doa?: string[] | null | undefined;
1761
1777
  }[];
1762
- displayName?: string | null | undefined;
1763
- npiType1?: string | null | undefined;
1764
- npiType2?: string | null | undefined;
1765
- sendingFacility?: {
1766
- namespaceId?: string | null | undefined;
1767
- universalId?: string | null | undefined;
1768
- universalIdType?: string | null | undefined;
1769
- } | null | undefined;
1770
- sendingApplication?: {
1771
- namespaceId?: string | null | undefined;
1772
- universalId?: string | null | undefined;
1773
- universalIdType?: string | null | undefined;
1774
- } | null | undefined;
1775
- searchRadius?: number | null | undefined;
1776
- isLegacyBridgeEnabled?: boolean | null | undefined;
1777
- securityTokenKeyType?: string | null | undefined;
1778
1778
  gateways?: {
1779
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
1780
- gatewayType: "FHIR" | "XCA";
1779
+ serviceType: string;
1780
+ gatewayType: string;
1781
1781
  isAsync?: boolean | null | undefined;
1782
1782
  gatewayTimeout?: number | null | undefined;
1783
1783
  endpointLocation?: string | null | undefined;
@@ -1837,42 +1837,42 @@ export declare const organizationListSchema: z.ZodObject<{
1837
1837
  fax: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1838
1838
  email: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1839
1839
  }, "strip", z.ZodTypeAny, {
1840
- city: string;
1841
- country: string;
1842
- postalCode: string;
1843
1840
  address1: string;
1844
- state?: string | null | undefined;
1845
1841
  address2?: string | null | undefined;
1842
+ city: string;
1843
+ state?: string | null | undefined;
1844
+ postalCode: string;
1845
+ country: string;
1846
1846
  phone?: string | null | undefined;
1847
1847
  fax?: string | null | undefined;
1848
1848
  email?: string | null | undefined;
1849
1849
  }, {
1850
- city: string;
1851
- country: string;
1852
- postalCode: string;
1853
1850
  address1: string;
1854
- state?: unknown;
1855
1851
  address2?: string | null | undefined;
1852
+ city: string;
1853
+ state?: unknown;
1854
+ postalCode: string;
1855
+ country: string;
1856
1856
  phone?: string | null | undefined;
1857
1857
  fax?: string | null | undefined;
1858
1858
  email?: string | null | undefined;
1859
1859
  }>, "many">, {
1860
- city: string;
1861
- country: string;
1862
- postalCode: string;
1863
1860
  address1: string;
1864
- state?: string | null | undefined;
1865
1861
  address2?: string | null | undefined;
1862
+ city: string;
1863
+ state?: string | null | undefined;
1864
+ postalCode: string;
1865
+ country: string;
1866
1866
  phone?: string | null | undefined;
1867
1867
  fax?: string | null | undefined;
1868
1868
  email?: string | null | undefined;
1869
1869
  }[], {
1870
- city: string;
1871
- country: string;
1872
- postalCode: string;
1873
1870
  address1: string;
1874
- state?: unknown;
1875
1871
  address2?: string | null | undefined;
1872
+ city: string;
1873
+ state?: unknown;
1874
+ postalCode: string;
1875
+ country: string;
1876
1876
  phone?: string | null | undefined;
1877
1877
  fax?: string | null | undefined;
1878
1878
  email?: string | null | undefined;
@@ -1886,13 +1886,13 @@ export declare const organizationListSchema: z.ZodObject<{
1886
1886
  }, "strip", z.ZodTypeAny, {
1887
1887
  name: string;
1888
1888
  title: string;
1889
- phone: string;
1890
1889
  email: string;
1890
+ phone: string;
1891
1891
  }, {
1892
1892
  name: string;
1893
1893
  title: string;
1894
- phone: string;
1895
1894
  email: string;
1895
+ phone: string;
1896
1896
  }>, "many">;
1897
1897
  isLegacyBridgeEnabled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1898
1898
  }, {
@@ -1919,43 +1919,43 @@ export declare const organizationListSchema: z.ZodObject<{
1919
1919
  excludes: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1920
1920
  doa: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
1921
1921
  }, "strip", z.ZodTypeAny, {
1922
+ type: string;
1922
1923
  purposeOfUse: {
1923
1924
  id: string;
1924
1925
  queryInitiatorOnly: boolean;
1925
1926
  queryInitiator: boolean;
1926
1927
  queryResponder: boolean;
1927
1928
  }[];
1928
- type: string;
1929
1929
  includes?: string[] | null | undefined;
1930
1930
  excludes?: string[] | null | undefined;
1931
1931
  doa?: string[] | null | undefined;
1932
1932
  }, {
1933
+ type: string;
1933
1934
  purposeOfUse: {
1934
1935
  id: string;
1935
1936
  queryInitiatorOnly: boolean;
1936
1937
  queryInitiator: boolean;
1937
1938
  queryResponder: boolean;
1938
1939
  }[];
1939
- type: string;
1940
1940
  includes?: string[] | null | undefined;
1941
1941
  excludes?: string[] | null | undefined;
1942
1942
  doa?: string[] | null | undefined;
1943
1943
  }>, "many">;
1944
1944
  gateways: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
1945
- serviceType: z.ZodUnion<[z.ZodLiteral<"R4_Base">, z.ZodLiteral<"XCA-ITI-38">, z.ZodLiteral<"XCA-ITI-39">]>;
1946
- gatewayType: z.ZodUnion<[z.ZodLiteral<"FHIR">, z.ZodLiteral<"XCA">]>;
1945
+ serviceType: z.ZodString;
1946
+ gatewayType: z.ZodString;
1947
1947
  isAsync: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1948
1948
  gatewayTimeout: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1949
1949
  endpointLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1950
1950
  }, "strip", z.ZodTypeAny, {
1951
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
1952
- gatewayType: "FHIR" | "XCA";
1951
+ serviceType: string;
1952
+ gatewayType: string;
1953
1953
  isAsync?: boolean | null | undefined;
1954
1954
  gatewayTimeout?: number | null | undefined;
1955
1955
  endpointLocation?: string | null | undefined;
1956
1956
  }, {
1957
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
1958
- gatewayType: "FHIR" | "XCA";
1957
+ serviceType: string;
1958
+ gatewayType: string;
1959
1959
  isAsync?: boolean | null | undefined;
1960
1960
  gatewayTimeout?: number | null | undefined;
1961
1961
  endpointLocation?: string | null | undefined;
@@ -1980,45 +1980,75 @@ export declare const organizationListSchema: z.ZodObject<{
1980
1980
  binaryScope?: string | null | undefined;
1981
1981
  }>>>;
1982
1982
  }>, "authorizationInformation">, "strip", z.ZodTypeAny, {
1983
+ organizationId: string;
1983
1984
  homeCommunityId: string;
1984
- type: string;
1985
1985
  name: string;
1986
- organizationId: string;
1986
+ displayName?: string | null | undefined;
1987
1987
  memberName: string;
1988
+ type: string;
1989
+ npiType1?: string | null | undefined;
1990
+ npiType2?: string | null | undefined;
1988
1991
  patientIdAssignAuthority: string;
1992
+ sendingFacility?: {
1993
+ namespaceId?: string | null | undefined;
1994
+ universalId?: string | null | undefined;
1995
+ universalIdType?: string | null | undefined;
1996
+ } | null | undefined;
1997
+ sendingApplication?: {
1998
+ namespaceId?: string | null | undefined;
1999
+ universalId?: string | null | undefined;
2000
+ universalIdType?: string | null | undefined;
2001
+ } | null | undefined;
1989
2002
  isActive: boolean;
1990
2003
  locations: {
1991
- city: string;
1992
- country: string;
1993
- postalCode: string;
1994
2004
  address1: string;
1995
- state?: string | null | undefined;
1996
2005
  address2?: string | null | undefined;
2006
+ city: string;
2007
+ state?: string | null | undefined;
2008
+ postalCode: string;
2009
+ country: string;
1997
2010
  phone?: string | null | undefined;
1998
2011
  fax?: string | null | undefined;
1999
2012
  email?: string | null | undefined;
2000
2013
  }[];
2014
+ searchRadius?: number | null | undefined;
2001
2015
  technicalContacts: {
2002
2016
  name: string;
2003
2017
  title: string;
2004
- phone: string;
2005
2018
  email: string;
2019
+ phone: string;
2006
2020
  }[];
2021
+ isLegacyBridgeEnabled?: boolean | null | undefined;
2022
+ securityTokenKeyType?: string | null | undefined;
2007
2023
  networks: {
2024
+ type: string;
2008
2025
  purposeOfUse: {
2009
2026
  id: string;
2010
2027
  queryInitiatorOnly: boolean;
2011
2028
  queryInitiator: boolean;
2012
2029
  queryResponder: boolean;
2013
2030
  }[];
2014
- type: string;
2015
2031
  includes?: string[] | null | undefined;
2016
2032
  excludes?: string[] | null | undefined;
2017
2033
  doa?: string[] | null | undefined;
2018
2034
  }[];
2035
+ gateways?: {
2036
+ serviceType: string;
2037
+ gatewayType: string;
2038
+ isAsync?: boolean | null | undefined;
2039
+ gatewayTimeout?: number | null | undefined;
2040
+ endpointLocation?: string | null | undefined;
2041
+ }[] | null | undefined;
2042
+ }, {
2043
+ organizationId: string;
2044
+ homeCommunityId: string;
2045
+ name: string;
2019
2046
  displayName?: string | null | undefined;
2047
+ memberName: string;
2048
+ type: string;
2020
2049
  npiType1?: string | null | undefined;
2021
2050
  npiType2?: string | null | undefined;
2051
+ patientIdAssignAuthority: string;
2022
2052
  sendingFacility?: {
2023
2053
  namespaceId?: string | null | undefined;
2024
2054
  universalId?: string | null | undefined;
@@ -2029,72 +2059,42 @@ export declare const organizationListSchema: z.ZodObject<{
2029
2059
  universalId?: string | null | undefined;
2030
2060
  universalIdType?: string | null | undefined;
2031
2061
  } | null | undefined;
2032
- searchRadius?: number | null | undefined;
2033
- isLegacyBridgeEnabled?: boolean | null | undefined;
2034
- securityTokenKeyType?: string | null | undefined;
2035
- gateways?: {
2036
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
2037
- gatewayType: "FHIR" | "XCA";
2038
- isAsync?: boolean | null | undefined;
2039
- gatewayTimeout?: number | null | undefined;
2040
- endpointLocation?: string | null | undefined;
2041
- }[] | null | undefined;
2042
- }, {
2043
- homeCommunityId: string;
2044
- type: string;
2045
- name: string;
2046
- organizationId: string;
2047
- memberName: string;
2048
- patientIdAssignAuthority: string;
2049
2062
  isActive: boolean;
2050
2063
  locations: {
2051
- city: string;
2052
- country: string;
2053
- postalCode: string;
2054
2064
  address1: string;
2055
- state?: unknown;
2056
2065
  address2?: string | null | undefined;
2066
+ city: string;
2067
+ state?: unknown;
2068
+ postalCode: string;
2069
+ country: string;
2057
2070
  phone?: string | null | undefined;
2058
2071
  fax?: string | null | undefined;
2059
2072
  email?: string | null | undefined;
2060
2073
  }[];
2074
+ searchRadius?: number | null | undefined;
2061
2075
  technicalContacts: {
2062
2076
  name: string;
2063
2077
  title: string;
2064
- phone: string;
2065
2078
  email: string;
2079
+ phone: string;
2066
2080
  }[];
2081
+ isLegacyBridgeEnabled?: boolean | null | undefined;
2082
+ securityTokenKeyType?: string | null | undefined;
2067
2083
  networks: {
2084
+ type: string;
2068
2085
  purposeOfUse: {
2069
2086
  id: string;
2070
2087
  queryInitiatorOnly: boolean;
2071
2088
  queryInitiator: boolean;
2072
2089
  queryResponder: boolean;
2073
2090
  }[];
2074
- type: string;
2075
2091
  includes?: string[] | null | undefined;
2076
2092
  excludes?: string[] | null | undefined;
2077
2093
  doa?: string[] | null | undefined;
2078
2094
  }[];
2079
- displayName?: string | null | undefined;
2080
- npiType1?: string | null | undefined;
2081
- npiType2?: string | null | undefined;
2082
- sendingFacility?: {
2083
- namespaceId?: string | null | undefined;
2084
- universalId?: string | null | undefined;
2085
- universalIdType?: string | null | undefined;
2086
- } | null | undefined;
2087
- sendingApplication?: {
2088
- namespaceId?: string | null | undefined;
2089
- universalId?: string | null | undefined;
2090
- universalIdType?: string | null | undefined;
2091
- } | null | undefined;
2092
- searchRadius?: number | null | undefined;
2093
- isLegacyBridgeEnabled?: boolean | null | undefined;
2094
- securityTokenKeyType?: string | null | undefined;
2095
2095
  gateways?: {
2096
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
2097
- gatewayType: "FHIR" | "XCA";
2096
+ serviceType: string;
2097
+ gatewayType: string;
2098
2098
  isAsync?: boolean | null | undefined;
2099
2099
  gatewayTimeout?: number | null | undefined;
2100
2100
  endpointLocation?: string | null | undefined;
@@ -2105,61 +2105,61 @@ export declare const organizationListSchema: z.ZodObject<{
2105
2105
  from: number;
2106
2106
  to: number;
2107
2107
  organizations: ({
2108
+ organizationId: string;
2108
2109
  homeCommunityId: string;
2109
- type: string;
2110
2110
  name: string;
2111
- organizationId: string;
2111
+ displayName?: string | null | undefined;
2112
2112
  memberName: string;
2113
+ type: string;
2114
+ npiType1?: string | null | undefined;
2115
+ npiType2?: string | null | undefined;
2113
2116
  patientIdAssignAuthority: string;
2117
+ sendingFacility?: {
2118
+ namespaceId?: string | null | undefined;
2119
+ universalId?: string | null | undefined;
2120
+ universalIdType?: string | null | undefined;
2121
+ } | null | undefined;
2122
+ sendingApplication?: {
2123
+ namespaceId?: string | null | undefined;
2124
+ universalId?: string | null | undefined;
2125
+ universalIdType?: string | null | undefined;
2126
+ } | null | undefined;
2114
2127
  isActive: boolean;
2115
2128
  locations: {
2116
- city: string;
2117
- country: string;
2118
- postalCode: string;
2119
2129
  address1: string;
2120
- state?: string | null | undefined;
2121
2130
  address2?: string | null | undefined;
2131
+ city: string;
2132
+ state?: string | null | undefined;
2133
+ postalCode: string;
2134
+ country: string;
2122
2135
  phone?: string | null | undefined;
2123
2136
  fax?: string | null | undefined;
2124
2137
  email?: string | null | undefined;
2125
2138
  }[];
2139
+ searchRadius?: number | null | undefined;
2126
2140
  technicalContacts: {
2127
2141
  name: string;
2128
2142
  title: string;
2129
- phone: string;
2130
2143
  email: string;
2144
+ phone: string;
2131
2145
  }[];
2146
+ isLegacyBridgeEnabled?: boolean | null | undefined;
2147
+ securityTokenKeyType?: string | null | undefined;
2132
2148
  networks: {
2149
+ type: string;
2133
2150
  purposeOfUse: {
2134
2151
  id: string;
2135
2152
  queryInitiatorOnly: boolean;
2136
2153
  queryInitiator: boolean;
2137
2154
  queryResponder: boolean;
2138
2155
  }[];
2139
- type: string;
2140
2156
  includes?: string[] | null | undefined;
2141
2157
  excludes?: string[] | null | undefined;
2142
2158
  doa?: string[] | null | undefined;
2143
2159
  }[];
2144
- displayName?: string | null | undefined;
2145
- npiType1?: string | null | undefined;
2146
- npiType2?: string | null | undefined;
2147
- sendingFacility?: {
2148
- namespaceId?: string | null | undefined;
2149
- universalId?: string | null | undefined;
2150
- universalIdType?: string | null | undefined;
2151
- } | null | undefined;
2152
- sendingApplication?: {
2153
- namespaceId?: string | null | undefined;
2154
- universalId?: string | null | undefined;
2155
- universalIdType?: string | null | undefined;
2156
- } | null | undefined;
2157
- searchRadius?: number | null | undefined;
2158
- isLegacyBridgeEnabled?: boolean | null | undefined;
2159
- securityTokenKeyType?: string | null | undefined;
2160
2160
  gateways?: {
2161
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
2162
- gatewayType: "FHIR" | "XCA";
2161
+ serviceType: string;
2162
+ gatewayType: string;
2163
2163
  isAsync?: boolean | null | undefined;
2164
2164
  gatewayTimeout?: number | null | undefined;
2165
2165
  endpointLocation?: string | null | undefined;
@@ -2172,61 +2172,61 @@ export declare const organizationListSchema: z.ZodObject<{
2172
2172
  binaryScope?: string | null | undefined;
2173
2173
  } | null | undefined;
2174
2174
  } | {
2175
+ organizationId: string;
2175
2176
  homeCommunityId: string;
2176
- type: string;
2177
2177
  name: string;
2178
- organizationId: string;
2178
+ displayName?: string | null | undefined;
2179
2179
  memberName: string;
2180
+ type: string;
2181
+ npiType1?: string | null | undefined;
2182
+ npiType2?: string | null | undefined;
2180
2183
  patientIdAssignAuthority: string;
2184
+ sendingFacility?: {
2185
+ namespaceId?: string | null | undefined;
2186
+ universalId?: string | null | undefined;
2187
+ universalIdType?: string | null | undefined;
2188
+ } | null | undefined;
2189
+ sendingApplication?: {
2190
+ namespaceId?: string | null | undefined;
2191
+ universalId?: string | null | undefined;
2192
+ universalIdType?: string | null | undefined;
2193
+ } | null | undefined;
2181
2194
  isActive: boolean;
2182
2195
  locations: {
2183
- city: string;
2184
- country: string;
2185
- postalCode: string;
2186
2196
  address1: string;
2187
- state?: string | null | undefined;
2188
2197
  address2?: string | null | undefined;
2198
+ city: string;
2199
+ state?: string | null | undefined;
2200
+ postalCode: string;
2201
+ country: string;
2189
2202
  phone?: string | null | undefined;
2190
2203
  fax?: string | null | undefined;
2191
2204
  email?: string | null | undefined;
2192
2205
  }[];
2206
+ searchRadius?: number | null | undefined;
2193
2207
  technicalContacts: {
2194
2208
  name: string;
2195
2209
  title: string;
2196
- phone: string;
2197
2210
  email: string;
2211
+ phone: string;
2198
2212
  }[];
2213
+ isLegacyBridgeEnabled?: boolean | null | undefined;
2214
+ securityTokenKeyType?: string | null | undefined;
2199
2215
  networks: {
2216
+ type: string;
2200
2217
  purposeOfUse: {
2201
2218
  id: string;
2202
2219
  queryInitiatorOnly: boolean;
2203
2220
  queryInitiator: boolean;
2204
2221
  queryResponder: boolean;
2205
2222
  }[];
2206
- type: string;
2207
2223
  includes?: string[] | null | undefined;
2208
2224
  excludes?: string[] | null | undefined;
2209
2225
  doa?: string[] | null | undefined;
2210
2226
  }[];
2211
- displayName?: string | null | undefined;
2212
- npiType1?: string | null | undefined;
2213
- npiType2?: string | null | undefined;
2214
- sendingFacility?: {
2215
- namespaceId?: string | null | undefined;
2216
- universalId?: string | null | undefined;
2217
- universalIdType?: string | null | undefined;
2218
- } | null | undefined;
2219
- sendingApplication?: {
2220
- namespaceId?: string | null | undefined;
2221
- universalId?: string | null | undefined;
2222
- universalIdType?: string | null | undefined;
2223
- } | null | undefined;
2224
- searchRadius?: number | null | undefined;
2225
- isLegacyBridgeEnabled?: boolean | null | undefined;
2226
- securityTokenKeyType?: string | null | undefined;
2227
2227
  gateways?: {
2228
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
2229
- gatewayType: "FHIR" | "XCA";
2228
+ serviceType: string;
2229
+ gatewayType: string;
2230
2230
  isAsync?: boolean | null | undefined;
2231
2231
  gatewayTimeout?: number | null | undefined;
2232
2232
  endpointLocation?: string | null | undefined;
@@ -2237,61 +2237,61 @@ export declare const organizationListSchema: z.ZodObject<{
2237
2237
  from: number;
2238
2238
  to: number;
2239
2239
  organizations: ({
2240
+ organizationId: string;
2240
2241
  homeCommunityId: string;
2241
- type: string;
2242
2242
  name: string;
2243
- organizationId: string;
2243
+ displayName?: string | null | undefined;
2244
2244
  memberName: string;
2245
+ type: string;
2246
+ npiType1?: string | null | undefined;
2247
+ npiType2?: string | null | undefined;
2245
2248
  patientIdAssignAuthority: string;
2249
+ sendingFacility?: {
2250
+ namespaceId?: string | null | undefined;
2251
+ universalId?: string | null | undefined;
2252
+ universalIdType?: string | null | undefined;
2253
+ } | null | undefined;
2254
+ sendingApplication?: {
2255
+ namespaceId?: string | null | undefined;
2256
+ universalId?: string | null | undefined;
2257
+ universalIdType?: string | null | undefined;
2258
+ } | null | undefined;
2246
2259
  isActive: boolean;
2247
2260
  locations: {
2248
- city: string;
2249
- country: string;
2250
- postalCode: string;
2251
2261
  address1: string;
2252
- state?: unknown;
2253
2262
  address2?: string | null | undefined;
2263
+ city: string;
2264
+ state?: unknown;
2265
+ postalCode: string;
2266
+ country: string;
2254
2267
  phone?: string | null | undefined;
2255
2268
  fax?: string | null | undefined;
2256
2269
  email?: string | null | undefined;
2257
2270
  }[];
2271
+ searchRadius?: number | null | undefined;
2258
2272
  technicalContacts: {
2259
2273
  name: string;
2260
2274
  title: string;
2261
- phone: string;
2262
2275
  email: string;
2276
+ phone: string;
2263
2277
  }[];
2278
+ isLegacyBridgeEnabled?: boolean | null | undefined;
2279
+ securityTokenKeyType?: string | null | undefined;
2264
2280
  networks: {
2281
+ type: string;
2265
2282
  purposeOfUse: {
2266
2283
  id: string;
2267
2284
  queryInitiatorOnly: boolean;
2268
2285
  queryInitiator: boolean;
2269
2286
  queryResponder: boolean;
2270
2287
  }[];
2271
- type: string;
2272
2288
  includes?: string[] | null | undefined;
2273
2289
  excludes?: string[] | null | undefined;
2274
2290
  doa?: string[] | null | undefined;
2275
2291
  }[];
2276
- displayName?: string | null | undefined;
2277
- npiType1?: string | null | undefined;
2278
- npiType2?: string | null | undefined;
2279
- sendingFacility?: {
2280
- namespaceId?: string | null | undefined;
2281
- universalId?: string | null | undefined;
2282
- universalIdType?: string | null | undefined;
2283
- } | null | undefined;
2284
- sendingApplication?: {
2285
- namespaceId?: string | null | undefined;
2286
- universalId?: string | null | undefined;
2287
- universalIdType?: string | null | undefined;
2288
- } | null | undefined;
2289
- searchRadius?: number | null | undefined;
2290
- isLegacyBridgeEnabled?: boolean | null | undefined;
2291
- securityTokenKeyType?: string | null | undefined;
2292
2292
  gateways?: {
2293
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
2294
- gatewayType: "FHIR" | "XCA";
2293
+ serviceType: string;
2294
+ gatewayType: string;
2295
2295
  isAsync?: boolean | null | undefined;
2296
2296
  gatewayTimeout?: number | null | undefined;
2297
2297
  endpointLocation?: string | null | undefined;
@@ -2304,61 +2304,61 @@ export declare const organizationListSchema: z.ZodObject<{
2304
2304
  binaryScope?: string | null | undefined;
2305
2305
  } | null | undefined;
2306
2306
  } | {
2307
+ organizationId: string;
2307
2308
  homeCommunityId: string;
2308
- type: string;
2309
2309
  name: string;
2310
- organizationId: string;
2310
+ displayName?: string | null | undefined;
2311
2311
  memberName: string;
2312
+ type: string;
2313
+ npiType1?: string | null | undefined;
2314
+ npiType2?: string | null | undefined;
2312
2315
  patientIdAssignAuthority: string;
2316
+ sendingFacility?: {
2317
+ namespaceId?: string | null | undefined;
2318
+ universalId?: string | null | undefined;
2319
+ universalIdType?: string | null | undefined;
2320
+ } | null | undefined;
2321
+ sendingApplication?: {
2322
+ namespaceId?: string | null | undefined;
2323
+ universalId?: string | null | undefined;
2324
+ universalIdType?: string | null | undefined;
2325
+ } | null | undefined;
2313
2326
  isActive: boolean;
2314
2327
  locations: {
2315
- city: string;
2316
- country: string;
2317
- postalCode: string;
2318
2328
  address1: string;
2319
- state?: unknown;
2320
2329
  address2?: string | null | undefined;
2330
+ city: string;
2331
+ state?: unknown;
2332
+ postalCode: string;
2333
+ country: string;
2321
2334
  phone?: string | null | undefined;
2322
2335
  fax?: string | null | undefined;
2323
2336
  email?: string | null | undefined;
2324
2337
  }[];
2338
+ searchRadius?: number | null | undefined;
2325
2339
  technicalContacts: {
2326
2340
  name: string;
2327
2341
  title: string;
2328
- phone: string;
2329
2342
  email: string;
2343
+ phone: string;
2330
2344
  }[];
2345
+ isLegacyBridgeEnabled?: boolean | null | undefined;
2346
+ securityTokenKeyType?: string | null | undefined;
2331
2347
  networks: {
2348
+ type: string;
2332
2349
  purposeOfUse: {
2333
2350
  id: string;
2334
2351
  queryInitiatorOnly: boolean;
2335
2352
  queryInitiator: boolean;
2336
2353
  queryResponder: boolean;
2337
2354
  }[];
2338
- type: string;
2339
2355
  includes?: string[] | null | undefined;
2340
2356
  excludes?: string[] | null | undefined;
2341
2357
  doa?: string[] | null | undefined;
2342
2358
  }[];
2343
- displayName?: string | null | undefined;
2344
- npiType1?: string | null | undefined;
2345
- npiType2?: string | null | undefined;
2346
- sendingFacility?: {
2347
- namespaceId?: string | null | undefined;
2348
- universalId?: string | null | undefined;
2349
- universalIdType?: string | null | undefined;
2350
- } | null | undefined;
2351
- sendingApplication?: {
2352
- namespaceId?: string | null | undefined;
2353
- universalId?: string | null | undefined;
2354
- universalIdType?: string | null | undefined;
2355
- } | null | undefined;
2356
- searchRadius?: number | null | undefined;
2357
- isLegacyBridgeEnabled?: boolean | null | undefined;
2358
- securityTokenKeyType?: string | null | undefined;
2359
2359
  gateways?: {
2360
- serviceType: "R4_Base" | "XCA-ITI-38" | "XCA-ITI-39";
2361
- gatewayType: "FHIR" | "XCA";
2360
+ serviceType: string;
2361
+ gatewayType: string;
2362
2362
  isAsync?: boolean | null | undefined;
2363
2363
  gatewayTimeout?: number | null | undefined;
2364
2364
  endpointLocation?: string | null | undefined;