@opencrvs/toolkit 1.8.0-rc.fbb7263 → 1.8.0-rc.fd16d13
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/commons/api/router.d.ts +3769 -22
- package/dist/commons/conditionals/validate-address.test.d.ts +2 -0
- package/dist/commons/conditionals/validate.d.ts +27 -0
- package/dist/commons/conditionals/validate.test.d.ts +2 -0
- package/dist/commons/events/ActionConfig.d.ts +6 -24
- package/dist/commons/events/ActionDocument.d.ts +1630 -73
- package/dist/commons/events/ActionInput.d.ts +2456 -116
- package/dist/commons/events/ActionType.d.ts +1 -1
- package/dist/commons/events/CompositeFieldValue.d.ts +120 -10
- package/dist/commons/events/Draft.d.ts +224 -8
- package/dist/commons/events/EventConfig.d.ts +4 -28
- package/dist/commons/events/EventDocument.d.ts +1955 -65
- package/dist/commons/events/FieldConfig.d.ts +49 -3
- package/dist/commons/events/FieldType.d.ts +4 -0
- package/dist/commons/events/FieldTypeMapping.d.ts +108 -6
- package/dist/commons/events/FieldValue.d.ts +58 -4
- package/dist/commons/events/TemplateConfig.d.ts +38 -0
- package/dist/commons/events/defineConfig.d.ts +1 -7
- package/dist/commons/events/index.d.ts +1 -0
- package/dist/commons/events/test.utils.d.ts +111 -3
- package/dist/commons/events/utils.d.ts +112 -0
- package/dist/events/index.js +284 -93
- package/package.json +1 -1
@@ -31,7 +31,7 @@ export declare const ActionUpdate: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodStr
|
|
31
31
|
filename: string;
|
32
32
|
originalFilename: string;
|
33
33
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
34
|
-
country: z.
|
34
|
+
country: z.ZodLiteral<string>;
|
35
35
|
province: z.ZodString;
|
36
36
|
district: z.ZodString;
|
37
37
|
}, {
|
@@ -62,7 +62,7 @@ export declare const ActionUpdate: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodStr
|
|
62
62
|
street?: string | null | undefined;
|
63
63
|
zipCode?: string | null | undefined;
|
64
64
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
65
|
-
country: z.
|
65
|
+
country: z.ZodLiteral<string>;
|
66
66
|
province: z.ZodString;
|
67
67
|
district: z.ZodString;
|
68
68
|
}, {
|
@@ -80,6 +80,33 @@ export declare const ActionUpdate: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodStr
|
|
80
80
|
province: string;
|
81
81
|
urbanOrRural: "RURAL";
|
82
82
|
village?: string | null | undefined;
|
83
|
+
}>, z.ZodObject<{
|
84
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
85
|
+
state: z.ZodString;
|
86
|
+
district2: z.ZodString;
|
87
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
88
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
89
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
90
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
91
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
92
|
+
}, "strip", z.ZodTypeAny, {
|
93
|
+
country: string;
|
94
|
+
state: string;
|
95
|
+
district2: string;
|
96
|
+
cityOrTown?: string | null | undefined;
|
97
|
+
addressLine1?: string | null | undefined;
|
98
|
+
addressLine2?: string | null | undefined;
|
99
|
+
addressLine3?: string | null | undefined;
|
100
|
+
postcodeOrZip?: string | null | undefined;
|
101
|
+
}, {
|
102
|
+
country: string;
|
103
|
+
state: string;
|
104
|
+
district2: string;
|
105
|
+
cityOrTown?: string | null | undefined;
|
106
|
+
addressLine1?: string | null | undefined;
|
107
|
+
addressLine2?: string | null | undefined;
|
108
|
+
addressLine3?: string | null | undefined;
|
109
|
+
postcodeOrZip?: string | null | undefined;
|
83
110
|
}>]>>;
|
84
111
|
export type ActionUpdate = z.infer<typeof ActionUpdate>;
|
85
112
|
/**
|
@@ -118,7 +145,7 @@ export declare const ActionBase: z.ZodObject<{
|
|
118
145
|
filename: string;
|
119
146
|
originalFilename: string;
|
120
147
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
121
|
-
country: z.
|
148
|
+
country: z.ZodLiteral<string>;
|
122
149
|
province: z.ZodString;
|
123
150
|
district: z.ZodString;
|
124
151
|
}, {
|
@@ -149,7 +176,7 @@ export declare const ActionBase: z.ZodObject<{
|
|
149
176
|
street?: string | null | undefined;
|
150
177
|
zipCode?: string | null | undefined;
|
151
178
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
152
|
-
country: z.
|
179
|
+
country: z.ZodLiteral<string>;
|
153
180
|
province: z.ZodString;
|
154
181
|
district: z.ZodString;
|
155
182
|
}, {
|
@@ -167,6 +194,33 @@ export declare const ActionBase: z.ZodObject<{
|
|
167
194
|
province: string;
|
168
195
|
urbanOrRural: "RURAL";
|
169
196
|
village?: string | null | undefined;
|
197
|
+
}>, z.ZodObject<{
|
198
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
199
|
+
state: z.ZodString;
|
200
|
+
district2: z.ZodString;
|
201
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
202
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
203
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
204
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
205
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
206
|
+
}, "strip", z.ZodTypeAny, {
|
207
|
+
country: string;
|
208
|
+
state: string;
|
209
|
+
district2: string;
|
210
|
+
cityOrTown?: string | null | undefined;
|
211
|
+
addressLine1?: string | null | undefined;
|
212
|
+
addressLine2?: string | null | undefined;
|
213
|
+
addressLine3?: string | null | undefined;
|
214
|
+
postcodeOrZip?: string | null | undefined;
|
215
|
+
}, {
|
216
|
+
country: string;
|
217
|
+
state: string;
|
218
|
+
district2: string;
|
219
|
+
cityOrTown?: string | null | undefined;
|
220
|
+
addressLine1?: string | null | undefined;
|
221
|
+
addressLine2?: string | null | undefined;
|
222
|
+
addressLine3?: string | null | undefined;
|
223
|
+
postcodeOrZip?: string | null | undefined;
|
170
224
|
}>]>>;
|
171
225
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
172
226
|
filename: z.ZodString;
|
@@ -196,7 +250,7 @@ export declare const ActionBase: z.ZodObject<{
|
|
196
250
|
filename: string;
|
197
251
|
originalFilename: string;
|
198
252
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
199
|
-
country: z.
|
253
|
+
country: z.ZodLiteral<string>;
|
200
254
|
province: z.ZodString;
|
201
255
|
district: z.ZodString;
|
202
256
|
}, {
|
@@ -227,7 +281,7 @@ export declare const ActionBase: z.ZodObject<{
|
|
227
281
|
street?: string | null | undefined;
|
228
282
|
zipCode?: string | null | undefined;
|
229
283
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
230
|
-
country: z.
|
284
|
+
country: z.ZodLiteral<string>;
|
231
285
|
province: z.ZodString;
|
232
286
|
district: z.ZodString;
|
233
287
|
}, {
|
@@ -245,6 +299,33 @@ export declare const ActionBase: z.ZodObject<{
|
|
245
299
|
province: string;
|
246
300
|
urbanOrRural: "RURAL";
|
247
301
|
village?: string | null | undefined;
|
302
|
+
}>, z.ZodObject<{
|
303
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
304
|
+
state: z.ZodString;
|
305
|
+
district2: z.ZodString;
|
306
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
307
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
308
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
309
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
310
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
311
|
+
}, "strip", z.ZodTypeAny, {
|
312
|
+
country: string;
|
313
|
+
state: string;
|
314
|
+
district2: string;
|
315
|
+
cityOrTown?: string | null | undefined;
|
316
|
+
addressLine1?: string | null | undefined;
|
317
|
+
addressLine2?: string | null | undefined;
|
318
|
+
addressLine3?: string | null | undefined;
|
319
|
+
postcodeOrZip?: string | null | undefined;
|
320
|
+
}, {
|
321
|
+
country: string;
|
322
|
+
state: string;
|
323
|
+
district2: string;
|
324
|
+
cityOrTown?: string | null | undefined;
|
325
|
+
addressLine1?: string | null | undefined;
|
326
|
+
addressLine2?: string | null | undefined;
|
327
|
+
addressLine3?: string | null | undefined;
|
328
|
+
postcodeOrZip?: string | null | undefined;
|
248
329
|
}>]>>>;
|
249
330
|
createdAtLocation: z.ZodString;
|
250
331
|
}, "strip", z.ZodTypeAny, {
|
@@ -269,6 +350,15 @@ export declare const ActionBase: z.ZodObject<{
|
|
269
350
|
province: string;
|
270
351
|
urbanOrRural: "RURAL";
|
271
352
|
village?: string | null | undefined;
|
353
|
+
} | {
|
354
|
+
country: string;
|
355
|
+
state: string;
|
356
|
+
district2: string;
|
357
|
+
cityOrTown?: string | null | undefined;
|
358
|
+
addressLine1?: string | null | undefined;
|
359
|
+
addressLine2?: string | null | undefined;
|
360
|
+
addressLine3?: string | null | undefined;
|
361
|
+
postcodeOrZip?: string | null | undefined;
|
272
362
|
} | {
|
273
363
|
type: string;
|
274
364
|
option: string;
|
@@ -298,6 +388,15 @@ export declare const ActionBase: z.ZodObject<{
|
|
298
388
|
province: string;
|
299
389
|
urbanOrRural: "RURAL";
|
300
390
|
village?: string | null | undefined;
|
391
|
+
} | {
|
392
|
+
country: string;
|
393
|
+
state: string;
|
394
|
+
district2: string;
|
395
|
+
cityOrTown?: string | null | undefined;
|
396
|
+
addressLine1?: string | null | undefined;
|
397
|
+
addressLine2?: string | null | undefined;
|
398
|
+
addressLine3?: string | null | undefined;
|
399
|
+
postcodeOrZip?: string | null | undefined;
|
301
400
|
} | {
|
302
401
|
type: string;
|
303
402
|
option: string;
|
@@ -326,6 +425,15 @@ export declare const ActionBase: z.ZodObject<{
|
|
326
425
|
province: string;
|
327
426
|
urbanOrRural: "RURAL";
|
328
427
|
village?: string | null | undefined;
|
428
|
+
} | {
|
429
|
+
country: string;
|
430
|
+
state: string;
|
431
|
+
district2: string;
|
432
|
+
cityOrTown?: string | null | undefined;
|
433
|
+
addressLine1?: string | null | undefined;
|
434
|
+
addressLine2?: string | null | undefined;
|
435
|
+
addressLine3?: string | null | undefined;
|
436
|
+
postcodeOrZip?: string | null | undefined;
|
329
437
|
} | {
|
330
438
|
type: string;
|
331
439
|
option: string;
|
@@ -355,6 +463,15 @@ export declare const ActionBase: z.ZodObject<{
|
|
355
463
|
province: string;
|
356
464
|
urbanOrRural: "RURAL";
|
357
465
|
village?: string | null | undefined;
|
466
|
+
} | {
|
467
|
+
country: string;
|
468
|
+
state: string;
|
469
|
+
district2: string;
|
470
|
+
cityOrTown?: string | null | undefined;
|
471
|
+
addressLine1?: string | null | undefined;
|
472
|
+
addressLine2?: string | null | undefined;
|
473
|
+
addressLine3?: string | null | undefined;
|
474
|
+
postcodeOrZip?: string | null | undefined;
|
358
475
|
} | {
|
359
476
|
type: string;
|
360
477
|
option: string;
|
@@ -395,7 +512,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
395
512
|
filename: string;
|
396
513
|
originalFilename: string;
|
397
514
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
398
|
-
country: z.
|
515
|
+
country: z.ZodLiteral<string>;
|
399
516
|
province: z.ZodString;
|
400
517
|
district: z.ZodString;
|
401
518
|
}, {
|
@@ -426,7 +543,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
426
543
|
street?: string | null | undefined;
|
427
544
|
zipCode?: string | null | undefined;
|
428
545
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
429
|
-
country: z.
|
546
|
+
country: z.ZodLiteral<string>;
|
430
547
|
province: z.ZodString;
|
431
548
|
district: z.ZodString;
|
432
549
|
}, {
|
@@ -444,6 +561,33 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
444
561
|
province: string;
|
445
562
|
urbanOrRural: "RURAL";
|
446
563
|
village?: string | null | undefined;
|
564
|
+
}>, z.ZodObject<{
|
565
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
566
|
+
state: z.ZodString;
|
567
|
+
district2: z.ZodString;
|
568
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
569
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
570
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
571
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
572
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
573
|
+
}, "strip", z.ZodTypeAny, {
|
574
|
+
country: string;
|
575
|
+
state: string;
|
576
|
+
district2: string;
|
577
|
+
cityOrTown?: string | null | undefined;
|
578
|
+
addressLine1?: string | null | undefined;
|
579
|
+
addressLine2?: string | null | undefined;
|
580
|
+
addressLine3?: string | null | undefined;
|
581
|
+
postcodeOrZip?: string | null | undefined;
|
582
|
+
}, {
|
583
|
+
country: string;
|
584
|
+
state: string;
|
585
|
+
district2: string;
|
586
|
+
cityOrTown?: string | null | undefined;
|
587
|
+
addressLine1?: string | null | undefined;
|
588
|
+
addressLine2?: string | null | undefined;
|
589
|
+
addressLine3?: string | null | undefined;
|
590
|
+
postcodeOrZip?: string | null | undefined;
|
447
591
|
}>]>>;
|
448
592
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
449
593
|
filename: z.ZodString;
|
@@ -473,7 +617,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
473
617
|
filename: string;
|
474
618
|
originalFilename: string;
|
475
619
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
476
|
-
country: z.
|
620
|
+
country: z.ZodLiteral<string>;
|
477
621
|
province: z.ZodString;
|
478
622
|
district: z.ZodString;
|
479
623
|
}, {
|
@@ -504,7 +648,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
504
648
|
street?: string | null | undefined;
|
505
649
|
zipCode?: string | null | undefined;
|
506
650
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
507
|
-
country: z.
|
651
|
+
country: z.ZodLiteral<string>;
|
508
652
|
province: z.ZodString;
|
509
653
|
district: z.ZodString;
|
510
654
|
}, {
|
@@ -522,6 +666,33 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
522
666
|
province: string;
|
523
667
|
urbanOrRural: "RURAL";
|
524
668
|
village?: string | null | undefined;
|
669
|
+
}>, z.ZodObject<{
|
670
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
671
|
+
state: z.ZodString;
|
672
|
+
district2: z.ZodString;
|
673
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
674
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
675
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
676
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
677
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
678
|
+
}, "strip", z.ZodTypeAny, {
|
679
|
+
country: string;
|
680
|
+
state: string;
|
681
|
+
district2: string;
|
682
|
+
cityOrTown?: string | null | undefined;
|
683
|
+
addressLine1?: string | null | undefined;
|
684
|
+
addressLine2?: string | null | undefined;
|
685
|
+
addressLine3?: string | null | undefined;
|
686
|
+
postcodeOrZip?: string | null | undefined;
|
687
|
+
}, {
|
688
|
+
country: string;
|
689
|
+
state: string;
|
690
|
+
district2: string;
|
691
|
+
cityOrTown?: string | null | undefined;
|
692
|
+
addressLine1?: string | null | undefined;
|
693
|
+
addressLine2?: string | null | undefined;
|
694
|
+
addressLine3?: string | null | undefined;
|
695
|
+
postcodeOrZip?: string | null | undefined;
|
525
696
|
}>]>>>;
|
526
697
|
createdAtLocation: z.ZodString;
|
527
698
|
}, {
|
@@ -549,6 +720,15 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
549
720
|
province: string;
|
550
721
|
urbanOrRural: "RURAL";
|
551
722
|
village?: string | null | undefined;
|
723
|
+
} | {
|
724
|
+
country: string;
|
725
|
+
state: string;
|
726
|
+
district2: string;
|
727
|
+
cityOrTown?: string | null | undefined;
|
728
|
+
addressLine1?: string | null | undefined;
|
729
|
+
addressLine2?: string | null | undefined;
|
730
|
+
addressLine3?: string | null | undefined;
|
731
|
+
postcodeOrZip?: string | null | undefined;
|
552
732
|
} | {
|
553
733
|
type: string;
|
554
734
|
option: string;
|
@@ -578,6 +758,15 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
578
758
|
province: string;
|
579
759
|
urbanOrRural: "RURAL";
|
580
760
|
village?: string | null | undefined;
|
761
|
+
} | {
|
762
|
+
country: string;
|
763
|
+
state: string;
|
764
|
+
district2: string;
|
765
|
+
cityOrTown?: string | null | undefined;
|
766
|
+
addressLine1?: string | null | undefined;
|
767
|
+
addressLine2?: string | null | undefined;
|
768
|
+
addressLine3?: string | null | undefined;
|
769
|
+
postcodeOrZip?: string | null | undefined;
|
581
770
|
} | {
|
582
771
|
type: string;
|
583
772
|
option: string;
|
@@ -607,6 +796,15 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
607
796
|
province: string;
|
608
797
|
urbanOrRural: "RURAL";
|
609
798
|
village?: string | null | undefined;
|
799
|
+
} | {
|
800
|
+
country: string;
|
801
|
+
state: string;
|
802
|
+
district2: string;
|
803
|
+
cityOrTown?: string | null | undefined;
|
804
|
+
addressLine1?: string | null | undefined;
|
805
|
+
addressLine2?: string | null | undefined;
|
806
|
+
addressLine3?: string | null | undefined;
|
807
|
+
postcodeOrZip?: string | null | undefined;
|
610
808
|
} | {
|
611
809
|
type: string;
|
612
810
|
option: string;
|
@@ -636,6 +834,15 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
636
834
|
province: string;
|
637
835
|
urbanOrRural: "RURAL";
|
638
836
|
village?: string | null | undefined;
|
837
|
+
} | {
|
838
|
+
country: string;
|
839
|
+
state: string;
|
840
|
+
district2: string;
|
841
|
+
cityOrTown?: string | null | undefined;
|
842
|
+
addressLine1?: string | null | undefined;
|
843
|
+
addressLine2?: string | null | undefined;
|
844
|
+
addressLine3?: string | null | undefined;
|
845
|
+
postcodeOrZip?: string | null | undefined;
|
639
846
|
} | {
|
640
847
|
type: string;
|
641
848
|
option: string;
|
@@ -675,7 +882,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
675
882
|
filename: string;
|
676
883
|
originalFilename: string;
|
677
884
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
678
|
-
country: z.
|
885
|
+
country: z.ZodLiteral<string>;
|
679
886
|
province: z.ZodString;
|
680
887
|
district: z.ZodString;
|
681
888
|
}, {
|
@@ -706,7 +913,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
706
913
|
street?: string | null | undefined;
|
707
914
|
zipCode?: string | null | undefined;
|
708
915
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
709
|
-
country: z.
|
916
|
+
country: z.ZodLiteral<string>;
|
710
917
|
province: z.ZodString;
|
711
918
|
district: z.ZodString;
|
712
919
|
}, {
|
@@ -724,6 +931,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
724
931
|
province: string;
|
725
932
|
urbanOrRural: "RURAL";
|
726
933
|
village?: string | null | undefined;
|
934
|
+
}>, z.ZodObject<{
|
935
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
936
|
+
state: z.ZodString;
|
937
|
+
district2: z.ZodString;
|
938
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
939
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
940
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
941
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
942
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
943
|
+
}, "strip", z.ZodTypeAny, {
|
944
|
+
country: string;
|
945
|
+
state: string;
|
946
|
+
district2: string;
|
947
|
+
cityOrTown?: string | null | undefined;
|
948
|
+
addressLine1?: string | null | undefined;
|
949
|
+
addressLine2?: string | null | undefined;
|
950
|
+
addressLine3?: string | null | undefined;
|
951
|
+
postcodeOrZip?: string | null | undefined;
|
952
|
+
}, {
|
953
|
+
country: string;
|
954
|
+
state: string;
|
955
|
+
district2: string;
|
956
|
+
cityOrTown?: string | null | undefined;
|
957
|
+
addressLine1?: string | null | undefined;
|
958
|
+
addressLine2?: string | null | undefined;
|
959
|
+
addressLine3?: string | null | undefined;
|
960
|
+
postcodeOrZip?: string | null | undefined;
|
727
961
|
}>]>>;
|
728
962
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
729
963
|
filename: z.ZodString;
|
@@ -753,7 +987,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
753
987
|
filename: string;
|
754
988
|
originalFilename: string;
|
755
989
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
756
|
-
country: z.
|
990
|
+
country: z.ZodLiteral<string>;
|
757
991
|
province: z.ZodString;
|
758
992
|
district: z.ZodString;
|
759
993
|
}, {
|
@@ -784,7 +1018,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
784
1018
|
street?: string | null | undefined;
|
785
1019
|
zipCode?: string | null | undefined;
|
786
1020
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
787
|
-
country: z.
|
1021
|
+
country: z.ZodLiteral<string>;
|
788
1022
|
province: z.ZodString;
|
789
1023
|
district: z.ZodString;
|
790
1024
|
}, {
|
@@ -802,6 +1036,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
802
1036
|
province: string;
|
803
1037
|
urbanOrRural: "RURAL";
|
804
1038
|
village?: string | null | undefined;
|
1039
|
+
}>, z.ZodObject<{
|
1040
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
1041
|
+
state: z.ZodString;
|
1042
|
+
district2: z.ZodString;
|
1043
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1044
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1045
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1046
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1047
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1048
|
+
}, "strip", z.ZodTypeAny, {
|
1049
|
+
country: string;
|
1050
|
+
state: string;
|
1051
|
+
district2: string;
|
1052
|
+
cityOrTown?: string | null | undefined;
|
1053
|
+
addressLine1?: string | null | undefined;
|
1054
|
+
addressLine2?: string | null | undefined;
|
1055
|
+
addressLine3?: string | null | undefined;
|
1056
|
+
postcodeOrZip?: string | null | undefined;
|
1057
|
+
}, {
|
1058
|
+
country: string;
|
1059
|
+
state: string;
|
1060
|
+
district2: string;
|
1061
|
+
cityOrTown?: string | null | undefined;
|
1062
|
+
addressLine1?: string | null | undefined;
|
1063
|
+
addressLine2?: string | null | undefined;
|
1064
|
+
addressLine3?: string | null | undefined;
|
1065
|
+
postcodeOrZip?: string | null | undefined;
|
805
1066
|
}>]>>>;
|
806
1067
|
createdAtLocation: z.ZodString;
|
807
1068
|
}, {
|
@@ -829,6 +1090,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
829
1090
|
province: string;
|
830
1091
|
urbanOrRural: "RURAL";
|
831
1092
|
village?: string | null | undefined;
|
1093
|
+
} | {
|
1094
|
+
country: string;
|
1095
|
+
state: string;
|
1096
|
+
district2: string;
|
1097
|
+
cityOrTown?: string | null | undefined;
|
1098
|
+
addressLine1?: string | null | undefined;
|
1099
|
+
addressLine2?: string | null | undefined;
|
1100
|
+
addressLine3?: string | null | undefined;
|
1101
|
+
postcodeOrZip?: string | null | undefined;
|
832
1102
|
} | {
|
833
1103
|
type: string;
|
834
1104
|
option: string;
|
@@ -858,6 +1128,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
858
1128
|
province: string;
|
859
1129
|
urbanOrRural: "RURAL";
|
860
1130
|
village?: string | null | undefined;
|
1131
|
+
} | {
|
1132
|
+
country: string;
|
1133
|
+
state: string;
|
1134
|
+
district2: string;
|
1135
|
+
cityOrTown?: string | null | undefined;
|
1136
|
+
addressLine1?: string | null | undefined;
|
1137
|
+
addressLine2?: string | null | undefined;
|
1138
|
+
addressLine3?: string | null | undefined;
|
1139
|
+
postcodeOrZip?: string | null | undefined;
|
861
1140
|
} | {
|
862
1141
|
type: string;
|
863
1142
|
option: string;
|
@@ -887,6 +1166,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
887
1166
|
province: string;
|
888
1167
|
urbanOrRural: "RURAL";
|
889
1168
|
village?: string | null | undefined;
|
1169
|
+
} | {
|
1170
|
+
country: string;
|
1171
|
+
state: string;
|
1172
|
+
district2: string;
|
1173
|
+
cityOrTown?: string | null | undefined;
|
1174
|
+
addressLine1?: string | null | undefined;
|
1175
|
+
addressLine2?: string | null | undefined;
|
1176
|
+
addressLine3?: string | null | undefined;
|
1177
|
+
postcodeOrZip?: string | null | undefined;
|
890
1178
|
} | {
|
891
1179
|
type: string;
|
892
1180
|
option: string;
|
@@ -916,6 +1204,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
916
1204
|
province: string;
|
917
1205
|
urbanOrRural: "RURAL";
|
918
1206
|
village?: string | null | undefined;
|
1207
|
+
} | {
|
1208
|
+
country: string;
|
1209
|
+
state: string;
|
1210
|
+
district2: string;
|
1211
|
+
cityOrTown?: string | null | undefined;
|
1212
|
+
addressLine1?: string | null | undefined;
|
1213
|
+
addressLine2?: string | null | undefined;
|
1214
|
+
addressLine3?: string | null | undefined;
|
1215
|
+
postcodeOrZip?: string | null | undefined;
|
919
1216
|
} | {
|
920
1217
|
type: string;
|
921
1218
|
option: string;
|
@@ -954,7 +1251,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
954
1251
|
filename: string;
|
955
1252
|
originalFilename: string;
|
956
1253
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
957
|
-
country: z.
|
1254
|
+
country: z.ZodLiteral<string>;
|
958
1255
|
province: z.ZodString;
|
959
1256
|
district: z.ZodString;
|
960
1257
|
}, {
|
@@ -985,7 +1282,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
985
1282
|
street?: string | null | undefined;
|
986
1283
|
zipCode?: string | null | undefined;
|
987
1284
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
988
|
-
country: z.
|
1285
|
+
country: z.ZodLiteral<string>;
|
989
1286
|
province: z.ZodString;
|
990
1287
|
district: z.ZodString;
|
991
1288
|
}, {
|
@@ -1003,6 +1300,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1003
1300
|
province: string;
|
1004
1301
|
urbanOrRural: "RURAL";
|
1005
1302
|
village?: string | null | undefined;
|
1303
|
+
}>, z.ZodObject<{
|
1304
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
1305
|
+
state: z.ZodString;
|
1306
|
+
district2: z.ZodString;
|
1307
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1308
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1309
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1310
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1311
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1312
|
+
}, "strip", z.ZodTypeAny, {
|
1313
|
+
country: string;
|
1314
|
+
state: string;
|
1315
|
+
district2: string;
|
1316
|
+
cityOrTown?: string | null | undefined;
|
1317
|
+
addressLine1?: string | null | undefined;
|
1318
|
+
addressLine2?: string | null | undefined;
|
1319
|
+
addressLine3?: string | null | undefined;
|
1320
|
+
postcodeOrZip?: string | null | undefined;
|
1321
|
+
}, {
|
1322
|
+
country: string;
|
1323
|
+
state: string;
|
1324
|
+
district2: string;
|
1325
|
+
cityOrTown?: string | null | undefined;
|
1326
|
+
addressLine1?: string | null | undefined;
|
1327
|
+
addressLine2?: string | null | undefined;
|
1328
|
+
addressLine3?: string | null | undefined;
|
1329
|
+
postcodeOrZip?: string | null | undefined;
|
1006
1330
|
}>]>>;
|
1007
1331
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1008
1332
|
filename: z.ZodString;
|
@@ -1032,7 +1356,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1032
1356
|
filename: string;
|
1033
1357
|
originalFilename: string;
|
1034
1358
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1035
|
-
country: z.
|
1359
|
+
country: z.ZodLiteral<string>;
|
1036
1360
|
province: z.ZodString;
|
1037
1361
|
district: z.ZodString;
|
1038
1362
|
}, {
|
@@ -1063,7 +1387,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1063
1387
|
street?: string | null | undefined;
|
1064
1388
|
zipCode?: string | null | undefined;
|
1065
1389
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1066
|
-
country: z.
|
1390
|
+
country: z.ZodLiteral<string>;
|
1067
1391
|
province: z.ZodString;
|
1068
1392
|
district: z.ZodString;
|
1069
1393
|
}, {
|
@@ -1081,6 +1405,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1081
1405
|
province: string;
|
1082
1406
|
urbanOrRural: "RURAL";
|
1083
1407
|
village?: string | null | undefined;
|
1408
|
+
}>, z.ZodObject<{
|
1409
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
1410
|
+
state: z.ZodString;
|
1411
|
+
district2: z.ZodString;
|
1412
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1413
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1414
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1415
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1416
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1417
|
+
}, "strip", z.ZodTypeAny, {
|
1418
|
+
country: string;
|
1419
|
+
state: string;
|
1420
|
+
district2: string;
|
1421
|
+
cityOrTown?: string | null | undefined;
|
1422
|
+
addressLine1?: string | null | undefined;
|
1423
|
+
addressLine2?: string | null | undefined;
|
1424
|
+
addressLine3?: string | null | undefined;
|
1425
|
+
postcodeOrZip?: string | null | undefined;
|
1426
|
+
}, {
|
1427
|
+
country: string;
|
1428
|
+
state: string;
|
1429
|
+
district2: string;
|
1430
|
+
cityOrTown?: string | null | undefined;
|
1431
|
+
addressLine1?: string | null | undefined;
|
1432
|
+
addressLine2?: string | null | undefined;
|
1433
|
+
addressLine3?: string | null | undefined;
|
1434
|
+
postcodeOrZip?: string | null | undefined;
|
1084
1435
|
}>]>>>;
|
1085
1436
|
createdAtLocation: z.ZodString;
|
1086
1437
|
}, {
|
@@ -1108,6 +1459,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1108
1459
|
province: string;
|
1109
1460
|
urbanOrRural: "RURAL";
|
1110
1461
|
village?: string | null | undefined;
|
1462
|
+
} | {
|
1463
|
+
country: string;
|
1464
|
+
state: string;
|
1465
|
+
district2: string;
|
1466
|
+
cityOrTown?: string | null | undefined;
|
1467
|
+
addressLine1?: string | null | undefined;
|
1468
|
+
addressLine2?: string | null | undefined;
|
1469
|
+
addressLine3?: string | null | undefined;
|
1470
|
+
postcodeOrZip?: string | null | undefined;
|
1111
1471
|
} | {
|
1112
1472
|
type: string;
|
1113
1473
|
option: string;
|
@@ -1137,6 +1497,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1137
1497
|
province: string;
|
1138
1498
|
urbanOrRural: "RURAL";
|
1139
1499
|
village?: string | null | undefined;
|
1500
|
+
} | {
|
1501
|
+
country: string;
|
1502
|
+
state: string;
|
1503
|
+
district2: string;
|
1504
|
+
cityOrTown?: string | null | undefined;
|
1505
|
+
addressLine1?: string | null | undefined;
|
1506
|
+
addressLine2?: string | null | undefined;
|
1507
|
+
addressLine3?: string | null | undefined;
|
1508
|
+
postcodeOrZip?: string | null | undefined;
|
1140
1509
|
} | {
|
1141
1510
|
type: string;
|
1142
1511
|
option: string;
|
@@ -1166,6 +1535,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1166
1535
|
province: string;
|
1167
1536
|
urbanOrRural: "RURAL";
|
1168
1537
|
village?: string | null | undefined;
|
1538
|
+
} | {
|
1539
|
+
country: string;
|
1540
|
+
state: string;
|
1541
|
+
district2: string;
|
1542
|
+
cityOrTown?: string | null | undefined;
|
1543
|
+
addressLine1?: string | null | undefined;
|
1544
|
+
addressLine2?: string | null | undefined;
|
1545
|
+
addressLine3?: string | null | undefined;
|
1546
|
+
postcodeOrZip?: string | null | undefined;
|
1169
1547
|
} | {
|
1170
1548
|
type: string;
|
1171
1549
|
option: string;
|
@@ -1195,6 +1573,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1195
1573
|
province: string;
|
1196
1574
|
urbanOrRural: "RURAL";
|
1197
1575
|
village?: string | null | undefined;
|
1576
|
+
} | {
|
1577
|
+
country: string;
|
1578
|
+
state: string;
|
1579
|
+
district2: string;
|
1580
|
+
cityOrTown?: string | null | undefined;
|
1581
|
+
addressLine1?: string | null | undefined;
|
1582
|
+
addressLine2?: string | null | undefined;
|
1583
|
+
addressLine3?: string | null | undefined;
|
1584
|
+
postcodeOrZip?: string | null | undefined;
|
1198
1585
|
} | {
|
1199
1586
|
type: string;
|
1200
1587
|
option: string;
|
@@ -1233,7 +1620,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1233
1620
|
filename: string;
|
1234
1621
|
originalFilename: string;
|
1235
1622
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1236
|
-
country: z.
|
1623
|
+
country: z.ZodLiteral<string>;
|
1237
1624
|
province: z.ZodString;
|
1238
1625
|
district: z.ZodString;
|
1239
1626
|
}, {
|
@@ -1264,7 +1651,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1264
1651
|
street?: string | null | undefined;
|
1265
1652
|
zipCode?: string | null | undefined;
|
1266
1653
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1267
|
-
country: z.
|
1654
|
+
country: z.ZodLiteral<string>;
|
1268
1655
|
province: z.ZodString;
|
1269
1656
|
district: z.ZodString;
|
1270
1657
|
}, {
|
@@ -1282,6 +1669,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1282
1669
|
province: string;
|
1283
1670
|
urbanOrRural: "RURAL";
|
1284
1671
|
village?: string | null | undefined;
|
1672
|
+
}>, z.ZodObject<{
|
1673
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
1674
|
+
state: z.ZodString;
|
1675
|
+
district2: z.ZodString;
|
1676
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1677
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1678
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1679
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1680
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1681
|
+
}, "strip", z.ZodTypeAny, {
|
1682
|
+
country: string;
|
1683
|
+
state: string;
|
1684
|
+
district2: string;
|
1685
|
+
cityOrTown?: string | null | undefined;
|
1686
|
+
addressLine1?: string | null | undefined;
|
1687
|
+
addressLine2?: string | null | undefined;
|
1688
|
+
addressLine3?: string | null | undefined;
|
1689
|
+
postcodeOrZip?: string | null | undefined;
|
1690
|
+
}, {
|
1691
|
+
country: string;
|
1692
|
+
state: string;
|
1693
|
+
district2: string;
|
1694
|
+
cityOrTown?: string | null | undefined;
|
1695
|
+
addressLine1?: string | null | undefined;
|
1696
|
+
addressLine2?: string | null | undefined;
|
1697
|
+
addressLine3?: string | null | undefined;
|
1698
|
+
postcodeOrZip?: string | null | undefined;
|
1285
1699
|
}>]>>;
|
1286
1700
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1287
1701
|
filename: z.ZodString;
|
@@ -1311,7 +1725,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1311
1725
|
filename: string;
|
1312
1726
|
originalFilename: string;
|
1313
1727
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1314
|
-
country: z.
|
1728
|
+
country: z.ZodLiteral<string>;
|
1315
1729
|
province: z.ZodString;
|
1316
1730
|
district: z.ZodString;
|
1317
1731
|
}, {
|
@@ -1342,7 +1756,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1342
1756
|
street?: string | null | undefined;
|
1343
1757
|
zipCode?: string | null | undefined;
|
1344
1758
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1345
|
-
country: z.
|
1759
|
+
country: z.ZodLiteral<string>;
|
1346
1760
|
province: z.ZodString;
|
1347
1761
|
district: z.ZodString;
|
1348
1762
|
}, {
|
@@ -1360,6 +1774,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1360
1774
|
province: string;
|
1361
1775
|
urbanOrRural: "RURAL";
|
1362
1776
|
village?: string | null | undefined;
|
1777
|
+
}>, z.ZodObject<{
|
1778
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
1779
|
+
state: z.ZodString;
|
1780
|
+
district2: z.ZodString;
|
1781
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1782
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1783
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1784
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1785
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1786
|
+
}, "strip", z.ZodTypeAny, {
|
1787
|
+
country: string;
|
1788
|
+
state: string;
|
1789
|
+
district2: string;
|
1790
|
+
cityOrTown?: string | null | undefined;
|
1791
|
+
addressLine1?: string | null | undefined;
|
1792
|
+
addressLine2?: string | null | undefined;
|
1793
|
+
addressLine3?: string | null | undefined;
|
1794
|
+
postcodeOrZip?: string | null | undefined;
|
1795
|
+
}, {
|
1796
|
+
country: string;
|
1797
|
+
state: string;
|
1798
|
+
district2: string;
|
1799
|
+
cityOrTown?: string | null | undefined;
|
1800
|
+
addressLine1?: string | null | undefined;
|
1801
|
+
addressLine2?: string | null | undefined;
|
1802
|
+
addressLine3?: string | null | undefined;
|
1803
|
+
postcodeOrZip?: string | null | undefined;
|
1363
1804
|
}>]>>>;
|
1364
1805
|
createdAtLocation: z.ZodString;
|
1365
1806
|
}, {
|
@@ -1387,6 +1828,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1387
1828
|
province: string;
|
1388
1829
|
urbanOrRural: "RURAL";
|
1389
1830
|
village?: string | null | undefined;
|
1831
|
+
} | {
|
1832
|
+
country: string;
|
1833
|
+
state: string;
|
1834
|
+
district2: string;
|
1835
|
+
cityOrTown?: string | null | undefined;
|
1836
|
+
addressLine1?: string | null | undefined;
|
1837
|
+
addressLine2?: string | null | undefined;
|
1838
|
+
addressLine3?: string | null | undefined;
|
1839
|
+
postcodeOrZip?: string | null | undefined;
|
1390
1840
|
} | {
|
1391
1841
|
type: string;
|
1392
1842
|
option: string;
|
@@ -1416,6 +1866,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1416
1866
|
province: string;
|
1417
1867
|
urbanOrRural: "RURAL";
|
1418
1868
|
village?: string | null | undefined;
|
1869
|
+
} | {
|
1870
|
+
country: string;
|
1871
|
+
state: string;
|
1872
|
+
district2: string;
|
1873
|
+
cityOrTown?: string | null | undefined;
|
1874
|
+
addressLine1?: string | null | undefined;
|
1875
|
+
addressLine2?: string | null | undefined;
|
1876
|
+
addressLine3?: string | null | undefined;
|
1877
|
+
postcodeOrZip?: string | null | undefined;
|
1419
1878
|
} | {
|
1420
1879
|
type: string;
|
1421
1880
|
option: string;
|
@@ -1445,6 +1904,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1445
1904
|
province: string;
|
1446
1905
|
urbanOrRural: "RURAL";
|
1447
1906
|
village?: string | null | undefined;
|
1907
|
+
} | {
|
1908
|
+
country: string;
|
1909
|
+
state: string;
|
1910
|
+
district2: string;
|
1911
|
+
cityOrTown?: string | null | undefined;
|
1912
|
+
addressLine1?: string | null | undefined;
|
1913
|
+
addressLine2?: string | null | undefined;
|
1914
|
+
addressLine3?: string | null | undefined;
|
1915
|
+
postcodeOrZip?: string | null | undefined;
|
1448
1916
|
} | {
|
1449
1917
|
type: string;
|
1450
1918
|
option: string;
|
@@ -1474,6 +1942,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1474
1942
|
province: string;
|
1475
1943
|
urbanOrRural: "RURAL";
|
1476
1944
|
village?: string | null | undefined;
|
1945
|
+
} | {
|
1946
|
+
country: string;
|
1947
|
+
state: string;
|
1948
|
+
district2: string;
|
1949
|
+
cityOrTown?: string | null | undefined;
|
1950
|
+
addressLine1?: string | null | undefined;
|
1951
|
+
addressLine2?: string | null | undefined;
|
1952
|
+
addressLine3?: string | null | undefined;
|
1953
|
+
postcodeOrZip?: string | null | undefined;
|
1477
1954
|
} | {
|
1478
1955
|
type: string;
|
1479
1956
|
option: string;
|
@@ -1512,7 +1989,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1512
1989
|
filename: string;
|
1513
1990
|
originalFilename: string;
|
1514
1991
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1515
|
-
country: z.
|
1992
|
+
country: z.ZodLiteral<string>;
|
1516
1993
|
province: z.ZodString;
|
1517
1994
|
district: z.ZodString;
|
1518
1995
|
}, {
|
@@ -1543,7 +2020,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1543
2020
|
street?: string | null | undefined;
|
1544
2021
|
zipCode?: string | null | undefined;
|
1545
2022
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1546
|
-
country: z.
|
2023
|
+
country: z.ZodLiteral<string>;
|
1547
2024
|
province: z.ZodString;
|
1548
2025
|
district: z.ZodString;
|
1549
2026
|
}, {
|
@@ -1561,6 +2038,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1561
2038
|
province: string;
|
1562
2039
|
urbanOrRural: "RURAL";
|
1563
2040
|
village?: string | null | undefined;
|
2041
|
+
}>, z.ZodObject<{
|
2042
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
2043
|
+
state: z.ZodString;
|
2044
|
+
district2: z.ZodString;
|
2045
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2046
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2047
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2048
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2049
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2050
|
+
}, "strip", z.ZodTypeAny, {
|
2051
|
+
country: string;
|
2052
|
+
state: string;
|
2053
|
+
district2: string;
|
2054
|
+
cityOrTown?: string | null | undefined;
|
2055
|
+
addressLine1?: string | null | undefined;
|
2056
|
+
addressLine2?: string | null | undefined;
|
2057
|
+
addressLine3?: string | null | undefined;
|
2058
|
+
postcodeOrZip?: string | null | undefined;
|
2059
|
+
}, {
|
2060
|
+
country: string;
|
2061
|
+
state: string;
|
2062
|
+
district2: string;
|
2063
|
+
cityOrTown?: string | null | undefined;
|
2064
|
+
addressLine1?: string | null | undefined;
|
2065
|
+
addressLine2?: string | null | undefined;
|
2066
|
+
addressLine3?: string | null | undefined;
|
2067
|
+
postcodeOrZip?: string | null | undefined;
|
1564
2068
|
}>]>>;
|
1565
2069
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1566
2070
|
filename: z.ZodString;
|
@@ -1590,7 +2094,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1590
2094
|
filename: string;
|
1591
2095
|
originalFilename: string;
|
1592
2096
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1593
|
-
country: z.
|
2097
|
+
country: z.ZodLiteral<string>;
|
1594
2098
|
province: z.ZodString;
|
1595
2099
|
district: z.ZodString;
|
1596
2100
|
}, {
|
@@ -1621,7 +2125,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1621
2125
|
street?: string | null | undefined;
|
1622
2126
|
zipCode?: string | null | undefined;
|
1623
2127
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1624
|
-
country: z.
|
2128
|
+
country: z.ZodLiteral<string>;
|
1625
2129
|
province: z.ZodString;
|
1626
2130
|
district: z.ZodString;
|
1627
2131
|
}, {
|
@@ -1639,6 +2143,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1639
2143
|
province: string;
|
1640
2144
|
urbanOrRural: "RURAL";
|
1641
2145
|
village?: string | null | undefined;
|
2146
|
+
}>, z.ZodObject<{
|
2147
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
2148
|
+
state: z.ZodString;
|
2149
|
+
district2: z.ZodString;
|
2150
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2151
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2152
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2153
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2154
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2155
|
+
}, "strip", z.ZodTypeAny, {
|
2156
|
+
country: string;
|
2157
|
+
state: string;
|
2158
|
+
district2: string;
|
2159
|
+
cityOrTown?: string | null | undefined;
|
2160
|
+
addressLine1?: string | null | undefined;
|
2161
|
+
addressLine2?: string | null | undefined;
|
2162
|
+
addressLine3?: string | null | undefined;
|
2163
|
+
postcodeOrZip?: string | null | undefined;
|
2164
|
+
}, {
|
2165
|
+
country: string;
|
2166
|
+
state: string;
|
2167
|
+
district2: string;
|
2168
|
+
cityOrTown?: string | null | undefined;
|
2169
|
+
addressLine1?: string | null | undefined;
|
2170
|
+
addressLine2?: string | null | undefined;
|
2171
|
+
addressLine3?: string | null | undefined;
|
2172
|
+
postcodeOrZip?: string | null | undefined;
|
1642
2173
|
}>]>>>;
|
1643
2174
|
createdAtLocation: z.ZodString;
|
1644
2175
|
}, {
|
@@ -1666,6 +2197,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1666
2197
|
province: string;
|
1667
2198
|
urbanOrRural: "RURAL";
|
1668
2199
|
village?: string | null | undefined;
|
2200
|
+
} | {
|
2201
|
+
country: string;
|
2202
|
+
state: string;
|
2203
|
+
district2: string;
|
2204
|
+
cityOrTown?: string | null | undefined;
|
2205
|
+
addressLine1?: string | null | undefined;
|
2206
|
+
addressLine2?: string | null | undefined;
|
2207
|
+
addressLine3?: string | null | undefined;
|
2208
|
+
postcodeOrZip?: string | null | undefined;
|
1669
2209
|
} | {
|
1670
2210
|
type: string;
|
1671
2211
|
option: string;
|
@@ -1695,6 +2235,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1695
2235
|
province: string;
|
1696
2236
|
urbanOrRural: "RURAL";
|
1697
2237
|
village?: string | null | undefined;
|
2238
|
+
} | {
|
2239
|
+
country: string;
|
2240
|
+
state: string;
|
2241
|
+
district2: string;
|
2242
|
+
cityOrTown?: string | null | undefined;
|
2243
|
+
addressLine1?: string | null | undefined;
|
2244
|
+
addressLine2?: string | null | undefined;
|
2245
|
+
addressLine3?: string | null | undefined;
|
2246
|
+
postcodeOrZip?: string | null | undefined;
|
1698
2247
|
} | {
|
1699
2248
|
type: string;
|
1700
2249
|
option: string;
|
@@ -1724,6 +2273,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1724
2273
|
province: string;
|
1725
2274
|
urbanOrRural: "RURAL";
|
1726
2275
|
village?: string | null | undefined;
|
2276
|
+
} | {
|
2277
|
+
country: string;
|
2278
|
+
state: string;
|
2279
|
+
district2: string;
|
2280
|
+
cityOrTown?: string | null | undefined;
|
2281
|
+
addressLine1?: string | null | undefined;
|
2282
|
+
addressLine2?: string | null | undefined;
|
2283
|
+
addressLine3?: string | null | undefined;
|
2284
|
+
postcodeOrZip?: string | null | undefined;
|
1727
2285
|
} | {
|
1728
2286
|
type: string;
|
1729
2287
|
option: string;
|
@@ -1753,6 +2311,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1753
2311
|
province: string;
|
1754
2312
|
urbanOrRural: "RURAL";
|
1755
2313
|
village?: string | null | undefined;
|
2314
|
+
} | {
|
2315
|
+
country: string;
|
2316
|
+
state: string;
|
2317
|
+
district2: string;
|
2318
|
+
cityOrTown?: string | null | undefined;
|
2319
|
+
addressLine1?: string | null | undefined;
|
2320
|
+
addressLine2?: string | null | undefined;
|
2321
|
+
addressLine3?: string | null | undefined;
|
2322
|
+
postcodeOrZip?: string | null | undefined;
|
1756
2323
|
} | {
|
1757
2324
|
type: string;
|
1758
2325
|
option: string;
|
@@ -1791,7 +2358,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1791
2358
|
filename: string;
|
1792
2359
|
originalFilename: string;
|
1793
2360
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1794
|
-
country: z.
|
2361
|
+
country: z.ZodLiteral<string>;
|
1795
2362
|
province: z.ZodString;
|
1796
2363
|
district: z.ZodString;
|
1797
2364
|
}, {
|
@@ -1822,7 +2389,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1822
2389
|
street?: string | null | undefined;
|
1823
2390
|
zipCode?: string | null | undefined;
|
1824
2391
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1825
|
-
country: z.
|
2392
|
+
country: z.ZodLiteral<string>;
|
1826
2393
|
province: z.ZodString;
|
1827
2394
|
district: z.ZodString;
|
1828
2395
|
}, {
|
@@ -1840,6 +2407,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1840
2407
|
province: string;
|
1841
2408
|
urbanOrRural: "RURAL";
|
1842
2409
|
village?: string | null | undefined;
|
2410
|
+
}>, z.ZodObject<{
|
2411
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
2412
|
+
state: z.ZodString;
|
2413
|
+
district2: z.ZodString;
|
2414
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2415
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2416
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2417
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2418
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2419
|
+
}, "strip", z.ZodTypeAny, {
|
2420
|
+
country: string;
|
2421
|
+
state: string;
|
2422
|
+
district2: string;
|
2423
|
+
cityOrTown?: string | null | undefined;
|
2424
|
+
addressLine1?: string | null | undefined;
|
2425
|
+
addressLine2?: string | null | undefined;
|
2426
|
+
addressLine3?: string | null | undefined;
|
2427
|
+
postcodeOrZip?: string | null | undefined;
|
2428
|
+
}, {
|
2429
|
+
country: string;
|
2430
|
+
state: string;
|
2431
|
+
district2: string;
|
2432
|
+
cityOrTown?: string | null | undefined;
|
2433
|
+
addressLine1?: string | null | undefined;
|
2434
|
+
addressLine2?: string | null | undefined;
|
2435
|
+
addressLine3?: string | null | undefined;
|
2436
|
+
postcodeOrZip?: string | null | undefined;
|
1843
2437
|
}>]>>;
|
1844
2438
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1845
2439
|
filename: z.ZodString;
|
@@ -1869,7 +2463,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1869
2463
|
filename: string;
|
1870
2464
|
originalFilename: string;
|
1871
2465
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1872
|
-
country: z.
|
2466
|
+
country: z.ZodLiteral<string>;
|
1873
2467
|
province: z.ZodString;
|
1874
2468
|
district: z.ZodString;
|
1875
2469
|
}, {
|
@@ -1900,7 +2494,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1900
2494
|
street?: string | null | undefined;
|
1901
2495
|
zipCode?: string | null | undefined;
|
1902
2496
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1903
|
-
country: z.
|
2497
|
+
country: z.ZodLiteral<string>;
|
1904
2498
|
province: z.ZodString;
|
1905
2499
|
district: z.ZodString;
|
1906
2500
|
}, {
|
@@ -1918,12 +2512,39 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1918
2512
|
province: string;
|
1919
2513
|
urbanOrRural: "RURAL";
|
1920
2514
|
village?: string | null | undefined;
|
2515
|
+
}>, z.ZodObject<{
|
2516
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
2517
|
+
state: z.ZodString;
|
2518
|
+
district2: z.ZodString;
|
2519
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2520
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2521
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2522
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2523
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2524
|
+
}, "strip", z.ZodTypeAny, {
|
2525
|
+
country: string;
|
2526
|
+
state: string;
|
2527
|
+
district2: string;
|
2528
|
+
cityOrTown?: string | null | undefined;
|
2529
|
+
addressLine1?: string | null | undefined;
|
2530
|
+
addressLine2?: string | null | undefined;
|
2531
|
+
addressLine3?: string | null | undefined;
|
2532
|
+
postcodeOrZip?: string | null | undefined;
|
2533
|
+
}, {
|
2534
|
+
country: string;
|
2535
|
+
state: string;
|
2536
|
+
district2: string;
|
2537
|
+
cityOrTown?: string | null | undefined;
|
2538
|
+
addressLine1?: string | null | undefined;
|
2539
|
+
addressLine2?: string | null | undefined;
|
2540
|
+
addressLine3?: string | null | undefined;
|
2541
|
+
postcodeOrZip?: string | null | undefined;
|
1921
2542
|
}>]>>>;
|
1922
2543
|
createdAtLocation: z.ZodString;
|
1923
2544
|
}, {
|
1924
|
-
type: z.ZodLiteral<"
|
2545
|
+
type: z.ZodLiteral<"ARCHIVE">;
|
1925
2546
|
}>, "strip", z.ZodTypeAny, {
|
1926
|
-
type: "
|
2547
|
+
type: "ARCHIVE";
|
1927
2548
|
id: string;
|
1928
2549
|
data: Record<string, string | number | boolean | {
|
1929
2550
|
type: string;
|
@@ -1945,6 +2566,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1945
2566
|
province: string;
|
1946
2567
|
urbanOrRural: "RURAL";
|
1947
2568
|
village?: string | null | undefined;
|
2569
|
+
} | {
|
2570
|
+
country: string;
|
2571
|
+
state: string;
|
2572
|
+
district2: string;
|
2573
|
+
cityOrTown?: string | null | undefined;
|
2574
|
+
addressLine1?: string | null | undefined;
|
2575
|
+
addressLine2?: string | null | undefined;
|
2576
|
+
addressLine3?: string | null | undefined;
|
2577
|
+
postcodeOrZip?: string | null | undefined;
|
1948
2578
|
} | {
|
1949
2579
|
type: string;
|
1950
2580
|
option: string;
|
@@ -1974,6 +2604,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1974
2604
|
province: string;
|
1975
2605
|
urbanOrRural: "RURAL";
|
1976
2606
|
village?: string | null | undefined;
|
2607
|
+
} | {
|
2608
|
+
country: string;
|
2609
|
+
state: string;
|
2610
|
+
district2: string;
|
2611
|
+
cityOrTown?: string | null | undefined;
|
2612
|
+
addressLine1?: string | null | undefined;
|
2613
|
+
addressLine2?: string | null | undefined;
|
2614
|
+
addressLine3?: string | null | undefined;
|
2615
|
+
postcodeOrZip?: string | null | undefined;
|
1977
2616
|
} | {
|
1978
2617
|
type: string;
|
1979
2618
|
option: string;
|
@@ -1981,7 +2620,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1981
2620
|
originalFilename: string;
|
1982
2621
|
}[]> | undefined;
|
1983
2622
|
}, {
|
1984
|
-
type: "
|
2623
|
+
type: "ARCHIVE";
|
1985
2624
|
id: string;
|
1986
2625
|
data: Record<string, string | number | boolean | {
|
1987
2626
|
type: string;
|
@@ -2003,6 +2642,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2003
2642
|
province: string;
|
2004
2643
|
urbanOrRural: "RURAL";
|
2005
2644
|
village?: string | null | undefined;
|
2645
|
+
} | {
|
2646
|
+
country: string;
|
2647
|
+
state: string;
|
2648
|
+
district2: string;
|
2649
|
+
cityOrTown?: string | null | undefined;
|
2650
|
+
addressLine1?: string | null | undefined;
|
2651
|
+
addressLine2?: string | null | undefined;
|
2652
|
+
addressLine3?: string | null | undefined;
|
2653
|
+
postcodeOrZip?: string | null | undefined;
|
2006
2654
|
} | {
|
2007
2655
|
type: string;
|
2008
2656
|
option: string;
|
@@ -2032,6 +2680,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2032
2680
|
province: string;
|
2033
2681
|
urbanOrRural: "RURAL";
|
2034
2682
|
village?: string | null | undefined;
|
2683
|
+
} | {
|
2684
|
+
country: string;
|
2685
|
+
state: string;
|
2686
|
+
district2: string;
|
2687
|
+
cityOrTown?: string | null | undefined;
|
2688
|
+
addressLine1?: string | null | undefined;
|
2689
|
+
addressLine2?: string | null | undefined;
|
2690
|
+
addressLine3?: string | null | undefined;
|
2691
|
+
postcodeOrZip?: string | null | undefined;
|
2035
2692
|
} | {
|
2036
2693
|
type: string;
|
2037
2694
|
option: string;
|
@@ -2070,7 +2727,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2070
2727
|
filename: string;
|
2071
2728
|
originalFilename: string;
|
2072
2729
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2073
|
-
country: z.
|
2730
|
+
country: z.ZodLiteral<string>;
|
2074
2731
|
province: z.ZodString;
|
2075
2732
|
district: z.ZodString;
|
2076
2733
|
}, {
|
@@ -2101,7 +2758,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2101
2758
|
street?: string | null | undefined;
|
2102
2759
|
zipCode?: string | null | undefined;
|
2103
2760
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2104
|
-
country: z.
|
2761
|
+
country: z.ZodLiteral<string>;
|
2105
2762
|
province: z.ZodString;
|
2106
2763
|
district: z.ZodString;
|
2107
2764
|
}, {
|
@@ -2119,6 +2776,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2119
2776
|
province: string;
|
2120
2777
|
urbanOrRural: "RURAL";
|
2121
2778
|
village?: string | null | undefined;
|
2779
|
+
}>, z.ZodObject<{
|
2780
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
2781
|
+
state: z.ZodString;
|
2782
|
+
district2: z.ZodString;
|
2783
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2784
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2785
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2786
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2787
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2788
|
+
}, "strip", z.ZodTypeAny, {
|
2789
|
+
country: string;
|
2790
|
+
state: string;
|
2791
|
+
district2: string;
|
2792
|
+
cityOrTown?: string | null | undefined;
|
2793
|
+
addressLine1?: string | null | undefined;
|
2794
|
+
addressLine2?: string | null | undefined;
|
2795
|
+
addressLine3?: string | null | undefined;
|
2796
|
+
postcodeOrZip?: string | null | undefined;
|
2797
|
+
}, {
|
2798
|
+
country: string;
|
2799
|
+
state: string;
|
2800
|
+
district2: string;
|
2801
|
+
cityOrTown?: string | null | undefined;
|
2802
|
+
addressLine1?: string | null | undefined;
|
2803
|
+
addressLine2?: string | null | undefined;
|
2804
|
+
addressLine3?: string | null | undefined;
|
2805
|
+
postcodeOrZip?: string | null | undefined;
|
2122
2806
|
}>]>>;
|
2123
2807
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2124
2808
|
filename: z.ZodString;
|
@@ -2148,7 +2832,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2148
2832
|
filename: string;
|
2149
2833
|
originalFilename: string;
|
2150
2834
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2151
|
-
country: z.
|
2835
|
+
country: z.ZodLiteral<string>;
|
2152
2836
|
province: z.ZodString;
|
2153
2837
|
district: z.ZodString;
|
2154
2838
|
}, {
|
@@ -2179,7 +2863,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2179
2863
|
street?: string | null | undefined;
|
2180
2864
|
zipCode?: string | null | undefined;
|
2181
2865
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2182
|
-
country: z.
|
2866
|
+
country: z.ZodLiteral<string>;
|
2183
2867
|
province: z.ZodString;
|
2184
2868
|
district: z.ZodString;
|
2185
2869
|
}, {
|
@@ -2197,6 +2881,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2197
2881
|
province: string;
|
2198
2882
|
urbanOrRural: "RURAL";
|
2199
2883
|
village?: string | null | undefined;
|
2884
|
+
}>, z.ZodObject<{
|
2885
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
2886
|
+
state: z.ZodString;
|
2887
|
+
district2: z.ZodString;
|
2888
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2889
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2890
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2891
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2892
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2893
|
+
}, "strip", z.ZodTypeAny, {
|
2894
|
+
country: string;
|
2895
|
+
state: string;
|
2896
|
+
district2: string;
|
2897
|
+
cityOrTown?: string | null | undefined;
|
2898
|
+
addressLine1?: string | null | undefined;
|
2899
|
+
addressLine2?: string | null | undefined;
|
2900
|
+
addressLine3?: string | null | undefined;
|
2901
|
+
postcodeOrZip?: string | null | undefined;
|
2902
|
+
}, {
|
2903
|
+
country: string;
|
2904
|
+
state: string;
|
2905
|
+
district2: string;
|
2906
|
+
cityOrTown?: string | null | undefined;
|
2907
|
+
addressLine1?: string | null | undefined;
|
2908
|
+
addressLine2?: string | null | undefined;
|
2909
|
+
addressLine3?: string | null | undefined;
|
2910
|
+
postcodeOrZip?: string | null | undefined;
|
2200
2911
|
}>]>>>;
|
2201
2912
|
createdAtLocation: z.ZodString;
|
2202
2913
|
}, {
|
@@ -2224,6 +2935,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2224
2935
|
province: string;
|
2225
2936
|
urbanOrRural: "RURAL";
|
2226
2937
|
village?: string | null | undefined;
|
2938
|
+
} | {
|
2939
|
+
country: string;
|
2940
|
+
state: string;
|
2941
|
+
district2: string;
|
2942
|
+
cityOrTown?: string | null | undefined;
|
2943
|
+
addressLine1?: string | null | undefined;
|
2944
|
+
addressLine2?: string | null | undefined;
|
2945
|
+
addressLine3?: string | null | undefined;
|
2946
|
+
postcodeOrZip?: string | null | undefined;
|
2227
2947
|
} | {
|
2228
2948
|
type: string;
|
2229
2949
|
option: string;
|
@@ -2253,6 +2973,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2253
2973
|
province: string;
|
2254
2974
|
urbanOrRural: "RURAL";
|
2255
2975
|
village?: string | null | undefined;
|
2976
|
+
} | {
|
2977
|
+
country: string;
|
2978
|
+
state: string;
|
2979
|
+
district2: string;
|
2980
|
+
cityOrTown?: string | null | undefined;
|
2981
|
+
addressLine1?: string | null | undefined;
|
2982
|
+
addressLine2?: string | null | undefined;
|
2983
|
+
addressLine3?: string | null | undefined;
|
2984
|
+
postcodeOrZip?: string | null | undefined;
|
2256
2985
|
} | {
|
2257
2986
|
type: string;
|
2258
2987
|
option: string;
|
@@ -2282,6 +3011,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2282
3011
|
province: string;
|
2283
3012
|
urbanOrRural: "RURAL";
|
2284
3013
|
village?: string | null | undefined;
|
3014
|
+
} | {
|
3015
|
+
country: string;
|
3016
|
+
state: string;
|
3017
|
+
district2: string;
|
3018
|
+
cityOrTown?: string | null | undefined;
|
3019
|
+
addressLine1?: string | null | undefined;
|
3020
|
+
addressLine2?: string | null | undefined;
|
3021
|
+
addressLine3?: string | null | undefined;
|
3022
|
+
postcodeOrZip?: string | null | undefined;
|
2285
3023
|
} | {
|
2286
3024
|
type: string;
|
2287
3025
|
option: string;
|
@@ -2311,6 +3049,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2311
3049
|
province: string;
|
2312
3050
|
urbanOrRural: "RURAL";
|
2313
3051
|
village?: string | null | undefined;
|
3052
|
+
} | {
|
3053
|
+
country: string;
|
3054
|
+
state: string;
|
3055
|
+
district2: string;
|
3056
|
+
cityOrTown?: string | null | undefined;
|
3057
|
+
addressLine1?: string | null | undefined;
|
3058
|
+
addressLine2?: string | null | undefined;
|
3059
|
+
addressLine3?: string | null | undefined;
|
3060
|
+
postcodeOrZip?: string | null | undefined;
|
2314
3061
|
} | {
|
2315
3062
|
type: string;
|
2316
3063
|
option: string;
|
@@ -2349,7 +3096,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2349
3096
|
filename: string;
|
2350
3097
|
originalFilename: string;
|
2351
3098
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2352
|
-
country: z.
|
3099
|
+
country: z.ZodLiteral<string>;
|
2353
3100
|
province: z.ZodString;
|
2354
3101
|
district: z.ZodString;
|
2355
3102
|
}, {
|
@@ -2380,7 +3127,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2380
3127
|
street?: string | null | undefined;
|
2381
3128
|
zipCode?: string | null | undefined;
|
2382
3129
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2383
|
-
country: z.
|
3130
|
+
country: z.ZodLiteral<string>;
|
2384
3131
|
province: z.ZodString;
|
2385
3132
|
district: z.ZodString;
|
2386
3133
|
}, {
|
@@ -2398,6 +3145,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2398
3145
|
province: string;
|
2399
3146
|
urbanOrRural: "RURAL";
|
2400
3147
|
village?: string | null | undefined;
|
3148
|
+
}>, z.ZodObject<{
|
3149
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
3150
|
+
state: z.ZodString;
|
3151
|
+
district2: z.ZodString;
|
3152
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3153
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3154
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3155
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3156
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3157
|
+
}, "strip", z.ZodTypeAny, {
|
3158
|
+
country: string;
|
3159
|
+
state: string;
|
3160
|
+
district2: string;
|
3161
|
+
cityOrTown?: string | null | undefined;
|
3162
|
+
addressLine1?: string | null | undefined;
|
3163
|
+
addressLine2?: string | null | undefined;
|
3164
|
+
addressLine3?: string | null | undefined;
|
3165
|
+
postcodeOrZip?: string | null | undefined;
|
3166
|
+
}, {
|
3167
|
+
country: string;
|
3168
|
+
state: string;
|
3169
|
+
district2: string;
|
3170
|
+
cityOrTown?: string | null | undefined;
|
3171
|
+
addressLine1?: string | null | undefined;
|
3172
|
+
addressLine2?: string | null | undefined;
|
3173
|
+
addressLine3?: string | null | undefined;
|
3174
|
+
postcodeOrZip?: string | null | undefined;
|
2401
3175
|
}>]>>;
|
2402
3176
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2403
3177
|
filename: z.ZodString;
|
@@ -2427,7 +3201,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2427
3201
|
filename: string;
|
2428
3202
|
originalFilename: string;
|
2429
3203
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2430
|
-
country: z.
|
3204
|
+
country: z.ZodLiteral<string>;
|
2431
3205
|
province: z.ZodString;
|
2432
3206
|
district: z.ZodString;
|
2433
3207
|
}, {
|
@@ -2458,7 +3232,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2458
3232
|
street?: string | null | undefined;
|
2459
3233
|
zipCode?: string | null | undefined;
|
2460
3234
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2461
|
-
country: z.
|
3235
|
+
country: z.ZodLiteral<string>;
|
2462
3236
|
province: z.ZodString;
|
2463
3237
|
district: z.ZodString;
|
2464
3238
|
}, {
|
@@ -2476,6 +3250,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2476
3250
|
province: string;
|
2477
3251
|
urbanOrRural: "RURAL";
|
2478
3252
|
village?: string | null | undefined;
|
3253
|
+
}>, z.ZodObject<{
|
3254
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
3255
|
+
state: z.ZodString;
|
3256
|
+
district2: z.ZodString;
|
3257
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3258
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3259
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3260
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3261
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3262
|
+
}, "strip", z.ZodTypeAny, {
|
3263
|
+
country: string;
|
3264
|
+
state: string;
|
3265
|
+
district2: string;
|
3266
|
+
cityOrTown?: string | null | undefined;
|
3267
|
+
addressLine1?: string | null | undefined;
|
3268
|
+
addressLine2?: string | null | undefined;
|
3269
|
+
addressLine3?: string | null | undefined;
|
3270
|
+
postcodeOrZip?: string | null | undefined;
|
3271
|
+
}, {
|
3272
|
+
country: string;
|
3273
|
+
state: string;
|
3274
|
+
district2: string;
|
3275
|
+
cityOrTown?: string | null | undefined;
|
3276
|
+
addressLine1?: string | null | undefined;
|
3277
|
+
addressLine2?: string | null | undefined;
|
3278
|
+
addressLine3?: string | null | undefined;
|
3279
|
+
postcodeOrZip?: string | null | undefined;
|
2479
3280
|
}>]>>>;
|
2480
3281
|
createdAtLocation: z.ZodString;
|
2481
3282
|
}, {
|
@@ -2513,6 +3314,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2513
3314
|
province: string;
|
2514
3315
|
urbanOrRural: "RURAL";
|
2515
3316
|
village?: string | null | undefined;
|
3317
|
+
} | {
|
3318
|
+
country: string;
|
3319
|
+
state: string;
|
3320
|
+
district2: string;
|
3321
|
+
cityOrTown?: string | null | undefined;
|
3322
|
+
addressLine1?: string | null | undefined;
|
3323
|
+
addressLine2?: string | null | undefined;
|
3324
|
+
addressLine3?: string | null | undefined;
|
3325
|
+
postcodeOrZip?: string | null | undefined;
|
2516
3326
|
} | {
|
2517
3327
|
type: string;
|
2518
3328
|
option: string;
|
@@ -2546,6 +3356,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2546
3356
|
province: string;
|
2547
3357
|
urbanOrRural: "RURAL";
|
2548
3358
|
village?: string | null | undefined;
|
3359
|
+
} | {
|
3360
|
+
country: string;
|
3361
|
+
state: string;
|
3362
|
+
district2: string;
|
3363
|
+
cityOrTown?: string | null | undefined;
|
3364
|
+
addressLine1?: string | null | undefined;
|
3365
|
+
addressLine2?: string | null | undefined;
|
3366
|
+
addressLine3?: string | null | undefined;
|
3367
|
+
postcodeOrZip?: string | null | undefined;
|
2549
3368
|
} | {
|
2550
3369
|
type: string;
|
2551
3370
|
option: string;
|
@@ -2575,6 +3394,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2575
3394
|
province: string;
|
2576
3395
|
urbanOrRural: "RURAL";
|
2577
3396
|
village?: string | null | undefined;
|
3397
|
+
} | {
|
3398
|
+
country: string;
|
3399
|
+
state: string;
|
3400
|
+
district2: string;
|
3401
|
+
cityOrTown?: string | null | undefined;
|
3402
|
+
addressLine1?: string | null | undefined;
|
3403
|
+
addressLine2?: string | null | undefined;
|
3404
|
+
addressLine3?: string | null | undefined;
|
3405
|
+
postcodeOrZip?: string | null | undefined;
|
2578
3406
|
} | {
|
2579
3407
|
type: string;
|
2580
3408
|
option: string;
|
@@ -2608,6 +3436,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2608
3436
|
province: string;
|
2609
3437
|
urbanOrRural: "RURAL";
|
2610
3438
|
village?: string | null | undefined;
|
3439
|
+
} | {
|
3440
|
+
country: string;
|
3441
|
+
state: string;
|
3442
|
+
district2: string;
|
3443
|
+
cityOrTown?: string | null | undefined;
|
3444
|
+
addressLine1?: string | null | undefined;
|
3445
|
+
addressLine2?: string | null | undefined;
|
3446
|
+
addressLine3?: string | null | undefined;
|
3447
|
+
postcodeOrZip?: string | null | undefined;
|
2611
3448
|
} | {
|
2612
3449
|
type: string;
|
2613
3450
|
option: string;
|
@@ -2646,7 +3483,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2646
3483
|
filename: string;
|
2647
3484
|
originalFilename: string;
|
2648
3485
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2649
|
-
country: z.
|
3486
|
+
country: z.ZodLiteral<string>;
|
2650
3487
|
province: z.ZodString;
|
2651
3488
|
district: z.ZodString;
|
2652
3489
|
}, {
|
@@ -2677,7 +3514,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2677
3514
|
street?: string | null | undefined;
|
2678
3515
|
zipCode?: string | null | undefined;
|
2679
3516
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2680
|
-
country: z.
|
3517
|
+
country: z.ZodLiteral<string>;
|
2681
3518
|
province: z.ZodString;
|
2682
3519
|
district: z.ZodString;
|
2683
3520
|
}, {
|
@@ -2695,6 +3532,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2695
3532
|
province: string;
|
2696
3533
|
urbanOrRural: "RURAL";
|
2697
3534
|
village?: string | null | undefined;
|
3535
|
+
}>, z.ZodObject<{
|
3536
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
3537
|
+
state: z.ZodString;
|
3538
|
+
district2: z.ZodString;
|
3539
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3540
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3541
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3542
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3543
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3544
|
+
}, "strip", z.ZodTypeAny, {
|
3545
|
+
country: string;
|
3546
|
+
state: string;
|
3547
|
+
district2: string;
|
3548
|
+
cityOrTown?: string | null | undefined;
|
3549
|
+
addressLine1?: string | null | undefined;
|
3550
|
+
addressLine2?: string | null | undefined;
|
3551
|
+
addressLine3?: string | null | undefined;
|
3552
|
+
postcodeOrZip?: string | null | undefined;
|
3553
|
+
}, {
|
3554
|
+
country: string;
|
3555
|
+
state: string;
|
3556
|
+
district2: string;
|
3557
|
+
cityOrTown?: string | null | undefined;
|
3558
|
+
addressLine1?: string | null | undefined;
|
3559
|
+
addressLine2?: string | null | undefined;
|
3560
|
+
addressLine3?: string | null | undefined;
|
3561
|
+
postcodeOrZip?: string | null | undefined;
|
2698
3562
|
}>]>>;
|
2699
3563
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2700
3564
|
filename: z.ZodString;
|
@@ -2724,7 +3588,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2724
3588
|
filename: string;
|
2725
3589
|
originalFilename: string;
|
2726
3590
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2727
|
-
country: z.
|
3591
|
+
country: z.ZodLiteral<string>;
|
2728
3592
|
province: z.ZodString;
|
2729
3593
|
district: z.ZodString;
|
2730
3594
|
}, {
|
@@ -2755,7 +3619,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2755
3619
|
street?: string | null | undefined;
|
2756
3620
|
zipCode?: string | null | undefined;
|
2757
3621
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2758
|
-
country: z.
|
3622
|
+
country: z.ZodLiteral<string>;
|
2759
3623
|
province: z.ZodString;
|
2760
3624
|
district: z.ZodString;
|
2761
3625
|
}, {
|
@@ -2773,6 +3637,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2773
3637
|
province: string;
|
2774
3638
|
urbanOrRural: "RURAL";
|
2775
3639
|
village?: string | null | undefined;
|
3640
|
+
}>, z.ZodObject<{
|
3641
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
3642
|
+
state: z.ZodString;
|
3643
|
+
district2: z.ZodString;
|
3644
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3645
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3646
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3647
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3648
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3649
|
+
}, "strip", z.ZodTypeAny, {
|
3650
|
+
country: string;
|
3651
|
+
state: string;
|
3652
|
+
district2: string;
|
3653
|
+
cityOrTown?: string | null | undefined;
|
3654
|
+
addressLine1?: string | null | undefined;
|
3655
|
+
addressLine2?: string | null | undefined;
|
3656
|
+
addressLine3?: string | null | undefined;
|
3657
|
+
postcodeOrZip?: string | null | undefined;
|
3658
|
+
}, {
|
3659
|
+
country: string;
|
3660
|
+
state: string;
|
3661
|
+
district2: string;
|
3662
|
+
cityOrTown?: string | null | undefined;
|
3663
|
+
addressLine1?: string | null | undefined;
|
3664
|
+
addressLine2?: string | null | undefined;
|
3665
|
+
addressLine3?: string | null | undefined;
|
3666
|
+
postcodeOrZip?: string | null | undefined;
|
2776
3667
|
}>]>>>;
|
2777
3668
|
createdAtLocation: z.ZodString;
|
2778
3669
|
}, {
|
@@ -2800,6 +3691,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2800
3691
|
province: string;
|
2801
3692
|
urbanOrRural: "RURAL";
|
2802
3693
|
village?: string | null | undefined;
|
3694
|
+
} | {
|
3695
|
+
country: string;
|
3696
|
+
state: string;
|
3697
|
+
district2: string;
|
3698
|
+
cityOrTown?: string | null | undefined;
|
3699
|
+
addressLine1?: string | null | undefined;
|
3700
|
+
addressLine2?: string | null | undefined;
|
3701
|
+
addressLine3?: string | null | undefined;
|
3702
|
+
postcodeOrZip?: string | null | undefined;
|
2803
3703
|
} | {
|
2804
3704
|
type: string;
|
2805
3705
|
option: string;
|
@@ -2829,6 +3729,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2829
3729
|
province: string;
|
2830
3730
|
urbanOrRural: "RURAL";
|
2831
3731
|
village?: string | null | undefined;
|
3732
|
+
} | {
|
3733
|
+
country: string;
|
3734
|
+
state: string;
|
3735
|
+
district2: string;
|
3736
|
+
cityOrTown?: string | null | undefined;
|
3737
|
+
addressLine1?: string | null | undefined;
|
3738
|
+
addressLine2?: string | null | undefined;
|
3739
|
+
addressLine3?: string | null | undefined;
|
3740
|
+
postcodeOrZip?: string | null | undefined;
|
2832
3741
|
} | {
|
2833
3742
|
type: string;
|
2834
3743
|
option: string;
|
@@ -2858,6 +3767,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2858
3767
|
province: string;
|
2859
3768
|
urbanOrRural: "RURAL";
|
2860
3769
|
village?: string | null | undefined;
|
3770
|
+
} | {
|
3771
|
+
country: string;
|
3772
|
+
state: string;
|
3773
|
+
district2: string;
|
3774
|
+
cityOrTown?: string | null | undefined;
|
3775
|
+
addressLine1?: string | null | undefined;
|
3776
|
+
addressLine2?: string | null | undefined;
|
3777
|
+
addressLine3?: string | null | undefined;
|
3778
|
+
postcodeOrZip?: string | null | undefined;
|
2861
3779
|
} | {
|
2862
3780
|
type: string;
|
2863
3781
|
option: string;
|
@@ -2887,6 +3805,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2887
3805
|
province: string;
|
2888
3806
|
urbanOrRural: "RURAL";
|
2889
3807
|
village?: string | null | undefined;
|
3808
|
+
} | {
|
3809
|
+
country: string;
|
3810
|
+
state: string;
|
3811
|
+
district2: string;
|
3812
|
+
cityOrTown?: string | null | undefined;
|
3813
|
+
addressLine1?: string | null | undefined;
|
3814
|
+
addressLine2?: string | null | undefined;
|
3815
|
+
addressLine3?: string | null | undefined;
|
3816
|
+
postcodeOrZip?: string | null | undefined;
|
2890
3817
|
} | {
|
2891
3818
|
type: string;
|
2892
3819
|
option: string;
|
@@ -2925,7 +3852,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2925
3852
|
filename: string;
|
2926
3853
|
originalFilename: string;
|
2927
3854
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2928
|
-
country: z.
|
3855
|
+
country: z.ZodLiteral<string>;
|
2929
3856
|
province: z.ZodString;
|
2930
3857
|
district: z.ZodString;
|
2931
3858
|
}, {
|
@@ -2956,7 +3883,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2956
3883
|
street?: string | null | undefined;
|
2957
3884
|
zipCode?: string | null | undefined;
|
2958
3885
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2959
|
-
country: z.
|
3886
|
+
country: z.ZodLiteral<string>;
|
2960
3887
|
province: z.ZodString;
|
2961
3888
|
district: z.ZodString;
|
2962
3889
|
}, {
|
@@ -2974,6 +3901,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2974
3901
|
province: string;
|
2975
3902
|
urbanOrRural: "RURAL";
|
2976
3903
|
village?: string | null | undefined;
|
3904
|
+
}>, z.ZodObject<{
|
3905
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
3906
|
+
state: z.ZodString;
|
3907
|
+
district2: z.ZodString;
|
3908
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3909
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3910
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3911
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3912
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3913
|
+
}, "strip", z.ZodTypeAny, {
|
3914
|
+
country: string;
|
3915
|
+
state: string;
|
3916
|
+
district2: string;
|
3917
|
+
cityOrTown?: string | null | undefined;
|
3918
|
+
addressLine1?: string | null | undefined;
|
3919
|
+
addressLine2?: string | null | undefined;
|
3920
|
+
addressLine3?: string | null | undefined;
|
3921
|
+
postcodeOrZip?: string | null | undefined;
|
3922
|
+
}, {
|
3923
|
+
country: string;
|
3924
|
+
state: string;
|
3925
|
+
district2: string;
|
3926
|
+
cityOrTown?: string | null | undefined;
|
3927
|
+
addressLine1?: string | null | undefined;
|
3928
|
+
addressLine2?: string | null | undefined;
|
3929
|
+
addressLine3?: string | null | undefined;
|
3930
|
+
postcodeOrZip?: string | null | undefined;
|
2977
3931
|
}>]>>;
|
2978
3932
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2979
3933
|
filename: z.ZodString;
|
@@ -3003,7 +3957,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3003
3957
|
filename: string;
|
3004
3958
|
originalFilename: string;
|
3005
3959
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3006
|
-
country: z.
|
3960
|
+
country: z.ZodLiteral<string>;
|
3007
3961
|
province: z.ZodString;
|
3008
3962
|
district: z.ZodString;
|
3009
3963
|
}, {
|
@@ -3034,7 +3988,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3034
3988
|
street?: string | null | undefined;
|
3035
3989
|
zipCode?: string | null | undefined;
|
3036
3990
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3037
|
-
country: z.
|
3991
|
+
country: z.ZodLiteral<string>;
|
3038
3992
|
province: z.ZodString;
|
3039
3993
|
district: z.ZodString;
|
3040
3994
|
}, {
|
@@ -3052,6 +4006,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3052
4006
|
province: string;
|
3053
4007
|
urbanOrRural: "RURAL";
|
3054
4008
|
village?: string | null | undefined;
|
4009
|
+
}>, z.ZodObject<{
|
4010
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
4011
|
+
state: z.ZodString;
|
4012
|
+
district2: z.ZodString;
|
4013
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4014
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4015
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4016
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4017
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4018
|
+
}, "strip", z.ZodTypeAny, {
|
4019
|
+
country: string;
|
4020
|
+
state: string;
|
4021
|
+
district2: string;
|
4022
|
+
cityOrTown?: string | null | undefined;
|
4023
|
+
addressLine1?: string | null | undefined;
|
4024
|
+
addressLine2?: string | null | undefined;
|
4025
|
+
addressLine3?: string | null | undefined;
|
4026
|
+
postcodeOrZip?: string | null | undefined;
|
4027
|
+
}, {
|
4028
|
+
country: string;
|
4029
|
+
state: string;
|
4030
|
+
district2: string;
|
4031
|
+
cityOrTown?: string | null | undefined;
|
4032
|
+
addressLine1?: string | null | undefined;
|
4033
|
+
addressLine2?: string | null | undefined;
|
4034
|
+
addressLine3?: string | null | undefined;
|
4035
|
+
postcodeOrZip?: string | null | undefined;
|
3055
4036
|
}>]>>>;
|
3056
4037
|
createdAtLocation: z.ZodString;
|
3057
4038
|
}, {
|
@@ -3080,6 +4061,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3080
4061
|
province: string;
|
3081
4062
|
urbanOrRural: "RURAL";
|
3082
4063
|
village?: string | null | undefined;
|
4064
|
+
} | {
|
4065
|
+
country: string;
|
4066
|
+
state: string;
|
4067
|
+
district2: string;
|
4068
|
+
cityOrTown?: string | null | undefined;
|
4069
|
+
addressLine1?: string | null | undefined;
|
4070
|
+
addressLine2?: string | null | undefined;
|
4071
|
+
addressLine3?: string | null | undefined;
|
4072
|
+
postcodeOrZip?: string | null | undefined;
|
3083
4073
|
} | {
|
3084
4074
|
type: string;
|
3085
4075
|
option: string;
|
@@ -3110,6 +4100,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3110
4100
|
province: string;
|
3111
4101
|
urbanOrRural: "RURAL";
|
3112
4102
|
village?: string | null | undefined;
|
4103
|
+
} | {
|
4104
|
+
country: string;
|
4105
|
+
state: string;
|
4106
|
+
district2: string;
|
4107
|
+
cityOrTown?: string | null | undefined;
|
4108
|
+
addressLine1?: string | null | undefined;
|
4109
|
+
addressLine2?: string | null | undefined;
|
4110
|
+
addressLine3?: string | null | undefined;
|
4111
|
+
postcodeOrZip?: string | null | undefined;
|
3113
4112
|
} | {
|
3114
4113
|
type: string;
|
3115
4114
|
option: string;
|
@@ -3139,6 +4138,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3139
4138
|
province: string;
|
3140
4139
|
urbanOrRural: "RURAL";
|
3141
4140
|
village?: string | null | undefined;
|
4141
|
+
} | {
|
4142
|
+
country: string;
|
4143
|
+
state: string;
|
4144
|
+
district2: string;
|
4145
|
+
cityOrTown?: string | null | undefined;
|
4146
|
+
addressLine1?: string | null | undefined;
|
4147
|
+
addressLine2?: string | null | undefined;
|
4148
|
+
addressLine3?: string | null | undefined;
|
4149
|
+
postcodeOrZip?: string | null | undefined;
|
3142
4150
|
} | {
|
3143
4151
|
type: string;
|
3144
4152
|
option: string;
|
@@ -3169,6 +4177,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3169
4177
|
province: string;
|
3170
4178
|
urbanOrRural: "RURAL";
|
3171
4179
|
village?: string | null | undefined;
|
4180
|
+
} | {
|
4181
|
+
country: string;
|
4182
|
+
state: string;
|
4183
|
+
district2: string;
|
4184
|
+
cityOrTown?: string | null | undefined;
|
4185
|
+
addressLine1?: string | null | undefined;
|
4186
|
+
addressLine2?: string | null | undefined;
|
4187
|
+
addressLine3?: string | null | undefined;
|
4188
|
+
postcodeOrZip?: string | null | undefined;
|
3172
4189
|
} | {
|
3173
4190
|
type: string;
|
3174
4191
|
option: string;
|
@@ -3207,7 +4224,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3207
4224
|
filename: string;
|
3208
4225
|
originalFilename: string;
|
3209
4226
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3210
|
-
country: z.
|
4227
|
+
country: z.ZodLiteral<string>;
|
3211
4228
|
province: z.ZodString;
|
3212
4229
|
district: z.ZodString;
|
3213
4230
|
}, {
|
@@ -3238,7 +4255,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3238
4255
|
street?: string | null | undefined;
|
3239
4256
|
zipCode?: string | null | undefined;
|
3240
4257
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3241
|
-
country: z.
|
4258
|
+
country: z.ZodLiteral<string>;
|
3242
4259
|
province: z.ZodString;
|
3243
4260
|
district: z.ZodString;
|
3244
4261
|
}, {
|
@@ -3256,6 +4273,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3256
4273
|
province: string;
|
3257
4274
|
urbanOrRural: "RURAL";
|
3258
4275
|
village?: string | null | undefined;
|
4276
|
+
}>, z.ZodObject<{
|
4277
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
4278
|
+
state: z.ZodString;
|
4279
|
+
district2: z.ZodString;
|
4280
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4281
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4282
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4283
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4284
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4285
|
+
}, "strip", z.ZodTypeAny, {
|
4286
|
+
country: string;
|
4287
|
+
state: string;
|
4288
|
+
district2: string;
|
4289
|
+
cityOrTown?: string | null | undefined;
|
4290
|
+
addressLine1?: string | null | undefined;
|
4291
|
+
addressLine2?: string | null | undefined;
|
4292
|
+
addressLine3?: string | null | undefined;
|
4293
|
+
postcodeOrZip?: string | null | undefined;
|
4294
|
+
}, {
|
4295
|
+
country: string;
|
4296
|
+
state: string;
|
4297
|
+
district2: string;
|
4298
|
+
cityOrTown?: string | null | undefined;
|
4299
|
+
addressLine1?: string | null | undefined;
|
4300
|
+
addressLine2?: string | null | undefined;
|
4301
|
+
addressLine3?: string | null | undefined;
|
4302
|
+
postcodeOrZip?: string | null | undefined;
|
3259
4303
|
}>]>>;
|
3260
4304
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3261
4305
|
filename: z.ZodString;
|
@@ -3285,7 +4329,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3285
4329
|
filename: string;
|
3286
4330
|
originalFilename: string;
|
3287
4331
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3288
|
-
country: z.
|
4332
|
+
country: z.ZodLiteral<string>;
|
3289
4333
|
province: z.ZodString;
|
3290
4334
|
district: z.ZodString;
|
3291
4335
|
}, {
|
@@ -3316,7 +4360,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3316
4360
|
street?: string | null | undefined;
|
3317
4361
|
zipCode?: string | null | undefined;
|
3318
4362
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3319
|
-
country: z.
|
4363
|
+
country: z.ZodLiteral<string>;
|
3320
4364
|
province: z.ZodString;
|
3321
4365
|
district: z.ZodString;
|
3322
4366
|
}, {
|
@@ -3334,6 +4378,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3334
4378
|
province: string;
|
3335
4379
|
urbanOrRural: "RURAL";
|
3336
4380
|
village?: string | null | undefined;
|
4381
|
+
}>, z.ZodObject<{
|
4382
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
4383
|
+
state: z.ZodString;
|
4384
|
+
district2: z.ZodString;
|
4385
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4386
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4387
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4388
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4389
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4390
|
+
}, "strip", z.ZodTypeAny, {
|
4391
|
+
country: string;
|
4392
|
+
state: string;
|
4393
|
+
district2: string;
|
4394
|
+
cityOrTown?: string | null | undefined;
|
4395
|
+
addressLine1?: string | null | undefined;
|
4396
|
+
addressLine2?: string | null | undefined;
|
4397
|
+
addressLine3?: string | null | undefined;
|
4398
|
+
postcodeOrZip?: string | null | undefined;
|
4399
|
+
}, {
|
4400
|
+
country: string;
|
4401
|
+
state: string;
|
4402
|
+
district2: string;
|
4403
|
+
cityOrTown?: string | null | undefined;
|
4404
|
+
addressLine1?: string | null | undefined;
|
4405
|
+
addressLine2?: string | null | undefined;
|
4406
|
+
addressLine3?: string | null | undefined;
|
4407
|
+
postcodeOrZip?: string | null | undefined;
|
3337
4408
|
}>]>>>;
|
3338
4409
|
createdAtLocation: z.ZodString;
|
3339
4410
|
}, {
|
@@ -3361,6 +4432,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3361
4432
|
province: string;
|
3362
4433
|
urbanOrRural: "RURAL";
|
3363
4434
|
village?: string | null | undefined;
|
4435
|
+
} | {
|
4436
|
+
country: string;
|
4437
|
+
state: string;
|
4438
|
+
district2: string;
|
4439
|
+
cityOrTown?: string | null | undefined;
|
4440
|
+
addressLine1?: string | null | undefined;
|
4441
|
+
addressLine2?: string | null | undefined;
|
4442
|
+
addressLine3?: string | null | undefined;
|
4443
|
+
postcodeOrZip?: string | null | undefined;
|
3364
4444
|
} | {
|
3365
4445
|
type: string;
|
3366
4446
|
option: string;
|
@@ -3390,6 +4470,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3390
4470
|
province: string;
|
3391
4471
|
urbanOrRural: "RURAL";
|
3392
4472
|
village?: string | null | undefined;
|
4473
|
+
} | {
|
4474
|
+
country: string;
|
4475
|
+
state: string;
|
4476
|
+
district2: string;
|
4477
|
+
cityOrTown?: string | null | undefined;
|
4478
|
+
addressLine1?: string | null | undefined;
|
4479
|
+
addressLine2?: string | null | undefined;
|
4480
|
+
addressLine3?: string | null | undefined;
|
4481
|
+
postcodeOrZip?: string | null | undefined;
|
3393
4482
|
} | {
|
3394
4483
|
type: string;
|
3395
4484
|
option: string;
|
@@ -3419,6 +4508,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3419
4508
|
province: string;
|
3420
4509
|
urbanOrRural: "RURAL";
|
3421
4510
|
village?: string | null | undefined;
|
4511
|
+
} | {
|
4512
|
+
country: string;
|
4513
|
+
state: string;
|
4514
|
+
district2: string;
|
4515
|
+
cityOrTown?: string | null | undefined;
|
4516
|
+
addressLine1?: string | null | undefined;
|
4517
|
+
addressLine2?: string | null | undefined;
|
4518
|
+
addressLine3?: string | null | undefined;
|
4519
|
+
postcodeOrZip?: string | null | undefined;
|
3422
4520
|
} | {
|
3423
4521
|
type: string;
|
3424
4522
|
option: string;
|
@@ -3448,6 +4546,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3448
4546
|
province: string;
|
3449
4547
|
urbanOrRural: "RURAL";
|
3450
4548
|
village?: string | null | undefined;
|
4549
|
+
} | {
|
4550
|
+
country: string;
|
4551
|
+
state: string;
|
4552
|
+
district2: string;
|
4553
|
+
cityOrTown?: string | null | undefined;
|
4554
|
+
addressLine1?: string | null | undefined;
|
4555
|
+
addressLine2?: string | null | undefined;
|
4556
|
+
addressLine3?: string | null | undefined;
|
4557
|
+
postcodeOrZip?: string | null | undefined;
|
3451
4558
|
} | {
|
3452
4559
|
type: string;
|
3453
4560
|
option: string;
|
@@ -3486,7 +4593,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3486
4593
|
filename: string;
|
3487
4594
|
originalFilename: string;
|
3488
4595
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3489
|
-
country: z.
|
4596
|
+
country: z.ZodLiteral<string>;
|
3490
4597
|
province: z.ZodString;
|
3491
4598
|
district: z.ZodString;
|
3492
4599
|
}, {
|
@@ -3517,7 +4624,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3517
4624
|
street?: string | null | undefined;
|
3518
4625
|
zipCode?: string | null | undefined;
|
3519
4626
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3520
|
-
country: z.
|
4627
|
+
country: z.ZodLiteral<string>;
|
3521
4628
|
province: z.ZodString;
|
3522
4629
|
district: z.ZodString;
|
3523
4630
|
}, {
|
@@ -3535,6 +4642,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3535
4642
|
province: string;
|
3536
4643
|
urbanOrRural: "RURAL";
|
3537
4644
|
village?: string | null | undefined;
|
4645
|
+
}>, z.ZodObject<{
|
4646
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
4647
|
+
state: z.ZodString;
|
4648
|
+
district2: z.ZodString;
|
4649
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4650
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4651
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4652
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4653
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4654
|
+
}, "strip", z.ZodTypeAny, {
|
4655
|
+
country: string;
|
4656
|
+
state: string;
|
4657
|
+
district2: string;
|
4658
|
+
cityOrTown?: string | null | undefined;
|
4659
|
+
addressLine1?: string | null | undefined;
|
4660
|
+
addressLine2?: string | null | undefined;
|
4661
|
+
addressLine3?: string | null | undefined;
|
4662
|
+
postcodeOrZip?: string | null | undefined;
|
4663
|
+
}, {
|
4664
|
+
country: string;
|
4665
|
+
state: string;
|
4666
|
+
district2: string;
|
4667
|
+
cityOrTown?: string | null | undefined;
|
4668
|
+
addressLine1?: string | null | undefined;
|
4669
|
+
addressLine2?: string | null | undefined;
|
4670
|
+
addressLine3?: string | null | undefined;
|
4671
|
+
postcodeOrZip?: string | null | undefined;
|
3538
4672
|
}>]>>;
|
3539
4673
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3540
4674
|
filename: z.ZodString;
|
@@ -3564,7 +4698,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3564
4698
|
filename: string;
|
3565
4699
|
originalFilename: string;
|
3566
4700
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3567
|
-
country: z.
|
4701
|
+
country: z.ZodLiteral<string>;
|
3568
4702
|
province: z.ZodString;
|
3569
4703
|
district: z.ZodString;
|
3570
4704
|
}, {
|
@@ -3595,7 +4729,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3595
4729
|
street?: string | null | undefined;
|
3596
4730
|
zipCode?: string | null | undefined;
|
3597
4731
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3598
|
-
country: z.
|
4732
|
+
country: z.ZodLiteral<string>;
|
3599
4733
|
province: z.ZodString;
|
3600
4734
|
district: z.ZodString;
|
3601
4735
|
}, {
|
@@ -3613,6 +4747,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3613
4747
|
province: string;
|
3614
4748
|
urbanOrRural: "RURAL";
|
3615
4749
|
village?: string | null | undefined;
|
4750
|
+
}>, z.ZodObject<{
|
4751
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
4752
|
+
state: z.ZodString;
|
4753
|
+
district2: z.ZodString;
|
4754
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4755
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4756
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4757
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4758
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4759
|
+
}, "strip", z.ZodTypeAny, {
|
4760
|
+
country: string;
|
4761
|
+
state: string;
|
4762
|
+
district2: string;
|
4763
|
+
cityOrTown?: string | null | undefined;
|
4764
|
+
addressLine1?: string | null | undefined;
|
4765
|
+
addressLine2?: string | null | undefined;
|
4766
|
+
addressLine3?: string | null | undefined;
|
4767
|
+
postcodeOrZip?: string | null | undefined;
|
4768
|
+
}, {
|
4769
|
+
country: string;
|
4770
|
+
state: string;
|
4771
|
+
district2: string;
|
4772
|
+
cityOrTown?: string | null | undefined;
|
4773
|
+
addressLine1?: string | null | undefined;
|
4774
|
+
addressLine2?: string | null | undefined;
|
4775
|
+
addressLine3?: string | null | undefined;
|
4776
|
+
postcodeOrZip?: string | null | undefined;
|
3616
4777
|
}>]>>>;
|
3617
4778
|
createdAtLocation: z.ZodString;
|
3618
4779
|
}, {
|
@@ -3641,6 +4802,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3641
4802
|
province: string;
|
3642
4803
|
urbanOrRural: "RURAL";
|
3643
4804
|
village?: string | null | undefined;
|
4805
|
+
} | {
|
4806
|
+
country: string;
|
4807
|
+
state: string;
|
4808
|
+
district2: string;
|
4809
|
+
cityOrTown?: string | null | undefined;
|
4810
|
+
addressLine1?: string | null | undefined;
|
4811
|
+
addressLine2?: string | null | undefined;
|
4812
|
+
addressLine3?: string | null | undefined;
|
4813
|
+
postcodeOrZip?: string | null | undefined;
|
3644
4814
|
} | {
|
3645
4815
|
type: string;
|
3646
4816
|
option: string;
|
@@ -3671,6 +4841,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3671
4841
|
province: string;
|
3672
4842
|
urbanOrRural: "RURAL";
|
3673
4843
|
village?: string | null | undefined;
|
4844
|
+
} | {
|
4845
|
+
country: string;
|
4846
|
+
state: string;
|
4847
|
+
district2: string;
|
4848
|
+
cityOrTown?: string | null | undefined;
|
4849
|
+
addressLine1?: string | null | undefined;
|
4850
|
+
addressLine2?: string | null | undefined;
|
4851
|
+
addressLine3?: string | null | undefined;
|
4852
|
+
postcodeOrZip?: string | null | undefined;
|
3674
4853
|
} | {
|
3675
4854
|
type: string;
|
3676
4855
|
option: string;
|
@@ -3700,6 +4879,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3700
4879
|
province: string;
|
3701
4880
|
urbanOrRural: "RURAL";
|
3702
4881
|
village?: string | null | undefined;
|
4882
|
+
} | {
|
4883
|
+
country: string;
|
4884
|
+
state: string;
|
4885
|
+
district2: string;
|
4886
|
+
cityOrTown?: string | null | undefined;
|
4887
|
+
addressLine1?: string | null | undefined;
|
4888
|
+
addressLine2?: string | null | undefined;
|
4889
|
+
addressLine3?: string | null | undefined;
|
4890
|
+
postcodeOrZip?: string | null | undefined;
|
3703
4891
|
} | {
|
3704
4892
|
type: string;
|
3705
4893
|
option: string;
|
@@ -3730,6 +4918,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3730
4918
|
province: string;
|
3731
4919
|
urbanOrRural: "RURAL";
|
3732
4920
|
village?: string | null | undefined;
|
4921
|
+
} | {
|
4922
|
+
country: string;
|
4923
|
+
state: string;
|
4924
|
+
district2: string;
|
4925
|
+
cityOrTown?: string | null | undefined;
|
4926
|
+
addressLine1?: string | null | undefined;
|
4927
|
+
addressLine2?: string | null | undefined;
|
4928
|
+
addressLine3?: string | null | undefined;
|
4929
|
+
postcodeOrZip?: string | null | undefined;
|
3733
4930
|
} | {
|
3734
4931
|
type: string;
|
3735
4932
|
option: string;
|
@@ -3768,7 +4965,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3768
4965
|
filename: string;
|
3769
4966
|
originalFilename: string;
|
3770
4967
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3771
|
-
country: z.
|
4968
|
+
country: z.ZodLiteral<string>;
|
3772
4969
|
province: z.ZodString;
|
3773
4970
|
district: z.ZodString;
|
3774
4971
|
}, {
|
@@ -3799,7 +4996,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3799
4996
|
street?: string | null | undefined;
|
3800
4997
|
zipCode?: string | null | undefined;
|
3801
4998
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3802
|
-
country: z.
|
4999
|
+
country: z.ZodLiteral<string>;
|
3803
5000
|
province: z.ZodString;
|
3804
5001
|
district: z.ZodString;
|
3805
5002
|
}, {
|
@@ -3817,6 +5014,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3817
5014
|
province: string;
|
3818
5015
|
urbanOrRural: "RURAL";
|
3819
5016
|
village?: string | null | undefined;
|
5017
|
+
}>, z.ZodObject<{
|
5018
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
5019
|
+
state: z.ZodString;
|
5020
|
+
district2: z.ZodString;
|
5021
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5022
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5023
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5024
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5025
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5026
|
+
}, "strip", z.ZodTypeAny, {
|
5027
|
+
country: string;
|
5028
|
+
state: string;
|
5029
|
+
district2: string;
|
5030
|
+
cityOrTown?: string | null | undefined;
|
5031
|
+
addressLine1?: string | null | undefined;
|
5032
|
+
addressLine2?: string | null | undefined;
|
5033
|
+
addressLine3?: string | null | undefined;
|
5034
|
+
postcodeOrZip?: string | null | undefined;
|
5035
|
+
}, {
|
5036
|
+
country: string;
|
5037
|
+
state: string;
|
5038
|
+
district2: string;
|
5039
|
+
cityOrTown?: string | null | undefined;
|
5040
|
+
addressLine1?: string | null | undefined;
|
5041
|
+
addressLine2?: string | null | undefined;
|
5042
|
+
addressLine3?: string | null | undefined;
|
5043
|
+
postcodeOrZip?: string | null | undefined;
|
3820
5044
|
}>]>>;
|
3821
5045
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3822
5046
|
filename: z.ZodString;
|
@@ -3846,7 +5070,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3846
5070
|
filename: string;
|
3847
5071
|
originalFilename: string;
|
3848
5072
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3849
|
-
country: z.
|
5073
|
+
country: z.ZodLiteral<string>;
|
3850
5074
|
province: z.ZodString;
|
3851
5075
|
district: z.ZodString;
|
3852
5076
|
}, {
|
@@ -3877,7 +5101,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3877
5101
|
street?: string | null | undefined;
|
3878
5102
|
zipCode?: string | null | undefined;
|
3879
5103
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3880
|
-
country: z.
|
5104
|
+
country: z.ZodLiteral<string>;
|
3881
5105
|
province: z.ZodString;
|
3882
5106
|
district: z.ZodString;
|
3883
5107
|
}, {
|
@@ -3895,6 +5119,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3895
5119
|
province: string;
|
3896
5120
|
urbanOrRural: "RURAL";
|
3897
5121
|
village?: string | null | undefined;
|
5122
|
+
}>, z.ZodObject<{
|
5123
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
5124
|
+
state: z.ZodString;
|
5125
|
+
district2: z.ZodString;
|
5126
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5127
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5128
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5129
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5130
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5131
|
+
}, "strip", z.ZodTypeAny, {
|
5132
|
+
country: string;
|
5133
|
+
state: string;
|
5134
|
+
district2: string;
|
5135
|
+
cityOrTown?: string | null | undefined;
|
5136
|
+
addressLine1?: string | null | undefined;
|
5137
|
+
addressLine2?: string | null | undefined;
|
5138
|
+
addressLine3?: string | null | undefined;
|
5139
|
+
postcodeOrZip?: string | null | undefined;
|
5140
|
+
}, {
|
5141
|
+
country: string;
|
5142
|
+
state: string;
|
5143
|
+
district2: string;
|
5144
|
+
cityOrTown?: string | null | undefined;
|
5145
|
+
addressLine1?: string | null | undefined;
|
5146
|
+
addressLine2?: string | null | undefined;
|
5147
|
+
addressLine3?: string | null | undefined;
|
5148
|
+
postcodeOrZip?: string | null | undefined;
|
3898
5149
|
}>]>>>;
|
3899
5150
|
createdAtLocation: z.ZodString;
|
3900
5151
|
}, {
|
@@ -3923,6 +5174,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3923
5174
|
province: string;
|
3924
5175
|
urbanOrRural: "RURAL";
|
3925
5176
|
village?: string | null | undefined;
|
5177
|
+
} | {
|
5178
|
+
country: string;
|
5179
|
+
state: string;
|
5180
|
+
district2: string;
|
5181
|
+
cityOrTown?: string | null | undefined;
|
5182
|
+
addressLine1?: string | null | undefined;
|
5183
|
+
addressLine2?: string | null | undefined;
|
5184
|
+
addressLine3?: string | null | undefined;
|
5185
|
+
postcodeOrZip?: string | null | undefined;
|
3926
5186
|
} | {
|
3927
5187
|
type: string;
|
3928
5188
|
option: string;
|
@@ -3953,6 +5213,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3953
5213
|
province: string;
|
3954
5214
|
urbanOrRural: "RURAL";
|
3955
5215
|
village?: string | null | undefined;
|
5216
|
+
} | {
|
5217
|
+
country: string;
|
5218
|
+
state: string;
|
5219
|
+
district2: string;
|
5220
|
+
cityOrTown?: string | null | undefined;
|
5221
|
+
addressLine1?: string | null | undefined;
|
5222
|
+
addressLine2?: string | null | undefined;
|
5223
|
+
addressLine3?: string | null | undefined;
|
5224
|
+
postcodeOrZip?: string | null | undefined;
|
3956
5225
|
} | {
|
3957
5226
|
type: string;
|
3958
5227
|
option: string;
|
@@ -3982,6 +5251,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3982
5251
|
province: string;
|
3983
5252
|
urbanOrRural: "RURAL";
|
3984
5253
|
village?: string | null | undefined;
|
5254
|
+
} | {
|
5255
|
+
country: string;
|
5256
|
+
state: string;
|
5257
|
+
district2: string;
|
5258
|
+
cityOrTown?: string | null | undefined;
|
5259
|
+
addressLine1?: string | null | undefined;
|
5260
|
+
addressLine2?: string | null | undefined;
|
5261
|
+
addressLine3?: string | null | undefined;
|
5262
|
+
postcodeOrZip?: string | null | undefined;
|
3985
5263
|
} | {
|
3986
5264
|
type: string;
|
3987
5265
|
option: string;
|
@@ -4012,6 +5290,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4012
5290
|
province: string;
|
4013
5291
|
urbanOrRural: "RURAL";
|
4014
5292
|
village?: string | null | undefined;
|
5293
|
+
} | {
|
5294
|
+
country: string;
|
5295
|
+
state: string;
|
5296
|
+
district2: string;
|
5297
|
+
cityOrTown?: string | null | undefined;
|
5298
|
+
addressLine1?: string | null | undefined;
|
5299
|
+
addressLine2?: string | null | undefined;
|
5300
|
+
addressLine3?: string | null | undefined;
|
5301
|
+
postcodeOrZip?: string | null | undefined;
|
4015
5302
|
} | {
|
4016
5303
|
type: string;
|
4017
5304
|
option: string;
|
@@ -4050,7 +5337,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4050
5337
|
filename: string;
|
4051
5338
|
originalFilename: string;
|
4052
5339
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
4053
|
-
country: z.
|
5340
|
+
country: z.ZodLiteral<string>;
|
4054
5341
|
province: z.ZodString;
|
4055
5342
|
district: z.ZodString;
|
4056
5343
|
}, {
|
@@ -4081,7 +5368,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4081
5368
|
street?: string | null | undefined;
|
4082
5369
|
zipCode?: string | null | undefined;
|
4083
5370
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4084
|
-
country: z.
|
5371
|
+
country: z.ZodLiteral<string>;
|
4085
5372
|
province: z.ZodString;
|
4086
5373
|
district: z.ZodString;
|
4087
5374
|
}, {
|
@@ -4099,6 +5386,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4099
5386
|
province: string;
|
4100
5387
|
urbanOrRural: "RURAL";
|
4101
5388
|
village?: string | null | undefined;
|
5389
|
+
}>, z.ZodObject<{
|
5390
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
5391
|
+
state: z.ZodString;
|
5392
|
+
district2: z.ZodString;
|
5393
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5394
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5395
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5396
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5397
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5398
|
+
}, "strip", z.ZodTypeAny, {
|
5399
|
+
country: string;
|
5400
|
+
state: string;
|
5401
|
+
district2: string;
|
5402
|
+
cityOrTown?: string | null | undefined;
|
5403
|
+
addressLine1?: string | null | undefined;
|
5404
|
+
addressLine2?: string | null | undefined;
|
5405
|
+
addressLine3?: string | null | undefined;
|
5406
|
+
postcodeOrZip?: string | null | undefined;
|
5407
|
+
}, {
|
5408
|
+
country: string;
|
5409
|
+
state: string;
|
5410
|
+
district2: string;
|
5411
|
+
cityOrTown?: string | null | undefined;
|
5412
|
+
addressLine1?: string | null | undefined;
|
5413
|
+
addressLine2?: string | null | undefined;
|
5414
|
+
addressLine3?: string | null | undefined;
|
5415
|
+
postcodeOrZip?: string | null | undefined;
|
4102
5416
|
}>]>>;
|
4103
5417
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4104
5418
|
filename: z.ZodString;
|
@@ -4128,7 +5442,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4128
5442
|
filename: string;
|
4129
5443
|
originalFilename: string;
|
4130
5444
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
4131
|
-
country: z.
|
5445
|
+
country: z.ZodLiteral<string>;
|
4132
5446
|
province: z.ZodString;
|
4133
5447
|
district: z.ZodString;
|
4134
5448
|
}, {
|
@@ -4159,7 +5473,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4159
5473
|
street?: string | null | undefined;
|
4160
5474
|
zipCode?: string | null | undefined;
|
4161
5475
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4162
|
-
country: z.
|
5476
|
+
country: z.ZodLiteral<string>;
|
4163
5477
|
province: z.ZodString;
|
4164
5478
|
district: z.ZodString;
|
4165
5479
|
}, {
|
@@ -4177,6 +5491,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4177
5491
|
province: string;
|
4178
5492
|
urbanOrRural: "RURAL";
|
4179
5493
|
village?: string | null | undefined;
|
5494
|
+
}>, z.ZodObject<{
|
5495
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
5496
|
+
state: z.ZodString;
|
5497
|
+
district2: z.ZodString;
|
5498
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5499
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5500
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5501
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5502
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5503
|
+
}, "strip", z.ZodTypeAny, {
|
5504
|
+
country: string;
|
5505
|
+
state: string;
|
5506
|
+
district2: string;
|
5507
|
+
cityOrTown?: string | null | undefined;
|
5508
|
+
addressLine1?: string | null | undefined;
|
5509
|
+
addressLine2?: string | null | undefined;
|
5510
|
+
addressLine3?: string | null | undefined;
|
5511
|
+
postcodeOrZip?: string | null | undefined;
|
5512
|
+
}, {
|
5513
|
+
country: string;
|
5514
|
+
state: string;
|
5515
|
+
district2: string;
|
5516
|
+
cityOrTown?: string | null | undefined;
|
5517
|
+
addressLine1?: string | null | undefined;
|
5518
|
+
addressLine2?: string | null | undefined;
|
5519
|
+
addressLine3?: string | null | undefined;
|
5520
|
+
postcodeOrZip?: string | null | undefined;
|
4180
5521
|
}>]>>>;
|
4181
5522
|
createdAtLocation: z.ZodString;
|
4182
5523
|
}, {
|
@@ -4204,6 +5545,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4204
5545
|
province: string;
|
4205
5546
|
urbanOrRural: "RURAL";
|
4206
5547
|
village?: string | null | undefined;
|
5548
|
+
} | {
|
5549
|
+
country: string;
|
5550
|
+
state: string;
|
5551
|
+
district2: string;
|
5552
|
+
cityOrTown?: string | null | undefined;
|
5553
|
+
addressLine1?: string | null | undefined;
|
5554
|
+
addressLine2?: string | null | undefined;
|
5555
|
+
addressLine3?: string | null | undefined;
|
5556
|
+
postcodeOrZip?: string | null | undefined;
|
4207
5557
|
} | {
|
4208
5558
|
type: string;
|
4209
5559
|
option: string;
|
@@ -4233,6 +5583,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4233
5583
|
province: string;
|
4234
5584
|
urbanOrRural: "RURAL";
|
4235
5585
|
village?: string | null | undefined;
|
5586
|
+
} | {
|
5587
|
+
country: string;
|
5588
|
+
state: string;
|
5589
|
+
district2: string;
|
5590
|
+
cityOrTown?: string | null | undefined;
|
5591
|
+
addressLine1?: string | null | undefined;
|
5592
|
+
addressLine2?: string | null | undefined;
|
5593
|
+
addressLine3?: string | null | undefined;
|
5594
|
+
postcodeOrZip?: string | null | undefined;
|
4236
5595
|
} | {
|
4237
5596
|
type: string;
|
4238
5597
|
option: string;
|
@@ -4262,6 +5621,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4262
5621
|
province: string;
|
4263
5622
|
urbanOrRural: "RURAL";
|
4264
5623
|
village?: string | null | undefined;
|
5624
|
+
} | {
|
5625
|
+
country: string;
|
5626
|
+
state: string;
|
5627
|
+
district2: string;
|
5628
|
+
cityOrTown?: string | null | undefined;
|
5629
|
+
addressLine1?: string | null | undefined;
|
5630
|
+
addressLine2?: string | null | undefined;
|
5631
|
+
addressLine3?: string | null | undefined;
|
5632
|
+
postcodeOrZip?: string | null | undefined;
|
4265
5633
|
} | {
|
4266
5634
|
type: string;
|
4267
5635
|
option: string;
|
@@ -4291,6 +5659,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4291
5659
|
province: string;
|
4292
5660
|
urbanOrRural: "RURAL";
|
4293
5661
|
village?: string | null | undefined;
|
5662
|
+
} | {
|
5663
|
+
country: string;
|
5664
|
+
state: string;
|
5665
|
+
district2: string;
|
5666
|
+
cityOrTown?: string | null | undefined;
|
5667
|
+
addressLine1?: string | null | undefined;
|
5668
|
+
addressLine2?: string | null | undefined;
|
5669
|
+
addressLine3?: string | null | undefined;
|
5670
|
+
postcodeOrZip?: string | null | undefined;
|
4294
5671
|
} | {
|
4295
5672
|
type: string;
|
4296
5673
|
option: string;
|
@@ -4329,7 +5706,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4329
5706
|
filename: string;
|
4330
5707
|
originalFilename: string;
|
4331
5708
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
4332
|
-
country: z.
|
5709
|
+
country: z.ZodLiteral<string>;
|
4333
5710
|
province: z.ZodString;
|
4334
5711
|
district: z.ZodString;
|
4335
5712
|
}, {
|
@@ -4360,7 +5737,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4360
5737
|
street?: string | null | undefined;
|
4361
5738
|
zipCode?: string | null | undefined;
|
4362
5739
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4363
|
-
country: z.
|
5740
|
+
country: z.ZodLiteral<string>;
|
4364
5741
|
province: z.ZodString;
|
4365
5742
|
district: z.ZodString;
|
4366
5743
|
}, {
|
@@ -4378,6 +5755,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4378
5755
|
province: string;
|
4379
5756
|
urbanOrRural: "RURAL";
|
4380
5757
|
village?: string | null | undefined;
|
5758
|
+
}>, z.ZodObject<{
|
5759
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
5760
|
+
state: z.ZodString;
|
5761
|
+
district2: z.ZodString;
|
5762
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5763
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5764
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5765
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5766
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5767
|
+
}, "strip", z.ZodTypeAny, {
|
5768
|
+
country: string;
|
5769
|
+
state: string;
|
5770
|
+
district2: string;
|
5771
|
+
cityOrTown?: string | null | undefined;
|
5772
|
+
addressLine1?: string | null | undefined;
|
5773
|
+
addressLine2?: string | null | undefined;
|
5774
|
+
addressLine3?: string | null | undefined;
|
5775
|
+
postcodeOrZip?: string | null | undefined;
|
5776
|
+
}, {
|
5777
|
+
country: string;
|
5778
|
+
state: string;
|
5779
|
+
district2: string;
|
5780
|
+
cityOrTown?: string | null | undefined;
|
5781
|
+
addressLine1?: string | null | undefined;
|
5782
|
+
addressLine2?: string | null | undefined;
|
5783
|
+
addressLine3?: string | null | undefined;
|
5784
|
+
postcodeOrZip?: string | null | undefined;
|
4381
5785
|
}>]>>;
|
4382
5786
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4383
5787
|
filename: z.ZodString;
|
@@ -4407,7 +5811,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4407
5811
|
filename: string;
|
4408
5812
|
originalFilename: string;
|
4409
5813
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
4410
|
-
country: z.
|
5814
|
+
country: z.ZodLiteral<string>;
|
4411
5815
|
province: z.ZodString;
|
4412
5816
|
district: z.ZodString;
|
4413
5817
|
}, {
|
@@ -4438,7 +5842,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4438
5842
|
street?: string | null | undefined;
|
4439
5843
|
zipCode?: string | null | undefined;
|
4440
5844
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4441
|
-
country: z.
|
5845
|
+
country: z.ZodLiteral<string>;
|
4442
5846
|
province: z.ZodString;
|
4443
5847
|
district: z.ZodString;
|
4444
5848
|
}, {
|
@@ -4456,6 +5860,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4456
5860
|
province: string;
|
4457
5861
|
urbanOrRural: "RURAL";
|
4458
5862
|
village?: string | null | undefined;
|
5863
|
+
}>, z.ZodObject<{
|
5864
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
5865
|
+
state: z.ZodString;
|
5866
|
+
district2: z.ZodString;
|
5867
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5868
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5869
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5870
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5871
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5872
|
+
}, "strip", z.ZodTypeAny, {
|
5873
|
+
country: string;
|
5874
|
+
state: string;
|
5875
|
+
district2: string;
|
5876
|
+
cityOrTown?: string | null | undefined;
|
5877
|
+
addressLine1?: string | null | undefined;
|
5878
|
+
addressLine2?: string | null | undefined;
|
5879
|
+
addressLine3?: string | null | undefined;
|
5880
|
+
postcodeOrZip?: string | null | undefined;
|
5881
|
+
}, {
|
5882
|
+
country: string;
|
5883
|
+
state: string;
|
5884
|
+
district2: string;
|
5885
|
+
cityOrTown?: string | null | undefined;
|
5886
|
+
addressLine1?: string | null | undefined;
|
5887
|
+
addressLine2?: string | null | undefined;
|
5888
|
+
addressLine3?: string | null | undefined;
|
5889
|
+
postcodeOrZip?: string | null | undefined;
|
4459
5890
|
}>]>>>;
|
4460
5891
|
createdAtLocation: z.ZodString;
|
4461
5892
|
}, {
|
@@ -4483,6 +5914,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4483
5914
|
province: string;
|
4484
5915
|
urbanOrRural: "RURAL";
|
4485
5916
|
village?: string | null | undefined;
|
5917
|
+
} | {
|
5918
|
+
country: string;
|
5919
|
+
state: string;
|
5920
|
+
district2: string;
|
5921
|
+
cityOrTown?: string | null | undefined;
|
5922
|
+
addressLine1?: string | null | undefined;
|
5923
|
+
addressLine2?: string | null | undefined;
|
5924
|
+
addressLine3?: string | null | undefined;
|
5925
|
+
postcodeOrZip?: string | null | undefined;
|
4486
5926
|
} | {
|
4487
5927
|
type: string;
|
4488
5928
|
option: string;
|
@@ -4512,6 +5952,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4512
5952
|
province: string;
|
4513
5953
|
urbanOrRural: "RURAL";
|
4514
5954
|
village?: string | null | undefined;
|
5955
|
+
} | {
|
5956
|
+
country: string;
|
5957
|
+
state: string;
|
5958
|
+
district2: string;
|
5959
|
+
cityOrTown?: string | null | undefined;
|
5960
|
+
addressLine1?: string | null | undefined;
|
5961
|
+
addressLine2?: string | null | undefined;
|
5962
|
+
addressLine3?: string | null | undefined;
|
5963
|
+
postcodeOrZip?: string | null | undefined;
|
4515
5964
|
} | {
|
4516
5965
|
type: string;
|
4517
5966
|
option: string;
|
@@ -4541,6 +5990,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4541
5990
|
province: string;
|
4542
5991
|
urbanOrRural: "RURAL";
|
4543
5992
|
village?: string | null | undefined;
|
5993
|
+
} | {
|
5994
|
+
country: string;
|
5995
|
+
state: string;
|
5996
|
+
district2: string;
|
5997
|
+
cityOrTown?: string | null | undefined;
|
5998
|
+
addressLine1?: string | null | undefined;
|
5999
|
+
addressLine2?: string | null | undefined;
|
6000
|
+
addressLine3?: string | null | undefined;
|
6001
|
+
postcodeOrZip?: string | null | undefined;
|
4544
6002
|
} | {
|
4545
6003
|
type: string;
|
4546
6004
|
option: string;
|
@@ -4570,6 +6028,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4570
6028
|
province: string;
|
4571
6029
|
urbanOrRural: "RURAL";
|
4572
6030
|
village?: string | null | undefined;
|
6031
|
+
} | {
|
6032
|
+
country: string;
|
6033
|
+
state: string;
|
6034
|
+
district2: string;
|
6035
|
+
cityOrTown?: string | null | undefined;
|
6036
|
+
addressLine1?: string | null | undefined;
|
6037
|
+
addressLine2?: string | null | undefined;
|
6038
|
+
addressLine3?: string | null | undefined;
|
6039
|
+
postcodeOrZip?: string | null | undefined;
|
4573
6040
|
} | {
|
4574
6041
|
type: string;
|
4575
6042
|
option: string;
|
@@ -4608,7 +6075,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4608
6075
|
filename: string;
|
4609
6076
|
originalFilename: string;
|
4610
6077
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
4611
|
-
country: z.
|
6078
|
+
country: z.ZodLiteral<string>;
|
4612
6079
|
province: z.ZodString;
|
4613
6080
|
district: z.ZodString;
|
4614
6081
|
}, {
|
@@ -4639,7 +6106,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4639
6106
|
street?: string | null | undefined;
|
4640
6107
|
zipCode?: string | null | undefined;
|
4641
6108
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4642
|
-
country: z.
|
6109
|
+
country: z.ZodLiteral<string>;
|
4643
6110
|
province: z.ZodString;
|
4644
6111
|
district: z.ZodString;
|
4645
6112
|
}, {
|
@@ -4657,6 +6124,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4657
6124
|
province: string;
|
4658
6125
|
urbanOrRural: "RURAL";
|
4659
6126
|
village?: string | null | undefined;
|
6127
|
+
}>, z.ZodObject<{
|
6128
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
6129
|
+
state: z.ZodString;
|
6130
|
+
district2: z.ZodString;
|
6131
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6132
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6133
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6134
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6135
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6136
|
+
}, "strip", z.ZodTypeAny, {
|
6137
|
+
country: string;
|
6138
|
+
state: string;
|
6139
|
+
district2: string;
|
6140
|
+
cityOrTown?: string | null | undefined;
|
6141
|
+
addressLine1?: string | null | undefined;
|
6142
|
+
addressLine2?: string | null | undefined;
|
6143
|
+
addressLine3?: string | null | undefined;
|
6144
|
+
postcodeOrZip?: string | null | undefined;
|
6145
|
+
}, {
|
6146
|
+
country: string;
|
6147
|
+
state: string;
|
6148
|
+
district2: string;
|
6149
|
+
cityOrTown?: string | null | undefined;
|
6150
|
+
addressLine1?: string | null | undefined;
|
6151
|
+
addressLine2?: string | null | undefined;
|
6152
|
+
addressLine3?: string | null | undefined;
|
6153
|
+
postcodeOrZip?: string | null | undefined;
|
4660
6154
|
}>]>>;
|
4661
6155
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4662
6156
|
filename: z.ZodString;
|
@@ -4686,7 +6180,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4686
6180
|
filename: string;
|
4687
6181
|
originalFilename: string;
|
4688
6182
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
4689
|
-
country: z.
|
6183
|
+
country: z.ZodLiteral<string>;
|
4690
6184
|
province: z.ZodString;
|
4691
6185
|
district: z.ZodString;
|
4692
6186
|
}, {
|
@@ -4717,7 +6211,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4717
6211
|
street?: string | null | undefined;
|
4718
6212
|
zipCode?: string | null | undefined;
|
4719
6213
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4720
|
-
country: z.
|
6214
|
+
country: z.ZodLiteral<string>;
|
4721
6215
|
province: z.ZodString;
|
4722
6216
|
district: z.ZodString;
|
4723
6217
|
}, {
|
@@ -4735,6 +6229,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4735
6229
|
province: string;
|
4736
6230
|
urbanOrRural: "RURAL";
|
4737
6231
|
village?: string | null | undefined;
|
6232
|
+
}>, z.ZodObject<{
|
6233
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
6234
|
+
state: z.ZodString;
|
6235
|
+
district2: z.ZodString;
|
6236
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6237
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6238
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6239
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6240
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6241
|
+
}, "strip", z.ZodTypeAny, {
|
6242
|
+
country: string;
|
6243
|
+
state: string;
|
6244
|
+
district2: string;
|
6245
|
+
cityOrTown?: string | null | undefined;
|
6246
|
+
addressLine1?: string | null | undefined;
|
6247
|
+
addressLine2?: string | null | undefined;
|
6248
|
+
addressLine3?: string | null | undefined;
|
6249
|
+
postcodeOrZip?: string | null | undefined;
|
6250
|
+
}, {
|
6251
|
+
country: string;
|
6252
|
+
state: string;
|
6253
|
+
district2: string;
|
6254
|
+
cityOrTown?: string | null | undefined;
|
6255
|
+
addressLine1?: string | null | undefined;
|
6256
|
+
addressLine2?: string | null | undefined;
|
6257
|
+
addressLine3?: string | null | undefined;
|
6258
|
+
postcodeOrZip?: string | null | undefined;
|
4738
6259
|
}>]>>>;
|
4739
6260
|
createdAtLocation: z.ZodString;
|
4740
6261
|
}, {
|
@@ -4762,6 +6283,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4762
6283
|
province: string;
|
4763
6284
|
urbanOrRural: "RURAL";
|
4764
6285
|
village?: string | null | undefined;
|
6286
|
+
} | {
|
6287
|
+
country: string;
|
6288
|
+
state: string;
|
6289
|
+
district2: string;
|
6290
|
+
cityOrTown?: string | null | undefined;
|
6291
|
+
addressLine1?: string | null | undefined;
|
6292
|
+
addressLine2?: string | null | undefined;
|
6293
|
+
addressLine3?: string | null | undefined;
|
6294
|
+
postcodeOrZip?: string | null | undefined;
|
4765
6295
|
} | {
|
4766
6296
|
type: string;
|
4767
6297
|
option: string;
|
@@ -4791,6 +6321,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4791
6321
|
province: string;
|
4792
6322
|
urbanOrRural: "RURAL";
|
4793
6323
|
village?: string | null | undefined;
|
6324
|
+
} | {
|
6325
|
+
country: string;
|
6326
|
+
state: string;
|
6327
|
+
district2: string;
|
6328
|
+
cityOrTown?: string | null | undefined;
|
6329
|
+
addressLine1?: string | null | undefined;
|
6330
|
+
addressLine2?: string | null | undefined;
|
6331
|
+
addressLine3?: string | null | undefined;
|
6332
|
+
postcodeOrZip?: string | null | undefined;
|
4794
6333
|
} | {
|
4795
6334
|
type: string;
|
4796
6335
|
option: string;
|
@@ -4820,6 +6359,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4820
6359
|
province: string;
|
4821
6360
|
urbanOrRural: "RURAL";
|
4822
6361
|
village?: string | null | undefined;
|
6362
|
+
} | {
|
6363
|
+
country: string;
|
6364
|
+
state: string;
|
6365
|
+
district2: string;
|
6366
|
+
cityOrTown?: string | null | undefined;
|
6367
|
+
addressLine1?: string | null | undefined;
|
6368
|
+
addressLine2?: string | null | undefined;
|
6369
|
+
addressLine3?: string | null | undefined;
|
6370
|
+
postcodeOrZip?: string | null | undefined;
|
4823
6371
|
} | {
|
4824
6372
|
type: string;
|
4825
6373
|
option: string;
|
@@ -4849,6 +6397,15 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4849
6397
|
province: string;
|
4850
6398
|
urbanOrRural: "RURAL";
|
4851
6399
|
village?: string | null | undefined;
|
6400
|
+
} | {
|
6401
|
+
country: string;
|
6402
|
+
state: string;
|
6403
|
+
district2: string;
|
6404
|
+
cityOrTown?: string | null | undefined;
|
6405
|
+
addressLine1?: string | null | undefined;
|
6406
|
+
addressLine2?: string | null | undefined;
|
6407
|
+
addressLine3?: string | null | undefined;
|
6408
|
+
postcodeOrZip?: string | null | undefined;
|
4852
6409
|
} | {
|
4853
6410
|
type: string;
|
4854
6411
|
option: string;
|