@opencrvs/toolkit 1.8.0-rc.fc43738 → 1.8.0-rc.fe799b0

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.
@@ -9,7 +9,7 @@ export declare const Draft: z.ZodObject<{
9
9
  id: z.ZodString;
10
10
  createdAt: z.ZodString;
11
11
  createdBy: z.ZodString;
12
- data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
12
+ data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
13
13
  filename: z.ZodString;
14
14
  originalFilename: z.ZodString;
15
15
  type: z.ZodString;
@@ -36,58 +36,58 @@ export declare const Draft: z.ZodObject<{
36
36
  option: string;
37
37
  filename: string;
38
38
  originalFilename: string;
39
- }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
39
+ }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
40
40
  country: z.ZodString;
41
41
  province: z.ZodString;
42
42
  district: z.ZodString;
43
43
  }, {
44
44
  urbanOrRural: z.ZodLiteral<"URBAN">;
45
- town: z.ZodOptional<z.ZodString>;
46
- residentialArea: z.ZodOptional<z.ZodString>;
47
- street: z.ZodOptional<z.ZodString>;
48
- number: z.ZodOptional<z.ZodString>;
49
- zipCode: z.ZodOptional<z.ZodString>;
45
+ town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
46
+ residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
47
+ street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
48
+ number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
49
+ zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
50
50
  }>, "strip", z.ZodTypeAny, {
51
51
  country: string;
52
52
  district: string;
53
53
  province: string;
54
54
  urbanOrRural: "URBAN";
55
- number?: string | undefined;
56
- town?: string | undefined;
57
- residentialArea?: string | undefined;
58
- street?: string | undefined;
59
- zipCode?: string | undefined;
55
+ number?: string | null | undefined;
56
+ town?: string | null | undefined;
57
+ residentialArea?: string | null | undefined;
58
+ street?: string | null | undefined;
59
+ zipCode?: string | null | undefined;
60
60
  }, {
61
61
  country: string;
62
62
  district: string;
63
63
  province: string;
64
64
  urbanOrRural: "URBAN";
65
- number?: string | undefined;
66
- town?: string | undefined;
67
- residentialArea?: string | undefined;
68
- street?: string | undefined;
69
- zipCode?: string | undefined;
65
+ number?: string | null | undefined;
66
+ town?: string | null | undefined;
67
+ residentialArea?: string | null | undefined;
68
+ street?: string | null | undefined;
69
+ zipCode?: string | null | undefined;
70
70
  }>, z.ZodObject<z.objectUtil.extendShape<{
71
71
  country: z.ZodString;
72
72
  province: z.ZodString;
73
73
  district: z.ZodString;
74
74
  }, {
75
75
  urbanOrRural: z.ZodLiteral<"RURAL">;
76
- village: z.ZodOptional<z.ZodString>;
76
+ village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
77
77
  }>, "strip", z.ZodTypeAny, {
78
78
  country: string;
79
79
  district: string;
80
80
  province: string;
81
81
  urbanOrRural: "RURAL";
82
- village?: string | undefined;
82
+ village?: string | null | undefined;
83
83
  }, {
84
84
  country: string;
85
85
  district: string;
86
86
  province: string;
87
87
  urbanOrRural: "RURAL";
88
- village?: string | undefined;
88
+ village?: string | null | undefined;
89
89
  }>]>>;
90
- metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
90
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
91
91
  filename: z.ZodString;
92
92
  originalFilename: z.ZodString;
93
93
  type: z.ZodString;
@@ -114,56 +114,56 @@ export declare const Draft: z.ZodObject<{
114
114
  option: string;
115
115
  filename: string;
116
116
  originalFilename: string;
117
- }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
117
+ }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
118
118
  country: z.ZodString;
119
119
  province: z.ZodString;
120
120
  district: z.ZodString;
