@metriport/commonwell-sdk 1.0.3 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,751 @@
1
+ import { z } from "zod";
2
+ export declare const organizationSchema: z.ZodObject<{
3
+ organizationId: z.ZodString;
4
+ homeCommunityId: z.ZodString;
5
+ name: z.ZodString;
6
+ displayName: z.ZodString;
7
+ memberName: z.ZodString;
8
+ type: z.ZodString;
9
+ patientIdAssignAuthority: z.ZodString;
10
+ securityTokenKeyType: z.ZodString;
11
+ sendingFacility: z.ZodNullable<z.ZodOptional<z.ZodObject<{
12
+ namespaceId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
13
+ universalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
14
+ universalIdType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
15
+ }, "strip", z.ZodTypeAny, {
16
+ namespaceId?: string;
17
+ universalId?: string;
18
+ universalIdType?: string;
19
+ }, {
20
+ namespaceId?: string;
21
+ universalId?: string;
22
+ universalIdType?: string;
23
+ }>>>;
24
+ sendingApplication: z.ZodNullable<z.ZodOptional<z.ZodObject<{
25
+ namespaceId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
26
+ universalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
27
+ universalIdType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
28
+ }, "strip", z.ZodTypeAny, {
29
+ namespaceId?: string;
30
+ universalId?: string;
31
+ universalIdType?: string;
32
+ }, {
33
+ namespaceId?: string;
34
+ universalId?: string;
35
+ universalIdType?: string;
36
+ }>>>;
37
+ isActive: z.ZodBoolean;
38
+ locations: z.ZodArray<z.ZodObject<{
39
+ address1: z.ZodString;
40
+ address2: z.ZodNullable<z.ZodOptional<z.ZodString>>;
41
+ city: z.ZodString;
42
+ state: z.ZodString;
43
+ postalCode: z.ZodString;
44
+ country: z.ZodString;
45
+ phone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
46
+ fax: z.ZodNullable<z.ZodOptional<z.ZodString>>;
47
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
48
+ }, "strip", z.ZodTypeAny, {
49
+ email?: string;
50
+ city?: string;
51
+ state?: string;
52
+ country?: string;
53
+ address1?: string;
54
+ address2?: string;
55
+ postalCode?: string;
56
+ phone?: string;
57
+ fax?: string;
58
+ }, {
59
+ email?: string;
60
+ city?: string;
61
+ state?: string;
62
+ country?: string;
63
+ address1?: string;
64
+ address2?: string;
65
+ postalCode?: string;
66
+ phone?: string;
67
+ fax?: string;
68
+ }>, "many">;
69
+ technicalContacts: z.ZodArray<z.ZodObject<{
70
+ name: z.ZodString;
71
+ title: z.ZodString;
72
+ email: z.ZodString;
73
+ phone: z.ZodString;
74
+ }, "strip", z.ZodTypeAny, {
75
+ name?: string;
76
+ email?: string;
77
+ phone?: string;
78
+ title?: string;
79
+ }, {
80
+ name?: string;
81
+ email?: string;
82
+ phone?: string;
83
+ title?: string;
84
+ }>, "many">;
85
+ gateways: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
86
+ serviceType: z.ZodString;
87
+ gatewayType: z.ZodString;
88
+ isAsync: z.ZodBoolean;
89
+ gatewayTimeout: z.ZodNumber;
90
+ }, "strip", z.ZodTypeAny, {
91
+ serviceType?: string;
92
+ gatewayType?: string;
93
+ isAsync?: boolean;
94
+ gatewayTimeout?: number;
95
+ }, {
96
+ serviceType?: string;
97
+ gatewayType?: string;
98
+ isAsync?: boolean;
99
+ gatewayTimeout?: number;
100
+ }>, "many">>>;
101
+ authorizationInformation: z.ZodNullable<z.ZodOptional<z.ZodObject<{
102
+ authorizationServerEndpoint: z.ZodString;
103
+ clientId: z.ZodString;
104
+ clientSecret: z.ZodString;
105
+ documentReferenceScope: z.ZodString;
106
+ binaryScope: z.ZodString;
107
+ }, "strip", z.ZodTypeAny, {
108
+ authorizationServerEndpoint?: string;
109
+ clientId?: string;
110
+ clientSecret?: string;
111
+ documentReferenceScope?: string;
112
+ binaryScope?: string;
113
+ }, {
114
+ authorizationServerEndpoint?: string;
115
+ clientId?: string;
116
+ clientSecret?: string;
117
+ documentReferenceScope?: string;
118
+ binaryScope?: string;
119
+ }>>>;
120
+ _links: z.ZodNullable<z.ZodOptional<z.ZodObject<{
121
+ self: z.ZodNullable<z.ZodOptional<z.ZodObject<{
122
+ href: z.ZodNullable<z.ZodOptional<z.ZodString>>;
123
+ templated: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
124
+ type: z.ZodNullable<z.ZodOptional<z.ZodString>>;
125
+ }, "strip", z.ZodTypeAny, {
126
+ type?: string;
127
+ href?: string;
128
+ templated?: boolean;
129
+ }, {
130
+ type?: string;
131
+ href?: string;
132
+ templated?: boolean;
133
+ }>>>;
134
+ certificate: z.ZodNullable<z.ZodOptional<z.ZodObject<{
135
+ href: z.ZodNullable<z.ZodOptional<z.ZodString>>;
136
+ templated: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
137
+ type: z.ZodNullable<z.ZodOptional<z.ZodString>>;
138
+ }, "strip", z.ZodTypeAny, {
139
+ type?: string;
140
+ href?: string;
141
+ templated?: boolean;
142
+ }, {
143
+ type?: string;
144
+ href?: string;
145
+ templated?: boolean;
146
+ }>>>;
147
+ }, "strip", z.ZodTypeAny, {
148
+ self?: {
149
+ type?: string;
150
+ href?: string;
151
+ templated?: boolean;
152
+ };
153
+ certificate?: {
154
+ type?: string;
155
+ href?: string;
156
+ templated?: boolean;
157
+ };
158
+ }, {
159
+ self?: {
160
+ type?: string;
161
+ href?: string;
162
+ templated?: boolean;
163
+ };
164
+ certificate?: {
165
+ type?: string;
166
+ href?: string;
167
+ templated?: boolean;
168
+ };
169
+ }>>>;
170
+ }, "strip", z.ZodTypeAny, {
171
+ name?: string;
172
+ type?: string;
173
+ _links?: {
174
+ self?: {
175
+ type?: string;
176
+ href?: string;
177
+ templated?: boolean;
178
+ };
179
+ certificate?: {
180
+ type?: string;
181
+ href?: string;
182
+ templated?: boolean;
183
+ };
184
+ };
185
+ organizationId?: string;
186
+ homeCommunityId?: string;
187
+ displayName?: string;
188
+ memberName?: string;
189
+ patientIdAssignAuthority?: string;
190
+ securityTokenKeyType?: string;
191
+ sendingFacility?: {
192
+ namespaceId?: string;
193
+ universalId?: string;
194
+ universalIdType?: string;
195
+ };
196
+ sendingApplication?: {
197
+ namespaceId?: string;
198
+ universalId?: string;
199
+ universalIdType?: string;
200
+ };
201
+ isActive?: boolean;
202
+ locations?: {
203
+ email?: string;
204
+ city?: string;
205
+ state?: string;
206
+ country?: string;
207
+ address1?: string;
208
+ address2?: string;
209
+ postalCode?: string;
210
+ phone?: string;
211
+ fax?: string;
212
+ }[];
213
+ technicalContacts?: {
214
+ name?: string;
215
+ email?: string;
216
+ phone?: string;
217
+ title?: string;
218
+ }[];
219
+ gateways?: {
220
+ serviceType?: string;
221
+ gatewayType?: string;
222
+ isAsync?: boolean;
223
+ gatewayTimeout?: number;
224
+ }[];
225
+ authorizationInformation?: {
226
+ authorizationServerEndpoint?: string;
227
+ clientId?: string;
228
+ clientSecret?: string;
229
+ documentReferenceScope?: string;
230
+ binaryScope?: string;
231
+ };
232
+ }, {
233
+ name?: string;
234
+ type?: string;
235
+ _links?: {
236
+ self?: {
237
+ type?: string;
238
+ href?: string;
239
+ templated?: boolean;
240
+ };
241
+ certificate?: {
242
+ type?: string;
243
+ href?: string;
244
+ templated?: boolean;
245
+ };
246
+ };
247
+ organizationId?: string;
248
+ homeCommunityId?: string;
249
+ displayName?: string;
250
+ memberName?: string;
251
+ patientIdAssignAuthority?: string;
252
+ securityTokenKeyType?: string;
253
+ sendingFacility?: {
254
+ namespaceId?: string;
255
+ universalId?: string;
256
+ universalIdType?: string;
257
+ };
258
+ sendingApplication?: {
259
+ namespaceId?: string;
260
+ universalId?: string;
261
+ universalIdType?: string;
262
+ };
263
+ isActive?: boolean;
264
+ locations?: {
265
+ email?: string;
266
+ city?: string;
267
+ state?: string;
268
+ country?: string;
269
+ address1?: string;
270
+ address2?: string;
271
+ postalCode?: string;
272
+ phone?: string;
273
+ fax?: string;
274
+ }[];
275
+ technicalContacts?: {
276
+ name?: string;
277
+ email?: string;
278
+ phone?: string;
279
+ title?: string;
280
+ }[];
281
+ gateways?: {
282
+ serviceType?: string;
283
+ gatewayType?: string;
284
+ isAsync?: boolean;
285
+ gatewayTimeout?: number;
286
+ }[];
287
+ authorizationInformation?: {
288
+ authorizationServerEndpoint?: string;
289
+ clientId?: string;
290
+ clientSecret?: string;
291
+ documentReferenceScope?: string;
292
+ binaryScope?: string;
293
+ };
294
+ }>;
295
+ export type Organization = z.infer<typeof organizationSchema>;
296
+ export declare const organizationListSchema: z.ZodObject<{
297
+ count: z.ZodNumber;
298
+ from: z.ZodNumber;
299
+ to: z.ZodNumber;
300
+ organizations: z.ZodArray<z.ZodObject<{
301
+ organizationId: z.ZodString;
302
+ homeCommunityId: z.ZodString;
303
+ name: z.ZodString;
304
+ displayName: z.ZodString;
305
+ memberName: z.ZodString;
306
+ type: z.ZodString;
307
+ patientIdAssignAuthority: z.ZodString;
308
+ securityTokenKeyType: z.ZodString;
309
+ sendingFacility: z.ZodNullable<z.ZodOptional<z.ZodObject<{
310
+ namespaceId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
311
+ universalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
312
+ universalIdType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
313
+ }, "strip", z.ZodTypeAny, {
314
+ namespaceId?: string;
315
+ universalId?: string;
316
+ universalIdType?: string;
317
+ }, {
318
+ namespaceId?: string;
319
+ universalId?: string;
320
+ universalIdType?: string;
321
+ }>>>;
322
+ sendingApplication: z.ZodNullable<z.ZodOptional<z.ZodObject<{
323
+ namespaceId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
324
+ universalId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
325
+ universalIdType: z.ZodNullable<z.ZodOptional<z.ZodString>>;
326
+ }, "strip", z.ZodTypeAny, {
327
+ namespaceId?: string;
328
+ universalId?: string;
329
+ universalIdType?: string;
330
+ }, {
331
+ namespaceId?: string;
332
+ universalId?: string;
333
+ universalIdType?: string;
334
+ }>>>;
335
+ isActive: z.ZodBoolean;
336
+ locations: z.ZodArray<z.ZodObject<{
337
+ address1: z.ZodString;
338
+ address2: z.ZodNullable<z.ZodOptional<z.ZodString>>;
339
+ city: z.ZodString;
340
+ state: z.ZodString;
341
+ postalCode: z.ZodString;
342
+ country: z.ZodString;
343
+ phone: z.ZodNullable<z.ZodOptional<z.ZodString>>;
344
+ fax: z.ZodNullable<z.ZodOptional<z.ZodString>>;
345
+ email: z.ZodNullable<z.ZodOptional<z.ZodString>>;
346
+ }, "strip", z.ZodTypeAny, {
347
+ email?: string;
348
+ city?: string;
349
+ state?: string;
350
+ country?: string;
351
+ address1?: string;
352
+ address2?: string;
353
+ postalCode?: string;
354
+ phone?: string;
355
+ fax?: string;
356
+ }, {
357
+ email?: string;
358
+ city?: string;
359
+ state?: string;
360
+ country?: string;
361
+ address1?: string;
362
+ address2?: string;
363
+ postalCode?: string;
364
+ phone?: string;
365
+ fax?: string;
366
+ }>, "many">;
367
+ technicalContacts: z.ZodArray<z.ZodObject<{
368
+ name: z.ZodString;
369
+ title: z.ZodString;
370
+ email: z.ZodString;
371
+ phone: z.ZodString;
372
+ }, "strip", z.ZodTypeAny, {
373
+ name?: string;
374
+ email?: string;
375
+ phone?: string;
376
+ title?: string;
377
+ }, {
378
+ name?: string;
379
+ email?: string;
380
+ phone?: string;
381
+ title?: string;
382
+ }>, "many">;
383
+ gateways: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
384
+ serviceType: z.ZodString;
385
+ gatewayType: z.ZodString;
386
+ isAsync: z.ZodBoolean;
387
+ gatewayTimeout: z.ZodNumber;
388
+ }, "strip", z.ZodTypeAny, {
389
+ serviceType?: string;
390
+ gatewayType?: string;
391
+ isAsync?: boolean;
392
+ gatewayTimeout?: number;
393
+ }, {
394
+ serviceType?: string;
395
+ gatewayType?: string;
396
+ isAsync?: boolean;
397
+ gatewayTimeout?: number;
398
+ }>, "many">>>;
399
+ authorizationInformation: z.ZodNullable<z.ZodOptional<z.ZodObject<{
400
+ authorizationServerEndpoint: z.ZodString;
401
+ clientId: z.ZodString;
402
+ clientSecret: z.ZodString;
403
+ documentReferenceScope: z.ZodString;
404
+ binaryScope: z.ZodString;
405
+ }, "strip", z.ZodTypeAny, {
406
+ authorizationServerEndpoint?: string;
407
+ clientId?: string;
408
+ clientSecret?: string;
409
+ documentReferenceScope?: string;
410
+ binaryScope?: string;
411
+ }, {
412
+ authorizationServerEndpoint?: string;
413
+ clientId?: string;
414
+ clientSecret?: string;
415
+ documentReferenceScope?: string;
416
+ binaryScope?: string;
417
+ }>>>;
418
+ _links: z.ZodNullable<z.ZodOptional<z.ZodObject<{
419
+ self: z.ZodNullable<z.ZodOptional<z.ZodObject<{
420
+ href: z.ZodNullable<z.ZodOptional<z.ZodString>>;
421
+ templated: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
422
+ type: z.ZodNullable<z.ZodOptional<z.ZodString>>;
423
+ }, "strip", z.ZodTypeAny, {
424
+ type?: string;
425
+ href?: string;
426
+ templated?: boolean;
427
+ }, {
428
+ type?: string;
429
+ href?: string;
430
+ templated?: boolean;
431
+ }>>>;
432
+ certificate: z.ZodNullable<z.ZodOptional<z.ZodObject<{
433
+ href: z.ZodNullable<z.ZodOptional<z.ZodString>>;
434
+ templated: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
435
+ type: z.ZodNullable<z.ZodOptional<z.ZodString>>;
436
+ }, "strip", z.ZodTypeAny, {
437
+ type?: string;
438
+ href?: string;
439
+ templated?: boolean;
440
+ }, {
441
+ type?: string;
442
+ href?: string;
443
+ templated?: boolean;
444
+ }>>>;
445
+ }, "strip", z.ZodTypeAny, {
446
+ self?: {
447
+ type?: string;
448
+ href?: string;
449
+ templated?: boolean;
450
+ };
451
+ certificate?: {
452
+ type?: string;
453
+ href?: string;
454
+ templated?: boolean;
455
+ };
456
+ }, {
457
+ self?: {
458
+ type?: string;
459
+ href?: string;
460
+ templated?: boolean;
461
+ };
462
+ certificate?: {
463
+ type?: string;
464
+ href?: string;
465
+ templated?: boolean;
466
+ };
467
+ }>>>;
468
+ }, "strip", z.ZodTypeAny, {
469
+ name?: string;
470
+ type?: string;
471
+ _links?: {
472
+ self?: {
473
+ type?: string;
474
+ href?: string;
475
+ templated?: boolean;
476
+ };
477
+ certificate?: {
478
+ type?: string;
479
+ href?: string;
480
+ templated?: boolean;
481
+ };
482
+ };
483
+ organizationId?: string;
484
+ homeCommunityId?: string;
485
+ displayName?: string;
486
+ memberName?: string;
487
+ patientIdAssignAuthority?: string;
488
+ securityTokenKeyType?: string;
489
+ sendingFacility?: {
490
+ namespaceId?: string;
491
+ universalId?: string;
492
+ universalIdType?: string;
493
+ };
494
+ sendingApplication?: {
495
+ namespaceId?: string;
496
+ universalId?: string;
497
+ universalIdType?: string;
498
+ };
499
+ isActive?: boolean;
500
+ locations?: {
501
+ email?: string;
502
+ city?: string;
503
+ state?: string;
504
+ country?: string;
505
+ address1?: string;
506
+ address2?: string;
507
+ postalCode?: string;
508
+ phone?: string;
509
+ fax?: string;
510
+ }[];
511
+ technicalContacts?: {
512
+ name?: string;
513
+ email?: string;
514
+ phone?: string;
515
+ title?: string;
516
+ }[];
517
+ gateways?: {
518
+ serviceType?: string;
519
+ gatewayType?: string;
520
+ isAsync?: boolean;
521
+ gatewayTimeout?: number;
522
+ }[];
523
+ authorizationInformation?: {
524
+ authorizationServerEndpoint?: string;
525
+ clientId?: string;
526
+ clientSecret?: string;
527
+ documentReferenceScope?: string;
528
+ binaryScope?: string;
529
+ };
530
+ }, {
531
+ name?: string;
532
+ type?: string;
533
+ _links?: {
534
+ self?: {
535
+ type?: string;
536
+ href?: string;
537
+ templated?: boolean;
538
+ };
539
+ certificate?: {
540
+ type?: string;
541
+ href?: string;
542
+ templated?: boolean;
543
+ };
544
+ };
545
+ organizationId?: string;
546
+ homeCommunityId?: string;
547
+ displayName?: string;
548
+ memberName?: string;
549
+ patientIdAssignAuthority?: string;
550
+ securityTokenKeyType?: string;
551
+ sendingFacility?: {
552
+ namespaceId?: string;
553
+ universalId?: string;
554
+ universalIdType?: string;
555
+ };
556
+ sendingApplication?: {
557
+ namespaceId?: string;
558
+ universalId?: string;
559
+ universalIdType?: string;
560
+ };
561
+ isActive?: boolean;
562
+ locations?: {
563
+ email?: string;
564
+ city?: string;
565
+ state?: string;
566
+ country?: string;
567
+ address1?: string;
568
+ address2?: string;
569
+ postalCode?: string;
570
+ phone?: string;
571
+ fax?: string;
572
+ }[];
573
+ technicalContacts?: {
574
+ name?: string;
575
+ email?: string;
576
+ phone?: string;
577
+ title?: string;
578
+ }[];
579
+ gateways?: {
580
+ serviceType?: string;
581
+ gatewayType?: string;
582
+ isAsync?: boolean;
583
+ gatewayTimeout?: number;
584
+ }[];
585
+ authorizationInformation?: {
586
+ authorizationServerEndpoint?: string;
587
+ clientId?: string;
588
+ clientSecret?: string;
589
+ documentReferenceScope?: string;
590
+ binaryScope?: string;
591
+ };
592
+ }>, "many">;
593
+ _links: z.ZodObject<{
594
+ href: z.ZodNullable<z.ZodOptional<z.ZodString>>;
595
+ templated: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
596
+ type: z.ZodNullable<z.ZodOptional<z.ZodString>>;
597
+ }, "strip", z.ZodTypeAny, {
598
+ type?: string;
599
+ href?: string;
600
+ templated?: boolean;
601
+ }, {
602
+ type?: string;
603
+ href?: string;
604
+ templated?: boolean;
605
+ }>;
606
+ }, "strip", z.ZodTypeAny, {
607
+ from?: number;
608
+ _links?: {
609
+ type?: string;
610
+ href?: string;
611
+ templated?: boolean;
612
+ };
613
+ count?: number;
614
+ to?: number;
615
+ organizations?: {
616
+ name?: string;
617
+ type?: string;
618
+ _links?: {
619
+ self?: {
620
+ type?: string;
621
+ href?: string;
622
+ templated?: boolean;
623
+ };
624
+ certificate?: {
625
+ type?: string;
626
+ href?: string;
627
+ templated?: boolean;
628
+ };
629
+ };
630
+ organizationId?: string;
631
+ homeCommunityId?: string;
632
+ displayName?: string;
633
+ memberName?: string;
634
+ patientIdAssignAuthority?: string;
635
+ securityTokenKeyType?: string;
636
+ sendingFacility?: {
637
+ namespaceId?: string;
638
+ universalId?: string;
639
+ universalIdType?: string;
640
+ };
641
+ sendingApplication?: {
642
+ namespaceId?: string;
643
+ universalId?: string;
644
+ universalIdType?: string;
645
+ };
646
+ isActive?: boolean;
647
+ locations?: {
648
+ email?: string;
649
+ city?: string;
650
+ state?: string;
651
+ country?: string;
652
+ address1?: string;
653
+ address2?: string;
654
+ postalCode?: string;
655
+ phone?: string;
656
+ fax?: string;
657
+ }[];
658
+ technicalContacts?: {
659
+ name?: string;
660
+ email?: string;
661
+ phone?: string;
662
+ title?: string;
663
+ }[];
664
+ gateways?: {
665
+ serviceType?: string;
666
+ gatewayType?: string;
667
+ isAsync?: boolean;
668
+ gatewayTimeout?: number;
669
+ }[];
670
+ authorizationInformation?: {
671
+ authorizationServerEndpoint?: string;
672
+ clientId?: string;
673
+ clientSecret?: string;
674
+ documentReferenceScope?: string;
675
+ binaryScope?: string;
676
+ };
677
+ }[];
678
+ }, {
679
+ from?: number;
680
+ _links?: {
681
+ type?: string;
682
+ href?: string;
683
+ templated?: boolean;
684
+ };
685
+ count?: number;
686
+ to?: number;
687
+ organizations?: {
688
+ name?: string;
689
+ type?: string;
690
+ _links?: {
691
+ self?: {
692
+ type?: string;
693
+ href?: string;
694
+ templated?: boolean;
695
+ };
696
+ certificate?: {
697
+ type?: string;
698
+ href?: string;
699
+ templated?: boolean;
700
+ };
701
+ };
702
+ organizationId?: string;
703
+ homeCommunityId?: string;
704
+ displayName?: string;
705
+ memberName?: string;
706
+ patientIdAssignAuthority?: string;
707
+ securityTokenKeyType?: string;
708
+ sendingFacility?: {
709
+ namespaceId?: string;
710
+ universalId?: string;
711
+ universalIdType?: string;
712
+ };
713
+ sendingApplication?: {
714
+ namespaceId?: string;
715
+ universalId?: string;
716
+ universalIdType?: string;
717
+ };
718
+ isActive?: boolean;
719
+ locations?: {
720
+ email?: string;
721
+ city?: string;
722
+ state?: string;
723
+ country?: string;
724
+ address1?: string;
725
+ address2?: string;
726
+ postalCode?: string;
727
+ phone?: string;
728
+ fax?: string;
729
+ }[];
730
+ technicalContacts?: {
731
+ name?: string;
732
+ email?: string;
733
+ phone?: string;
734
+ title?: string;
735
+ }[];
736
+ gateways?: {
737
+ serviceType?: string;
738
+ gatewayType?: string;
739
+ isAsync?: boolean;
740
+ gatewayTimeout?: number;
741
+ }[];
742
+ authorizationInformation?: {
743
+ authorizationServerEndpoint?: string;
744
+ clientId?: string;
745
+ clientSecret?: string;
746
+ documentReferenceScope?: string;
747
+ binaryScope?: string;
748
+ };
749
+ }[];
750
+ }>;
751
+ export type OrganizationList = z.infer<typeof organizationListSchema>;