@metriport/commonwell-sdk 6.3.0 → 7.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common/__tests__/util.test.js +6 -6
- package/dist/common/__tests__/util.test.js.map +1 -1
- package/dist/common/util.d.ts +12 -2
- package/dist/common/util.d.ts.map +1 -1
- package/dist/common/util.js +37 -10
- package/dist/common/util.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/models/address.d.ts +3 -3
- package/dist/models/address.js +1 -1
- package/dist/models/address.js.map +1 -1
- package/dist/models/contact.d.ts +2 -14
- package/dist/models/contact.d.ts.map +1 -1
- package/dist/models/contact.js +2 -28
- package/dist/models/contact.js.map +1 -1
- package/dist/models/demographics.d.ts +8 -8
- package/dist/models/facility.d.ts +5 -5
- package/dist/models/patient.d.ts +155 -155
- package/package.json +3 -3
package/dist/models/patient.d.ts
CHANGED
|
@@ -111,7 +111,7 @@ export declare const patientSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
111
111
|
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
112
112
|
state: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
113
113
|
country: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
114
|
-
postalCode: z.ZodString
|
|
114
|
+
postalCode: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
115
115
|
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressUseCodes>, import("./address").AddressUseCodes, unknown>>>>;
|
|
116
116
|
type: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressTypeCodes>, import("./address").AddressTypeCodes, unknown>>>>;
|
|
117
117
|
period: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -125,24 +125,24 @@ export declare const patientSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
125
125
|
end?: unknown;
|
|
126
126
|
}>>>;
|
|
127
127
|
}, "strip", z.ZodTypeAny, {
|
|
128
|
-
postalCode: string;
|
|
129
128
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
130
129
|
line?: string[] | null | undefined;
|
|
131
130
|
city?: string | null | undefined;
|
|
132
131
|
state?: string | null | undefined;
|
|
133
132
|
country?: string | null | undefined;
|
|
133
|
+
postalCode?: string | null | undefined;
|
|
134
134
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
135
135
|
period?: {
|
|
136
136
|
start?: string | null | undefined;
|
|
137
137
|
end?: string | null | undefined;
|
|
138
138
|
} | null | undefined;
|
|
139
139
|
}, {
|
|
140
|
-
postalCode: string;
|
|
141
140
|
type?: unknown;
|
|
142
141
|
line?: string[] | null | undefined;
|
|
143
142
|
city?: string | null | undefined;
|
|
144
143
|
state?: unknown;
|
|
145
144
|
country?: unknown;
|
|
145
|
+
postalCode?: unknown;
|
|
146
146
|
use?: unknown;
|
|
147
147
|
period?: {
|
|
148
148
|
start?: unknown;
|
|
@@ -152,7 +152,7 @@ export declare const patientSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
152
152
|
telecom: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
153
153
|
value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
154
154
|
system: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodPipeline<z.ZodEffects<z.ZodEffects<z.ZodString, unknown, string>, unknown, string>, z.ZodNativeEnum<typeof import("./contact").ContactSystemCodes>>>>>;
|
|
155
|
-
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.
|
|
155
|
+
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
156
156
|
period: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
157
157
|
start: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodString]>>>>;
|
|
158
158
|
end: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodString]>>>>;
|
|
@@ -165,7 +165,7 @@ export declare const patientSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
165
165
|
}>>>;
|
|
166
166
|
}, "strip", z.ZodTypeAny, {
|
|
167
167
|
value?: string | null | undefined;
|
|
168
|
-
use?:
|
|
168
|
+
use?: string | null | undefined;
|
|
169
169
|
period?: {
|
|
170
170
|
start?: string | null | undefined;
|
|
171
171
|
end?: string | null | undefined;
|
|
@@ -229,7 +229,7 @@ export declare const patientSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
229
229
|
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
230
230
|
state: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
231
231
|
country: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
232
|
-
postalCode: z.ZodString
|
|
232
|
+
postalCode: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
233
233
|
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressUseCodes>, import("./address").AddressUseCodes, unknown>>>>;
|
|
234
234
|
type: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressTypeCodes>, import("./address").AddressTypeCodes, unknown>>>>;
|
|
235
235
|
period: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -243,24 +243,24 @@ export declare const patientSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
243
243
|
end?: unknown;
|
|
244
244
|
}>>>;
|
|
245
245
|
}, "strip", z.ZodTypeAny, {
|
|
246
|
-
postalCode: string;
|
|
247
246
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
248
247
|
line?: string[] | null | undefined;
|
|
249
248
|
city?: string | null | undefined;
|
|
250
249
|
state?: string | null | undefined;
|
|
251
250
|
country?: string | null | undefined;
|
|
251
|
+
postalCode?: string | null | undefined;
|
|
252
252
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
253
253
|
period?: {
|
|
254
254
|
start?: string | null | undefined;
|
|
255
255
|
end?: string | null | undefined;
|
|
256
256
|
} | null | undefined;
|
|
257
257
|
}, {
|
|
258
|
-
postalCode: string;
|
|
259
258
|
type?: unknown;
|
|
260
259
|
line?: string[] | null | undefined;
|
|
261
260
|
city?: string | null | undefined;
|
|
262
261
|
state?: unknown;
|
|
263
262
|
country?: unknown;
|
|
263
|
+
postalCode?: unknown;
|
|
264
264
|
use?: unknown;
|
|
265
265
|
period?: {
|
|
266
266
|
start?: unknown;
|
|
@@ -270,12 +270,12 @@ export declare const patientSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
270
270
|
}, "strip", z.ZodTypeAny, {
|
|
271
271
|
name?: string | null | undefined;
|
|
272
272
|
address?: {
|
|
273
|
-
postalCode: string;
|
|
274
273
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
275
274
|
line?: string[] | null | undefined;
|
|
276
275
|
city?: string | null | undefined;
|
|
277
276
|
state?: string | null | undefined;
|
|
278
277
|
country?: string | null | undefined;
|
|
278
|
+
postalCode?: string | null | undefined;
|
|
279
279
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
280
280
|
period?: {
|
|
281
281
|
start?: string | null | undefined;
|
|
@@ -286,12 +286,12 @@ export declare const patientSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
286
286
|
}, {
|
|
287
287
|
name?: string | null | undefined;
|
|
288
288
|
address?: {
|
|
289
|
-
postalCode: string;
|
|
290
289
|
type?: unknown;
|
|
291
290
|
line?: string[] | null | undefined;
|
|
292
291
|
city?: string | null | undefined;
|
|
293
292
|
state?: unknown;
|
|
294
293
|
country?: unknown;
|
|
294
|
+
postalCode?: unknown;
|
|
295
295
|
use?: unknown;
|
|
296
296
|
period?: {
|
|
297
297
|
start?: unknown;
|
|
@@ -326,12 +326,12 @@ export declare const patientSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
326
326
|
}[];
|
|
327
327
|
birthDate: string;
|
|
328
328
|
address: {
|
|
329
|
-
postalCode: string;
|
|
330
329
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
331
330
|
line?: string[] | null | undefined;
|
|
332
331
|
city?: string | null | undefined;
|
|
333
332
|
state?: string | null | undefined;
|
|
334
333
|
country?: string | null | undefined;
|
|
334
|
+
postalCode?: string | null | undefined;
|
|
335
335
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
336
336
|
period?: {
|
|
337
337
|
start?: string | null | undefined;
|
|
@@ -341,7 +341,7 @@ export declare const patientSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
341
341
|
gender?: import("./demographics").GenderCodes | null | undefined;
|
|
342
342
|
telecom?: {
|
|
343
343
|
value?: string | null | undefined;
|
|
344
|
-
use?:
|
|
344
|
+
use?: string | null | undefined;
|
|
345
345
|
period?: {
|
|
346
346
|
start?: string | null | undefined;
|
|
347
347
|
end?: string | null | undefined;
|
|
@@ -358,12 +358,12 @@ export declare const patientSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
358
358
|
disclosure?: {
|
|
359
359
|
name?: string | null | undefined;
|
|
360
360
|
address?: {
|
|
361
|
-
postalCode: string;
|
|
362
361
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
363
362
|
line?: string[] | null | undefined;
|
|
364
363
|
city?: string | null | undefined;
|
|
365
364
|
state?: string | null | undefined;
|
|
366
365
|
country?: string | null | undefined;
|
|
366
|
+
postalCode?: string | null | undefined;
|
|
367
367
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
368
368
|
period?: {
|
|
369
369
|
start?: string | null | undefined;
|
|
@@ -398,12 +398,12 @@ export declare const patientSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
398
398
|
}[];
|
|
399
399
|
birthDate: string;
|
|
400
400
|
address: {
|
|
401
|
-
postalCode: string;
|
|
402
401
|
type?: unknown;
|
|
403
402
|
line?: string[] | null | undefined;
|
|
404
403
|
city?: string | null | undefined;
|
|
405
404
|
state?: unknown;
|
|
406
405
|
country?: unknown;
|
|
406
|
+
postalCode?: unknown;
|
|
407
407
|
use?: unknown;
|
|
408
408
|
period?: {
|
|
409
409
|
start?: unknown;
|
|
@@ -430,12 +430,12 @@ export declare const patientSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
430
430
|
disclosure?: {
|
|
431
431
|
name?: string | null | undefined;
|
|
432
432
|
address?: {
|
|
433
|
-
postalCode: string;
|
|
434
433
|
type?: unknown;
|
|
435
434
|
line?: string[] | null | undefined;
|
|
436
435
|
city?: string | null | undefined;
|
|
437
436
|
state?: unknown;
|
|
438
437
|
country?: unknown;
|
|
438
|
+
postalCode?: unknown;
|
|
439
439
|
use?: unknown;
|
|
440
440
|
period?: {
|
|
441
441
|
start?: unknown;
|
|
@@ -555,7 +555,7 @@ export declare const patientResponseItemSchema: z.ZodObject<{
|
|
|
555
555
|
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
556
556
|
state: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
557
557
|
country: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
558
|
-
postalCode: z.ZodString
|
|
558
|
+
postalCode: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
559
559
|
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressUseCodes>, import("./address").AddressUseCodes, unknown>>>>;
|
|
560
560
|
type: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressTypeCodes>, import("./address").AddressTypeCodes, unknown>>>>;
|
|
561
561
|
period: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -569,24 +569,24 @@ export declare const patientResponseItemSchema: z.ZodObject<{
|
|
|
569
569
|
end?: unknown;
|
|
570
570
|
}>>>;
|
|
571
571
|
}, "strip", z.ZodTypeAny, {
|
|
572
|
-
postalCode: string;
|
|
573
572
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
574
573
|
line?: string[] | null | undefined;
|
|
575
574
|
city?: string | null | undefined;
|
|
576
575
|
state?: string | null | undefined;
|
|
577
576
|
country?: string | null | undefined;
|
|
577
|
+
postalCode?: string | null | undefined;
|
|
578
578
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
579
579
|
period?: {
|
|
580
580
|
start?: string | null | undefined;
|
|
581
581
|
end?: string | null | undefined;
|
|
582
582
|
} | null | undefined;
|
|
583
583
|
}, {
|
|
584
|
-
postalCode: string;
|
|
585
584
|
type?: unknown;
|
|
586
585
|
line?: string[] | null | undefined;
|
|
587
586
|
city?: string | null | undefined;
|
|
588
587
|
state?: unknown;
|
|
589
588
|
country?: unknown;
|
|
589
|
+
postalCode?: unknown;
|
|
590
590
|
use?: unknown;
|
|
591
591
|
period?: {
|
|
592
592
|
start?: unknown;
|
|
@@ -596,7 +596,7 @@ export declare const patientResponseItemSchema: z.ZodObject<{
|
|
|
596
596
|
telecom: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
597
597
|
value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
598
598
|
system: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodPipeline<z.ZodEffects<z.ZodEffects<z.ZodString, unknown, string>, unknown, string>, z.ZodNativeEnum<typeof import("./contact").ContactSystemCodes>>>>>;
|
|
599
|
-
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.
|
|
599
|
+
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
600
600
|
period: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
601
601
|
start: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodString]>>>>;
|
|
602
602
|
end: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodString]>>>>;
|
|
@@ -609,7 +609,7 @@ export declare const patientResponseItemSchema: z.ZodObject<{
|
|
|
609
609
|
}>>>;
|
|
610
610
|
}, "strip", z.ZodTypeAny, {
|
|
611
611
|
value?: string | null | undefined;
|
|
612
|
-
use?:
|
|
612
|
+
use?: string | null | undefined;
|
|
613
613
|
period?: {
|
|
614
614
|
start?: string | null | undefined;
|
|
615
615
|
end?: string | null | undefined;
|
|
@@ -673,7 +673,7 @@ export declare const patientResponseItemSchema: z.ZodObject<{
|
|
|
673
673
|
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
674
674
|
state: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
675
675
|
country: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
676
|
-
postalCode: z.ZodString
|
|
676
|
+
postalCode: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
677
677
|
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressUseCodes>, import("./address").AddressUseCodes, unknown>>>>;
|
|
678
678
|
type: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressTypeCodes>, import("./address").AddressTypeCodes, unknown>>>>;
|
|
679
679
|
period: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -687,24 +687,24 @@ export declare const patientResponseItemSchema: z.ZodObject<{
|
|
|
687
687
|
end?: unknown;
|
|
688
688
|
}>>>;
|
|
689
689
|
}, "strip", z.ZodTypeAny, {
|
|
690
|
-
postalCode: string;
|
|
691
690
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
692
691
|
line?: string[] | null | undefined;
|
|
693
692
|
city?: string | null | undefined;
|
|
694
693
|
state?: string | null | undefined;
|
|
695
694
|
country?: string | null | undefined;
|
|
695
|
+
postalCode?: string | null | undefined;
|
|
696
696
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
697
697
|
period?: {
|
|
698
698
|
start?: string | null | undefined;
|
|
699
699
|
end?: string | null | undefined;
|
|
700
700
|
} | null | undefined;
|
|
701
701
|
}, {
|
|
702
|
-
postalCode: string;
|
|
703
702
|
type?: unknown;
|
|
704
703
|
line?: string[] | null | undefined;
|
|
705
704
|
city?: string | null | undefined;
|
|
706
705
|
state?: unknown;
|
|
707
706
|
country?: unknown;
|
|
707
|
+
postalCode?: unknown;
|
|
708
708
|
use?: unknown;
|
|
709
709
|
period?: {
|
|
710
710
|
start?: unknown;
|
|
@@ -714,12 +714,12 @@ export declare const patientResponseItemSchema: z.ZodObject<{
|
|
|
714
714
|
}, "strip", z.ZodTypeAny, {
|
|
715
715
|
name?: string | null | undefined;
|
|
716
716
|
address?: {
|
|
717
|
-
postalCode: string;
|
|
718
717
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
719
718
|
line?: string[] | null | undefined;
|
|
720
719
|
city?: string | null | undefined;
|
|
721
720
|
state?: string | null | undefined;
|
|
722
721
|
country?: string | null | undefined;
|
|
722
|
+
postalCode?: string | null | undefined;
|
|
723
723
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
724
724
|
period?: {
|
|
725
725
|
start?: string | null | undefined;
|
|
@@ -730,12 +730,12 @@ export declare const patientResponseItemSchema: z.ZodObject<{
|
|
|
730
730
|
}, {
|
|
731
731
|
name?: string | null | undefined;
|
|
732
732
|
address?: {
|
|
733
|
-
postalCode: string;
|
|
734
733
|
type?: unknown;
|
|
735
734
|
line?: string[] | null | undefined;
|
|
736
735
|
city?: string | null | undefined;
|
|
737
736
|
state?: unknown;
|
|
738
737
|
country?: unknown;
|
|
738
|
+
postalCode?: unknown;
|
|
739
739
|
use?: unknown;
|
|
740
740
|
period?: {
|
|
741
741
|
start?: unknown;
|
|
@@ -770,12 +770,12 @@ export declare const patientResponseItemSchema: z.ZodObject<{
|
|
|
770
770
|
}[];
|
|
771
771
|
birthDate: string;
|
|
772
772
|
address: {
|
|
773
|
-
postalCode: string;
|
|
774
773
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
775
774
|
line?: string[] | null | undefined;
|
|
776
775
|
city?: string | null | undefined;
|
|
777
776
|
state?: string | null | undefined;
|
|
778
777
|
country?: string | null | undefined;
|
|
778
|
+
postalCode?: string | null | undefined;
|
|
779
779
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
780
780
|
period?: {
|
|
781
781
|
start?: string | null | undefined;
|
|
@@ -785,7 +785,7 @@ export declare const patientResponseItemSchema: z.ZodObject<{
|
|
|
785
785
|
gender?: import("./demographics").GenderCodes | null | undefined;
|
|
786
786
|
telecom?: {
|
|
787
787
|
value?: string | null | undefined;
|
|
788
|
-
use?:
|
|
788
|
+
use?: string | null | undefined;
|
|
789
789
|
period?: {
|
|
790
790
|
start?: string | null | undefined;
|
|
791
791
|
end?: string | null | undefined;
|
|
@@ -802,12 +802,12 @@ export declare const patientResponseItemSchema: z.ZodObject<{
|
|
|
802
802
|
disclosure?: {
|
|
803
803
|
name?: string | null | undefined;
|
|
804
804
|
address?: {
|
|
805
|
-
postalCode: string;
|
|
806
805
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
807
806
|
line?: string[] | null | undefined;
|
|
808
807
|
city?: string | null | undefined;
|
|
809
808
|
state?: string | null | undefined;
|
|
810
809
|
country?: string | null | undefined;
|
|
810
|
+
postalCode?: string | null | undefined;
|
|
811
811
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
812
812
|
period?: {
|
|
813
813
|
start?: string | null | undefined;
|
|
@@ -842,12 +842,12 @@ export declare const patientResponseItemSchema: z.ZodObject<{
|
|
|
842
842
|
}[];
|
|
843
843
|
birthDate: string;
|
|
844
844
|
address: {
|
|
845
|
-
postalCode: string;
|
|
846
845
|
type?: unknown;
|
|
847
846
|
line?: string[] | null | undefined;
|
|
848
847
|
city?: string | null | undefined;
|
|
849
848
|
state?: unknown;
|
|
850
849
|
country?: unknown;
|
|
850
|
+
postalCode?: unknown;
|
|
851
851
|
use?: unknown;
|
|
852
852
|
period?: {
|
|
853
853
|
start?: unknown;
|
|
@@ -874,12 +874,12 @@ export declare const patientResponseItemSchema: z.ZodObject<{
|
|
|
874
874
|
disclosure?: {
|
|
875
875
|
name?: string | null | undefined;
|
|
876
876
|
address?: {
|
|
877
|
-
postalCode: string;
|
|
878
877
|
type?: unknown;
|
|
879
878
|
line?: string[] | null | undefined;
|
|
880
879
|
city?: string | null | undefined;
|
|
881
880
|
state?: unknown;
|
|
882
881
|
country?: unknown;
|
|
882
|
+
postalCode?: unknown;
|
|
883
883
|
use?: unknown;
|
|
884
884
|
period?: {
|
|
885
885
|
start?: unknown;
|
|
@@ -949,12 +949,12 @@ export declare const patientResponseItemSchema: z.ZodObject<{
|
|
|
949
949
|
}[];
|
|
950
950
|
birthDate: string;
|
|
951
951
|
address: {
|
|
952
|
-
postalCode: string;
|
|
953
952
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
954
953
|
line?: string[] | null | undefined;
|
|
955
954
|
city?: string | null | undefined;
|
|
956
955
|
state?: string | null | undefined;
|
|
957
956
|
country?: string | null | undefined;
|
|
957
|
+
postalCode?: string | null | undefined;
|
|
958
958
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
959
959
|
period?: {
|
|
960
960
|
start?: string | null | undefined;
|
|
@@ -964,7 +964,7 @@ export declare const patientResponseItemSchema: z.ZodObject<{
|
|
|
964
964
|
gender?: import("./demographics").GenderCodes | null | undefined;
|
|
965
965
|
telecom?: {
|
|
966
966
|
value?: string | null | undefined;
|
|
967
|
-
use?:
|
|
967
|
+
use?: string | null | undefined;
|
|
968
968
|
period?: {
|
|
969
969
|
start?: string | null | undefined;
|
|
970
970
|
end?: string | null | undefined;
|
|
@@ -981,12 +981,12 @@ export declare const patientResponseItemSchema: z.ZodObject<{
|
|
|
981
981
|
disclosure?: {
|
|
982
982
|
name?: string | null | undefined;
|
|
983
983
|
address?: {
|
|
984
|
-
postalCode: string;
|
|
985
984
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
986
985
|
line?: string[] | null | undefined;
|
|
987
986
|
city?: string | null | undefined;
|
|
988
987
|
state?: string | null | undefined;
|
|
989
988
|
country?: string | null | undefined;
|
|
989
|
+
postalCode?: string | null | undefined;
|
|
990
990
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
991
991
|
period?: {
|
|
992
992
|
start?: string | null | undefined;
|
|
@@ -1030,12 +1030,12 @@ export declare const patientResponseItemSchema: z.ZodObject<{
|
|
|
1030
1030
|
}[];
|
|
1031
1031
|
birthDate: string;
|
|
1032
1032
|
address: {
|
|
1033
|
-
postalCode: string;
|
|
1034
1033
|
type?: unknown;
|
|
1035
1034
|
line?: string[] | null | undefined;
|
|
1036
1035
|
city?: string | null | undefined;
|
|
1037
1036
|
state?: unknown;
|
|
1038
1037
|
country?: unknown;
|
|
1038
|
+
postalCode?: unknown;
|
|
1039
1039
|
use?: unknown;
|
|
1040
1040
|
period?: {
|
|
1041
1041
|
start?: unknown;
|
|
@@ -1062,12 +1062,12 @@ export declare const patientResponseItemSchema: z.ZodObject<{
|
|
|
1062
1062
|
disclosure?: {
|
|
1063
1063
|
name?: string | null | undefined;
|
|
1064
1064
|
address?: {
|
|
1065
|
-
postalCode: string;
|
|
1066
1065
|
type?: unknown;
|
|
1067
1066
|
line?: string[] | null | undefined;
|
|
1068
1067
|
city?: string | null | undefined;
|
|
1069
1068
|
state?: unknown;
|
|
1070
1069
|
country?: unknown;
|
|
1070
|
+
postalCode?: unknown;
|
|
1071
1071
|
use?: unknown;
|
|
1072
1072
|
period?: {
|
|
1073
1073
|
start?: unknown;
|
|
@@ -1166,7 +1166,7 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1166
1166
|
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1167
1167
|
state: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
1168
1168
|
country: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
1169
|
-
postalCode: z.ZodString
|
|
1169
|
+
postalCode: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
1170
1170
|
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressUseCodes>, import("./address").AddressUseCodes, unknown>>>>;
|
|
1171
1171
|
type: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressTypeCodes>, import("./address").AddressTypeCodes, unknown>>>>;
|
|
1172
1172
|
period: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -1180,24 +1180,24 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1180
1180
|
end?: unknown;
|
|
1181
1181
|
}>>>;
|
|
1182
1182
|
}, "strip", z.ZodTypeAny, {
|
|
1183
|
-
postalCode: string;
|
|
1184
1183
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
1185
1184
|
line?: string[] | null | undefined;
|
|
1186
1185
|
city?: string | null | undefined;
|
|
1187
1186
|
state?: string | null | undefined;
|
|
1188
1187
|
country?: string | null | undefined;
|
|
1188
|
+
postalCode?: string | null | undefined;
|
|
1189
1189
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
1190
1190
|
period?: {
|
|
1191
1191
|
start?: string | null | undefined;
|
|
1192
1192
|
end?: string | null | undefined;
|
|
1193
1193
|
} | null | undefined;
|
|
1194
1194
|
}, {
|
|
1195
|
-
postalCode: string;
|
|
1196
1195
|
type?: unknown;
|
|
1197
1196
|
line?: string[] | null | undefined;
|
|
1198
1197
|
city?: string | null | undefined;
|
|
1199
1198
|
state?: unknown;
|
|
1200
1199
|
country?: unknown;
|
|
1200
|
+
postalCode?: unknown;
|
|
1201
1201
|
use?: unknown;
|
|
1202
1202
|
period?: {
|
|
1203
1203
|
start?: unknown;
|
|
@@ -1207,7 +1207,7 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1207
1207
|
telecom: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
1208
1208
|
value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1209
1209
|
system: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodPipeline<z.ZodEffects<z.ZodEffects<z.ZodString, unknown, string>, unknown, string>, z.ZodNativeEnum<typeof import("./contact").ContactSystemCodes>>>>>;
|
|
1210
|
-
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.
|
|
1210
|
+
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
1211
1211
|
period: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1212
1212
|
start: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodString]>>>>;
|
|
1213
1213
|
end: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodString]>>>>;
|
|
@@ -1220,7 +1220,7 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1220
1220
|
}>>>;
|
|
1221
1221
|
}, "strip", z.ZodTypeAny, {
|
|
1222
1222
|
value?: string | null | undefined;
|
|
1223
|
-
use?:
|
|
1223
|
+
use?: string | null | undefined;
|
|
1224
1224
|
period?: {
|
|
1225
1225
|
start?: string | null | undefined;
|
|
1226
1226
|
end?: string | null | undefined;
|
|
@@ -1284,7 +1284,7 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1284
1284
|
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1285
1285
|
state: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
1286
1286
|
country: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
1287
|
-
postalCode: z.ZodString
|
|
1287
|
+
postalCode: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
1288
1288
|
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressUseCodes>, import("./address").AddressUseCodes, unknown>>>>;
|
|
1289
1289
|
type: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressTypeCodes>, import("./address").AddressTypeCodes, unknown>>>>;
|
|
1290
1290
|
period: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -1298,24 +1298,24 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1298
1298
|
end?: unknown;
|
|
1299
1299
|
}>>>;
|
|
1300
1300
|
}, "strip", z.ZodTypeAny, {
|
|
1301
|
-
postalCode: string;
|
|
1302
1301
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
1303
1302
|
line?: string[] | null | undefined;
|
|
1304
1303
|
city?: string | null | undefined;
|
|
1305
1304
|
state?: string | null | undefined;
|
|
1306
1305
|
country?: string | null | undefined;
|
|
1306
|
+
postalCode?: string | null | undefined;
|
|
1307
1307
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
1308
1308
|
period?: {
|
|
1309
1309
|
start?: string | null | undefined;
|
|
1310
1310
|
end?: string | null | undefined;
|
|
1311
1311
|
} | null | undefined;
|
|
1312
1312
|
}, {
|
|
1313
|
-
postalCode: string;
|
|
1314
1313
|
type?: unknown;
|
|
1315
1314
|
line?: string[] | null | undefined;
|
|
1316
1315
|
city?: string | null | undefined;
|
|
1317
1316
|
state?: unknown;
|
|
1318
1317
|
country?: unknown;
|
|
1318
|
+
postalCode?: unknown;
|
|
1319
1319
|
use?: unknown;
|
|
1320
1320
|
period?: {
|
|
1321
1321
|
start?: unknown;
|
|
@@ -1325,12 +1325,12 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1325
1325
|
}, "strip", z.ZodTypeAny, {
|
|
1326
1326
|
name?: string | null | undefined;
|
|
1327
1327
|
address?: {
|
|
1328
|
-
postalCode: string;
|
|
1329
1328
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
1330
1329
|
line?: string[] | null | undefined;
|
|
1331
1330
|
city?: string | null | undefined;
|
|
1332
1331
|
state?: string | null | undefined;
|
|
1333
1332
|
country?: string | null | undefined;
|
|
1333
|
+
postalCode?: string | null | undefined;
|
|
1334
1334
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
1335
1335
|
period?: {
|
|
1336
1336
|
start?: string | null | undefined;
|
|
@@ -1341,12 +1341,12 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1341
1341
|
}, {
|
|
1342
1342
|
name?: string | null | undefined;
|
|
1343
1343
|
address?: {
|
|
1344
|
-
postalCode: string;
|
|
1345
1344
|
type?: unknown;
|
|
1346
1345
|
line?: string[] | null | undefined;
|
|
1347
1346
|
city?: string | null | undefined;
|
|
1348
1347
|
state?: unknown;
|
|
1349
1348
|
country?: unknown;
|
|
1349
|
+
postalCode?: unknown;
|
|
1350
1350
|
use?: unknown;
|
|
1351
1351
|
period?: {
|
|
1352
1352
|
start?: unknown;
|
|
@@ -1381,12 +1381,12 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1381
1381
|
}[];
|
|
1382
1382
|
birthDate: string;
|
|
1383
1383
|
address: {
|
|
1384
|
-
postalCode: string;
|
|
1385
1384
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
1386
1385
|
line?: string[] | null | undefined;
|
|
1387
1386
|
city?: string | null | undefined;
|
|
1388
1387
|
state?: string | null | undefined;
|
|
1389
1388
|
country?: string | null | undefined;
|
|
1389
|
+
postalCode?: string | null | undefined;
|
|
1390
1390
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
1391
1391
|
period?: {
|
|
1392
1392
|
start?: string | null | undefined;
|
|
@@ -1396,7 +1396,7 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1396
1396
|
gender?: import("./demographics").GenderCodes | null | undefined;
|
|
1397
1397
|
telecom?: {
|
|
1398
1398
|
value?: string | null | undefined;
|
|
1399
|
-
use?:
|
|
1399
|
+
use?: string | null | undefined;
|
|
1400
1400
|
period?: {
|
|
1401
1401
|
start?: string | null | undefined;
|
|
1402
1402
|
end?: string | null | undefined;
|
|
@@ -1413,12 +1413,12 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1413
1413
|
disclosure?: {
|
|
1414
1414
|
name?: string | null | undefined;
|
|
1415
1415
|
address?: {
|
|
1416
|
-
postalCode: string;
|
|
1417
1416
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
1418
1417
|
line?: string[] | null | undefined;
|
|
1419
1418
|
city?: string | null | undefined;
|
|
1420
1419
|
state?: string | null | undefined;
|
|
1421
1420
|
country?: string | null | undefined;
|
|
1421
|
+
postalCode?: string | null | undefined;
|
|
1422
1422
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
1423
1423
|
period?: {
|
|
1424
1424
|
start?: string | null | undefined;
|
|
@@ -1453,12 +1453,12 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1453
1453
|
}[];
|
|
1454
1454
|
birthDate: string;
|
|
1455
1455
|
address: {
|
|
1456
|
-
postalCode: string;
|
|
1457
1456
|
type?: unknown;
|
|
1458
1457
|
line?: string[] | null | undefined;
|
|
1459
1458
|
city?: string | null | undefined;
|
|
1460
1459
|
state?: unknown;
|
|
1461
1460
|
country?: unknown;
|
|
1461
|
+
postalCode?: unknown;
|
|
1462
1462
|
use?: unknown;
|
|
1463
1463
|
period?: {
|
|
1464
1464
|
start?: unknown;
|
|
@@ -1485,12 +1485,12 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1485
1485
|
disclosure?: {
|
|
1486
1486
|
name?: string | null | undefined;
|
|
1487
1487
|
address?: {
|
|
1488
|
-
postalCode: string;
|
|
1489
1488
|
type?: unknown;
|
|
1490
1489
|
line?: string[] | null | undefined;
|
|
1491
1490
|
city?: string | null | undefined;
|
|
1492
1491
|
state?: unknown;
|
|
1493
1492
|
country?: unknown;
|
|
1493
|
+
postalCode?: unknown;
|
|
1494
1494
|
use?: unknown;
|
|
1495
1495
|
period?: {
|
|
1496
1496
|
start?: unknown;
|
|
@@ -1560,12 +1560,12 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1560
1560
|
}[];
|
|
1561
1561
|
birthDate: string;
|
|
1562
1562
|
address: {
|
|
1563
|
-
postalCode: string;
|
|
1564
1563
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
1565
1564
|
line?: string[] | null | undefined;
|
|
1566
1565
|
city?: string | null | undefined;
|
|
1567
1566
|
state?: string | null | undefined;
|
|
1568
1567
|
country?: string | null | undefined;
|
|
1568
|
+
postalCode?: string | null | undefined;
|
|
1569
1569
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
1570
1570
|
period?: {
|
|
1571
1571
|
start?: string | null | undefined;
|
|
@@ -1575,7 +1575,7 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1575
1575
|
gender?: import("./demographics").GenderCodes | null | undefined;
|
|
1576
1576
|
telecom?: {
|
|
1577
1577
|
value?: string | null | undefined;
|
|
1578
|
-
use?:
|
|
1578
|
+
use?: string | null | undefined;
|
|
1579
1579
|
period?: {
|
|
1580
1580
|
start?: string | null | undefined;
|
|
1581
1581
|
end?: string | null | undefined;
|
|
@@ -1592,12 +1592,12 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1592
1592
|
disclosure?: {
|
|
1593
1593
|
name?: string | null | undefined;
|
|
1594
1594
|
address?: {
|
|
1595
|
-
postalCode: string;
|
|
1596
1595
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
1597
1596
|
line?: string[] | null | undefined;
|
|
1598
1597
|
city?: string | null | undefined;
|
|
1599
1598
|
state?: string | null | undefined;
|
|
1600
1599
|
country?: string | null | undefined;
|
|
1600
|
+
postalCode?: string | null | undefined;
|
|
1601
1601
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
1602
1602
|
period?: {
|
|
1603
1603
|
start?: string | null | undefined;
|
|
@@ -1641,12 +1641,12 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1641
1641
|
}[];
|
|
1642
1642
|
birthDate: string;
|
|
1643
1643
|
address: {
|
|
1644
|
-
postalCode: string;
|
|
1645
1644
|
type?: unknown;
|
|
1646
1645
|
line?: string[] | null | undefined;
|
|
1647
1646
|
city?: string | null | undefined;
|
|
1648
1647
|
state?: unknown;
|
|
1649
1648
|
country?: unknown;
|
|
1649
|
+
postalCode?: unknown;
|
|
1650
1650
|
use?: unknown;
|
|
1651
1651
|
period?: {
|
|
1652
1652
|
start?: unknown;
|
|
@@ -1673,12 +1673,12 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1673
1673
|
disclosure?: {
|
|
1674
1674
|
name?: string | null | undefined;
|
|
1675
1675
|
address?: {
|
|
1676
|
-
postalCode: string;
|
|
1677
1676
|
type?: unknown;
|
|
1678
1677
|
line?: string[] | null | undefined;
|
|
1679
1678
|
city?: string | null | undefined;
|
|
1680
1679
|
state?: unknown;
|
|
1681
1680
|
country?: unknown;
|
|
1681
|
+
postalCode?: unknown;
|
|
1682
1682
|
use?: unknown;
|
|
1683
1683
|
period?: {
|
|
1684
1684
|
start?: unknown;
|
|
@@ -1734,12 +1734,12 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1734
1734
|
}[];
|
|
1735
1735
|
birthDate: string;
|
|
1736
1736
|
address: {
|
|
1737
|
-
postalCode: string;
|
|
1738
1737
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
1739
1738
|
line?: string[] | null | undefined;
|
|
1740
1739
|
city?: string | null | undefined;
|
|
1741
1740
|
state?: string | null | undefined;
|
|
1742
1741
|
country?: string | null | undefined;
|
|
1742
|
+
postalCode?: string | null | undefined;
|
|
1743
1743
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
1744
1744
|
period?: {
|
|
1745
1745
|
start?: string | null | undefined;
|
|
@@ -1749,7 +1749,7 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1749
1749
|
gender?: import("./demographics").GenderCodes | null | undefined;
|
|
1750
1750
|
telecom?: {
|
|
1751
1751
|
value?: string | null | undefined;
|
|
1752
|
-
use?:
|
|
1752
|
+
use?: string | null | undefined;
|
|
1753
1753
|
period?: {
|
|
1754
1754
|
start?: string | null | undefined;
|
|
1755
1755
|
end?: string | null | undefined;
|
|
@@ -1766,12 +1766,12 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1766
1766
|
disclosure?: {
|
|
1767
1767
|
name?: string | null | undefined;
|
|
1768
1768
|
address?: {
|
|
1769
|
-
postalCode: string;
|
|
1770
1769
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
1771
1770
|
line?: string[] | null | undefined;
|
|
1772
1771
|
city?: string | null | undefined;
|
|
1773
1772
|
state?: string | null | undefined;
|
|
1774
1773
|
country?: string | null | undefined;
|
|
1774
|
+
postalCode?: string | null | undefined;
|
|
1775
1775
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
1776
1776
|
period?: {
|
|
1777
1777
|
start?: string | null | undefined;
|
|
@@ -1815,12 +1815,12 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1815
1815
|
}[];
|
|
1816
1816
|
birthDate: string;
|
|
1817
1817
|
address: {
|
|
1818
|
-
postalCode: string;
|
|
1819
1818
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
1820
1819
|
line?: string[] | null | undefined;
|
|
1821
1820
|
city?: string | null | undefined;
|
|
1822
1821
|
state?: string | null | undefined;
|
|
1823
1822
|
country?: string | null | undefined;
|
|
1823
|
+
postalCode?: string | null | undefined;
|
|
1824
1824
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
1825
1825
|
period?: {
|
|
1826
1826
|
start?: string | null | undefined;
|
|
@@ -1830,7 +1830,7 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1830
1830
|
gender?: import("./demographics").GenderCodes | null | undefined;
|
|
1831
1831
|
telecom?: {
|
|
1832
1832
|
value?: string | null | undefined;
|
|
1833
|
-
use?:
|
|
1833
|
+
use?: string | null | undefined;
|
|
1834
1834
|
period?: {
|
|
1835
1835
|
start?: string | null | undefined;
|
|
1836
1836
|
end?: string | null | undefined;
|
|
@@ -1847,12 +1847,12 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1847
1847
|
disclosure?: {
|
|
1848
1848
|
name?: string | null | undefined;
|
|
1849
1849
|
address?: {
|
|
1850
|
-
postalCode: string;
|
|
1851
1850
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
1852
1851
|
line?: string[] | null | undefined;
|
|
1853
1852
|
city?: string | null | undefined;
|
|
1854
1853
|
state?: string | null | undefined;
|
|
1855
1854
|
country?: string | null | undefined;
|
|
1855
|
+
postalCode?: string | null | undefined;
|
|
1856
1856
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
1857
1857
|
period?: {
|
|
1858
1858
|
start?: string | null | undefined;
|
|
@@ -1902,12 +1902,12 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1902
1902
|
}[];
|
|
1903
1903
|
birthDate: string;
|
|
1904
1904
|
address: {
|
|
1905
|
-
postalCode: string;
|
|
1906
1905
|
type?: unknown;
|
|
1907
1906
|
line?: string[] | null | undefined;
|
|
1908
1907
|
city?: string | null | undefined;
|
|
1909
1908
|
state?: unknown;
|
|
1910
1909
|
country?: unknown;
|
|
1910
|
+
postalCode?: unknown;
|
|
1911
1911
|
use?: unknown;
|
|
1912
1912
|
period?: {
|
|
1913
1913
|
start?: unknown;
|
|
@@ -1934,12 +1934,12 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1934
1934
|
disclosure?: {
|
|
1935
1935
|
name?: string | null | undefined;
|
|
1936
1936
|
address?: {
|
|
1937
|
-
postalCode: string;
|
|
1938
1937
|
type?: unknown;
|
|
1939
1938
|
line?: string[] | null | undefined;
|
|
1940
1939
|
city?: string | null | undefined;
|
|
1941
1940
|
state?: unknown;
|
|
1942
1941
|
country?: unknown;
|
|
1942
|
+
postalCode?: unknown;
|
|
1943
1943
|
use?: unknown;
|
|
1944
1944
|
period?: {
|
|
1945
1945
|
start?: unknown;
|
|
@@ -1983,12 +1983,12 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
1983
1983
|
}[];
|
|
1984
1984
|
birthDate: string;
|
|
1985
1985
|
address: {
|
|
1986
|
-
postalCode: string;
|
|
1987
1986
|
type?: unknown;
|
|
1988
1987
|
line?: string[] | null | undefined;
|
|
1989
1988
|
city?: string | null | undefined;
|
|
1990
1989
|
state?: unknown;
|
|
1991
1990
|
country?: unknown;
|
|
1991
|
+
postalCode?: unknown;
|
|
1992
1992
|
use?: unknown;
|
|
1993
1993
|
period?: {
|
|
1994
1994
|
start?: unknown;
|
|
@@ -2015,12 +2015,12 @@ export declare const patientResponseSchema: z.ZodObject<{
|
|
|
2015
2015
|
disclosure?: {
|
|
2016
2016
|
name?: string | null | undefined;
|
|
2017
2017
|
address?: {
|
|
2018
|
-
postalCode: string;
|
|
2019
2018
|
type?: unknown;
|
|
2020
2019
|
line?: string[] | null | undefined;
|
|
2021
2020
|
city?: string | null | undefined;
|
|
2022
2021
|
state?: unknown;
|
|
2023
2022
|
country?: unknown;
|
|
2023
|
+
postalCode?: unknown;
|
|
2024
2024
|
use?: unknown;
|
|
2025
2025
|
period?: {
|
|
2026
2026
|
start?: unknown;
|
|
@@ -2197,7 +2197,7 @@ export declare const patientExistingLinksItemSchema: z.ZodObject<{
|
|
|
2197
2197
|
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2198
2198
|
state: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
2199
2199
|
country: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
2200
|
-
postalCode: z.ZodString
|
|
2200
|
+
postalCode: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
2201
2201
|
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressUseCodes>, import("./address").AddressUseCodes, unknown>>>>;
|
|
2202
2202
|
type: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressTypeCodes>, import("./address").AddressTypeCodes, unknown>>>>;
|
|
2203
2203
|
period: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -2211,24 +2211,24 @@ export declare const patientExistingLinksItemSchema: z.ZodObject<{
|
|
|
2211
2211
|
end?: unknown;
|
|
2212
2212
|
}>>>;
|
|
2213
2213
|
}, "strip", z.ZodTypeAny, {
|
|
2214
|
-
postalCode: string;
|
|
2215
2214
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
2216
2215
|
line?: string[] | null | undefined;
|
|
2217
2216
|
city?: string | null | undefined;
|
|
2218
2217
|
state?: string | null | undefined;
|
|
2219
2218
|
country?: string | null | undefined;
|
|
2219
|
+
postalCode?: string | null | undefined;
|
|
2220
2220
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
2221
2221
|
period?: {
|
|
2222
2222
|
start?: string | null | undefined;
|
|
2223
2223
|
end?: string | null | undefined;
|
|
2224
2224
|
} | null | undefined;
|
|
2225
2225
|
}, {
|
|
2226
|
-
postalCode: string;
|
|
2227
2226
|
type?: unknown;
|
|
2228
2227
|
line?: string[] | null | undefined;
|
|
2229
2228
|
city?: string | null | undefined;
|
|
2230
2229
|
state?: unknown;
|
|
2231
2230
|
country?: unknown;
|
|
2231
|
+
postalCode?: unknown;
|
|
2232
2232
|
use?: unknown;
|
|
2233
2233
|
period?: {
|
|
2234
2234
|
start?: unknown;
|
|
@@ -2238,7 +2238,7 @@ export declare const patientExistingLinksItemSchema: z.ZodObject<{
|
|
|
2238
2238
|
telecom: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2239
2239
|
value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2240
2240
|
system: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodPipeline<z.ZodEffects<z.ZodEffects<z.ZodString, unknown, string>, unknown, string>, z.ZodNativeEnum<typeof import("./contact").ContactSystemCodes>>>>>;
|
|
2241
|
-
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.
|
|
2241
|
+
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
2242
2242
|
period: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2243
2243
|
start: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodString]>>>>;
|
|
2244
2244
|
end: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodString]>>>>;
|
|
@@ -2251,7 +2251,7 @@ export declare const patientExistingLinksItemSchema: z.ZodObject<{
|
|
|
2251
2251
|
}>>>;
|
|
2252
2252
|
}, "strip", z.ZodTypeAny, {
|
|
2253
2253
|
value?: string | null | undefined;
|
|
2254
|
-
use?:
|
|
2254
|
+
use?: string | null | undefined;
|
|
2255
2255
|
period?: {
|
|
2256
2256
|
start?: string | null | undefined;
|
|
2257
2257
|
end?: string | null | undefined;
|
|
@@ -2315,7 +2315,7 @@ export declare const patientExistingLinksItemSchema: z.ZodObject<{
|
|
|
2315
2315
|
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2316
2316
|
state: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
2317
2317
|
country: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
2318
|
-
postalCode: z.ZodString
|
|
2318
|
+
postalCode: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
2319
2319
|
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressUseCodes>, import("./address").AddressUseCodes, unknown>>>>;
|
|
2320
2320
|
type: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressTypeCodes>, import("./address").AddressTypeCodes, unknown>>>>;
|
|
2321
2321
|
period: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -2329,24 +2329,24 @@ export declare const patientExistingLinksItemSchema: z.ZodObject<{
|
|
|
2329
2329
|
end?: unknown;
|
|
2330
2330
|
}>>>;
|
|
2331
2331
|
}, "strip", z.ZodTypeAny, {
|
|
2332
|
-
postalCode: string;
|
|
2333
2332
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
2334
2333
|
line?: string[] | null | undefined;
|
|
2335
2334
|
city?: string | null | undefined;
|
|
2336
2335
|
state?: string | null | undefined;
|
|
2337
2336
|
country?: string | null | undefined;
|
|
2337
|
+
postalCode?: string | null | undefined;
|
|
2338
2338
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
2339
2339
|
period?: {
|
|
2340
2340
|
start?: string | null | undefined;
|
|
2341
2341
|
end?: string | null | undefined;
|
|
2342
2342
|
} | null | undefined;
|
|
2343
2343
|
}, {
|
|
2344
|
-
postalCode: string;
|
|
2345
2344
|
type?: unknown;
|
|
2346
2345
|
line?: string[] | null | undefined;
|
|
2347
2346
|
city?: string | null | undefined;
|
|
2348
2347
|
state?: unknown;
|
|
2349
2348
|
country?: unknown;
|
|
2349
|
+
postalCode?: unknown;
|
|
2350
2350
|
use?: unknown;
|
|
2351
2351
|
period?: {
|
|
2352
2352
|
start?: unknown;
|
|
@@ -2356,12 +2356,12 @@ export declare const patientExistingLinksItemSchema: z.ZodObject<{
|
|
|
2356
2356
|
}, "strip", z.ZodTypeAny, {
|
|
2357
2357
|
name?: string | null | undefined;
|
|
2358
2358
|
address?: {
|
|
2359
|
-
postalCode: string;
|
|
2360
2359
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
2361
2360
|
line?: string[] | null | undefined;
|
|
2362
2361
|
city?: string | null | undefined;
|
|
2363
2362
|
state?: string | null | undefined;
|
|
2364
2363
|
country?: string | null | undefined;
|
|
2364
|
+
postalCode?: string | null | undefined;
|
|
2365
2365
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
2366
2366
|
period?: {
|
|
2367
2367
|
start?: string | null | undefined;
|
|
@@ -2372,12 +2372,12 @@ export declare const patientExistingLinksItemSchema: z.ZodObject<{
|
|
|
2372
2372
|
}, {
|
|
2373
2373
|
name?: string | null | undefined;
|
|
2374
2374
|
address?: {
|
|
2375
|
-
postalCode: string;
|
|
2376
2375
|
type?: unknown;
|
|
2377
2376
|
line?: string[] | null | undefined;
|
|
2378
2377
|
city?: string | null | undefined;
|
|
2379
2378
|
state?: unknown;
|
|
2380
2379
|
country?: unknown;
|
|
2380
|
+
postalCode?: unknown;
|
|
2381
2381
|
use?: unknown;
|
|
2382
2382
|
period?: {
|
|
2383
2383
|
start?: unknown;
|
|
@@ -2412,12 +2412,12 @@ export declare const patientExistingLinksItemSchema: z.ZodObject<{
|
|
|
2412
2412
|
}[];
|
|
2413
2413
|
birthDate: string;
|
|
2414
2414
|
address: {
|
|
2415
|
-
postalCode: string;
|
|
2416
2415
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
2417
2416
|
line?: string[] | null | undefined;
|
|
2418
2417
|
city?: string | null | undefined;
|
|
2419
2418
|
state?: string | null | undefined;
|
|
2420
2419
|
country?: string | null | undefined;
|
|
2420
|
+
postalCode?: string | null | undefined;
|
|
2421
2421
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
2422
2422
|
period?: {
|
|
2423
2423
|
start?: string | null | undefined;
|
|
@@ -2427,7 +2427,7 @@ export declare const patientExistingLinksItemSchema: z.ZodObject<{
|
|
|
2427
2427
|
gender?: import("./demographics").GenderCodes | null | undefined;
|
|
2428
2428
|
telecom?: {
|
|
2429
2429
|
value?: string | null | undefined;
|
|
2430
|
-
use?:
|
|
2430
|
+
use?: string | null | undefined;
|
|
2431
2431
|
period?: {
|
|
2432
2432
|
start?: string | null | undefined;
|
|
2433
2433
|
end?: string | null | undefined;
|
|
@@ -2444,12 +2444,12 @@ export declare const patientExistingLinksItemSchema: z.ZodObject<{
|
|
|
2444
2444
|
disclosure?: {
|
|
2445
2445
|
name?: string | null | undefined;
|
|
2446
2446
|
address?: {
|
|
2447
|
-
postalCode: string;
|
|
2448
2447
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
2449
2448
|
line?: string[] | null | undefined;
|
|
2450
2449
|
city?: string | null | undefined;
|
|
2451
2450
|
state?: string | null | undefined;
|
|
2452
2451
|
country?: string | null | undefined;
|
|
2452
|
+
postalCode?: string | null | undefined;
|
|
2453
2453
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
2454
2454
|
period?: {
|
|
2455
2455
|
start?: string | null | undefined;
|
|
@@ -2484,12 +2484,12 @@ export declare const patientExistingLinksItemSchema: z.ZodObject<{
|
|
|
2484
2484
|
}[];
|
|
2485
2485
|
birthDate: string;
|
|
2486
2486
|
address: {
|
|
2487
|
-
postalCode: string;
|
|
2488
2487
|
type?: unknown;
|
|
2489
2488
|
line?: string[] | null | undefined;
|
|
2490
2489
|
city?: string | null | undefined;
|
|
2491
2490
|
state?: unknown;
|
|
2492
2491
|
country?: unknown;
|
|
2492
|
+
postalCode?: unknown;
|
|
2493
2493
|
use?: unknown;
|
|
2494
2494
|
period?: {
|
|
2495
2495
|
start?: unknown;
|
|
@@ -2516,12 +2516,12 @@ export declare const patientExistingLinksItemSchema: z.ZodObject<{
|
|
|
2516
2516
|
disclosure?: {
|
|
2517
2517
|
name?: string | null | undefined;
|
|
2518
2518
|
address?: {
|
|
2519
|
-
postalCode: string;
|
|
2520
2519
|
type?: unknown;
|
|
2521
2520
|
line?: string[] | null | undefined;
|
|
2522
2521
|
city?: string | null | undefined;
|
|
2523
2522
|
state?: unknown;
|
|
2524
2523
|
country?: unknown;
|
|
2524
|
+
postalCode?: unknown;
|
|
2525
2525
|
use?: unknown;
|
|
2526
2526
|
period?: {
|
|
2527
2527
|
start?: unknown;
|
|
@@ -2568,12 +2568,12 @@ export declare const patientExistingLinksItemSchema: z.ZodObject<{
|
|
|
2568
2568
|
}[];
|
|
2569
2569
|
birthDate: string;
|
|
2570
2570
|
address: {
|
|
2571
|
-
postalCode: string;
|
|
2572
2571
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
2573
2572
|
line?: string[] | null | undefined;
|
|
2574
2573
|
city?: string | null | undefined;
|
|
2575
2574
|
state?: string | null | undefined;
|
|
2576
2575
|
country?: string | null | undefined;
|
|
2576
|
+
postalCode?: string | null | undefined;
|
|
2577
2577
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
2578
2578
|
period?: {
|
|
2579
2579
|
start?: string | null | undefined;
|
|
@@ -2583,7 +2583,7 @@ export declare const patientExistingLinksItemSchema: z.ZodObject<{
|
|
|
2583
2583
|
gender?: import("./demographics").GenderCodes | null | undefined;
|
|
2584
2584
|
telecom?: {
|
|
2585
2585
|
value?: string | null | undefined;
|
|
2586
|
-
use?:
|
|
2586
|
+
use?: string | null | undefined;
|
|
2587
2587
|
period?: {
|
|
2588
2588
|
start?: string | null | undefined;
|
|
2589
2589
|
end?: string | null | undefined;
|
|
@@ -2600,12 +2600,12 @@ export declare const patientExistingLinksItemSchema: z.ZodObject<{
|
|
|
2600
2600
|
disclosure?: {
|
|
2601
2601
|
name?: string | null | undefined;
|
|
2602
2602
|
address?: {
|
|
2603
|
-
postalCode: string;
|
|
2604
2603
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
2605
2604
|
line?: string[] | null | undefined;
|
|
2606
2605
|
city?: string | null | undefined;
|
|
2607
2606
|
state?: string | null | undefined;
|
|
2608
2607
|
country?: string | null | undefined;
|
|
2608
|
+
postalCode?: string | null | undefined;
|
|
2609
2609
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
2610
2610
|
period?: {
|
|
2611
2611
|
start?: string | null | undefined;
|
|
@@ -2646,12 +2646,12 @@ export declare const patientExistingLinksItemSchema: z.ZodObject<{
|
|
|
2646
2646
|
}[];
|
|
2647
2647
|
birthDate: string;
|
|
2648
2648
|
address: {
|
|
2649
|
-
postalCode: string;
|
|
2650
2649
|
type?: unknown;
|
|
2651
2650
|
line?: string[] | null | undefined;
|
|
2652
2651
|
city?: string | null | undefined;
|
|
2653
2652
|
state?: unknown;
|
|
2654
2653
|
country?: unknown;
|
|
2654
|
+
postalCode?: unknown;
|
|
2655
2655
|
use?: unknown;
|
|
2656
2656
|
period?: {
|
|
2657
2657
|
start?: unknown;
|
|
@@ -2678,12 +2678,12 @@ export declare const patientExistingLinksItemSchema: z.ZodObject<{
|
|
|
2678
2678
|
disclosure?: {
|
|
2679
2679
|
name?: string | null | undefined;
|
|
2680
2680
|
address?: {
|
|
2681
|
-
postalCode: string;
|
|
2682
2681
|
type?: unknown;
|
|
2683
2682
|
line?: string[] | null | undefined;
|
|
2684
2683
|
city?: string | null | undefined;
|
|
2685
2684
|
state?: unknown;
|
|
2686
2685
|
country?: unknown;
|
|
2686
|
+
postalCode?: unknown;
|
|
2687
2687
|
use?: unknown;
|
|
2688
2688
|
period?: {
|
|
2689
2689
|
start?: unknown;
|
|
@@ -2786,7 +2786,7 @@ export declare const patientExistingLinksSchema: z.ZodObject<{
|
|
|
2786
2786
|
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2787
2787
|
state: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
2788
2788
|
country: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
2789
|
-
postalCode: z.ZodString
|
|
2789
|
+
postalCode: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
2790
2790
|
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressUseCodes>, import("./address").AddressUseCodes, unknown>>>>;
|
|
2791
2791
|
type: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressTypeCodes>, import("./address").AddressTypeCodes, unknown>>>>;
|
|
2792
2792
|
period: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -2800,24 +2800,24 @@ export declare const patientExistingLinksSchema: z.ZodObject<{
|
|
|
2800
2800
|
end?: unknown;
|
|
2801
2801
|
}>>>;
|
|
2802
2802
|
}, "strip", z.ZodTypeAny, {
|
|
2803
|
-
postalCode: string;
|
|
2804
2803
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
2805
2804
|
line?: string[] | null | undefined;
|
|
2806
2805
|
city?: string | null | undefined;
|
|
2807
2806
|
state?: string | null | undefined;
|
|
2808
2807
|
country?: string | null | undefined;
|
|
2808
|
+
postalCode?: string | null | undefined;
|
|
2809
2809
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
2810
2810
|
period?: {
|
|
2811
2811
|
start?: string | null | undefined;
|
|
2812
2812
|
end?: string | null | undefined;
|
|
2813
2813
|
} | null | undefined;
|
|
2814
2814
|
}, {
|
|
2815
|
-
postalCode: string;
|
|
2816
2815
|
type?: unknown;
|
|
2817
2816
|
line?: string[] | null | undefined;
|
|
2818
2817
|
city?: string | null | undefined;
|
|
2819
2818
|
state?: unknown;
|
|
2820
2819
|
country?: unknown;
|
|
2820
|
+
postalCode?: unknown;
|
|
2821
2821
|
use?: unknown;
|
|
2822
2822
|
period?: {
|
|
2823
2823
|
start?: unknown;
|
|
@@ -2827,7 +2827,7 @@ export declare const patientExistingLinksSchema: z.ZodObject<{
|
|
|
2827
2827
|
telecom: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
2828
2828
|
value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2829
2829
|
system: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodPipeline<z.ZodEffects<z.ZodEffects<z.ZodString, unknown, string>, unknown, string>, z.ZodNativeEnum<typeof import("./contact").ContactSystemCodes>>>>>;
|
|
2830
|
-
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.
|
|
2830
|
+
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
2831
2831
|
period: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2832
2832
|
start: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodString]>>>>;
|
|
2833
2833
|
end: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodString]>>>>;
|
|
@@ -2840,7 +2840,7 @@ export declare const patientExistingLinksSchema: z.ZodObject<{
|
|
|
2840
2840
|
}>>>;
|
|
2841
2841
|
}, "strip", z.ZodTypeAny, {
|
|
2842
2842
|
value?: string | null | undefined;
|
|
2843
|
-
use?:
|
|
2843
|
+
use?: string | null | undefined;
|
|
2844
2844
|
period?: {
|
|
2845
2845
|
start?: string | null | undefined;
|
|
2846
2846
|
end?: string | null | undefined;
|
|
@@ -2904,7 +2904,7 @@ export declare const patientExistingLinksSchema: z.ZodObject<{
|
|
|
2904
2904
|
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2905
2905
|
state: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
2906
2906
|
country: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
2907
|
-
postalCode: z.ZodString
|
|
2907
|
+
postalCode: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
2908
2908
|
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressUseCodes>, import("./address").AddressUseCodes, unknown>>>>;
|
|
2909
2909
|
type: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressTypeCodes>, import("./address").AddressTypeCodes, unknown>>>>;
|
|
2910
2910
|
period: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -2918,24 +2918,24 @@ export declare const patientExistingLinksSchema: z.ZodObject<{
|
|
|
2918
2918
|
end?: unknown;
|
|
2919
2919
|
}>>>;
|
|
2920
2920
|
}, "strip", z.ZodTypeAny, {
|
|
2921
|
-
postalCode: string;
|
|
2922
2921
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
2923
2922
|
line?: string[] | null | undefined;
|
|
2924
2923
|
city?: string | null | undefined;
|
|
2925
2924
|
state?: string | null | undefined;
|
|
2926
2925
|
country?: string | null | undefined;
|
|
2926
|
+
postalCode?: string | null | undefined;
|
|
2927
2927
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
2928
2928
|
period?: {
|
|
2929
2929
|
start?: string | null | undefined;
|
|
2930
2930
|
end?: string | null | undefined;
|
|
2931
2931
|
} | null | undefined;
|
|
2932
2932
|
}, {
|
|
2933
|
-
postalCode: string;
|
|
2934
2933
|
type?: unknown;
|
|
2935
2934
|
line?: string[] | null | undefined;
|
|
2936
2935
|
city?: string | null | undefined;
|
|
2937
2936
|
state?: unknown;
|
|
2938
2937
|
country?: unknown;
|
|
2938
|
+
postalCode?: unknown;
|
|
2939
2939
|
use?: unknown;
|
|
2940
2940
|
period?: {
|
|
2941
2941
|
start?: unknown;
|
|
@@ -2945,12 +2945,12 @@ export declare const patientExistingLinksSchema: z.ZodObject<{
|
|
|
2945
2945
|
}, "strip", z.ZodTypeAny, {
|
|
2946
2946
|
name?: string | null | undefined;
|
|
2947
2947
|
address?: {
|
|
2948
|
-
postalCode: string;
|
|
2949
2948
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
2950
2949
|
line?: string[] | null | undefined;
|
|
2951
2950
|
city?: string | null | undefined;
|
|
2952
2951
|
state?: string | null | undefined;
|
|
2953
2952
|
country?: string | null | undefined;
|
|
2953
|
+
postalCode?: string | null | undefined;
|
|
2954
2954
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
2955
2955
|
period?: {
|
|
2956
2956
|
start?: string | null | undefined;
|
|
@@ -2961,12 +2961,12 @@ export declare const patientExistingLinksSchema: z.ZodObject<{
|
|
|
2961
2961
|
}, {
|
|
2962
2962
|
name?: string | null | undefined;
|
|
2963
2963
|
address?: {
|
|
2964
|
-
postalCode: string;
|
|
2965
2964
|
type?: unknown;
|
|
2966
2965
|
line?: string[] | null | undefined;
|
|
2967
2966
|
city?: string | null | undefined;
|
|
2968
2967
|
state?: unknown;
|
|
2969
2968
|
country?: unknown;
|
|
2969
|
+
postalCode?: unknown;
|
|
2970
2970
|
use?: unknown;
|
|
2971
2971
|
period?: {
|
|
2972
2972
|
start?: unknown;
|
|
@@ -3001,12 +3001,12 @@ export declare const patientExistingLinksSchema: z.ZodObject<{
|
|
|
3001
3001
|
}[];
|
|
3002
3002
|
birthDate: string;
|
|
3003
3003
|
address: {
|
|
3004
|
-
postalCode: string;
|
|
3005
3004
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
3006
3005
|
line?: string[] | null | undefined;
|
|
3007
3006
|
city?: string | null | undefined;
|
|
3008
3007
|
state?: string | null | undefined;
|
|
3009
3008
|
country?: string | null | undefined;
|
|
3009
|
+
postalCode?: string | null | undefined;
|
|
3010
3010
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
3011
3011
|
period?: {
|
|
3012
3012
|
start?: string | null | undefined;
|
|
@@ -3016,7 +3016,7 @@ export declare const patientExistingLinksSchema: z.ZodObject<{
|
|
|
3016
3016
|
gender?: import("./demographics").GenderCodes | null | undefined;
|
|
3017
3017
|
telecom?: {
|
|
3018
3018
|
value?: string | null | undefined;
|
|
3019
|
-
use?:
|
|
3019
|
+
use?: string | null | undefined;
|
|
3020
3020
|
period?: {
|
|
3021
3021
|
start?: string | null | undefined;
|
|
3022
3022
|
end?: string | null | undefined;
|
|
@@ -3033,12 +3033,12 @@ export declare const patientExistingLinksSchema: z.ZodObject<{
|
|
|
3033
3033
|
disclosure?: {
|
|
3034
3034
|
name?: string | null | undefined;
|
|
3035
3035
|
address?: {
|
|
3036
|
-
postalCode: string;
|
|
3037
3036
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
3038
3037
|
line?: string[] | null | undefined;
|
|
3039
3038
|
city?: string | null | undefined;
|
|
3040
3039
|
state?: string | null | undefined;
|
|
3041
3040
|
country?: string | null | undefined;
|
|
3041
|
+
postalCode?: string | null | undefined;
|
|
3042
3042
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
3043
3043
|
period?: {
|
|
3044
3044
|
start?: string | null | undefined;
|
|
@@ -3073,12 +3073,12 @@ export declare const patientExistingLinksSchema: z.ZodObject<{
|
|
|
3073
3073
|
}[];
|
|
3074
3074
|
birthDate: string;
|
|
3075
3075
|
address: {
|
|
3076
|
-
postalCode: string;
|
|
3077
3076
|
type?: unknown;
|
|
3078
3077
|
line?: string[] | null | undefined;
|
|
3079
3078
|
city?: string | null | undefined;
|
|
3080
3079
|
state?: unknown;
|
|
3081
3080
|
country?: unknown;
|
|
3081
|
+
postalCode?: unknown;
|
|
3082
3082
|
use?: unknown;
|
|
3083
3083
|
period?: {
|
|
3084
3084
|
start?: unknown;
|
|
@@ -3105,12 +3105,12 @@ export declare const patientExistingLinksSchema: z.ZodObject<{
|
|
|
3105
3105
|
disclosure?: {
|
|
3106
3106
|
name?: string | null | undefined;
|
|
3107
3107
|
address?: {
|
|
3108
|
-
postalCode: string;
|
|
3109
3108
|
type?: unknown;
|
|
3110
3109
|
line?: string[] | null | undefined;
|
|
3111
3110
|
city?: string | null | undefined;
|
|
3112
3111
|
state?: unknown;
|
|
3113
3112
|
country?: unknown;
|
|
3113
|
+
postalCode?: unknown;
|
|
3114
3114
|
use?: unknown;
|
|
3115
3115
|
period?: {
|
|
3116
3116
|
start?: unknown;
|
|
@@ -3157,12 +3157,12 @@ export declare const patientExistingLinksSchema: z.ZodObject<{
|
|
|
3157
3157
|
}[];
|
|
3158
3158
|
birthDate: string;
|
|
3159
3159
|
address: {
|
|
3160
|
-
postalCode: string;
|
|
3161
3160
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
3162
3161
|
line?: string[] | null | undefined;
|
|
3163
3162
|
city?: string | null | undefined;
|
|
3164
3163
|
state?: string | null | undefined;
|
|
3165
3164
|
country?: string | null | undefined;
|
|
3165
|
+
postalCode?: string | null | undefined;
|
|
3166
3166
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
3167
3167
|
period?: {
|
|
3168
3168
|
start?: string | null | undefined;
|
|
@@ -3172,7 +3172,7 @@ export declare const patientExistingLinksSchema: z.ZodObject<{
|
|
|
3172
3172
|
gender?: import("./demographics").GenderCodes | null | undefined;
|
|
3173
3173
|
telecom?: {
|
|
3174
3174
|
value?: string | null | undefined;
|
|
3175
|
-
use?:
|
|
3175
|
+
use?: string | null | undefined;
|
|
3176
3176
|
period?: {
|
|
3177
3177
|
start?: string | null | undefined;
|
|
3178
3178
|
end?: string | null | undefined;
|
|
@@ -3189,12 +3189,12 @@ export declare const patientExistingLinksSchema: z.ZodObject<{
|
|
|
3189
3189
|
disclosure?: {
|
|
3190
3190
|
name?: string | null | undefined;
|
|
3191
3191
|
address?: {
|
|
3192
|
-
postalCode: string;
|
|
3193
3192
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
3194
3193
|
line?: string[] | null | undefined;
|
|
3195
3194
|
city?: string | null | undefined;
|
|
3196
3195
|
state?: string | null | undefined;
|
|
3197
3196
|
country?: string | null | undefined;
|
|
3197
|
+
postalCode?: string | null | undefined;
|
|
3198
3198
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
3199
3199
|
period?: {
|
|
3200
3200
|
start?: string | null | undefined;
|
|
@@ -3235,12 +3235,12 @@ export declare const patientExistingLinksSchema: z.ZodObject<{
|
|
|
3235
3235
|
}[];
|
|
3236
3236
|
birthDate: string;
|
|
3237
3237
|
address: {
|
|
3238
|
-
postalCode: string;
|
|
3239
3238
|
type?: unknown;
|
|
3240
3239
|
line?: string[] | null | undefined;
|
|
3241
3240
|
city?: string | null | undefined;
|
|
3242
3241
|
state?: unknown;
|
|
3243
3242
|
country?: unknown;
|
|
3243
|
+
postalCode?: unknown;
|
|
3244
3244
|
use?: unknown;
|
|
3245
3245
|
period?: {
|
|
3246
3246
|
start?: unknown;
|
|
@@ -3267,12 +3267,12 @@ export declare const patientExistingLinksSchema: z.ZodObject<{
|
|
|
3267
3267
|
disclosure?: {
|
|
3268
3268
|
name?: string | null | undefined;
|
|
3269
3269
|
address?: {
|
|
3270
|
-
postalCode: string;
|
|
3271
3270
|
type?: unknown;
|
|
3272
3271
|
line?: string[] | null | undefined;
|
|
3273
3272
|
city?: string | null | undefined;
|
|
3274
3273
|
state?: unknown;
|
|
3275
3274
|
country?: unknown;
|
|
3275
|
+
postalCode?: unknown;
|
|
3276
3276
|
use?: unknown;
|
|
3277
3277
|
period?: {
|
|
3278
3278
|
start?: unknown;
|
|
@@ -3325,12 +3325,12 @@ export declare const patientExistingLinksSchema: z.ZodObject<{
|
|
|
3325
3325
|
}[];
|
|
3326
3326
|
birthDate: string;
|
|
3327
3327
|
address: {
|
|
3328
|
-
postalCode: string;
|
|
3329
3328
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
3330
3329
|
line?: string[] | null | undefined;
|
|
3331
3330
|
city?: string | null | undefined;
|
|
3332
3331
|
state?: string | null | undefined;
|
|
3333
3332
|
country?: string | null | undefined;
|
|
3333
|
+
postalCode?: string | null | undefined;
|
|
3334
3334
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
3335
3335
|
period?: {
|
|
3336
3336
|
start?: string | null | undefined;
|
|
@@ -3340,7 +3340,7 @@ export declare const patientExistingLinksSchema: z.ZodObject<{
|
|
|
3340
3340
|
gender?: import("./demographics").GenderCodes | null | undefined;
|
|
3341
3341
|
telecom?: {
|
|
3342
3342
|
value?: string | null | undefined;
|
|
3343
|
-
use?:
|
|
3343
|
+
use?: string | null | undefined;
|
|
3344
3344
|
period?: {
|
|
3345
3345
|
start?: string | null | undefined;
|
|
3346
3346
|
end?: string | null | undefined;
|
|
@@ -3357,12 +3357,12 @@ export declare const patientExistingLinksSchema: z.ZodObject<{
|
|
|
3357
3357
|
disclosure?: {
|
|
3358
3358
|
name?: string | null | undefined;
|
|
3359
3359
|
address?: {
|
|
3360
|
-
postalCode: string;
|
|
3361
3360
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
3362
3361
|
line?: string[] | null | undefined;
|
|
3363
3362
|
city?: string | null | undefined;
|
|
3364
3363
|
state?: string | null | undefined;
|
|
3365
3364
|
country?: string | null | undefined;
|
|
3365
|
+
postalCode?: string | null | undefined;
|
|
3366
3366
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
3367
3367
|
period?: {
|
|
3368
3368
|
start?: string | null | undefined;
|
|
@@ -3409,12 +3409,12 @@ export declare const patientExistingLinksSchema: z.ZodObject<{
|
|
|
3409
3409
|
}[];
|
|
3410
3410
|
birthDate: string;
|
|
3411
3411
|
address: {
|
|
3412
|
-
postalCode: string;
|
|
3413
3412
|
type?: unknown;
|
|
3414
3413
|
line?: string[] | null | undefined;
|
|
3415
3414
|
city?: string | null | undefined;
|
|
3416
3415
|
state?: unknown;
|
|
3417
3416
|
country?: unknown;
|
|
3417
|
+
postalCode?: unknown;
|
|
3418
3418
|
use?: unknown;
|
|
3419
3419
|
period?: {
|
|
3420
3420
|
start?: unknown;
|
|
@@ -3441,12 +3441,12 @@ export declare const patientExistingLinksSchema: z.ZodObject<{
|
|
|
3441
3441
|
disclosure?: {
|
|
3442
3442
|
name?: string | null | undefined;
|
|
3443
3443
|
address?: {
|
|
3444
|
-
postalCode: string;
|
|
3445
3444
|
type?: unknown;
|
|
3446
3445
|
line?: string[] | null | undefined;
|
|
3447
3446
|
city?: string | null | undefined;
|
|
3448
3447
|
state?: unknown;
|
|
3449
3448
|
country?: unknown;
|
|
3449
|
+
postalCode?: unknown;
|
|
3450
3450
|
use?: unknown;
|
|
3451
3451
|
period?: {
|
|
3452
3452
|
start?: unknown;
|
|
@@ -3566,7 +3566,7 @@ export declare const patientProbableLinksItemRespSchema: z.ZodObject<{
|
|
|
3566
3566
|
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3567
3567
|
state: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
3568
3568
|
country: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
3569
|
-
postalCode: z.ZodString
|
|
3569
|
+
postalCode: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
3570
3570
|
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressUseCodes>, import("./address").AddressUseCodes, unknown>>>>;
|
|
3571
3571
|
type: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressTypeCodes>, import("./address").AddressTypeCodes, unknown>>>>;
|
|
3572
3572
|
period: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -3580,24 +3580,24 @@ export declare const patientProbableLinksItemRespSchema: z.ZodObject<{
|
|
|
3580
3580
|
end?: unknown;
|
|
3581
3581
|
}>>>;
|
|
3582
3582
|
}, "strip", z.ZodTypeAny, {
|
|
3583
|
-
postalCode: string;
|
|
3584
3583
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
3585
3584
|
line?: string[] | null | undefined;
|
|
3586
3585
|
city?: string | null | undefined;
|
|
3587
3586
|
state?: string | null | undefined;
|
|
3588
3587
|
country?: string | null | undefined;
|
|
3588
|
+
postalCode?: string | null | undefined;
|
|
3589
3589
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
3590
3590
|
period?: {
|
|
3591
3591
|
start?: string | null | undefined;
|
|
3592
3592
|
end?: string | null | undefined;
|
|
3593
3593
|
} | null | undefined;
|
|
3594
3594
|
}, {
|
|
3595
|
-
postalCode: string;
|
|
3596
3595
|
type?: unknown;
|
|
3597
3596
|
line?: string[] | null | undefined;
|
|
3598
3597
|
city?: string | null | undefined;
|
|
3599
3598
|
state?: unknown;
|
|
3600
3599
|
country?: unknown;
|
|
3600
|
+
postalCode?: unknown;
|
|
3601
3601
|
use?: unknown;
|
|
3602
3602
|
period?: {
|
|
3603
3603
|
start?: unknown;
|
|
@@ -3607,7 +3607,7 @@ export declare const patientProbableLinksItemRespSchema: z.ZodObject<{
|
|
|
3607
3607
|
telecom: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
3608
3608
|
value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3609
3609
|
system: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodPipeline<z.ZodEffects<z.ZodEffects<z.ZodString, unknown, string>, unknown, string>, z.ZodNativeEnum<typeof import("./contact").ContactSystemCodes>>>>>;
|
|
3610
|
-
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.
|
|
3610
|
+
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
3611
3611
|
period: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
3612
3612
|
start: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodString]>>>>;
|
|
3613
3613
|
end: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodString]>>>>;
|
|
@@ -3620,7 +3620,7 @@ export declare const patientProbableLinksItemRespSchema: z.ZodObject<{
|
|
|
3620
3620
|
}>>>;
|
|
3621
3621
|
}, "strip", z.ZodTypeAny, {
|
|
3622
3622
|
value?: string | null | undefined;
|
|
3623
|
-
use?:
|
|
3623
|
+
use?: string | null | undefined;
|
|
3624
3624
|
period?: {
|
|
3625
3625
|
start?: string | null | undefined;
|
|
3626
3626
|
end?: string | null | undefined;
|
|
@@ -3684,7 +3684,7 @@ export declare const patientProbableLinksItemRespSchema: z.ZodObject<{
|
|
|
3684
3684
|
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3685
3685
|
state: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
3686
3686
|
country: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
3687
|
-
postalCode: z.ZodString
|
|
3687
|
+
postalCode: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
3688
3688
|
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressUseCodes>, import("./address").AddressUseCodes, unknown>>>>;
|
|
3689
3689
|
type: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressTypeCodes>, import("./address").AddressTypeCodes, unknown>>>>;
|
|
3690
3690
|
period: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -3698,24 +3698,24 @@ export declare const patientProbableLinksItemRespSchema: z.ZodObject<{
|
|
|
3698
3698
|
end?: unknown;
|
|
3699
3699
|
}>>>;
|
|
3700
3700
|
}, "strip", z.ZodTypeAny, {
|
|
3701
|
-
postalCode: string;
|
|
3702
3701
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
3703
3702
|
line?: string[] | null | undefined;
|
|
3704
3703
|
city?: string | null | undefined;
|
|
3705
3704
|
state?: string | null | undefined;
|
|
3706
3705
|
country?: string | null | undefined;
|
|
3706
|
+
postalCode?: string | null | undefined;
|
|
3707
3707
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
3708
3708
|
period?: {
|
|
3709
3709
|
start?: string | null | undefined;
|
|
3710
3710
|
end?: string | null | undefined;
|
|
3711
3711
|
} | null | undefined;
|
|
3712
3712
|
}, {
|
|
3713
|
-
postalCode: string;
|
|
3714
3713
|
type?: unknown;
|
|
3715
3714
|
line?: string[] | null | undefined;
|
|
3716
3715
|
city?: string | null | undefined;
|
|
3717
3716
|
state?: unknown;
|
|
3718
3717
|
country?: unknown;
|
|
3718
|
+
postalCode?: unknown;
|
|
3719
3719
|
use?: unknown;
|
|
3720
3720
|
period?: {
|
|
3721
3721
|
start?: unknown;
|
|
@@ -3725,12 +3725,12 @@ export declare const patientProbableLinksItemRespSchema: z.ZodObject<{
|
|
|
3725
3725
|
}, "strip", z.ZodTypeAny, {
|
|
3726
3726
|
name?: string | null | undefined;
|
|
3727
3727
|
address?: {
|
|
3728
|
-
postalCode: string;
|
|
3729
3728
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
3730
3729
|
line?: string[] | null | undefined;
|
|
3731
3730
|
city?: string | null | undefined;
|
|
3732
3731
|
state?: string | null | undefined;
|
|
3733
3732
|
country?: string | null | undefined;
|
|
3733
|
+
postalCode?: string | null | undefined;
|
|
3734
3734
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
3735
3735
|
period?: {
|
|
3736
3736
|
start?: string | null | undefined;
|
|
@@ -3741,12 +3741,12 @@ export declare const patientProbableLinksItemRespSchema: z.ZodObject<{
|
|
|
3741
3741
|
}, {
|
|
3742
3742
|
name?: string | null | undefined;
|
|
3743
3743
|
address?: {
|
|
3744
|
-
postalCode: string;
|
|
3745
3744
|
type?: unknown;
|
|
3746
3745
|
line?: string[] | null | undefined;
|
|
3747
3746
|
city?: string | null | undefined;
|
|
3748
3747
|
state?: unknown;
|
|
3749
3748
|
country?: unknown;
|
|
3749
|
+
postalCode?: unknown;
|
|
3750
3750
|
use?: unknown;
|
|
3751
3751
|
period?: {
|
|
3752
3752
|
start?: unknown;
|
|
@@ -3781,12 +3781,12 @@ export declare const patientProbableLinksItemRespSchema: z.ZodObject<{
|
|
|
3781
3781
|
}[];
|
|
3782
3782
|
birthDate: string;
|
|
3783
3783
|
address: {
|
|
3784
|
-
postalCode: string;
|
|
3785
3784
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
3786
3785
|
line?: string[] | null | undefined;
|
|
3787
3786
|
city?: string | null | undefined;
|
|
3788
3787
|
state?: string | null | undefined;
|
|
3789
3788
|
country?: string | null | undefined;
|
|
3789
|
+
postalCode?: string | null | undefined;
|
|
3790
3790
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
3791
3791
|
period?: {
|
|
3792
3792
|
start?: string | null | undefined;
|
|
@@ -3796,7 +3796,7 @@ export declare const patientProbableLinksItemRespSchema: z.ZodObject<{
|
|
|
3796
3796
|
gender?: import("./demographics").GenderCodes | null | undefined;
|
|
3797
3797
|
telecom?: {
|
|
3798
3798
|
value?: string | null | undefined;
|
|
3799
|
-
use?:
|
|
3799
|
+
use?: string | null | undefined;
|
|
3800
3800
|
period?: {
|
|
3801
3801
|
start?: string | null | undefined;
|
|
3802
3802
|
end?: string | null | undefined;
|
|
@@ -3813,12 +3813,12 @@ export declare const patientProbableLinksItemRespSchema: z.ZodObject<{
|
|
|
3813
3813
|
disclosure?: {
|
|
3814
3814
|
name?: string | null | undefined;
|
|
3815
3815
|
address?: {
|
|
3816
|
-
postalCode: string;
|
|
3817
3816
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
3818
3817
|
line?: string[] | null | undefined;
|
|
3819
3818
|
city?: string | null | undefined;
|
|
3820
3819
|
state?: string | null | undefined;
|
|
3821
3820
|
country?: string | null | undefined;
|
|
3821
|
+
postalCode?: string | null | undefined;
|
|
3822
3822
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
3823
3823
|
period?: {
|
|
3824
3824
|
start?: string | null | undefined;
|
|
@@ -3853,12 +3853,12 @@ export declare const patientProbableLinksItemRespSchema: z.ZodObject<{
|
|
|
3853
3853
|
}[];
|
|
3854
3854
|
birthDate: string;
|
|
3855
3855
|
address: {
|
|
3856
|
-
postalCode: string;
|
|
3857
3856
|
type?: unknown;
|
|
3858
3857
|
line?: string[] | null | undefined;
|
|
3859
3858
|
city?: string | null | undefined;
|
|
3860
3859
|
state?: unknown;
|
|
3861
3860
|
country?: unknown;
|
|
3861
|
+
postalCode?: unknown;
|
|
3862
3862
|
use?: unknown;
|
|
3863
3863
|
period?: {
|
|
3864
3864
|
start?: unknown;
|
|
@@ -3885,12 +3885,12 @@ export declare const patientProbableLinksItemRespSchema: z.ZodObject<{
|
|
|
3885
3885
|
disclosure?: {
|
|
3886
3886
|
name?: string | null | undefined;
|
|
3887
3887
|
address?: {
|
|
3888
|
-
postalCode: string;
|
|
3889
3888
|
type?: unknown;
|
|
3890
3889
|
line?: string[] | null | undefined;
|
|
3891
3890
|
city?: string | null | undefined;
|
|
3892
3891
|
state?: unknown;
|
|
3893
3892
|
country?: unknown;
|
|
3893
|
+
postalCode?: unknown;
|
|
3894
3894
|
use?: unknown;
|
|
3895
3895
|
period?: {
|
|
3896
3896
|
start?: unknown;
|
|
@@ -3940,12 +3940,12 @@ export declare const patientProbableLinksItemRespSchema: z.ZodObject<{
|
|
|
3940
3940
|
}[];
|
|
3941
3941
|
birthDate: string;
|
|
3942
3942
|
address: {
|
|
3943
|
-
postalCode: string;
|
|
3944
3943
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
3945
3944
|
line?: string[] | null | undefined;
|
|
3946
3945
|
city?: string | null | undefined;
|
|
3947
3946
|
state?: string | null | undefined;
|
|
3948
3947
|
country?: string | null | undefined;
|
|
3948
|
+
postalCode?: string | null | undefined;
|
|
3949
3949
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
3950
3950
|
period?: {
|
|
3951
3951
|
start?: string | null | undefined;
|
|
@@ -3955,7 +3955,7 @@ export declare const patientProbableLinksItemRespSchema: z.ZodObject<{
|
|
|
3955
3955
|
gender?: import("./demographics").GenderCodes | null | undefined;
|
|
3956
3956
|
telecom?: {
|
|
3957
3957
|
value?: string | null | undefined;
|
|
3958
|
-
use?:
|
|
3958
|
+
use?: string | null | undefined;
|
|
3959
3959
|
period?: {
|
|
3960
3960
|
start?: string | null | undefined;
|
|
3961
3961
|
end?: string | null | undefined;
|
|
@@ -3972,12 +3972,12 @@ export declare const patientProbableLinksItemRespSchema: z.ZodObject<{
|
|
|
3972
3972
|
disclosure?: {
|
|
3973
3973
|
name?: string | null | undefined;
|
|
3974
3974
|
address?: {
|
|
3975
|
-
postalCode: string;
|
|
3976
3975
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
3977
3976
|
line?: string[] | null | undefined;
|
|
3978
3977
|
city?: string | null | undefined;
|
|
3979
3978
|
state?: string | null | undefined;
|
|
3980
3979
|
country?: string | null | undefined;
|
|
3980
|
+
postalCode?: string | null | undefined;
|
|
3981
3981
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
3982
3982
|
period?: {
|
|
3983
3983
|
start?: string | null | undefined;
|
|
@@ -4019,12 +4019,12 @@ export declare const patientProbableLinksItemRespSchema: z.ZodObject<{
|
|
|
4019
4019
|
}[];
|
|
4020
4020
|
birthDate: string;
|
|
4021
4021
|
address: {
|
|
4022
|
-
postalCode: string;
|
|
4023
4022
|
type?: unknown;
|
|
4024
4023
|
line?: string[] | null | undefined;
|
|
4025
4024
|
city?: string | null | undefined;
|
|
4026
4025
|
state?: unknown;
|
|
4027
4026
|
country?: unknown;
|
|
4027
|
+
postalCode?: unknown;
|
|
4028
4028
|
use?: unknown;
|
|
4029
4029
|
period?: {
|
|
4030
4030
|
start?: unknown;
|
|
@@ -4051,12 +4051,12 @@ export declare const patientProbableLinksItemRespSchema: z.ZodObject<{
|
|
|
4051
4051
|
disclosure?: {
|
|
4052
4052
|
name?: string | null | undefined;
|
|
4053
4053
|
address?: {
|
|
4054
|
-
postalCode: string;
|
|
4055
4054
|
type?: unknown;
|
|
4056
4055
|
line?: string[] | null | undefined;
|
|
4057
4056
|
city?: string | null | undefined;
|
|
4058
4057
|
state?: unknown;
|
|
4059
4058
|
country?: unknown;
|
|
4059
|
+
postalCode?: unknown;
|
|
4060
4060
|
use?: unknown;
|
|
4061
4061
|
period?: {
|
|
4062
4062
|
start?: unknown;
|
|
@@ -4160,7 +4160,7 @@ export declare const patientProbableLinksRespSchema: z.ZodObject<{
|
|
|
4160
4160
|
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4161
4161
|
state: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
4162
4162
|
country: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
4163
|
-
postalCode: z.ZodString
|
|
4163
|
+
postalCode: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4164
4164
|
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressUseCodes>, import("./address").AddressUseCodes, unknown>>>>;
|
|
4165
4165
|
type: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressTypeCodes>, import("./address").AddressTypeCodes, unknown>>>>;
|
|
4166
4166
|
period: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -4174,24 +4174,24 @@ export declare const patientProbableLinksRespSchema: z.ZodObject<{
|
|
|
4174
4174
|
end?: unknown;
|
|
4175
4175
|
}>>>;
|
|
4176
4176
|
}, "strip", z.ZodTypeAny, {
|
|
4177
|
-
postalCode: string;
|
|
4178
4177
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
4179
4178
|
line?: string[] | null | undefined;
|
|
4180
4179
|
city?: string | null | undefined;
|
|
4181
4180
|
state?: string | null | undefined;
|
|
4182
4181
|
country?: string | null | undefined;
|
|
4182
|
+
postalCode?: string | null | undefined;
|
|
4183
4183
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
4184
4184
|
period?: {
|
|
4185
4185
|
start?: string | null | undefined;
|
|
4186
4186
|
end?: string | null | undefined;
|
|
4187
4187
|
} | null | undefined;
|
|
4188
4188
|
}, {
|
|
4189
|
-
postalCode: string;
|
|
4190
4189
|
type?: unknown;
|
|
4191
4190
|
line?: string[] | null | undefined;
|
|
4192
4191
|
city?: string | null | undefined;
|
|
4193
4192
|
state?: unknown;
|
|
4194
4193
|
country?: unknown;
|
|
4194
|
+
postalCode?: unknown;
|
|
4195
4195
|
use?: unknown;
|
|
4196
4196
|
period?: {
|
|
4197
4197
|
start?: unknown;
|
|
@@ -4201,7 +4201,7 @@ export declare const patientProbableLinksRespSchema: z.ZodObject<{
|
|
|
4201
4201
|
telecom: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
4202
4202
|
value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4203
4203
|
system: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodPipeline<z.ZodEffects<z.ZodEffects<z.ZodString, unknown, string>, unknown, string>, z.ZodNativeEnum<typeof import("./contact").ContactSystemCodes>>>>>;
|
|
4204
|
-
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.
|
|
4204
|
+
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4205
4205
|
period: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
4206
4206
|
start: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodString]>>>>;
|
|
4207
4207
|
end: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodString]>>>>;
|
|
@@ -4214,7 +4214,7 @@ export declare const patientProbableLinksRespSchema: z.ZodObject<{
|
|
|
4214
4214
|
}>>>;
|
|
4215
4215
|
}, "strip", z.ZodTypeAny, {
|
|
4216
4216
|
value?: string | null | undefined;
|
|
4217
|
-
use?:
|
|
4217
|
+
use?: string | null | undefined;
|
|
4218
4218
|
period?: {
|
|
4219
4219
|
start?: string | null | undefined;
|
|
4220
4220
|
end?: string | null | undefined;
|
|
@@ -4278,7 +4278,7 @@ export declare const patientProbableLinksRespSchema: z.ZodObject<{
|
|
|
4278
4278
|
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4279
4279
|
state: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
4280
4280
|
country: z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>;
|
|
4281
|
-
postalCode: z.ZodString
|
|
4281
|
+
postalCode: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodString>>>;
|
|
4282
4282
|
use: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressUseCodes>, import("./address").AddressUseCodes, unknown>>>>;
|
|
4283
4283
|
type: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodString>>, string | null | undefined, unknown>, z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodNativeEnum<typeof import("./address").AddressTypeCodes>, import("./address").AddressTypeCodes, unknown>>>>;
|
|
4284
4284
|
period: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -4292,24 +4292,24 @@ export declare const patientProbableLinksRespSchema: z.ZodObject<{
|
|
|
4292
4292
|
end?: unknown;
|
|
4293
4293
|
}>>>;
|
|
4294
4294
|
}, "strip", z.ZodTypeAny, {
|
|
4295
|
-
postalCode: string;
|
|
4296
4295
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
4297
4296
|
line?: string[] | null | undefined;
|
|
4298
4297
|
city?: string | null | undefined;
|
|
4299
4298
|
state?: string | null | undefined;
|
|
4300
4299
|
country?: string | null | undefined;
|
|
4300
|
+
postalCode?: string | null | undefined;
|
|
4301
4301
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
4302
4302
|
period?: {
|
|
4303
4303
|
start?: string | null | undefined;
|
|
4304
4304
|
end?: string | null | undefined;
|
|
4305
4305
|
} | null | undefined;
|
|
4306
4306
|
}, {
|
|
4307
|
-
postalCode: string;
|
|
4308
4307
|
type?: unknown;
|
|
4309
4308
|
line?: string[] | null | undefined;
|
|
4310
4309
|
city?: string | null | undefined;
|
|
4311
4310
|
state?: unknown;
|
|
4312
4311
|
country?: unknown;
|
|
4312
|
+
postalCode?: unknown;
|
|
4313
4313
|
use?: unknown;
|
|
4314
4314
|
period?: {
|
|
4315
4315
|
start?: unknown;
|
|
@@ -4319,12 +4319,12 @@ export declare const patientProbableLinksRespSchema: z.ZodObject<{
|
|
|
4319
4319
|
}, "strip", z.ZodTypeAny, {
|
|
4320
4320
|
name?: string | null | undefined;
|
|
4321
4321
|
address?: {
|
|
4322
|
-
postalCode: string;
|
|
4323
4322
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
4324
4323
|
line?: string[] | null | undefined;
|
|
4325
4324
|
city?: string | null | undefined;
|
|
4326
4325
|
state?: string | null | undefined;
|
|
4327
4326
|
country?: string | null | undefined;
|
|
4327
|
+
postalCode?: string | null | undefined;
|
|
4328
4328
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
4329
4329
|
period?: {
|
|
4330
4330
|
start?: string | null | undefined;
|
|
@@ -4335,12 +4335,12 @@ export declare const patientProbableLinksRespSchema: z.ZodObject<{
|
|
|
4335
4335
|
}, {
|
|
4336
4336
|
name?: string | null | undefined;
|
|
4337
4337
|
address?: {
|
|
4338
|
-
postalCode: string;
|
|
4339
4338
|
type?: unknown;
|
|
4340
4339
|
line?: string[] | null | undefined;
|
|
4341
4340
|
city?: string | null | undefined;
|
|
4342
4341
|
state?: unknown;
|
|
4343
4342
|
country?: unknown;
|
|
4343
|
+
postalCode?: unknown;
|
|
4344
4344
|
use?: unknown;
|
|
4345
4345
|
period?: {
|
|
4346
4346
|
start?: unknown;
|
|
@@ -4375,12 +4375,12 @@ export declare const patientProbableLinksRespSchema: z.ZodObject<{
|
|
|
4375
4375
|
}[];
|
|
4376
4376
|
birthDate: string;
|
|
4377
4377
|
address: {
|
|
4378
|
-
postalCode: string;
|
|
4379
4378
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
4380
4379
|
line?: string[] | null | undefined;
|
|
4381
4380
|
city?: string | null | undefined;
|
|
4382
4381
|
state?: string | null | undefined;
|
|
4383
4382
|
country?: string | null | undefined;
|
|
4383
|
+
postalCode?: string | null | undefined;
|
|
4384
4384
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
4385
4385
|
period?: {
|
|
4386
4386
|
start?: string | null | undefined;
|
|
@@ -4390,7 +4390,7 @@ export declare const patientProbableLinksRespSchema: z.ZodObject<{
|
|
|
4390
4390
|
gender?: import("./demographics").GenderCodes | null | undefined;
|
|
4391
4391
|
telecom?: {
|
|
4392
4392
|
value?: string | null | undefined;
|
|
4393
|
-
use?:
|
|
4393
|
+
use?: string | null | undefined;
|
|
4394
4394
|
period?: {
|
|
4395
4395
|
start?: string | null | undefined;
|
|
4396
4396
|
end?: string | null | undefined;
|
|
@@ -4407,12 +4407,12 @@ export declare const patientProbableLinksRespSchema: z.ZodObject<{
|
|
|
4407
4407
|
disclosure?: {
|
|
4408
4408
|
name?: string | null | undefined;
|
|
4409
4409
|
address?: {
|
|
4410
|
-
postalCode: string;
|
|
4411
4410
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
4412
4411
|
line?: string[] | null | undefined;
|
|
4413
4412
|
city?: string | null | undefined;
|
|
4414
4413
|
state?: string | null | undefined;
|
|
4415
4414
|
country?: string | null | undefined;
|
|
4415
|
+
postalCode?: string | null | undefined;
|
|
4416
4416
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
4417
4417
|
period?: {
|
|
4418
4418
|
start?: string | null | undefined;
|
|
@@ -4447,12 +4447,12 @@ export declare const patientProbableLinksRespSchema: z.ZodObject<{
|
|
|
4447
4447
|
}[];
|
|
4448
4448
|
birthDate: string;
|
|
4449
4449
|
address: {
|
|
4450
|
-
postalCode: string;
|
|
4451
4450
|
type?: unknown;
|
|
4452
4451
|
line?: string[] | null | undefined;
|
|
4453
4452
|
city?: string | null | undefined;
|
|
4454
4453
|
state?: unknown;
|
|
4455
4454
|
country?: unknown;
|
|
4455
|
+
postalCode?: unknown;
|
|
4456
4456
|
use?: unknown;
|
|
4457
4457
|
period?: {
|
|
4458
4458
|
start?: unknown;
|
|
@@ -4479,12 +4479,12 @@ export declare const patientProbableLinksRespSchema: z.ZodObject<{
|
|
|
4479
4479
|
disclosure?: {
|
|
4480
4480
|
name?: string | null | undefined;
|
|
4481
4481
|
address?: {
|
|
4482
|
-
postalCode: string;
|
|
4483
4482
|
type?: unknown;
|
|
4484
4483
|
line?: string[] | null | undefined;
|
|
4485
4484
|
city?: string | null | undefined;
|
|
4486
4485
|
state?: unknown;
|
|
4487
4486
|
country?: unknown;
|
|
4487
|
+
postalCode?: unknown;
|
|
4488
4488
|
use?: unknown;
|
|
4489
4489
|
period?: {
|
|
4490
4490
|
start?: unknown;
|
|
@@ -4534,12 +4534,12 @@ export declare const patientProbableLinksRespSchema: z.ZodObject<{
|
|
|
4534
4534
|
}[];
|
|
4535
4535
|
birthDate: string;
|
|
4536
4536
|
address: {
|
|
4537
|
-
postalCode: string;
|
|
4538
4537
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
4539
4538
|
line?: string[] | null | undefined;
|
|
4540
4539
|
city?: string | null | undefined;
|
|
4541
4540
|
state?: string | null | undefined;
|
|
4542
4541
|
country?: string | null | undefined;
|
|
4542
|
+
postalCode?: string | null | undefined;
|
|
4543
4543
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
4544
4544
|
period?: {
|
|
4545
4545
|
start?: string | null | undefined;
|
|
@@ -4549,7 +4549,7 @@ export declare const patientProbableLinksRespSchema: z.ZodObject<{
|
|
|
4549
4549
|
gender?: import("./demographics").GenderCodes | null | undefined;
|
|
4550
4550
|
telecom?: {
|
|
4551
4551
|
value?: string | null | undefined;
|
|
4552
|
-
use?:
|
|
4552
|
+
use?: string | null | undefined;
|
|
4553
4553
|
period?: {
|
|
4554
4554
|
start?: string | null | undefined;
|
|
4555
4555
|
end?: string | null | undefined;
|
|
@@ -4566,12 +4566,12 @@ export declare const patientProbableLinksRespSchema: z.ZodObject<{
|
|
|
4566
4566
|
disclosure?: {
|
|
4567
4567
|
name?: string | null | undefined;
|
|
4568
4568
|
address?: {
|
|
4569
|
-
postalCode: string;
|
|
4570
4569
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
4571
4570
|
line?: string[] | null | undefined;
|
|
4572
4571
|
city?: string | null | undefined;
|
|
4573
4572
|
state?: string | null | undefined;
|
|
4574
4573
|
country?: string | null | undefined;
|
|
4574
|
+
postalCode?: string | null | undefined;
|
|
4575
4575
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
4576
4576
|
period?: {
|
|
4577
4577
|
start?: string | null | undefined;
|
|
@@ -4613,12 +4613,12 @@ export declare const patientProbableLinksRespSchema: z.ZodObject<{
|
|
|
4613
4613
|
}[];
|
|
4614
4614
|
birthDate: string;
|
|
4615
4615
|
address: {
|
|
4616
|
-
postalCode: string;
|
|
4617
4616
|
type?: unknown;
|
|
4618
4617
|
line?: string[] | null | undefined;
|
|
4619
4618
|
city?: string | null | undefined;
|
|
4620
4619
|
state?: unknown;
|
|
4621
4620
|
country?: unknown;
|
|
4621
|
+
postalCode?: unknown;
|
|
4622
4622
|
use?: unknown;
|
|
4623
4623
|
period?: {
|
|
4624
4624
|
start?: unknown;
|
|
@@ -4645,12 +4645,12 @@ export declare const patientProbableLinksRespSchema: z.ZodObject<{
|
|
|
4645
4645
|
disclosure?: {
|
|
4646
4646
|
name?: string | null | undefined;
|
|
4647
4647
|
address?: {
|
|
4648
|
-
postalCode: string;
|
|
4649
4648
|
type?: unknown;
|
|
4650
4649
|
line?: string[] | null | undefined;
|
|
4651
4650
|
city?: string | null | undefined;
|
|
4652
4651
|
state?: unknown;
|
|
4653
4652
|
country?: unknown;
|
|
4653
|
+
postalCode?: unknown;
|
|
4654
4654
|
use?: unknown;
|
|
4655
4655
|
period?: {
|
|
4656
4656
|
start?: unknown;
|
|
@@ -4704,12 +4704,12 @@ export declare const patientProbableLinksRespSchema: z.ZodObject<{
|
|
|
4704
4704
|
}[];
|
|
4705
4705
|
birthDate: string;
|
|
4706
4706
|
address: {
|
|
4707
|
-
postalCode: string;
|
|
4708
4707
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
4709
4708
|
line?: string[] | null | undefined;
|
|
4710
4709
|
city?: string | null | undefined;
|
|
4711
4710
|
state?: string | null | undefined;
|
|
4712
4711
|
country?: string | null | undefined;
|
|
4712
|
+
postalCode?: string | null | undefined;
|
|
4713
4713
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
4714
4714
|
period?: {
|
|
4715
4715
|
start?: string | null | undefined;
|
|
@@ -4719,7 +4719,7 @@ export declare const patientProbableLinksRespSchema: z.ZodObject<{
|
|
|
4719
4719
|
gender?: import("./demographics").GenderCodes | null | undefined;
|
|
4720
4720
|
telecom?: {
|
|
4721
4721
|
value?: string | null | undefined;
|
|
4722
|
-
use?:
|
|
4722
|
+
use?: string | null | undefined;
|
|
4723
4723
|
period?: {
|
|
4724
4724
|
start?: string | null | undefined;
|
|
4725
4725
|
end?: string | null | undefined;
|
|
@@ -4736,12 +4736,12 @@ export declare const patientProbableLinksRespSchema: z.ZodObject<{
|
|
|
4736
4736
|
disclosure?: {
|
|
4737
4737
|
name?: string | null | undefined;
|
|
4738
4738
|
address?: {
|
|
4739
|
-
postalCode: string;
|
|
4740
4739
|
type?: import("./address").AddressTypeCodes | null | undefined;
|
|
4741
4740
|
line?: string[] | null | undefined;
|
|
4742
4741
|
city?: string | null | undefined;
|
|
4743
4742
|
state?: string | null | undefined;
|
|
4744
4743
|
country?: string | null | undefined;
|
|
4744
|
+
postalCode?: string | null | undefined;
|
|
4745
4745
|
use?: import("./address").AddressUseCodes | null | undefined;
|
|
4746
4746
|
period?: {
|
|
4747
4747
|
start?: string | null | undefined;
|
|
@@ -4789,12 +4789,12 @@ export declare const patientProbableLinksRespSchema: z.ZodObject<{
|
|
|
4789
4789
|
}[];
|
|
4790
4790
|
birthDate: string;
|
|
4791
4791
|
address: {
|
|
4792
|
-
postalCode: string;
|
|
4793
4792
|
type?: unknown;
|
|
4794
4793
|
line?: string[] | null | undefined;
|
|
4795
4794
|
city?: string | null | undefined;
|
|
4796
4795
|
state?: unknown;
|
|
4797
4796
|
country?: unknown;
|
|
4797
|
+
postalCode?: unknown;
|
|
4798
4798
|
use?: unknown;
|
|
4799
4799
|
period?: {
|
|
4800
4800
|
start?: unknown;
|
|
@@ -4821,12 +4821,12 @@ export declare const patientProbableLinksRespSchema: z.ZodObject<{
|
|
|
4821
4821
|
disclosure?: {
|
|
4822
4822
|
name?: string | null | undefined;
|
|
4823
4823
|
address?: {
|
|
4824
|
-
postalCode: string;
|
|
4825
4824
|
type?: unknown;
|
|
4826
4825
|
line?: string[] | null | undefined;
|
|
4827
4826
|
city?: string | null | undefined;
|
|
4828
4827
|
state?: unknown;
|
|
4829
4828
|
country?: unknown;
|
|
4829
|
+
postalCode?: unknown;
|
|
4830
4830
|
use?: unknown;
|
|
4831
4831
|
period?: {
|
|
4832
4832
|
start?: unknown;
|