121
121
  }, {
122
122
  urbanOrRural: z.ZodLiteral<"URBAN">;
123
- town: z.ZodOptional<z.ZodString>;
124
- residentialArea: z.ZodOptional<z.ZodString>;
125
- street: z.ZodOptional<z.ZodString>;
126
- number: z.ZodOptional<z.ZodString>;
127
- zipCode: z.ZodOptional<z.ZodString>;
123
+ town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
124
+ residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
125
+ street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
126
+ number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
127
+ zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
128
128
  }>, "strip", z.ZodTypeAny, {
129
129
  country: string;
130
130
  district: string;
131
131
  province: string;
132
132
  urbanOrRural: "URBAN";
133
- number?: string | undefined;
134
- town?: string | undefined;
135
- residentialArea?: string | undefined;
136
- street?: string | undefined;
137
- zipCode?: string | undefined;
133
+ number?: string | null | undefined;
134
+ town?: string | null | undefined;
135
+ residentialArea?: string | null | undefined;
136
+ street?: string | null | undefined;
137
+ zipCode?: string | null | undefined;
138
138
  }, {
139
139
  country: string;
140
140
  district: string;
141
141
  province: string;
142
142
  urbanOrRural: "URBAN";
143
- number?: string | undefined;
144
- town?: string | undefined;
145
- residentialArea?: string | undefined;
146
- street?: string | undefined;
147
- zipCode?: string | undefined;
143
+ number?: string | null | undefined;
144
+ town?: string | null | undefined;
145
+ residentialArea?: string | null | undefined;
146
+ street?: string | null | undefined;
147
+ zipCode?: string | null | undefined;
148
148
  }>, z.ZodObject<z.objectUtil.extendShape<{
149
149
  country: z.ZodString;
150
150
  province: z.ZodString;
151
151
  district: z.ZodString;
152
152
  }, {
153
153
  urbanOrRural: z.ZodLiteral<"RURAL">;
154
- village: z.ZodOptional<z.ZodString>;
154
+ village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
155
155
  }>, "strip", z.ZodTypeAny, {
156
156
  country: string;
157
157
  district: string;
158
158
  province: string;
159
159
  urbanOrRural: "RURAL";
160
- village?: string | undefined;
160
+ village?: string | null | undefined;
161
161
  }, {
162
162
  country: string;
163
163
  district: string;
164
164
  province: string;
165
165
  urbanOrRural: "RURAL";
166
- village?: string | undefined;
166
+ village?: string | null | undefined;
167
167
  }>]>>>;
168
168
  createdAtLocation: z.ZodString;
169
169
  }, {
@@ -179,17 +179,17 @@ export declare const Draft: z.ZodObject<{
179
179
  district: string;
180
180
  province: string;
181
181
  urbanOrRural: "URBAN";
182
- number?: string | undefined;
183
- town?: string | undefined;
184
- residentialArea?: string | undefined;
185
- street?: string | undefined;
186
- zipCode?: string | undefined;
182
+ number?: string | null | undefined;
183
+ town?: string | null | undefined;
184
+ residentialArea?: string | null | undefined;
185
+ street?: string | null | undefined;
186
+ zipCode?: string | null | undefined;
187
187
  } | {
188
188
  country: string;
189
189
  district: string;
190
190
  province: string;
191
191
  urbanOrRural: "RURAL";
192
- village?: string | undefined;
192
+ village?: string | null | undefined;
193
193
  } | {
194
194
  type: string;
195
195
  option: string;
@@ -208,17 +208,17 @@ export declare const Draft: z.ZodObject<{
208
208
  district: string;
209
209
  province: string;
210
210
  urbanOrRural: "URBAN";
211
- number?: string | undefined;
212
- town?: string | undefined;
213
- residentialArea?: string | undefined;
214
- street?: string | undefined;
215
- zipCode?: string | undefined;
211
+ number?: string | null | undefined;
212
+ town?: string | null | undefined;
213
+ residentialArea?: string | null | undefined;
214
+ street?: string | null | undefined;
215
+ zipCode?: string | null | undefined;
216
216
  } | {
217
217
  country: string;
218
218
  district: string;
219
219
  province: string;
220
220
  urbanOrRural: "RURAL";
221
- village?: string | undefined;
221
+ village?: string | null | undefined;
222
222
  } | {
223
223
  type: string;
224
224
  option: string;
@@ -236,17 +236,17 @@ export declare const Draft: z.ZodObject<{
236
236
  district: string;
237
237
  province: string;
238
238
  urbanOrRural: "URBAN";
239
- number?: string | undefined;
240
- town?: string | undefined;
241
- residentialArea?: string | undefined;
242
- street?: string | undefined;
243
- zipCode?: string | undefined;
239
+ number?: string | null | undefined;
240
+ town?: string | null | undefined;
241
+ residentialArea?: string | null | undefined;
242
+ street?: string | null | undefined;
243
+ zipCode?: string | null | undefined;
244
244
  } | {
245
245
  country: string;
246
246
  district: string;
247
247
  province: string;
248
248
  urbanOrRural: "RURAL";
249
- village?: string | undefined;
249
+ village?: string | null | undefined;
250
250
  } | {
251
251
  type: string;
252
252
  option: string;
@@ -265,17 +265,17 @@ export declare const Draft: z.ZodObject<{
265
265
  district: string;
266
266
  province: string;
267
267
  urbanOrRural: "URBAN";
268
- number?: string | undefined;
269
- town?: string | undefined;
270
- residentialArea?: string | undefined;
271
- street?: string | undefined;
272
- zipCode?: string | undefined;
268
+ number?: string | null | undefined;
269
+ town?: string | null | undefined;
270
+ residentialArea?: string | null | undefined;
271
+ street?: string | null | undefined;
272
+ zipCode?: string | null | undefined;
273
273
  } | {
274
274
  country: string;
275
275
  district: string;
276
276
  province: string;
277
277
  urbanOrRural: "RURAL";
278
- village?: string | undefined;
278
+ village?: string | null | undefined;
279
279
  } | {
280
280
  type: string;
281
281
  option: string;
@@ -299,17 +299,17 @@ export declare const Draft: z.ZodObject<{
299
299
  district: string;
300
300
  province: string;
301
301
  urbanOrRural: "URBAN";
302
- number?: string | undefined;
303
- town?: string | undefined;
304
- residentialArea?: string | undefined;
305
- street?: string | undefined;
306
- zipCode?: string | undefined;
302
+ number?: string | null | undefined;
303
+ town?: string | null | undefined;
304
+ residentialArea?: string | null | undefined;
305
+ street?: string | null | undefined;
306
+ zipCode?: string | null | undefined;
307
307
  } | {
308
308
  country: string;
309
309
  district: string;
310
310
  province: string;
311
311
  urbanOrRural: "RURAL";
312
- village?: string | undefined;
312
+ village?: string | null | undefined;
313
313
  } | {
314
314
  type: string;
315
315
  option: string;
@@ -328,17 +328,17 @@ export declare const Draft: z.ZodObject<{
328
328
  district: string;
329
329
  province: string;
330
330
  urbanOrRural: "URBAN";
331
- number?: string | undefined;
332
- town?: string | undefined;
333
- residentialArea?: string | undefined;
334
- street?: string | undefined;
335
- zipCode?: string | undefined;
331
+ number?: string | null | undefined;
332
+ town?: string | null | undefined;
333
+ residentialArea?: string | null | undefined;
334
+ street?: string | null | undefined;
335
+ zipCode?: string | null | undefined;
336
336
  } | {
337
337
  country: string;
338
338
  district: string;
339
339
  province: string;
340
340
  urbanOrRural: "RURAL";
341
- village?: string | undefined;
341
+ village?: string | null | undefined;
342
342
  } | {
343
343
  type: string;
344
344
  option: string;
@@ -362,17 +362,17 @@ export declare const Draft: z.ZodObject<{
362
362
  district: string;
363
363
  province: string;
364
364
  urbanOrRural: "URBAN";
365
- number?: string | undefined;
366
- town?: string | undefined;
367
- residentialArea?: string | undefined;
368
- street?: string | undefined;
369
- zipCode?: string | undefined;
365
+ number?: string | null | undefined;
366
+ town?: string | null | undefined;
367
+ residentialArea?: string | null | undefined;
368
+ street?: string | null | undefined;
369
+ zipCode?: string | null | undefined;
370
370
  } | {
371
371
  country: string;
372
372
  district: string;
373
373
  province: string;
374
374
  urbanOrRural: "RURAL";
375
- village?: string | undefined;
375
+ village?: string | null | undefined;
376
376
  } | {
377
377
  type: string;
378
378
  option: string;
@@ -391,17 +391,17 @@ export declare const Draft: z.ZodObject<{
391
391
  district: string;
392
392
  province: string;
393
393
  urbanOrRural: "URBAN";
394
- number?: string | undefined;
395
- town?: string | undefined;
396
- residentialArea?: string | undefined;
397
- street?: string | undefined;
398
- zipCode?: string | undefined;
394
+ number?: string | null | undefined;
395
+ town?: string | null | undefined;
396
+ residentialArea?: string | null | undefined;
397
+ street?: string | null | undefined;
398
+ zipCode?: string | null | undefined;
399
399
  } | {
400
400
  country: string;
401
401
  district: string;
402
402
  province: string;
403
403
  urbanOrRural: "RURAL";
404
- village?: string | undefined;
404
+ village?: string | null | undefined;
405
405
  } | {
406
406
  type: string;
407
407
  option: string;
@@ -414,7 +414,7 @@ export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
414
414
  eventId: z.ZodString;
415
415
  transactionId: z.ZodString;
416
416
  incomplete: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
417
- data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
417
+ data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
418
418
  filename: z.ZodString;
419
419
  originalFilename: z.ZodString;
420
420
  type: z.ZodString;
@@ -441,58 +441,58 @@ export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
441
441
  option: string;
442
442
  filename: string;
443
443
  originalFilename: string;
444
- }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
444
+ }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
445
445
  country: z.ZodString;
446
446
  province: z.ZodString;
447
447
  district: z.ZodString;
448
448
  }, {
449
449
  urbanOrRural: z.ZodLiteral<"URBAN">;
450
- town: z.ZodOptional<z.ZodString>;
451
- residentialArea: z.ZodOptional<z.ZodString>;
452
- street: z.ZodOptional<z.ZodString>;
453
- number: z.ZodOptional<z.ZodString>;
454
- zipCode: z.ZodOptional<z.ZodString>;
450
+ town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
451
+ residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
452
+ street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
453
+ number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
454
+ zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
455
455
  }>, "strip", z.ZodTypeAny, {
456
456
  country: string;
457
457
  district: string;
458
458
  province: string;
459
459
  urbanOrRural: "URBAN";
460
- number?: string | undefined;
461
- town?: string | undefined;
462
- residentialArea?: string | undefined;
463
- street?: string | undefined;
464
- zipCode?: string | undefined;
460
+ number?: string | null | undefined;
461
+ town?: string | null | undefined;
462
+ residentialArea?: string | null | undefined;
463
+ street?: string | null | undefined;
464
+ zipCode?: string | null | undefined;
465
465
  }, {
466
466
  country: string;
467
467
  district: string;
468
468
  province: string;
469
469
  urbanOrRural: "URBAN";
470
- number?: string | undefined;
471
- town?: string | undefined;
472
- residentialArea?: string | undefined;
473
- street?: string | undefined;
474
- zipCode?: string | undefined;
470
+ number?: string | null | undefined;
471
+ town?: string | null | undefined;
472
+ residentialArea?: string | null | undefined;
473
+ street?: string | null | undefined;
474
+ zipCode?: string | null | undefined;
475
475
  }>, z.ZodObject<z.objectUtil.extendShape<{
476
476
  country: z.ZodString;
477
477
  province: z.ZodString;
478
478
  district: z.ZodString;
479
479
  }, {
480
480
  urbanOrRural: z.ZodLiteral<"RURAL">;
481
- village: z.ZodOptional<z.ZodString>;
481
+ village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
482
482
  }>, "strip", z.ZodTypeAny, {
483
483
  country: string;
484
484
  district: string;
485
485
  province: string;
486
486
  urbanOrRural: "RURAL";
487
- village?: string | undefined;
487
+ village?: string | null | undefined;
488
488
  }, {
489
489
  country: string;
490
490
  district: string;
491
491
  province: string;
492
492
  urbanOrRural: "RURAL";
493
- village?: string | undefined;
493
+ village?: string | null | undefined;
494
494
  }>]>>;
495
- metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodObject<{
495
+ metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
496
496
  filename: z.ZodString;
497
497
  originalFilename: z.ZodString;
498
498
  type: z.ZodString;
@@ -519,56 +519,56 @@ export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
519
519
  option: string;
520
520
  filename: string;
521
521
  originalFilename: string;
522
- }>, "many">, z.ZodBoolean, z.ZodNumber, z.ZodObject<z.objectUtil.extendShape<{
522
+ }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
523
523
  country: z.ZodString;
524
524
  province: z.ZodString;
525
525
  district: z.ZodString;
526
526
  }, {
527
527
  urbanOrRural: z.ZodLiteral<"URBAN">;
528
- town: z.ZodOptional<z.ZodString>;
529
- residentialArea: z.ZodOptional<z.ZodString>;
530
- street: z.ZodOptional<z.ZodString>;
531
- number: z.ZodOptional<z.ZodString>;
532
- zipCode: z.ZodOptional<z.ZodString>;
528
+ town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
529
+ residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
530
+ street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
531
+ number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
532
+ zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
533
533
  }>, "strip", z.ZodTypeAny, {
534
534
  country: string;
535
535
  district: string;
536
536
  province: string;
537
537
  urbanOrRural: "URBAN";
538
- number?: string | undefined;
539
- town?: string | undefined;
540
- residentialArea?: string | undefined;
541
- street?: string | undefined;
542
- zipCode?: string | undefined;
538
+ number?: string | null | undefined;
539
+ town?: string | null | undefined;
540
+ residentialArea?: string | null | undefined;
541
+ street?: string | null | undefined;
542
+ zipCode?: string | null | undefined;
543
543
  }, {
544
544
  country: string;
545
545
  district: string;
546
546
  province: string;
547
547
  urbanOrRural: "URBAN";
548
- number?: string | undefined;
549
- town?: string | undefined;
550
- residentialArea?: string | undefined;
551
- street?: string | undefined;
552
- zipCode?: string | undefined;
548
+ number?: string | null | undefined;
549
+ town?: string | null | undefined;
550
+ residentialArea?: string | null | undefined;
551
+ street?: string | null | undefined;
552
+ zipCode?: string | null | undefined;
553
553
  }>, z.ZodObject<z.objectUtil.extendShape<{
554
554
  country: z.ZodString;
555
555
  province: z.ZodString;
556
556
  district: z.ZodString;
557
557
  }, {
558
558
  urbanOrRural: z.ZodLiteral<"RURAL">;
559
- village: z.ZodOptional<z.ZodString>;
559
+ village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
560
560
  }>, "strip", z.ZodTypeAny, {
561
561
  country: string;
562
562
  district: string;
563
563
  province: string;
564
564
  urbanOrRural: "RURAL";
565
- village?: string | undefined;
565
+ village?: string | null | undefined;
566
566
  }, {
567
567
  country: string;
568
568
  district: string;
569
569
  province: string;
570
570
  urbanOrRural: "RURAL";
571
- village?: string | undefined;
571
+ village?: string | null | undefined;
572
572
  }>]>>>;
573
573
  }, {
574
574
  type: z.ZodEnum<[ActionType, ...ActionType[]]>;
@@ -583,17 +583,17 @@ export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
583
583
  district: string;
584
584
  province: string;
585
585
  urbanOrRural: "URBAN";
586
- number?: string | undefined;
587
- town?: string | undefined;
588
- residentialArea?: string | undefined;
589
- street?: string | undefined;
590
- zipCode?: string | undefined;
586
+ number?: string | null | undefined;
587
+ town?: string | null | undefined;
588
+ residentialArea?: string | null | undefined;
589
+ street?: string | null | undefined;
590
+ zipCode?: string | null | undefined;
591
591
  } | {
592
592
  country: string;
593
593
  district: string;
594
594
  province: string;
595
595
  urbanOrRural: "RURAL";
596
- village?: string | undefined;
596
+ village?: string | null | undefined;
597
597
  } | {
598
598
  type: string;
599
599
  option: string;
@@ -612,17 +612,17 @@ export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
612
612
  district: string;
613
613
  province: string;
614
614
  urbanOrRural: "URBAN";
615
- number?: string | undefined;
616
- town?: string | undefined;
617
- residentialArea?: string | undefined;
618
- street?: string | undefined;
619
- zipCode?: string | undefined;
615
+ number?: string | null | undefined;
616
+ town?: string | null | undefined;
617
+ residentialArea?: string | null | undefined;
618
+ street?: string | null | undefined;
619
+ zipCode?: string | null | undefined;
620
620
  } | {
621
621
  country: string;
622
622
  district: string;
623
623
  province: string;
624
624
  urbanOrRural: "RURAL";
625
- village?: string | undefined;
625
+ village?: string | null | undefined;
626
626
  } | {
627
627
  type: string;
628
628
  option: string;
@@ -640,17 +640,17 @@ export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
640
640
  district: string;
641
641
  province: string;
642
642
  urbanOrRural: "URBAN";
643
- number?: string | undefined;
644
- town?: string | undefined;
645
- residentialArea?: string | undefined;
646
- street?: string | undefined;
647
- zipCode?: string | undefined;
643
+ number?: string | null | undefined;
644
+ town?: string | null | undefined;
645
+ residentialArea?: string | null | undefined;
646
+ street?: string | null | undefined;
647
+ zipCode?: string | null | undefined;
648
648
  } | {
649
649
  country: string;
650
650
  district: string;
651
651
  province: string;
652
652
  urbanOrRural: "RURAL";
653
- village?: string | undefined;
653
+ village?: string | null | undefined;
654
654
  } | {
655
655
  type: string;
656
656
  option: string;
@@ -668,17 +668,17 @@ export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
668
668
  district: string;
669
669
  province: string;
670
670
  urbanOrRural: "URBAN";
671
- number?: string | undefined;
672
- town?: string | undefined;
673
- residentialArea?: string | undefined;
674
- street?: string | undefined;
675
- zipCode?: string | undefined;
671
+ number?: string | null | undefined;
672
+ town?: string | null | undefined;
673
+ residentialArea?: string | null | undefined;
674
+ street?: string | null | undefined;
675
+ zipCode?: string | null | undefined;
676
676
  } | {
677
677
  country: string;
678
678
  district: string;
679
679
  province: string;
680
680
  urbanOrRural: "RURAL";
681
- village?: string | undefined;
681
+ village?: string | null | undefined;
682
682
  } | {
683
683
  type: string;
684
684
  option: string;