@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
@@ -30,7 +30,7 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
30
30
|
filename: string;
|
31
31
|
originalFilename: string;
|
32
32
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
33
|
-
country: z.
|
33
|
+
country: z.ZodLiteral<string>;
|
34
34
|
province: z.ZodString;
|
35
35
|
district: z.ZodString;
|
36
36
|
}, {
|
@@ -61,7 +61,7 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
61
61
|
street?: string | null | undefined;
|
62
62
|
zipCode?: string | null | undefined;
|
63
63
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
64
|
-
country: z.
|
64
|
+
country: z.ZodLiteral<string>;
|
65
65
|
province: z.ZodString;
|
66
66
|
district: z.ZodString;
|
67
67
|
}, {
|
@@ -79,6 +79,33 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
79
79
|
province: string;
|
80
80
|
urbanOrRural: "RURAL";
|
81
81
|
village?: string | null | undefined;
|
82
|
+
}>, z.ZodObject<{
|
83
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
84
|
+
state: z.ZodString;
|
85
|
+
district2: z.ZodString;
|
86
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
87
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
88
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
89
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
90
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
91
|
+
}, "strip", z.ZodTypeAny, {
|
92
|
+
country: string;
|
93
|
+
state: string;
|
94
|
+
district2: string;
|
95
|
+
cityOrTown?: string | null | undefined;
|
96
|
+
addressLine1?: string | null | undefined;
|
97
|
+
addressLine2?: string | null | undefined;
|
98
|
+
addressLine3?: string | null | undefined;
|
99
|
+
postcodeOrZip?: string | null | undefined;
|
100
|
+
}, {
|
101
|
+
country: string;
|
102
|
+
state: string;
|
103
|
+
district2: string;
|
104
|
+
cityOrTown?: string | null | undefined;
|
105
|
+
addressLine1?: string | null | undefined;
|
106
|
+
addressLine2?: string | null | undefined;
|
107
|
+
addressLine3?: string | null | undefined;
|
108
|
+
postcodeOrZip?: string | null | undefined;
|
82
109
|
}>]>>;
|
83
110
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
84
111
|
filename: z.ZodString;
|
@@ -108,7 +135,7 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
108
135
|
filename: string;
|
109
136
|
originalFilename: string;
|
110
137
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
111
|
-
country: z.
|
138
|
+
country: z.ZodLiteral<string>;
|
112
139
|
province: z.ZodString;
|
113
140
|
district: z.ZodString;
|
114
141
|
}, {
|
@@ -139,7 +166,7 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
139
166
|
street?: string | null | undefined;
|
140
167
|
zipCode?: string | null | undefined;
|
141
168
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
142
|
-
country: z.
|
169
|
+
country: z.ZodLiteral<string>;
|
143
170
|
province: z.ZodString;
|
144
171
|
district: z.ZodString;
|
145
172
|
}, {
|
@@ -157,6 +184,33 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
157
184
|
province: string;
|
158
185
|
urbanOrRural: "RURAL";
|
159
186
|
village?: string | null | undefined;
|
187
|
+
}>, z.ZodObject<{
|
188
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
189
|
+
state: z.ZodString;
|
190
|
+
district2: z.ZodString;
|
191
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
192
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
193
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
194
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
195
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
196
|
+
}, "strip", z.ZodTypeAny, {
|
197
|
+
country: string;
|
198
|
+
state: string;
|
199
|
+
district2: string;
|
200
|
+
cityOrTown?: string | null | undefined;
|
201
|
+
addressLine1?: string | null | undefined;
|
202
|
+
addressLine2?: string | null | undefined;
|
203
|
+
addressLine3?: string | null | undefined;
|
204
|
+
postcodeOrZip?: string | null | undefined;
|
205
|
+
}, {
|
206
|
+
country: string;
|
207
|
+
state: string;
|
208
|
+
district2: string;
|
209
|
+
cityOrTown?: string | null | undefined;
|
210
|
+
addressLine1?: string | null | undefined;
|
211
|
+
addressLine2?: string | null | undefined;
|
212
|
+
addressLine3?: string | null | undefined;
|
213
|
+
postcodeOrZip?: string | null | undefined;
|
160
214
|
}>]>>>;
|
161
215
|
}, "strip", z.ZodTypeAny, {
|
162
216
|
data: Record<string, string | number | boolean | {
|
@@ -179,6 +233,15 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
179
233
|
province: string;
|
180
234
|
urbanOrRural: "RURAL";
|
181
235
|
village?: string | null | undefined;
|
236
|
+
} | {
|
237
|
+
country: string;
|
238
|
+
state: string;
|
239
|
+
district2: string;
|
240
|
+
cityOrTown?: string | null | undefined;
|
241
|
+
addressLine1?: string | null | undefined;
|
242
|
+
addressLine2?: string | null | undefined;
|
243
|
+
addressLine3?: string | null | undefined;
|
244
|
+
postcodeOrZip?: string | null | undefined;
|
182
245
|
} | {
|
183
246
|
type: string;
|
184
247
|
option: string;
|
@@ -207,6 +270,15 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
207
270
|
province: string;
|
208
271
|
urbanOrRural: "RURAL";
|
209
272
|
village?: string | null | undefined;
|
273
|
+
} | {
|
274
|
+
country: string;
|
275
|
+
state: string;
|
276
|
+
district2: string;
|
277
|
+
cityOrTown?: string | null | undefined;
|
278
|
+
addressLine1?: string | null | undefined;
|
279
|
+
addressLine2?: string | null | undefined;
|
280
|
+
addressLine3?: string | null | undefined;
|
281
|
+
postcodeOrZip?: string | null | undefined;
|
210
282
|
} | {
|
211
283
|
type: string;
|
212
284
|
option: string;
|
@@ -234,6 +306,15 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
234
306
|
province: string;
|
235
307
|
urbanOrRural: "RURAL";
|
236
308
|
village?: string | null | undefined;
|
309
|
+
} | {
|
310
|
+
country: string;
|
311
|
+
state: string;
|
312
|
+
district2: string;
|
313
|
+
cityOrTown?: string | null | undefined;
|
314
|
+
addressLine1?: string | null | undefined;
|
315
|
+
addressLine2?: string | null | undefined;
|
316
|
+
addressLine3?: string | null | undefined;
|
317
|
+
postcodeOrZip?: string | null | undefined;
|
237
318
|
} | {
|
238
319
|
type: string;
|
239
320
|
option: string;
|
@@ -262,6 +343,15 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
262
343
|
province: string;
|
263
344
|
urbanOrRural: "RURAL";
|
264
345
|
village?: string | null | undefined;
|
346
|
+
} | {
|
347
|
+
country: string;
|
348
|
+
state: string;
|
349
|
+
district2: string;
|
350
|
+
cityOrTown?: string | null | undefined;
|
351
|
+
addressLine1?: string | null | undefined;
|
352
|
+
addressLine2?: string | null | undefined;
|
353
|
+
addressLine3?: string | null | undefined;
|
354
|
+
postcodeOrZip?: string | null | undefined;
|
265
355
|
} | {
|
266
356
|
type: string;
|
267
357
|
option: string;
|
@@ -300,7 +390,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
300
390
|
filename: string;
|
301
391
|
originalFilename: string;
|
302
392
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
303
|
-
country: z.
|
393
|
+
country: z.ZodLiteral<string>;
|
304
394
|
province: z.ZodString;
|
305
395
|
district: z.ZodString;
|
306
396
|
}, {
|
@@ -331,7 +421,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
331
421
|
street?: string | null | undefined;
|
332
422
|
zipCode?: string | null | undefined;
|
333
423
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
334
|
-
country: z.
|
424
|
+
country: z.ZodLiteral<string>;
|
335
425
|
province: z.ZodString;
|
336
426
|
district: z.ZodString;
|
337
427
|
}, {
|
@@ -349,6 +439,33 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
349
439
|
province: string;
|
350
440
|
urbanOrRural: "RURAL";
|
351
441
|
village?: string | null | undefined;
|
442
|
+
}>, z.ZodObject<{
|
443
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
444
|
+
state: z.ZodString;
|
445
|
+
district2: z.ZodString;
|
446
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
447
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
448
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
449
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
450
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
451
|
+
}, "strip", z.ZodTypeAny, {
|
452
|
+
country: string;
|
453
|
+
state: string;
|
454
|
+
district2: string;
|
455
|
+
cityOrTown?: string | null | undefined;
|
456
|
+
addressLine1?: string | null | undefined;
|
457
|
+
addressLine2?: string | null | undefined;
|
458
|
+
addressLine3?: string | null | undefined;
|
459
|
+
postcodeOrZip?: string | null | undefined;
|
460
|
+
}, {
|
461
|
+
country: string;
|
462
|
+
state: string;
|
463
|
+
district2: string;
|
464
|
+
cityOrTown?: string | null | undefined;
|
465
|
+
addressLine1?: string | null | undefined;
|
466
|
+
addressLine2?: string | null | undefined;
|
467
|
+
addressLine3?: string | null | undefined;
|
468
|
+
postcodeOrZip?: string | null | undefined;
|
352
469
|
}>]>>;
|
353
470
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
354
471
|
filename: z.ZodString;
|
@@ -378,7 +495,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
378
495
|
filename: string;
|
379
496
|
originalFilename: string;
|
380
497
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
381
|
-
country: z.
|
498
|
+
country: z.ZodLiteral<string>;
|
382
499
|
province: z.ZodString;
|
383
500
|
district: z.ZodString;
|
384
501
|
}, {
|
@@ -409,7 +526,7 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
409
526
|
street?: string | null | undefined;
|
410
527
|
zipCode?: string | null | undefined;
|
411
528
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
412
|
-
country: z.
|
529
|
+
country: z.ZodLiteral<string>;
|
413
530
|
province: z.ZodString;
|
414
531
|
district: z.ZodString;
|
415
532
|
}, {
|
@@ -427,6 +544,33 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
427
544
|
province: string;
|
428
545
|
urbanOrRural: "RURAL";
|
429
546
|
village?: string | null | undefined;
|
547
|
+
}>, z.ZodObject<{
|
548
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
549
|
+
state: z.ZodString;
|
550
|
+
district2: z.ZodString;
|
551
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
552
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
553
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
554
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
555
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
556
|
+
}, "strip", z.ZodTypeAny, {
|
557
|
+
country: string;
|
558
|
+
state: string;
|
559
|
+
district2: string;
|
560
|
+
cityOrTown?: string | null | undefined;
|
561
|
+
addressLine1?: string | null | undefined;
|
562
|
+
addressLine2?: string | null | undefined;
|
563
|
+
addressLine3?: string | null | undefined;
|
564
|
+
postcodeOrZip?: string | null | undefined;
|
565
|
+
}, {
|
566
|
+
country: string;
|
567
|
+
state: string;
|
568
|
+
district2: string;
|
569
|
+
cityOrTown?: string | null | undefined;
|
570
|
+
addressLine1?: string | null | undefined;
|
571
|
+
addressLine2?: string | null | undefined;
|
572
|
+
addressLine3?: string | null | undefined;
|
573
|
+
postcodeOrZip?: string | null | undefined;
|
430
574
|
}>]>>>;
|
431
575
|
}, {
|
432
576
|
type: z.ZodDefault<z.ZodLiteral<"REGISTER">>;
|
@@ -462,6 +606,15 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
462
606
|
province: string;
|
463
607
|
urbanOrRural: "RURAL";
|
464
608
|
village?: string | null | undefined;
|
609
|
+
} | {
|
610
|
+
country: string;
|
611
|
+
state: string;
|
612
|
+
district2: string;
|
613
|
+
cityOrTown?: string | null | undefined;
|
614
|
+
addressLine1?: string | null | undefined;
|
615
|
+
addressLine2?: string | null | undefined;
|
616
|
+
addressLine3?: string | null | undefined;
|
617
|
+
postcodeOrZip?: string | null | undefined;
|
465
618
|
} | {
|
466
619
|
type: string;
|
467
620
|
option: string;
|
@@ -494,6 +647,15 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
494
647
|
province: string;
|
495
648
|
urbanOrRural: "RURAL";
|
496
649
|
village?: string | null | undefined;
|
650
|
+
} | {
|
651
|
+
country: string;
|
652
|
+
state: string;
|
653
|
+
district2: string;
|
654
|
+
cityOrTown?: string | null | undefined;
|
655
|
+
addressLine1?: string | null | undefined;
|
656
|
+
addressLine2?: string | null | undefined;
|
657
|
+
addressLine3?: string | null | undefined;
|
658
|
+
postcodeOrZip?: string | null | undefined;
|
497
659
|
} | {
|
498
660
|
type: string;
|
499
661
|
option: string;
|
@@ -521,6 +683,15 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
521
683
|
province: string;
|
522
684
|
urbanOrRural: "RURAL";
|
523
685
|
village?: string | null | undefined;
|
686
|
+
} | {
|
687
|
+
country: string;
|
688
|
+
state: string;
|
689
|
+
district2: string;
|
690
|
+
cityOrTown?: string | null | undefined;
|
691
|
+
addressLine1?: string | null | undefined;
|
692
|
+
addressLine2?: string | null | undefined;
|
693
|
+
addressLine3?: string | null | undefined;
|
694
|
+
postcodeOrZip?: string | null | undefined;
|
524
695
|
} | {
|
525
696
|
type: string;
|
526
697
|
option: string;
|
@@ -554,6 +725,15 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
554
725
|
province: string;
|
555
726
|
urbanOrRural: "RURAL";
|
556
727
|
village?: string | null | undefined;
|
728
|
+
} | {
|
729
|
+
country: string;
|
730
|
+
state: string;
|
731
|
+
district2: string;
|
732
|
+
cityOrTown?: string | null | undefined;
|
733
|
+
addressLine1?: string | null | undefined;
|
734
|
+
addressLine2?: string | null | undefined;
|
735
|
+
addressLine3?: string | null | undefined;
|
736
|
+
postcodeOrZip?: string | null | undefined;
|
557
737
|
} | {
|
558
738
|
type: string;
|
559
739
|
option: string;
|
@@ -593,7 +773,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
593
773
|
filename: string;
|
594
774
|
originalFilename: string;
|
595
775
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
596
|
-
country: z.
|
776
|
+
country: z.ZodLiteral<string>;
|
597
777
|
province: z.ZodString;
|
598
778
|
district: z.ZodString;
|
599
779
|
}, {
|
@@ -624,7 +804,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
624
804
|
street?: string | null | undefined;
|
625
805
|
zipCode?: string | null | undefined;
|
626
806
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
627
|
-
country: z.
|
807
|
+
country: z.ZodLiteral<string>;
|
628
808
|
province: z.ZodString;
|
629
809
|
district: z.ZodString;
|
630
810
|
}, {
|
@@ -642,6 +822,33 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
642
822
|
province: string;
|
643
823
|
urbanOrRural: "RURAL";
|
644
824
|
village?: string | null | undefined;
|
825
|
+
}>, z.ZodObject<{
|
826
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
827
|
+
state: z.ZodString;
|
828
|
+
district2: z.ZodString;
|
829
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
830
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
831
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
832
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
833
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
834
|
+
}, "strip", z.ZodTypeAny, {
|
835
|
+
country: string;
|
836
|
+
state: string;
|
837
|
+
district2: string;
|
838
|
+
cityOrTown?: string | null | undefined;
|
839
|
+
addressLine1?: string | null | undefined;
|
840
|
+
addressLine2?: string | null | undefined;
|
841
|
+
addressLine3?: string | null | undefined;
|
842
|
+
postcodeOrZip?: string | null | undefined;
|
843
|
+
}, {
|
844
|
+
country: string;
|
845
|
+
state: string;
|
846
|
+
district2: string;
|
847
|
+
cityOrTown?: string | null | undefined;
|
848
|
+
addressLine1?: string | null | undefined;
|
849
|
+
addressLine2?: string | null | undefined;
|
850
|
+
addressLine3?: string | null | undefined;
|
851
|
+
postcodeOrZip?: string | null | undefined;
|
645
852
|
}>]>>;
|
646
853
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
647
854
|
filename: z.ZodString;
|
@@ -671,7 +878,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
671
878
|
filename: string;
|
672
879
|
originalFilename: string;
|
673
880
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
674
|
-
country: z.
|
881
|
+
country: z.ZodLiteral<string>;
|
675
882
|
province: z.ZodString;
|
676
883
|
district: z.ZodString;
|
677
884
|
}, {
|
@@ -702,7 +909,7 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
702
909
|
street?: string | null | undefined;
|
703
910
|
zipCode?: string | null | undefined;
|
704
911
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
705
|
-
country: z.
|
912
|
+
country: z.ZodLiteral<string>;
|
706
913
|
province: z.ZodString;
|
707
914
|
district: z.ZodString;
|
708
915
|
}, {
|
@@ -720,6 +927,33 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
720
927
|
province: string;
|
721
928
|
urbanOrRural: "RURAL";
|
722
929
|
village?: string | null | undefined;
|
930
|
+
}>, z.ZodObject<{
|
931
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
932
|
+
state: z.ZodString;
|
933
|
+
district2: z.ZodString;
|
934
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
935
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
936
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
937
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
938
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
939
|
+
}, "strip", z.ZodTypeAny, {
|
940
|
+
country: string;
|
941
|
+
state: string;
|
942
|
+
district2: string;
|
943
|
+
cityOrTown?: string | null | undefined;
|
944
|
+
addressLine1?: string | null | undefined;
|
945
|
+
addressLine2?: string | null | undefined;
|
946
|
+
addressLine3?: string | null | undefined;
|
947
|
+
postcodeOrZip?: string | null | undefined;
|
948
|
+
}, {
|
949
|
+
country: string;
|
950
|
+
state: string;
|
951
|
+
district2: string;
|
952
|
+
cityOrTown?: string | null | undefined;
|
953
|
+
addressLine1?: string | null | undefined;
|
954
|
+
addressLine2?: string | null | undefined;
|
955
|
+
addressLine3?: string | null | undefined;
|
956
|
+
postcodeOrZip?: string | null | undefined;
|
723
957
|
}>]>>>;
|
724
958
|
}, {
|
725
959
|
type: z.ZodDefault<z.ZodLiteral<"VALIDATE">>;
|
@@ -746,15 +980,24 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
746
980
|
province: string;
|
747
981
|
urbanOrRural: "RURAL";
|
748
982
|
village?: string | null | undefined;
|
983
|
+
} | {
|
984
|
+
country: string;
|
985
|
+
state: string;
|
986
|
+
district2: string;
|
987
|
+
cityOrTown?: string | null | undefined;
|
988
|
+
addressLine1?: string | null | undefined;
|
989
|
+
addressLine2?: string | null | undefined;
|
990
|
+
addressLine3?: string | null | undefined;
|
991
|
+
postcodeOrZip?: string | null | undefined;
|
749
992
|
} | {
|
750
993
|
type: string;
|
751
994
|
option: string;
|
752
995
|
filename: string;
|
753
996
|
originalFilename: string;
|
754
997
|
}[]>;
|
755
|
-
duplicates: string[];
|
756
998
|
eventId: string;
|
757
999
|
transactionId: string;
|
1000
|
+
duplicates: string[];
|
758
1001
|
metadata?: Record<string, string | number | boolean | {
|
759
1002
|
type: string;
|
760
1003
|
filename: string;
|
@@ -775,6 +1018,15 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
775
1018
|
province: string;
|
776
1019
|
urbanOrRural: "RURAL";
|
777
1020
|
village?: string | null | undefined;
|
1021
|
+
} | {
|
1022
|
+
country: string;
|
1023
|
+
state: string;
|
1024
|
+
district2: string;
|
1025
|
+
cityOrTown?: string | null | undefined;
|
1026
|
+
addressLine1?: string | null | undefined;
|
1027
|
+
addressLine2?: string | null | undefined;
|
1028
|
+
addressLine3?: string | null | undefined;
|
1029
|
+
postcodeOrZip?: string | null | undefined;
|
778
1030
|
} | {
|
779
1031
|
type: string;
|
780
1032
|
option: string;
|
@@ -802,15 +1054,24 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
802
1054
|
province: string;
|
803
1055
|
urbanOrRural: "RURAL";
|
804
1056
|
village?: 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
|
type: string;
|
807
1068
|
option: string;
|
808
1069
|
filename: string;
|
809
1070
|
originalFilename: string;
|
810
1071
|
}[]>;
|
811
|
-
duplicates: string[];
|
812
1072
|
eventId: string;
|
813
1073
|
transactionId: string;
|
1074
|
+
duplicates: string[];
|
814
1075
|
type?: "VALIDATE" | undefined;
|
815
1076
|
metadata?: Record<string, string | number | boolean | {
|
816
1077
|
type: string;
|
@@ -832,6 +1093,15 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
832
1093
|
province: string;
|
833
1094
|
urbanOrRural: "RURAL";
|
834
1095
|
village?: string | null | undefined;
|
1096
|
+
} | {
|
1097
|
+
country: string;
|
1098
|
+
state: string;
|
1099
|
+
district2: string;
|
1100
|
+
cityOrTown?: string | null | undefined;
|
1101
|
+
addressLine1?: string | null | undefined;
|
1102
|
+
addressLine2?: string | null | undefined;
|
1103
|
+
addressLine3?: string | null | undefined;
|
1104
|
+
postcodeOrZip?: string | null | undefined;
|
835
1105
|
} | {
|
836
1106
|
type: string;
|
837
1107
|
option: string;
|
@@ -871,7 +1141,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
871
1141
|
filename: string;
|
872
1142
|
originalFilename: string;
|
873
1143
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
874
|
-
country: z.
|
1144
|
+
country: z.ZodLiteral<string>;
|
875
1145
|
province: z.ZodString;
|
876
1146
|
district: z.ZodString;
|
877
1147
|
}, {
|
@@ -902,7 +1172,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
902
1172
|
street?: string | null | undefined;
|
903
1173
|
zipCode?: string | null | undefined;
|
904
1174
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
905
|
-
country: z.
|
1175
|
+
country: z.ZodLiteral<string>;
|
906
1176
|
province: z.ZodString;
|
907
1177
|
district: z.ZodString;
|
908
1178
|
}, {
|
@@ -920,6 +1190,33 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
920
1190
|
province: string;
|
921
1191
|
urbanOrRural: "RURAL";
|
922
1192
|
village?: string | null | undefined;
|
1193
|
+
}>, z.ZodObject<{
|
1194
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
1195
|
+
state: z.ZodString;
|
1196
|
+
district2: z.ZodString;
|
1197
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1198
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1199
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1200
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1201
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1202
|
+
}, "strip", z.ZodTypeAny, {
|
1203
|
+
country: string;
|
1204
|
+
state: string;
|
1205
|
+
district2: string;
|
1206
|
+
cityOrTown?: string | null | undefined;
|
1207
|
+
addressLine1?: string | null | undefined;
|
1208
|
+
addressLine2?: string | null | undefined;
|
1209
|
+
addressLine3?: string | null | undefined;
|
1210
|
+
postcodeOrZip?: string | null | undefined;
|
1211
|
+
}, {
|
1212
|
+
country: string;
|
1213
|
+
state: string;
|
1214
|
+
district2: string;
|
1215
|
+
cityOrTown?: string | null | undefined;
|
1216
|
+
addressLine1?: string | null | undefined;
|
1217
|
+
addressLine2?: string | null | undefined;
|
1218
|
+
addressLine3?: string | null | undefined;
|
1219
|
+
postcodeOrZip?: string | null | undefined;
|
923
1220
|
}>]>>;
|
924
1221
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
925
1222
|
filename: z.ZodString;
|
@@ -949,7 +1246,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
949
1246
|
filename: string;
|
950
1247
|
originalFilename: string;
|
951
1248
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
952
|
-
country: z.
|
1249
|
+
country: z.ZodLiteral<string>;
|
953
1250
|
province: z.ZodString;
|
954
1251
|
district: z.ZodString;
|
955
1252
|
}, {
|
@@ -980,7 +1277,7 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
980
1277
|
street?: string | null | undefined;
|
981
1278
|
zipCode?: string | null | undefined;
|
982
1279
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
983
|
-
country: z.
|
1280
|
+
country: z.ZodLiteral<string>;
|
984
1281
|
province: z.ZodString;
|
985
1282
|
district: z.ZodString;
|
986
1283
|
}, {
|
@@ -998,6 +1295,33 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
998
1295
|
province: string;
|
999
1296
|
urbanOrRural: "RURAL";
|
1000
1297
|
village?: string | null | undefined;
|
1298
|
+
}>, z.ZodObject<{
|
1299
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
1300
|
+
state: z.ZodString;
|
1301
|
+
district2: z.ZodString;
|
1302
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1303
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1304
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1305
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1306
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1307
|
+
}, "strip", z.ZodTypeAny, {
|
1308
|
+
country: string;
|
1309
|
+
state: string;
|
1310
|
+
district2: string;
|
1311
|
+
cityOrTown?: string | null | undefined;
|
1312
|
+
addressLine1?: string | null | undefined;
|
1313
|
+
addressLine2?: string | null | undefined;
|
1314
|
+
addressLine3?: string | null | undefined;
|
1315
|
+
postcodeOrZip?: string | null | undefined;
|
1316
|
+
}, {
|
1317
|
+
country: string;
|
1318
|
+
state: string;
|
1319
|
+
district2: string;
|
1320
|
+
cityOrTown?: string | null | undefined;
|
1321
|
+
addressLine1?: string | null | undefined;
|
1322
|
+
addressLine2?: string | null | undefined;
|
1323
|
+
addressLine3?: string | null | undefined;
|
1324
|
+
postcodeOrZip?: string | null | undefined;
|
1001
1325
|
}>]>>>;
|
1002
1326
|
}, {
|
1003
1327
|
type: z.ZodDefault<z.ZodLiteral<"NOTIFY">>;
|
@@ -1023,6 +1347,15 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1023
1347
|
province: string;
|
1024
1348
|
urbanOrRural: "RURAL";
|
1025
1349
|
village?: string | null | undefined;
|
1350
|
+
} | {
|
1351
|
+
country: string;
|
1352
|
+
state: string;
|
1353
|
+
district2: string;
|
1354
|
+
cityOrTown?: string | null | undefined;
|
1355
|
+
addressLine1?: string | null | undefined;
|
1356
|
+
addressLine2?: string | null | undefined;
|
1357
|
+
addressLine3?: string | null | undefined;
|
1358
|
+
postcodeOrZip?: string | null | undefined;
|
1026
1359
|
} | {
|
1027
1360
|
type: string;
|
1028
1361
|
option: string;
|
@@ -1051,6 +1384,15 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1051
1384
|
province: string;
|
1052
1385
|
urbanOrRural: "RURAL";
|
1053
1386
|
village?: string | null | undefined;
|
1387
|
+
} | {
|
1388
|
+
country: string;
|
1389
|
+
state: string;
|
1390
|
+
district2: string;
|
1391
|
+
cityOrTown?: string | null | undefined;
|
1392
|
+
addressLine1?: string | null | undefined;
|
1393
|
+
addressLine2?: string | null | undefined;
|
1394
|
+
addressLine3?: string | null | undefined;
|
1395
|
+
postcodeOrZip?: string | null | undefined;
|
1054
1396
|
} | {
|
1055
1397
|
type: string;
|
1056
1398
|
option: string;
|
@@ -1078,6 +1420,15 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1078
1420
|
province: string;
|
1079
1421
|
urbanOrRural: "RURAL";
|
1080
1422
|
village?: string | null | undefined;
|
1423
|
+
} | {
|
1424
|
+
country: string;
|
1425
|
+
state: string;
|
1426
|
+
district2: string;
|
1427
|
+
cityOrTown?: string | null | undefined;
|
1428
|
+
addressLine1?: string | null | undefined;
|
1429
|
+
addressLine2?: string | null | undefined;
|
1430
|
+
addressLine3?: string | null | undefined;
|
1431
|
+
postcodeOrZip?: string | null | undefined;
|
1081
1432
|
} | {
|
1082
1433
|
type: string;
|
1083
1434
|
option: string;
|
@@ -1107,6 +1458,15 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1107
1458
|
province: string;
|
1108
1459
|
urbanOrRural: "RURAL";
|
1109
1460
|
village?: string | null | undefined;
|
1461
|
+
} | {
|
1462
|
+
country: string;
|
1463
|
+
state: string;
|
1464
|
+
district2: string;
|
1465
|
+
cityOrTown?: string | null | undefined;
|
1466
|
+
addressLine1?: string | null | undefined;
|
1467
|
+
addressLine2?: string | null | undefined;
|
1468
|
+
addressLine3?: string | null | undefined;
|
1469
|
+
postcodeOrZip?: string | null | undefined;
|
1110
1470
|
} | {
|
1111
1471
|
type: string;
|
1112
1472
|
option: string;
|
@@ -1146,7 +1506,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1146
1506
|
filename: string;
|
1147
1507
|
originalFilename: string;
|
1148
1508
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1149
|
-
country: z.
|
1509
|
+
country: z.ZodLiteral<string>;
|
1150
1510
|
province: z.ZodString;
|
1151
1511
|
district: z.ZodString;
|
1152
1512
|
}, {
|
@@ -1177,7 +1537,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1177
1537
|
street?: string | null | undefined;
|
1178
1538
|
zipCode?: string | null | undefined;
|
1179
1539
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1180
|
-
country: z.
|
1540
|
+
country: z.ZodLiteral<string>;
|
1181
1541
|
province: z.ZodString;
|
1182
1542
|
district: z.ZodString;
|
1183
1543
|
}, {
|
@@ -1195,6 +1555,33 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1195
1555
|
province: string;
|
1196
1556
|
urbanOrRural: "RURAL";
|
1197
1557
|
village?: string | null | undefined;
|
1558
|
+
}>, z.ZodObject<{
|
1559
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
1560
|
+
state: z.ZodString;
|
1561
|
+
district2: z.ZodString;
|
1562
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1563
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1564
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1565
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1566
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1567
|
+
}, "strip", z.ZodTypeAny, {
|
1568
|
+
country: string;
|
1569
|
+
state: string;
|
1570
|
+
district2: string;
|
1571
|
+
cityOrTown?: string | null | undefined;
|
1572
|
+
addressLine1?: string | null | undefined;
|
1573
|
+
addressLine2?: string | null | undefined;
|
1574
|
+
addressLine3?: string | null | undefined;
|
1575
|
+
postcodeOrZip?: 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
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1200
1587
|
filename: z.ZodString;
|
@@ -1224,7 +1611,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1224
1611
|
filename: string;
|
1225
1612
|
originalFilename: string;
|
1226
1613
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1227
|
-
country: z.
|
1614
|
+
country: z.ZodLiteral<string>;
|
1228
1615
|
province: z.ZodString;
|
1229
1616
|
district: z.ZodString;
|
1230
1617
|
}, {
|
@@ -1255,7 +1642,7 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1255
1642
|
street?: string | null | undefined;
|
1256
1643
|
zipCode?: string | null | undefined;
|
1257
1644
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1258
|
-
country: z.
|
1645
|
+
country: z.ZodLiteral<string>;
|
1259
1646
|
province: z.ZodString;
|
1260
1647
|
district: z.ZodString;
|
1261
1648
|
}, {
|
@@ -1273,6 +1660,33 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1273
1660
|
province: string;
|
1274
1661
|
urbanOrRural: "RURAL";
|
1275
1662
|
village?: string | null | undefined;
|
1663
|
+
}>, z.ZodObject<{
|
1664
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
1665
|
+
state: z.ZodString;
|
1666
|
+
district2: z.ZodString;
|
1667
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1668
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1669
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1670
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1671
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1672
|
+
}, "strip", z.ZodTypeAny, {
|
1673
|
+
country: string;
|
1674
|
+
state: string;
|
1675
|
+
district2: string;
|
1676
|
+
cityOrTown?: string | null | undefined;
|
1677
|
+
addressLine1?: string | null | undefined;
|
1678
|
+
addressLine2?: string | null | undefined;
|
1679
|
+
addressLine3?: string | null | undefined;
|
1680
|
+
postcodeOrZip?: string | null | undefined;
|
1681
|
+
}, {
|
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;
|
1276
1690
|
}>]>>>;
|
1277
1691
|
}, {
|
1278
1692
|
type: z.ZodDefault<z.ZodLiteral<"DECLARE">>;
|
@@ -1298,6 +1712,15 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1298
1712
|
province: string;
|
1299
1713
|
urbanOrRural: "RURAL";
|
1300
1714
|
village?: string | null | undefined;
|
1715
|
+
} | {
|
1716
|
+
country: string;
|
1717
|
+
state: string;
|
1718
|
+
district2: string;
|
1719
|
+
cityOrTown?: string | null | undefined;
|
1720
|
+
addressLine1?: string | null | undefined;
|
1721
|
+
addressLine2?: string | null | undefined;
|
1722
|
+
addressLine3?: string | null | undefined;
|
1723
|
+
postcodeOrZip?: string | null | undefined;
|
1301
1724
|
} | {
|
1302
1725
|
type: string;
|
1303
1726
|
option: string;
|
@@ -1326,6 +1749,15 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1326
1749
|
province: string;
|
1327
1750
|
urbanOrRural: "RURAL";
|
1328
1751
|
village?: string | null | undefined;
|
1752
|
+
} | {
|
1753
|
+
country: string;
|
1754
|
+
state: string;
|
1755
|
+
district2: string;
|
1756
|
+
cityOrTown?: string | null | undefined;
|
1757
|
+
addressLine1?: string | null | undefined;
|
1758
|
+
addressLine2?: string | null | undefined;
|
1759
|
+
addressLine3?: string | null | undefined;
|
1760
|
+
postcodeOrZip?: string | null | undefined;
|
1329
1761
|
} | {
|
1330
1762
|
type: string;
|
1331
1763
|
option: string;
|
@@ -1353,6 +1785,15 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1353
1785
|
province: string;
|
1354
1786
|
urbanOrRural: "RURAL";
|
1355
1787
|
village?: string | null | undefined;
|
1788
|
+
} | {
|
1789
|
+
country: string;
|
1790
|
+
state: string;
|
1791
|
+
district2: string;
|
1792
|
+
cityOrTown?: string | null | undefined;
|
1793
|
+
addressLine1?: string | null | undefined;
|
1794
|
+
addressLine2?: string | null | undefined;
|
1795
|
+
addressLine3?: string | null | undefined;
|
1796
|
+
postcodeOrZip?: string | null | undefined;
|
1356
1797
|
} | {
|
1357
1798
|
type: string;
|
1358
1799
|
option: string;
|
@@ -1382,6 +1823,15 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1382
1823
|
province: string;
|
1383
1824
|
urbanOrRural: "RURAL";
|
1384
1825
|
village?: string | null | undefined;
|
1826
|
+
} | {
|
1827
|
+
country: string;
|
1828
|
+
state: string;
|
1829
|
+
district2: string;
|
1830
|
+
cityOrTown?: string | null | undefined;
|
1831
|
+
addressLine1?: string | null | undefined;
|
1832
|
+
addressLine2?: string | null | undefined;
|
1833
|
+
addressLine3?: string | null | undefined;
|
1834
|
+
postcodeOrZip?: string | null | undefined;
|
1385
1835
|
} | {
|
1386
1836
|
type: string;
|
1387
1837
|
option: string;
|
@@ -1420,7 +1870,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
1420
1870
|
filename: string;
|
1421
1871
|
originalFilename: string;
|
1422
1872
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1423
|
-
country: z.
|
1873
|
+
country: z.ZodLiteral<string>;
|
1424
1874
|
province: z.ZodString;
|
1425
1875
|
district: z.ZodString;
|
1426
1876
|
}, {
|
@@ -1451,7 +1901,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
1451
1901
|
street?: string | null | undefined;
|
1452
1902
|
zipCode?: string | null | undefined;
|
1453
1903
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1454
|
-
country: z.
|
1904
|
+
country: z.ZodLiteral<string>;
|
1455
1905
|
province: z.ZodString;
|
1456
1906
|
district: z.ZodString;
|
1457
1907
|
}, {
|
@@ -1469,6 +1919,33 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
1469
1919
|
province: string;
|
1470
1920
|
urbanOrRural: "RURAL";
|
1471
1921
|
village?: string | null | undefined;
|
1922
|
+
}>, z.ZodObject<{
|
1923
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
1924
|
+
state: z.ZodString;
|
1925
|
+
district2: z.ZodString;
|
1926
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1927
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1928
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1929
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1930
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1931
|
+
}, "strip", z.ZodTypeAny, {
|
1932
|
+
country: string;
|
1933
|
+
state: string;
|
1934
|
+
district2: string;
|
1935
|
+
cityOrTown?: string | null | undefined;
|
1936
|
+
addressLine1?: string | null | undefined;
|
1937
|
+
addressLine2?: string | null | undefined;
|
1938
|
+
addressLine3?: string | null | undefined;
|
1939
|
+
postcodeOrZip?: string | null | undefined;
|
1940
|
+
}, {
|
1941
|
+
country: string;
|
1942
|
+
state: string;
|
1943
|
+
district2: string;
|
1944
|
+
cityOrTown?: string | null | undefined;
|
1945
|
+
addressLine1?: string | null | undefined;
|
1946
|
+
addressLine2?: string | null | undefined;
|
1947
|
+
addressLine3?: string | null | undefined;
|
1948
|
+
postcodeOrZip?: string | null | undefined;
|
1472
1949
|
}>]>>;
|
1473
1950
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1474
1951
|
filename: z.ZodString;
|
@@ -1498,7 +1975,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
1498
1975
|
filename: string;
|
1499
1976
|
originalFilename: string;
|
1500
1977
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1501
|
-
country: z.
|
1978
|
+
country: z.ZodLiteral<string>;
|
1502
1979
|
province: z.ZodString;
|
1503
1980
|
district: z.ZodString;
|
1504
1981
|
}, {
|
@@ -1529,7 +2006,7 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
1529
2006
|
street?: string | null | undefined;
|
1530
2007
|
zipCode?: string | null | undefined;
|
1531
2008
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1532
|
-
country: z.
|
2009
|
+
country: z.ZodLiteral<string>;
|
1533
2010
|
province: z.ZodString;
|
1534
2011
|
district: z.ZodString;
|
1535
2012
|
}, {
|
@@ -1547,6 +2024,33 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
1547
2024
|
province: string;
|
1548
2025
|
urbanOrRural: "RURAL";
|
1549
2026
|
village?: string | null | undefined;
|
2027
|
+
}>, z.ZodObject<{
|
2028
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
2029
|
+
state: z.ZodString;
|
2030
|
+
district2: z.ZodString;
|
2031
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2032
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2033
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2034
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2035
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2036
|
+
}, "strip", z.ZodTypeAny, {
|
2037
|
+
country: string;
|
2038
|
+
state: string;
|
2039
|
+
district2: string;
|
2040
|
+
cityOrTown?: string | null | undefined;
|
2041
|
+
addressLine1?: string | null | undefined;
|
2042
|
+
addressLine2?: string | null | undefined;
|
2043
|
+
addressLine3?: string | null | undefined;
|
2044
|
+
postcodeOrZip?: string | null | undefined;
|
2045
|
+
}, {
|
2046
|
+
country: string;
|
2047
|
+
state: string;
|
2048
|
+
district2: string;
|
2049
|
+
cityOrTown?: string | null | undefined;
|
2050
|
+
addressLine1?: string | null | undefined;
|
2051
|
+
addressLine2?: string | null | undefined;
|
2052
|
+
addressLine3?: string | null | undefined;
|
2053
|
+
postcodeOrZip?: string | null | undefined;
|
1550
2054
|
}>]>>>;
|
1551
2055
|
}, {
|
1552
2056
|
type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
|
@@ -1572,6 +2076,15 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
1572
2076
|
province: string;
|
1573
2077
|
urbanOrRural: "RURAL";
|
1574
2078
|
village?: string | null | undefined;
|
2079
|
+
} | {
|
2080
|
+
country: string;
|
2081
|
+
state: string;
|
2082
|
+
district2: string;
|
2083
|
+
cityOrTown?: string | null | undefined;
|
2084
|
+
addressLine1?: string | null | undefined;
|
2085
|
+
addressLine2?: string | null | undefined;
|
2086
|
+
addressLine3?: string | null | undefined;
|
2087
|
+
postcodeOrZip?: string | null | undefined;
|
1575
2088
|
} | {
|
1576
2089
|
type: string;
|
1577
2090
|
option: string;
|
@@ -1600,6 +2113,15 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
1600
2113
|
province: string;
|
1601
2114
|
urbanOrRural: "RURAL";
|
1602
2115
|
village?: string | null | undefined;
|
2116
|
+
} | {
|
2117
|
+
country: string;
|
2118
|
+
state: string;
|
2119
|
+
district2: string;
|
2120
|
+
cityOrTown?: string | null | undefined;
|
2121
|
+
addressLine1?: string | null | undefined;
|
2122
|
+
addressLine2?: string | null | undefined;
|
2123
|
+
addressLine3?: string | null | undefined;
|
2124
|
+
postcodeOrZip?: string | null | undefined;
|
1603
2125
|
} | {
|
1604
2126
|
type: string;
|
1605
2127
|
option: string;
|
@@ -1627,6 +2149,15 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
1627
2149
|
province: string;
|
1628
2150
|
urbanOrRural: "RURAL";
|
1629
2151
|
village?: string | null | undefined;
|
2152
|
+
} | {
|
2153
|
+
country: string;
|
2154
|
+
state: string;
|
2155
|
+
district2: string;
|
2156
|
+
cityOrTown?: string | null | undefined;
|
2157
|
+
addressLine1?: string | null | undefined;
|
2158
|
+
addressLine2?: string | null | undefined;
|
2159
|
+
addressLine3?: string | null | undefined;
|
2160
|
+
postcodeOrZip?: string | null | undefined;
|
1630
2161
|
} | {
|
1631
2162
|
type: string;
|
1632
2163
|
option: string;
|
@@ -1656,6 +2187,15 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
1656
2187
|
province: string;
|
1657
2188
|
urbanOrRural: "RURAL";
|
1658
2189
|
village?: string | null | undefined;
|
2190
|
+
} | {
|
2191
|
+
country: string;
|
2192
|
+
state: string;
|
2193
|
+
district2: string;
|
2194
|
+
cityOrTown?: string | null | undefined;
|
2195
|
+
addressLine1?: string | null | undefined;
|
2196
|
+
addressLine2?: string | null | undefined;
|
2197
|
+
addressLine3?: string | null | undefined;
|
2198
|
+
postcodeOrZip?: string | null | undefined;
|
1659
2199
|
} | {
|
1660
2200
|
type: string;
|
1661
2201
|
option: string;
|
@@ -1695,7 +2235,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
1695
2235
|
filename: string;
|
1696
2236
|
originalFilename: string;
|
1697
2237
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1698
|
-
country: z.
|
2238
|
+
country: z.ZodLiteral<string>;
|
1699
2239
|
province: z.ZodString;
|
1700
2240
|
district: z.ZodString;
|
1701
2241
|
}, {
|
@@ -1726,7 +2266,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
1726
2266
|
street?: string | null | undefined;
|
1727
2267
|
zipCode?: string | null | undefined;
|
1728
2268
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1729
|
-
country: z.
|
2269
|
+
country: z.ZodLiteral<string>;
|
1730
2270
|
province: z.ZodString;
|
1731
2271
|
district: z.ZodString;
|
1732
2272
|
}, {
|
@@ -1744,6 +2284,33 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
1744
2284
|
province: string;
|
1745
2285
|
urbanOrRural: "RURAL";
|
1746
2286
|
village?: string | null | undefined;
|
2287
|
+
}>, z.ZodObject<{
|
2288
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
2289
|
+
state: z.ZodString;
|
2290
|
+
district2: z.ZodString;
|
2291
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2292
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2293
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2294
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2295
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2296
|
+
}, "strip", z.ZodTypeAny, {
|
2297
|
+
country: string;
|
2298
|
+
state: string;
|
2299
|
+
district2: string;
|
2300
|
+
cityOrTown?: string | null | undefined;
|
2301
|
+
addressLine1?: string | null | undefined;
|
2302
|
+
addressLine2?: string | null | undefined;
|
2303
|
+
addressLine3?: string | null | undefined;
|
2304
|
+
postcodeOrZip?: string | null | undefined;
|
2305
|
+
}, {
|
2306
|
+
country: string;
|
2307
|
+
state: string;
|
2308
|
+
district2: string;
|
2309
|
+
cityOrTown?: string | null | undefined;
|
2310
|
+
addressLine1?: string | null | undefined;
|
2311
|
+
addressLine2?: string | null | undefined;
|
2312
|
+
addressLine3?: string | null | undefined;
|
2313
|
+
postcodeOrZip?: string | null | undefined;
|
1747
2314
|
}>]>>;
|
1748
2315
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1749
2316
|
filename: z.ZodString;
|
@@ -1773,7 +2340,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
1773
2340
|
filename: string;
|
1774
2341
|
originalFilename: string;
|
1775
2342
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1776
|
-
country: z.
|
2343
|
+
country: z.ZodLiteral<string>;
|
1777
2344
|
province: z.ZodString;
|
1778
2345
|
district: z.ZodString;
|
1779
2346
|
}, {
|
@@ -1804,7 +2371,7 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
1804
2371
|
street?: string | null | undefined;
|
1805
2372
|
zipCode?: string | null | undefined;
|
1806
2373
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1807
|
-
country: z.
|
2374
|
+
country: z.ZodLiteral<string>;
|
1808
2375
|
province: z.ZodString;
|
1809
2376
|
district: z.ZodString;
|
1810
2377
|
}, {
|
@@ -1822,6 +2389,33 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
1822
2389
|
province: string;
|
1823
2390
|
urbanOrRural: "RURAL";
|
1824
2391
|
village?: string | null | undefined;
|
2392
|
+
}>, z.ZodObject<{
|
2393
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
2394
|
+
state: z.ZodString;
|
2395
|
+
district2: z.ZodString;
|
2396
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2397
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2398
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2399
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2400
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2401
|
+
}, "strip", z.ZodTypeAny, {
|
2402
|
+
country: string;
|
2403
|
+
state: string;
|
2404
|
+
district2: string;
|
2405
|
+
cityOrTown?: string | null | undefined;
|
2406
|
+
addressLine1?: string | null | undefined;
|
2407
|
+
addressLine2?: string | null | undefined;
|
2408
|
+
addressLine3?: string | null | undefined;
|
2409
|
+
postcodeOrZip?: string | null | undefined;
|
2410
|
+
}, {
|
2411
|
+
country: string;
|
2412
|
+
state: string;
|
2413
|
+
district2: string;
|
2414
|
+
cityOrTown?: string | null | undefined;
|
2415
|
+
addressLine1?: string | null | undefined;
|
2416
|
+
addressLine2?: string | null | undefined;
|
2417
|
+
addressLine3?: string | null | undefined;
|
2418
|
+
postcodeOrZip?: string | null | undefined;
|
1825
2419
|
}>]>>>;
|
1826
2420
|
}, {
|
1827
2421
|
type: z.ZodDefault<z.ZodLiteral<"REJECT">>;
|
@@ -1847,6 +2441,15 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
1847
2441
|
province: string;
|
1848
2442
|
urbanOrRural: "RURAL";
|
1849
2443
|
village?: string | null | undefined;
|
2444
|
+
} | {
|
2445
|
+
country: string;
|
2446
|
+
state: string;
|
2447
|
+
district2: string;
|
2448
|
+
cityOrTown?: string | null | undefined;
|
2449
|
+
addressLine1?: string | null | undefined;
|
2450
|
+
addressLine2?: string | null | undefined;
|
2451
|
+
addressLine3?: string | null | undefined;
|
2452
|
+
postcodeOrZip?: string | null | undefined;
|
1850
2453
|
} | {
|
1851
2454
|
type: string;
|
1852
2455
|
option: string;
|
@@ -1875,6 +2478,15 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
1875
2478
|
province: string;
|
1876
2479
|
urbanOrRural: "RURAL";
|
1877
2480
|
village?: string | null | undefined;
|
2481
|
+
} | {
|
2482
|
+
country: string;
|
2483
|
+
state: string;
|
2484
|
+
district2: string;
|
2485
|
+
cityOrTown?: string | null | undefined;
|
2486
|
+
addressLine1?: string | null | undefined;
|
2487
|
+
addressLine2?: string | null | undefined;
|
2488
|
+
addressLine3?: string | null | undefined;
|
2489
|
+
postcodeOrZip?: string | null | undefined;
|
1878
2490
|
} | {
|
1879
2491
|
type: string;
|
1880
2492
|
option: string;
|
@@ -1902,6 +2514,15 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
1902
2514
|
province: string;
|
1903
2515
|
urbanOrRural: "RURAL";
|
1904
2516
|
village?: string | null | undefined;
|
2517
|
+
} | {
|
2518
|
+
country: string;
|
2519
|
+
state: string;
|
2520
|
+
district2: string;
|
2521
|
+
cityOrTown?: string | null | undefined;
|
2522
|
+
addressLine1?: string | null | undefined;
|
2523
|
+
addressLine2?: string | null | undefined;
|
2524
|
+
addressLine3?: string | null | undefined;
|
2525
|
+
postcodeOrZip?: string | null | undefined;
|
1905
2526
|
} | {
|
1906
2527
|
type: string;
|
1907
2528
|
option: string;
|
@@ -1931,6 +2552,15 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
1931
2552
|
province: string;
|
1932
2553
|
urbanOrRural: "RURAL";
|
1933
2554
|
village?: string | null | undefined;
|
2555
|
+
} | {
|
2556
|
+
country: string;
|
2557
|
+
state: string;
|
2558
|
+
district2: string;
|
2559
|
+
cityOrTown?: string | null | undefined;
|
2560
|
+
addressLine1?: string | null | undefined;
|
2561
|
+
addressLine2?: string | null | undefined;
|
2562
|
+
addressLine3?: string | null | undefined;
|
2563
|
+
postcodeOrZip?: string | null | undefined;
|
1934
2564
|
} | {
|
1935
2565
|
type: string;
|
1936
2566
|
option: string;
|
@@ -1970,7 +2600,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
1970
2600
|
filename: string;
|
1971
2601
|
originalFilename: string;
|
1972
2602
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1973
|
-
country: z.
|
2603
|
+
country: z.ZodLiteral<string>;
|
1974
2604
|
province: z.ZodString;
|
1975
2605
|
district: z.ZodString;
|
1976
2606
|
}, {
|
@@ -2001,7 +2631,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
2001
2631
|
street?: string | null | undefined;
|
2002
2632
|
zipCode?: string | null | undefined;
|
2003
2633
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2004
|
-
country: z.
|
2634
|
+
country: z.ZodLiteral<string>;
|
2005
2635
|
province: z.ZodString;
|
2006
2636
|
district: z.ZodString;
|
2007
2637
|
}, {
|
@@ -2019,6 +2649,33 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
2019
2649
|
province: string;
|
2020
2650
|
urbanOrRural: "RURAL";
|
2021
2651
|
village?: string | null | undefined;
|
2652
|
+
}>, z.ZodObject<{
|
2653
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
2654
|
+
state: z.ZodString;
|
2655
|
+
district2: z.ZodString;
|
2656
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2657
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2658
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2659
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2660
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2661
|
+
}, "strip", z.ZodTypeAny, {
|
2662
|
+
country: string;
|
2663
|
+
state: string;
|
2664
|
+
district2: string;
|
2665
|
+
cityOrTown?: string | null | undefined;
|
2666
|
+
addressLine1?: string | null | undefined;
|
2667
|
+
addressLine2?: string | null | undefined;
|
2668
|
+
addressLine3?: string | null | undefined;
|
2669
|
+
postcodeOrZip?: string | null | undefined;
|
2670
|
+
}, {
|
2671
|
+
country: string;
|
2672
|
+
state: string;
|
2673
|
+
district2: string;
|
2674
|
+
cityOrTown?: string | null | undefined;
|
2675
|
+
addressLine1?: string | null | undefined;
|
2676
|
+
addressLine2?: string | null | undefined;
|
2677
|
+
addressLine3?: string | null | undefined;
|
2678
|
+
postcodeOrZip?: string | null | undefined;
|
2022
2679
|
}>]>>;
|
2023
2680
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2024
2681
|
filename: z.ZodString;
|
@@ -2048,7 +2705,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
2048
2705
|
filename: string;
|
2049
2706
|
originalFilename: string;
|
2050
2707
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2051
|
-
country: z.
|
2708
|
+
country: z.ZodLiteral<string>;
|
2052
2709
|
province: z.ZodString;
|
2053
2710
|
district: z.ZodString;
|
2054
2711
|
}, {
|
@@ -2079,7 +2736,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
2079
2736
|
street?: string | null | undefined;
|
2080
2737
|
zipCode?: string | null | undefined;
|
2081
2738
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2082
|
-
country: z.
|
2739
|
+
country: z.ZodLiteral<string>;
|
2083
2740
|
province: z.ZodString;
|
2084
2741
|
district: z.ZodString;
|
2085
2742
|
}, {
|
@@ -2097,6 +2754,33 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
2097
2754
|
province: string;
|
2098
2755
|
urbanOrRural: "RURAL";
|
2099
2756
|
village?: string | null | undefined;
|
2757
|
+
}>, z.ZodObject<{
|
2758
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
2759
|
+
state: z.ZodString;
|
2760
|
+
district2: z.ZodString;
|
2761
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2762
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2763
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2764
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2765
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2766
|
+
}, "strip", z.ZodTypeAny, {
|
2767
|
+
country: string;
|
2768
|
+
state: string;
|
2769
|
+
district2: string;
|
2770
|
+
cityOrTown?: string | null | undefined;
|
2771
|
+
addressLine1?: string | null | undefined;
|
2772
|
+
addressLine2?: string | null | undefined;
|
2773
|
+
addressLine3?: string | null | undefined;
|
2774
|
+
postcodeOrZip?: string | null | undefined;
|
2775
|
+
}, {
|
2776
|
+
country: string;
|
2777
|
+
state: string;
|
2778
|
+
district2: string;
|
2779
|
+
cityOrTown?: string | null | undefined;
|
2780
|
+
addressLine1?: string | null | undefined;
|
2781
|
+
addressLine2?: string | null | undefined;
|
2782
|
+
addressLine3?: string | null | undefined;
|
2783
|
+
postcodeOrZip?: string | null | undefined;
|
2100
2784
|
}>]>>>;
|
2101
2785
|
}, {
|
2102
2786
|
type: z.ZodDefault<z.ZodLiteral<"MARKED_AS_DUPLICATE">>;
|
@@ -2122,6 +2806,15 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
2122
2806
|
province: string;
|
2123
2807
|
urbanOrRural: "RURAL";
|
2124
2808
|
village?: string | null | undefined;
|
2809
|
+
} | {
|
2810
|
+
country: string;
|
2811
|
+
state: string;
|
2812
|
+
district2: string;
|
2813
|
+
cityOrTown?: string | null | undefined;
|
2814
|
+
addressLine1?: string | null | undefined;
|
2815
|
+
addressLine2?: string | null | undefined;
|
2816
|
+
addressLine3?: string | null | undefined;
|
2817
|
+
postcodeOrZip?: string | null | undefined;
|
2125
2818
|
} | {
|
2126
2819
|
type: string;
|
2127
2820
|
option: string;
|
@@ -2150,6 +2843,15 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
2150
2843
|
province: string;
|
2151
2844
|
urbanOrRural: "RURAL";
|
2152
2845
|
village?: string | null | undefined;
|
2846
|
+
} | {
|
2847
|
+
country: string;
|
2848
|
+
state: string;
|
2849
|
+
district2: string;
|
2850
|
+
cityOrTown?: string | null | undefined;
|
2851
|
+
addressLine1?: string | null | undefined;
|
2852
|
+
addressLine2?: string | null | undefined;
|
2853
|
+
addressLine3?: string | null | undefined;
|
2854
|
+
postcodeOrZip?: string | null | undefined;
|
2153
2855
|
} | {
|
2154
2856
|
type: string;
|
2155
2857
|
option: string;
|
@@ -2177,6 +2879,15 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
2177
2879
|
province: string;
|
2178
2880
|
urbanOrRural: "RURAL";
|
2179
2881
|
village?: string | null | undefined;
|
2882
|
+
} | {
|
2883
|
+
country: string;
|
2884
|
+
state: string;
|
2885
|
+
district2: string;
|
2886
|
+
cityOrTown?: string | null | undefined;
|
2887
|
+
addressLine1?: string | null | undefined;
|
2888
|
+
addressLine2?: string | null | undefined;
|
2889
|
+
addressLine3?: string | null | undefined;
|
2890
|
+
postcodeOrZip?: string | null | undefined;
|
2180
2891
|
} | {
|
2181
2892
|
type: string;
|
2182
2893
|
option: string;
|
@@ -2206,6 +2917,15 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
2206
2917
|
province: string;
|
2207
2918
|
urbanOrRural: "RURAL";
|
2208
2919
|
village?: string | null | undefined;
|
2920
|
+
} | {
|
2921
|
+
country: string;
|
2922
|
+
state: string;
|
2923
|
+
district2: string;
|
2924
|
+
cityOrTown?: string | null | undefined;
|
2925
|
+
addressLine1?: string | null | undefined;
|
2926
|
+
addressLine2?: string | null | undefined;
|
2927
|
+
addressLine3?: string | null | undefined;
|
2928
|
+
postcodeOrZip?: string | null | undefined;
|
2209
2929
|
} | {
|
2210
2930
|
type: string;
|
2211
2931
|
option: string;
|
@@ -2214,7 +2934,7 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
2214
2934
|
}[]> | undefined;
|
2215
2935
|
}>;
|
2216
2936
|
export type MarkedAsDuplicateActionInput = z.infer<typeof MarkedAsDuplicateActionInput>;
|
2217
|
-
export declare const
|
2937
|
+
export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
2218
2938
|
eventId: z.ZodString;
|
2219
2939
|
transactionId: z.ZodString;
|
2220
2940
|
data: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -2245,7 +2965,7 @@ export declare const ArchivedActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2245
2965
|
filename: string;
|
2246
2966
|
originalFilename: string;
|
2247
2967
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2248
|
-
country: z.
|
2968
|
+
country: z.ZodLiteral<string>;
|
2249
2969
|
province: z.ZodString;
|
2250
2970
|
district: z.ZodString;
|
2251
2971
|
}, {
|
@@ -2276,7 +2996,7 @@ export declare const ArchivedActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2276
2996
|
street?: string | null | undefined;
|
2277
2997
|
zipCode?: string | null | undefined;
|
2278
2998
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2279
|
-
country: z.
|
2999
|
+
country: z.ZodLiteral<string>;
|
2280
3000
|
province: z.ZodString;
|
2281
3001
|
district: z.ZodString;
|
2282
3002
|
}, {
|
@@ -2294,6 +3014,33 @@ export declare const ArchivedActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2294
3014
|
province: string;
|
2295
3015
|
urbanOrRural: "RURAL";
|
2296
3016
|
village?: string | null | undefined;
|
3017
|
+
}>, z.ZodObject<{
|
3018
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
3019
|
+
state: z.ZodString;
|
3020
|
+
district2: z.ZodString;
|
3021
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3022
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3023
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3024
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3025
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3026
|
+
}, "strip", z.ZodTypeAny, {
|
3027
|
+
country: string;
|
3028
|
+
state: string;
|
3029
|
+
district2: string;
|
3030
|
+
cityOrTown?: string | null | undefined;
|
3031
|
+
addressLine1?: string | null | undefined;
|
3032
|
+
addressLine2?: string | null | undefined;
|
3033
|
+
addressLine3?: string | null | undefined;
|
3034
|
+
postcodeOrZip?: string | null | undefined;
|
3035
|
+
}, {
|
3036
|
+
country: string;
|
3037
|
+
state: string;
|
3038
|
+
district2: string;
|
3039
|
+
cityOrTown?: string | null | undefined;
|
3040
|
+
addressLine1?: string | null | undefined;
|
3041
|
+
addressLine2?: string | null | undefined;
|
3042
|
+
addressLine3?: string | null | undefined;
|
3043
|
+
postcodeOrZip?: string | null | undefined;
|
2297
3044
|
}>]>>;
|
2298
3045
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2299
3046
|
filename: z.ZodString;
|
@@ -2323,7 +3070,7 @@ export declare const ArchivedActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2323
3070
|
filename: string;
|
2324
3071
|
originalFilename: string;
|
2325
3072
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2326
|
-
country: z.
|
3073
|
+
country: z.ZodLiteral<string>;
|
2327
3074
|
province: z.ZodString;
|
2328
3075
|
district: z.ZodString;
|
2329
3076
|
}, {
|
@@ -2354,7 +3101,7 @@ export declare const ArchivedActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2354
3101
|
street?: string | null | undefined;
|
2355
3102
|
zipCode?: string | null | undefined;
|
2356
3103
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2357
|
-
country: z.
|
3104
|
+
country: z.ZodLiteral<string>;
|
2358
3105
|
province: z.ZodString;
|
2359
3106
|
district: z.ZodString;
|
2360
3107
|
}, {
|
@@ -2372,11 +3119,38 @@ export declare const ArchivedActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2372
3119
|
province: string;
|
2373
3120
|
urbanOrRural: "RURAL";
|
2374
3121
|
village?: string | null | undefined;
|
3122
|
+
}>, z.ZodObject<{
|
3123
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
3124
|
+
state: z.ZodString;
|
3125
|
+
district2: z.ZodString;
|
3126
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3127
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3128
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3129
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3130
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3131
|
+
}, "strip", z.ZodTypeAny, {
|
3132
|
+
country: string;
|
3133
|
+
state: string;
|
3134
|
+
district2: string;
|
3135
|
+
cityOrTown?: string | null | undefined;
|
3136
|
+
addressLine1?: string | null | undefined;
|
3137
|
+
addressLine2?: string | null | undefined;
|
3138
|
+
addressLine3?: string | null | undefined;
|
3139
|
+
postcodeOrZip?: string | null | undefined;
|
3140
|
+
}, {
|
3141
|
+
country: string;
|
3142
|
+
state: string;
|
3143
|
+
district2: string;
|
3144
|
+
cityOrTown?: string | null | undefined;
|
3145
|
+
addressLine1?: string | null | undefined;
|
3146
|
+
addressLine2?: string | null | undefined;
|
3147
|
+
addressLine3?: string | null | undefined;
|
3148
|
+
postcodeOrZip?: string | null | undefined;
|
2375
3149
|
}>]>>>;
|
2376
3150
|
}, {
|
2377
|
-
type: z.ZodDefault<z.ZodLiteral<"
|
3151
|
+
type: z.ZodDefault<z.ZodLiteral<"ARCHIVE">>;
|
2378
3152
|
}>, "strip", z.ZodTypeAny, {
|
2379
|
-
type: "
|
3153
|
+
type: "ARCHIVE";
|
2380
3154
|
data: Record<string, string | number | boolean | {
|
2381
3155
|
type: string;
|
2382
3156
|
filename: string;
|
@@ -2397,6 +3171,15 @@ export declare const ArchivedActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2397
3171
|
province: string;
|
2398
3172
|
urbanOrRural: "RURAL";
|
2399
3173
|
village?: string | null | undefined;
|
3174
|
+
} | {
|
3175
|
+
country: string;
|
3176
|
+
state: string;
|
3177
|
+
district2: string;
|
3178
|
+
cityOrTown?: string | null | undefined;
|
3179
|
+
addressLine1?: string | null | undefined;
|
3180
|
+
addressLine2?: string | null | undefined;
|
3181
|
+
addressLine3?: string | null | undefined;
|
3182
|
+
postcodeOrZip?: string | null | undefined;
|
2400
3183
|
} | {
|
2401
3184
|
type: string;
|
2402
3185
|
option: string;
|
@@ -2425,6 +3208,15 @@ export declare const ArchivedActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2425
3208
|
province: string;
|
2426
3209
|
urbanOrRural: "RURAL";
|
2427
3210
|
village?: string | null | undefined;
|
3211
|
+
} | {
|
3212
|
+
country: string;
|
3213
|
+
state: string;
|
3214
|
+
district2: string;
|
3215
|
+
cityOrTown?: string | null | undefined;
|
3216
|
+
addressLine1?: string | null | undefined;
|
3217
|
+
addressLine2?: string | null | undefined;
|
3218
|
+
addressLine3?: string | null | undefined;
|
3219
|
+
postcodeOrZip?: string | null | undefined;
|
2428
3220
|
} | {
|
2429
3221
|
type: string;
|
2430
3222
|
option: string;
|
@@ -2452,6 +3244,15 @@ export declare const ArchivedActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2452
3244
|
province: string;
|
2453
3245
|
urbanOrRural: "RURAL";
|
2454
3246
|
village?: string | null | undefined;
|
3247
|
+
} | {
|
3248
|
+
country: string;
|
3249
|
+
state: string;
|
3250
|
+
district2: string;
|
3251
|
+
cityOrTown?: string | null | undefined;
|
3252
|
+
addressLine1?: string | null | undefined;
|
3253
|
+
addressLine2?: string | null | undefined;
|
3254
|
+
addressLine3?: string | null | undefined;
|
3255
|
+
postcodeOrZip?: string | null | undefined;
|
2455
3256
|
} | {
|
2456
3257
|
type: string;
|
2457
3258
|
option: string;
|
@@ -2460,7 +3261,7 @@ export declare const ArchivedActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2460
3261
|
}[]>;
|
2461
3262
|
eventId: string;
|
2462
3263
|
transactionId: string;
|
2463
|
-
type?: "
|
3264
|
+
type?: "ARCHIVE" | undefined;
|
2464
3265
|
metadata?: Record<string, string | number | boolean | {
|
2465
3266
|
type: string;
|
2466
3267
|
filename: string;
|
@@ -2481,6 +3282,15 @@ export declare const ArchivedActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2481
3282
|
province: string;
|
2482
3283
|
urbanOrRural: "RURAL";
|
2483
3284
|
village?: string | null | undefined;
|
3285
|
+
} | {
|
3286
|
+
country: string;
|
3287
|
+
state: string;
|
3288
|
+
district2: string;
|
3289
|
+
cityOrTown?: string | null | undefined;
|
3290
|
+
addressLine1?: string | null | undefined;
|
3291
|
+
addressLine2?: string | null | undefined;
|
3292
|
+
addressLine3?: string | null | undefined;
|
3293
|
+
postcodeOrZip?: string | null | undefined;
|
2484
3294
|
} | {
|
2485
3295
|
type: string;
|
2486
3296
|
option: string;
|
@@ -2488,7 +3298,7 @@ export declare const ArchivedActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2488
3298
|
originalFilename: string;
|
2489
3299
|
}[]> | undefined;
|
2490
3300
|
}>;
|
2491
|
-
export type
|
3301
|
+
export type ArchiveActionInput = z.infer<typeof ArchiveActionInput>;
|
2492
3302
|
export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
2493
3303
|
eventId: z.ZodString;
|
2494
3304
|
transactionId: z.ZodString;
|
@@ -2520,7 +3330,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
2520
3330
|
filename: string;
|
2521
3331
|
originalFilename: string;
|
2522
3332
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2523
|
-
country: z.
|
3333
|
+
country: z.ZodLiteral<string>;
|
2524
3334
|
province: z.ZodString;
|
2525
3335
|
district: z.ZodString;
|
2526
3336
|
}, {
|
@@ -2551,7 +3361,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
2551
3361
|
street?: string | null | undefined;
|
2552
3362
|
zipCode?: string | null | undefined;
|
2553
3363
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2554
|
-
country: z.
|
3364
|
+
country: z.ZodLiteral<string>;
|
2555
3365
|
province: z.ZodString;
|
2556
3366
|
district: z.ZodString;
|
2557
3367
|
}, {
|
@@ -2569,6 +3379,33 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
2569
3379
|
province: string;
|
2570
3380
|
urbanOrRural: "RURAL";
|
2571
3381
|
village?: string | null | undefined;
|
3382
|
+
}>, z.ZodObject<{
|
3383
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
3384
|
+
state: z.ZodString;
|
3385
|
+
district2: z.ZodString;
|
3386
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3387
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3388
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3389
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3390
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3391
|
+
}, "strip", z.ZodTypeAny, {
|
3392
|
+
country: string;
|
3393
|
+
state: string;
|
3394
|
+
district2: string;
|
3395
|
+
cityOrTown?: string | null | undefined;
|
3396
|
+
addressLine1?: string | null | undefined;
|
3397
|
+
addressLine2?: string | null | undefined;
|
3398
|
+
addressLine3?: string | null | undefined;
|
3399
|
+
postcodeOrZip?: string | null | undefined;
|
3400
|
+
}, {
|
3401
|
+
country: string;
|
3402
|
+
state: string;
|
3403
|
+
district2: string;
|
3404
|
+
cityOrTown?: string | null | undefined;
|
3405
|
+
addressLine1?: string | null | undefined;
|
3406
|
+
addressLine2?: string | null | undefined;
|
3407
|
+
addressLine3?: string | null | undefined;
|
3408
|
+
postcodeOrZip?: string | null | undefined;
|
2572
3409
|
}>]>>;
|
2573
3410
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2574
3411
|
filename: z.ZodString;
|
@@ -2598,7 +3435,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
2598
3435
|
filename: string;
|
2599
3436
|
originalFilename: string;
|
2600
3437
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2601
|
-
country: z.
|
3438
|
+
country: z.ZodLiteral<string>;
|
2602
3439
|
province: z.ZodString;
|
2603
3440
|
district: z.ZodString;
|
2604
3441
|
}, {
|
@@ -2629,7 +3466,7 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
2629
3466
|
street?: string | null | undefined;
|
2630
3467
|
zipCode?: string | null | undefined;
|
2631
3468
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2632
|
-
country: z.
|
3469
|
+
country: z.ZodLiteral<string>;
|
2633
3470
|
province: z.ZodString;
|
2634
3471
|
district: z.ZodString;
|
2635
3472
|
}, {
|
@@ -2647,6 +3484,33 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
2647
3484
|
province: string;
|
2648
3485
|
urbanOrRural: "RURAL";
|
2649
3486
|
village?: string | null | undefined;
|
3487
|
+
}>, z.ZodObject<{
|
3488
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
3489
|
+
state: z.ZodString;
|
3490
|
+
district2: z.ZodString;
|
3491
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3492
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3493
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3494
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3495
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3496
|
+
}, "strip", z.ZodTypeAny, {
|
3497
|
+
country: string;
|
3498
|
+
state: string;
|
3499
|
+
district2: string;
|
3500
|
+
cityOrTown?: string | null | undefined;
|
3501
|
+
addressLine1?: string | null | undefined;
|
3502
|
+
addressLine2?: string | null | undefined;
|
3503
|
+
addressLine3?: string | null | undefined;
|
3504
|
+
postcodeOrZip?: string | null | undefined;
|
3505
|
+
}, {
|
3506
|
+
country: string;
|
3507
|
+
state: string;
|
3508
|
+
district2: string;
|
3509
|
+
cityOrTown?: string | null | undefined;
|
3510
|
+
addressLine1?: string | null | undefined;
|
3511
|
+
addressLine2?: string | null | undefined;
|
3512
|
+
addressLine3?: string | null | undefined;
|
3513
|
+
postcodeOrZip?: string | null | undefined;
|
2650
3514
|
}>]>>>;
|
2651
3515
|
}, {
|
2652
3516
|
type: z.ZodDefault<z.ZodLiteral<"REQUEST_CORRECTION">>;
|
@@ -2672,6 +3536,15 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
2672
3536
|
province: string;
|
2673
3537
|
urbanOrRural: "RURAL";
|
2674
3538
|
village?: string | null | undefined;
|
3539
|
+
} | {
|
3540
|
+
country: string;
|
3541
|
+
state: string;
|
3542
|
+
district2: string;
|
3543
|
+
cityOrTown?: string | null | undefined;
|
3544
|
+
addressLine1?: string | null | undefined;
|
3545
|
+
addressLine2?: string | null | undefined;
|
3546
|
+
addressLine3?: string | null | undefined;
|
3547
|
+
postcodeOrZip?: string | null | undefined;
|
2675
3548
|
} | {
|
2676
3549
|
type: string;
|
2677
3550
|
option: string;
|
@@ -2700,6 +3573,15 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
2700
3573
|
province: string;
|
2701
3574
|
urbanOrRural: "RURAL";
|
2702
3575
|
village?: string | null | undefined;
|
3576
|
+
} | {
|
3577
|
+
country: string;
|
3578
|
+
state: string;
|
3579
|
+
district2: string;
|
3580
|
+
cityOrTown?: string | null | undefined;
|
3581
|
+
addressLine1?: string | null | undefined;
|
3582
|
+
addressLine2?: string | null | undefined;
|
3583
|
+
addressLine3?: string | null | undefined;
|
3584
|
+
postcodeOrZip?: string | null | undefined;
|
2703
3585
|
} | {
|
2704
3586
|
type: string;
|
2705
3587
|
option: string;
|
@@ -2727,6 +3609,15 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
2727
3609
|
province: string;
|
2728
3610
|
urbanOrRural: "RURAL";
|
2729
3611
|
village?: string | null | undefined;
|
3612
|
+
} | {
|
3613
|
+
country: string;
|
3614
|
+
state: string;
|
3615
|
+
district2: string;
|
3616
|
+
cityOrTown?: string | null | undefined;
|
3617
|
+
addressLine1?: string | null | undefined;
|
3618
|
+
addressLine2?: string | null | undefined;
|
3619
|
+
addressLine3?: string | null | undefined;
|
3620
|
+
postcodeOrZip?: string | null | undefined;
|
2730
3621
|
} | {
|
2731
3622
|
type: string;
|
2732
3623
|
option: string;
|
@@ -2756,6 +3647,15 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
2756
3647
|
province: string;
|
2757
3648
|
urbanOrRural: "RURAL";
|
2758
3649
|
village?: string | null | undefined;
|
3650
|
+
} | {
|
3651
|
+
country: string;
|
3652
|
+
state: string;
|
3653
|
+
district2: string;
|
3654
|
+
cityOrTown?: string | null | undefined;
|
3655
|
+
addressLine1?: string | null | undefined;
|
3656
|
+
addressLine2?: string | null | undefined;
|
3657
|
+
addressLine3?: string | null | undefined;
|
3658
|
+
postcodeOrZip?: string | null | undefined;
|
2759
3659
|
} | {
|
2760
3660
|
type: string;
|
2761
3661
|
option: string;
|
@@ -2795,7 +3695,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
2795
3695
|
filename: string;
|
2796
3696
|
originalFilename: string;
|
2797
3697
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2798
|
-
country: z.
|
3698
|
+
country: z.ZodLiteral<string>;
|
2799
3699
|
province: z.ZodString;
|
2800
3700
|
district: z.ZodString;
|
2801
3701
|
}, {
|
@@ -2826,7 +3726,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
2826
3726
|
street?: string | null | undefined;
|
2827
3727
|
zipCode?: string | null | undefined;
|
2828
3728
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2829
|
-
country: z.
|
3729
|
+
country: z.ZodLiteral<string>;
|
2830
3730
|
province: z.ZodString;
|
2831
3731
|
district: z.ZodString;
|
2832
3732
|
}, {
|
@@ -2844,6 +3744,33 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
2844
3744
|
province: string;
|
2845
3745
|
urbanOrRural: "RURAL";
|
2846
3746
|
village?: string | null | undefined;
|
3747
|
+
}>, z.ZodObject<{
|
3748
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
3749
|
+
state: z.ZodString;
|
3750
|
+
district2: z.ZodString;
|
3751
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3752
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3753
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3754
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3755
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3756
|
+
}, "strip", z.ZodTypeAny, {
|
3757
|
+
country: string;
|
3758
|
+
state: string;
|
3759
|
+
district2: string;
|
3760
|
+
cityOrTown?: string | null | undefined;
|
3761
|
+
addressLine1?: string | null | undefined;
|
3762
|
+
addressLine2?: string | null | undefined;
|
3763
|
+
addressLine3?: string | null | undefined;
|
3764
|
+
postcodeOrZip?: string | null | undefined;
|
3765
|
+
}, {
|
3766
|
+
country: string;
|
3767
|
+
state: string;
|
3768
|
+
district2: string;
|
3769
|
+
cityOrTown?: string | null | undefined;
|
3770
|
+
addressLine1?: string | null | undefined;
|
3771
|
+
addressLine2?: string | null | undefined;
|
3772
|
+
addressLine3?: string | null | undefined;
|
3773
|
+
postcodeOrZip?: string | null | undefined;
|
2847
3774
|
}>]>>;
|
2848
3775
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2849
3776
|
filename: z.ZodString;
|
@@ -2873,7 +3800,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
2873
3800
|
filename: string;
|
2874
3801
|
originalFilename: string;
|
2875
3802
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2876
|
-
country: z.
|
3803
|
+
country: z.ZodLiteral<string>;
|
2877
3804
|
province: z.ZodString;
|
2878
3805
|
district: z.ZodString;
|
2879
3806
|
}, {
|
@@ -2904,7 +3831,7 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
2904
3831
|
street?: string | null | undefined;
|
2905
3832
|
zipCode?: string | null | undefined;
|
2906
3833
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2907
|
-
country: z.
|
3834
|
+
country: z.ZodLiteral<string>;
|
2908
3835
|
province: z.ZodString;
|
2909
3836
|
district: z.ZodString;
|
2910
3837
|
}, {
|
@@ -2922,6 +3849,33 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
2922
3849
|
province: string;
|
2923
3850
|
urbanOrRural: "RURAL";
|
2924
3851
|
village?: string | null | undefined;
|
3852
|
+
}>, z.ZodObject<{
|
3853
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
3854
|
+
state: z.ZodString;
|
3855
|
+
district2: z.ZodString;
|
3856
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3857
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3858
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3859
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3860
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3861
|
+
}, "strip", z.ZodTypeAny, {
|
3862
|
+
country: string;
|
3863
|
+
state: string;
|
3864
|
+
district2: string;
|
3865
|
+
cityOrTown?: string | null | undefined;
|
3866
|
+
addressLine1?: string | null | undefined;
|
3867
|
+
addressLine2?: string | null | undefined;
|
3868
|
+
addressLine3?: string | null | undefined;
|
3869
|
+
postcodeOrZip?: string | null | undefined;
|
3870
|
+
}, {
|
3871
|
+
country: string;
|
3872
|
+
state: string;
|
3873
|
+
district2: string;
|
3874
|
+
cityOrTown?: string | null | undefined;
|
3875
|
+
addressLine1?: string | null | undefined;
|
3876
|
+
addressLine2?: string | null | undefined;
|
3877
|
+
addressLine3?: string | null | undefined;
|
3878
|
+
postcodeOrZip?: string | null | undefined;
|
2925
3879
|
}>]>>>;
|
2926
3880
|
}, {
|
2927
3881
|
requestId: z.ZodString;
|
@@ -2948,6 +3902,15 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
2948
3902
|
province: string;
|
2949
3903
|
urbanOrRural: "RURAL";
|
2950
3904
|
village?: string | null | undefined;
|
3905
|
+
} | {
|
3906
|
+
country: string;
|
3907
|
+
state: string;
|
3908
|
+
district2: string;
|
3909
|
+
cityOrTown?: string | null | undefined;
|
3910
|
+
addressLine1?: string | null | undefined;
|
3911
|
+
addressLine2?: string | null | undefined;
|
3912
|
+
addressLine3?: string | null | undefined;
|
3913
|
+
postcodeOrZip?: string | null | undefined;
|
2951
3914
|
} | {
|
2952
3915
|
type: string;
|
2953
3916
|
option: string;
|
@@ -2977,6 +3940,15 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
2977
3940
|
province: string;
|
2978
3941
|
urbanOrRural: "RURAL";
|
2979
3942
|
village?: string | null | undefined;
|
3943
|
+
} | {
|
3944
|
+
country: string;
|
3945
|
+
state: string;
|
3946
|
+
district2: string;
|
3947
|
+
cityOrTown?: string | null | undefined;
|
3948
|
+
addressLine1?: string | null | undefined;
|
3949
|
+
addressLine2?: string | null | undefined;
|
3950
|
+
addressLine3?: string | null | undefined;
|
3951
|
+
postcodeOrZip?: string | null | undefined;
|
2980
3952
|
} | {
|
2981
3953
|
type: string;
|
2982
3954
|
option: string;
|
@@ -3004,6 +3976,15 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
3004
3976
|
province: string;
|
3005
3977
|
urbanOrRural: "RURAL";
|
3006
3978
|
village?: string | null | undefined;
|
3979
|
+
} | {
|
3980
|
+
country: string;
|
3981
|
+
state: string;
|
3982
|
+
district2: string;
|
3983
|
+
cityOrTown?: string | null | undefined;
|
3984
|
+
addressLine1?: string | null | undefined;
|
3985
|
+
addressLine2?: string | null | undefined;
|
3986
|
+
addressLine3?: string | null | undefined;
|
3987
|
+
postcodeOrZip?: string | null | undefined;
|
3007
3988
|
} | {
|
3008
3989
|
type: string;
|
3009
3990
|
option: string;
|
@@ -3034,6 +4015,15 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
3034
4015
|
province: string;
|
3035
4016
|
urbanOrRural: "RURAL";
|
3036
4017
|
village?: string | null | undefined;
|
4018
|
+
} | {
|
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;
|
3037
4027
|
} | {
|
3038
4028
|
type: string;
|
3039
4029
|
option: string;
|
@@ -3073,7 +4063,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
3073
4063
|
filename: string;
|
3074
4064
|
originalFilename: string;
|
3075
4065
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3076
|
-
country: z.
|
4066
|
+
country: z.ZodLiteral<string>;
|
3077
4067
|
province: z.ZodString;
|
3078
4068
|
district: z.ZodString;
|
3079
4069
|
}, {
|
@@ -3104,7 +4094,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
3104
4094
|
street?: string | null | undefined;
|
3105
4095
|
zipCode?: string | null | undefined;
|
3106
4096
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3107
|
-
country: z.
|
4097
|
+
country: z.ZodLiteral<string>;
|
3108
4098
|
province: z.ZodString;
|
3109
4099
|
district: z.ZodString;
|
3110
4100
|
}, {
|
@@ -3122,6 +4112,33 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
3122
4112
|
province: string;
|
3123
4113
|
urbanOrRural: "RURAL";
|
3124
4114
|
village?: string | null | undefined;
|
4115
|
+
}>, z.ZodObject<{
|
4116
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
4117
|
+
state: z.ZodString;
|
4118
|
+
district2: z.ZodString;
|
4119
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4120
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4121
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4122
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4123
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4124
|
+
}, "strip", z.ZodTypeAny, {
|
4125
|
+
country: string;
|
4126
|
+
state: string;
|
4127
|
+
district2: string;
|
4128
|
+
cityOrTown?: string | null | undefined;
|
4129
|
+
addressLine1?: string | null | undefined;
|
4130
|
+
addressLine2?: string | null | undefined;
|
4131
|
+
addressLine3?: string | null | undefined;
|
4132
|
+
postcodeOrZip?: string | null | undefined;
|
4133
|
+
}, {
|
4134
|
+
country: string;
|
4135
|
+
state: string;
|
4136
|
+
district2: string;
|
4137
|
+
cityOrTown?: string | null | undefined;
|
4138
|
+
addressLine1?: string | null | undefined;
|
4139
|
+
addressLine2?: string | null | undefined;
|
4140
|
+
addressLine3?: string | null | undefined;
|
4141
|
+
postcodeOrZip?: string | null | undefined;
|
3125
4142
|
}>]>>;
|
3126
4143
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3127
4144
|
filename: z.ZodString;
|
@@ -3151,7 +4168,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
3151
4168
|
filename: string;
|
3152
4169
|
originalFilename: string;
|
3153
4170
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3154
|
-
country: z.
|
4171
|
+
country: z.ZodLiteral<string>;
|
3155
4172
|
province: z.ZodString;
|
3156
4173
|
district: z.ZodString;
|
3157
4174
|
}, {
|
@@ -3182,7 +4199,7 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
3182
4199
|
street?: string | null | undefined;
|
3183
4200
|
zipCode?: string | null | undefined;
|
3184
4201
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3185
|
-
country: z.
|
4202
|
+
country: z.ZodLiteral<string>;
|
3186
4203
|
province: z.ZodString;
|
3187
4204
|
district: z.ZodString;
|
3188
4205
|
}, {
|
@@ -3200,6 +4217,33 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
3200
4217
|
province: string;
|
3201
4218
|
urbanOrRural: "RURAL";
|
3202
4219
|
village?: string | null | undefined;
|
4220
|
+
}>, z.ZodObject<{
|
4221
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
4222
|
+
state: z.ZodString;
|
4223
|
+
district2: z.ZodString;
|
4224
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4225
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4226
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4227
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4228
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4229
|
+
}, "strip", z.ZodTypeAny, {
|
4230
|
+
country: string;
|
4231
|
+
state: string;
|
4232
|
+
district2: string;
|
4233
|
+
cityOrTown?: string | null | undefined;
|
4234
|
+
addressLine1?: string | null | undefined;
|
4235
|
+
addressLine2?: string | null | undefined;
|
4236
|
+
addressLine3?: string | null | undefined;
|
4237
|
+
postcodeOrZip?: string | null | undefined;
|
4238
|
+
}, {
|
4239
|
+
country: string;
|
4240
|
+
state: string;
|
4241
|
+
district2: string;
|
4242
|
+
cityOrTown?: string | null | undefined;
|
4243
|
+
addressLine1?: string | null | undefined;
|
4244
|
+
addressLine2?: string | null | undefined;
|
4245
|
+
addressLine3?: string | null | undefined;
|
4246
|
+
postcodeOrZip?: string | null | undefined;
|
3203
4247
|
}>]>>>;
|
3204
4248
|
}, {
|
3205
4249
|
requestId: z.ZodString;
|
@@ -3226,6 +4270,15 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
3226
4270
|
province: string;
|
3227
4271
|
urbanOrRural: "RURAL";
|
3228
4272
|
village?: string | null | undefined;
|
4273
|
+
} | {
|
4274
|
+
country: string;
|
4275
|
+
state: string;
|
4276
|
+
district2: string;
|
4277
|
+
cityOrTown?: string | null | undefined;
|
4278
|
+
addressLine1?: string | null | undefined;
|
4279
|
+
addressLine2?: string | null | undefined;
|
4280
|
+
addressLine3?: string | null | undefined;
|
4281
|
+
postcodeOrZip?: string | null | undefined;
|
3229
4282
|
} | {
|
3230
4283
|
type: string;
|
3231
4284
|
option: string;
|
@@ -3255,6 +4308,15 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
3255
4308
|
province: string;
|
3256
4309
|
urbanOrRural: "RURAL";
|
3257
4310
|
village?: string | null | undefined;
|
4311
|
+
} | {
|
4312
|
+
country: string;
|
4313
|
+
state: string;
|
4314
|
+
district2: string;
|
4315
|
+
cityOrTown?: string | null | undefined;
|
4316
|
+
addressLine1?: string | null | undefined;
|
4317
|
+
addressLine2?: string | null | undefined;
|
4318
|
+
addressLine3?: string | null | undefined;
|
4319
|
+
postcodeOrZip?: string | null | undefined;
|
3258
4320
|
} | {
|
3259
4321
|
type: string;
|
3260
4322
|
option: string;
|
@@ -3282,6 +4344,15 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
3282
4344
|
province: string;
|
3283
4345
|
urbanOrRural: "RURAL";
|
3284
4346
|
village?: string | null | undefined;
|
4347
|
+
} | {
|
4348
|
+
country: string;
|
4349
|
+
state: string;
|
4350
|
+
district2: string;
|
4351
|
+
cityOrTown?: string | null | undefined;
|
4352
|
+
addressLine1?: string | null | undefined;
|
4353
|
+
addressLine2?: string | null | undefined;
|
4354
|
+
addressLine3?: string | null | undefined;
|
4355
|
+
postcodeOrZip?: string | null | undefined;
|
3285
4356
|
} | {
|
3286
4357
|
type: string;
|
3287
4358
|
option: string;
|
@@ -3312,6 +4383,15 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
3312
4383
|
province: string;
|
3313
4384
|
urbanOrRural: "RURAL";
|
3314
4385
|
village?: string | null | undefined;
|
4386
|
+
} | {
|
4387
|
+
country: string;
|
4388
|
+
state: string;
|
4389
|
+
district2: string;
|
4390
|
+
cityOrTown?: string | null | undefined;
|
4391
|
+
addressLine1?: string | null | undefined;
|
4392
|
+
addressLine2?: string | null | undefined;
|
4393
|
+
addressLine3?: string | null | undefined;
|
4394
|
+
postcodeOrZip?: string | null | undefined;
|
3315
4395
|
} | {
|
3316
4396
|
type: string;
|
3317
4397
|
option: string;
|
@@ -3359,7 +4439,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3359
4439
|
filename: string;
|
3360
4440
|
originalFilename: string;
|
3361
4441
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3362
|
-
country: z.
|
4442
|
+
country: z.ZodLiteral<string>;
|
3363
4443
|
province: z.ZodString;
|
3364
4444
|
district: z.ZodString;
|
3365
4445
|
}, {
|
@@ -3390,7 +4470,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3390
4470
|
street?: string | null | undefined;
|
3391
4471
|
zipCode?: string | null | undefined;
|
3392
4472
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3393
|
-
country: z.
|
4473
|
+
country: z.ZodLiteral<string>;
|
3394
4474
|
province: z.ZodString;
|
3395
4475
|
district: z.ZodString;
|
3396
4476
|
}, {
|
@@ -3408,6 +4488,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3408
4488
|
province: string;
|
3409
4489
|
urbanOrRural: "RURAL";
|
3410
4490
|
village?: string | null | undefined;
|
4491
|
+
}>, z.ZodObject<{
|
4492
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
4493
|
+
state: z.ZodString;
|
4494
|
+
district2: z.ZodString;
|
4495
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4496
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4497
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4498
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4499
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4500
|
+
}, "strip", z.ZodTypeAny, {
|
4501
|
+
country: string;
|
4502
|
+
state: string;
|
4503
|
+
district2: string;
|
4504
|
+
cityOrTown?: string | null | undefined;
|
4505
|
+
addressLine1?: string | null | undefined;
|
4506
|
+
addressLine2?: string | null | undefined;
|
4507
|
+
addressLine3?: string | null | undefined;
|
4508
|
+
postcodeOrZip?: string | null | undefined;
|
4509
|
+
}, {
|
4510
|
+
country: string;
|
4511
|
+
state: string;
|
4512
|
+
district2: string;
|
4513
|
+
cityOrTown?: string | null | undefined;
|
4514
|
+
addressLine1?: string | null | undefined;
|
4515
|
+
addressLine2?: string | null | undefined;
|
4516
|
+
addressLine3?: string | null | undefined;
|
4517
|
+
postcodeOrZip?: string | null | undefined;
|
3411
4518
|
}>]>>;
|
3412
4519
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3413
4520
|
filename: z.ZodString;
|
@@ -3437,7 +4544,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3437
4544
|
filename: string;
|
3438
4545
|
originalFilename: string;
|
3439
4546
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3440
|
-
country: z.
|
4547
|
+
country: z.ZodLiteral<string>;
|
3441
4548
|
province: z.ZodString;
|
3442
4549
|
district: z.ZodString;
|
3443
4550
|
}, {
|
@@ -3468,7 +4575,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3468
4575
|
street?: string | null | undefined;
|
3469
4576
|
zipCode?: string | null | undefined;
|
3470
4577
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3471
|
-
country: z.
|
4578
|
+
country: z.ZodLiteral<string>;
|
3472
4579
|
province: z.ZodString;
|
3473
4580
|
district: z.ZodString;
|
3474
4581
|
}, {
|
@@ -3486,6 +4593,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3486
4593
|
province: string;
|
3487
4594
|
urbanOrRural: "RURAL";
|
3488
4595
|
village?: string | null | undefined;
|
4596
|
+
}>, z.ZodObject<{
|
4597
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
4598
|
+
state: z.ZodString;
|
4599
|
+
district2: z.ZodString;
|
4600
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4601
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4602
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4603
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4604
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4605
|
+
}, "strip", z.ZodTypeAny, {
|
4606
|
+
country: string;
|
4607
|
+
state: string;
|
4608
|
+
district2: string;
|
4609
|
+
cityOrTown?: string | null | undefined;
|
4610
|
+
addressLine1?: string | null | undefined;
|
4611
|
+
addressLine2?: string | null | undefined;
|
4612
|
+
addressLine3?: string | null | undefined;
|
4613
|
+
postcodeOrZip?: string | null | undefined;
|
4614
|
+
}, {
|
4615
|
+
country: string;
|
4616
|
+
state: string;
|
4617
|
+
district2: string;
|
4618
|
+
cityOrTown?: string | null | undefined;
|
4619
|
+
addressLine1?: string | null | undefined;
|
4620
|
+
addressLine2?: string | null | undefined;
|
4621
|
+
addressLine3?: string | null | undefined;
|
4622
|
+
postcodeOrZip?: string | null | undefined;
|
3489
4623
|
}>]>>>;
|
3490
4624
|
}, {
|
3491
4625
|
type: z.ZodDefault<z.ZodLiteral<"CREATE">>;
|
@@ -3512,6 +4646,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3512
4646
|
province: string;
|
3513
4647
|
urbanOrRural: "RURAL";
|
3514
4648
|
village?: string | null | undefined;
|
4649
|
+
} | {
|
4650
|
+
country: string;
|
4651
|
+
state: string;
|
4652
|
+
district2: string;
|
4653
|
+
cityOrTown?: string | null | undefined;
|
4654
|
+
addressLine1?: string | null | undefined;
|
4655
|
+
addressLine2?: string | null | undefined;
|
4656
|
+
addressLine3?: string | null | undefined;
|
4657
|
+
postcodeOrZip?: string | null | undefined;
|
3515
4658
|
} | {
|
3516
4659
|
type: string;
|
3517
4660
|
option: string;
|
@@ -3541,6 +4684,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3541
4684
|
province: string;
|
3542
4685
|
urbanOrRural: "RURAL";
|
3543
4686
|
village?: string | null | undefined;
|
4687
|
+
} | {
|
4688
|
+
country: string;
|
4689
|
+
state: string;
|
4690
|
+
district2: string;
|
4691
|
+
cityOrTown?: string | null | undefined;
|
4692
|
+
addressLine1?: string | null | undefined;
|
4693
|
+
addressLine2?: string | null | undefined;
|
4694
|
+
addressLine3?: string | null | undefined;
|
4695
|
+
postcodeOrZip?: string | null | undefined;
|
3544
4696
|
} | {
|
3545
4697
|
type: string;
|
3546
4698
|
option: string;
|
@@ -3568,6 +4720,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3568
4720
|
province: string;
|
3569
4721
|
urbanOrRural: "RURAL";
|
3570
4722
|
village?: string | null | undefined;
|
4723
|
+
} | {
|
4724
|
+
country: string;
|
4725
|
+
state: string;
|
4726
|
+
district2: string;
|
4727
|
+
cityOrTown?: string | null | undefined;
|
4728
|
+
addressLine1?: string | null | undefined;
|
4729
|
+
addressLine2?: string | null | undefined;
|
4730
|
+
addressLine3?: string | null | undefined;
|
4731
|
+
postcodeOrZip?: string | null | undefined;
|
3571
4732
|
} | {
|
3572
4733
|
type: string;
|
3573
4734
|
option: string;
|
@@ -3598,6 +4759,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3598
4759
|
province: string;
|
3599
4760
|
urbanOrRural: "RURAL";
|
3600
4761
|
village?: string | null | undefined;
|
4762
|
+
} | {
|
4763
|
+
country: string;
|
4764
|
+
state: string;
|
4765
|
+
district2: string;
|
4766
|
+
cityOrTown?: string | null | undefined;
|
4767
|
+
addressLine1?: string | null | undefined;
|
4768
|
+
addressLine2?: string | null | undefined;
|
4769
|
+
addressLine3?: string | null | undefined;
|
4770
|
+
postcodeOrZip?: string | null | undefined;
|
3601
4771
|
} | {
|
3602
4772
|
type: string;
|
3603
4773
|
option: string;
|
@@ -3635,7 +4805,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3635
4805
|
filename: string;
|
3636
4806
|
originalFilename: string;
|
3637
4807
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3638
|
-
country: z.
|
4808
|
+
country: z.ZodLiteral<string>;
|
3639
4809
|
province: z.ZodString;
|
3640
4810
|
district: z.ZodString;
|
3641
4811
|
}, {
|
@@ -3666,7 +4836,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3666
4836
|
street?: string | null | undefined;
|
3667
4837
|
zipCode?: string | null | undefined;
|
3668
4838
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3669
|
-
country: z.
|
4839
|
+
country: z.ZodLiteral<string>;
|
3670
4840
|
province: z.ZodString;
|
3671
4841
|
district: z.ZodString;
|
3672
4842
|
}, {
|
@@ -3684,6 +4854,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3684
4854
|
province: string;
|
3685
4855
|
urbanOrRural: "RURAL";
|
3686
4856
|
village?: string | null | undefined;
|
4857
|
+
}>, z.ZodObject<{
|
4858
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
4859
|
+
state: z.ZodString;
|
4860
|
+
district2: z.ZodString;
|
4861
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4862
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4863
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4864
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4865
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4866
|
+
}, "strip", z.ZodTypeAny, {
|
4867
|
+
country: string;
|
4868
|
+
state: string;
|
4869
|
+
district2: string;
|
4870
|
+
cityOrTown?: string | null | undefined;
|
4871
|
+
addressLine1?: string | null | undefined;
|
4872
|
+
addressLine2?: string | null | undefined;
|
4873
|
+
addressLine3?: string | null | undefined;
|
4874
|
+
postcodeOrZip?: string | null | undefined;
|
4875
|
+
}, {
|
4876
|
+
country: string;
|
4877
|
+
state: string;
|
4878
|
+
district2: string;
|
4879
|
+
cityOrTown?: string | null | undefined;
|
4880
|
+
addressLine1?: string | null | undefined;
|
4881
|
+
addressLine2?: string | null | undefined;
|
4882
|
+
addressLine3?: string | null | undefined;
|
4883
|
+
postcodeOrZip?: string | null | undefined;
|
3687
4884
|
}>]>>;
|
3688
4885
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3689
4886
|
filename: z.ZodString;
|
@@ -3713,7 +4910,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3713
4910
|
filename: string;
|
3714
4911
|
originalFilename: string;
|
3715
4912
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3716
|
-
country: z.
|
4913
|
+
country: z.ZodLiteral<string>;
|
3717
4914
|
province: z.ZodString;
|
3718
4915
|
district: z.ZodString;
|
3719
4916
|
}, {
|
@@ -3744,7 +4941,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3744
4941
|
street?: string | null | undefined;
|
3745
4942
|
zipCode?: string | null | undefined;
|
3746
4943
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3747
|
-
country: z.
|
4944
|
+
country: z.ZodLiteral<string>;
|
3748
4945
|
province: z.ZodString;
|
3749
4946
|
district: z.ZodString;
|
3750
4947
|
}, {
|
@@ -3762,6 +4959,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3762
4959
|
province: string;
|
3763
4960
|
urbanOrRural: "RURAL";
|
3764
4961
|
village?: string | null | undefined;
|
4962
|
+
}>, z.ZodObject<{
|
4963
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
4964
|
+
state: z.ZodString;
|
4965
|
+
district2: z.ZodString;
|
4966
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4967
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4968
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4969
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4970
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4971
|
+
}, "strip", z.ZodTypeAny, {
|
4972
|
+
country: string;
|
4973
|
+
state: string;
|
4974
|
+
district2: string;
|
4975
|
+
cityOrTown?: string | null | undefined;
|
4976
|
+
addressLine1?: string | null | undefined;
|
4977
|
+
addressLine2?: string | null | undefined;
|
4978
|
+
addressLine3?: string | null | undefined;
|
4979
|
+
postcodeOrZip?: string | null | undefined;
|
4980
|
+
}, {
|
4981
|
+
country: string;
|
4982
|
+
state: string;
|
4983
|
+
district2: string;
|
4984
|
+
cityOrTown?: string | null | undefined;
|
4985
|
+
addressLine1?: string | null | undefined;
|
4986
|
+
addressLine2?: string | null | undefined;
|
4987
|
+
addressLine3?: string | null | undefined;
|
4988
|
+
postcodeOrZip?: string | null | undefined;
|
3765
4989
|
}>]>>>;
|
3766
4990
|
}, {
|
3767
4991
|
type: z.ZodDefault<z.ZodLiteral<"VALIDATE">>;
|
@@ -3788,15 +5012,24 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3788
5012
|
province: string;
|
3789
5013
|
urbanOrRural: "RURAL";
|
3790
5014
|
village?: string | null | undefined;
|
5015
|
+
} | {
|
5016
|
+
country: string;
|
5017
|
+
state: string;
|
5018
|
+
district2: string;
|
5019
|
+
cityOrTown?: string | null | undefined;
|
5020
|
+
addressLine1?: string | null | undefined;
|
5021
|
+
addressLine2?: string | null | undefined;
|
5022
|
+
addressLine3?: string | null | undefined;
|
5023
|
+
postcodeOrZip?: string | null | undefined;
|
3791
5024
|
} | {
|
3792
5025
|
type: string;
|
3793
5026
|
option: string;
|
3794
5027
|
filename: string;
|
3795
5028
|
originalFilename: string;
|
3796
5029
|
}[]>;
|
3797
|
-
duplicates: string[];
|
3798
5030
|
eventId: string;
|
3799
5031
|
transactionId: string;
|
5032
|
+
duplicates: string[];
|
3800
5033
|
metadata?: Record<string, string | number | boolean | {
|
3801
5034
|
type: string;
|
3802
5035
|
filename: string;
|
@@ -3817,6 +5050,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3817
5050
|
province: string;
|
3818
5051
|
urbanOrRural: "RURAL";
|
3819
5052
|
village?: string | null | undefined;
|
5053
|
+
} | {
|
5054
|
+
country: string;
|
5055
|
+
state: string;
|
5056
|
+
district2: string;
|
5057
|
+
cityOrTown?: string | null | undefined;
|
5058
|
+
addressLine1?: string | null | undefined;
|
5059
|
+
addressLine2?: string | null | undefined;
|
5060
|
+
addressLine3?: string | null | undefined;
|
5061
|
+
postcodeOrZip?: string | null | undefined;
|
3820
5062
|
} | {
|
3821
5063
|
type: string;
|
3822
5064
|
option: string;
|
@@ -3844,15 +5086,24 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3844
5086
|
province: string;
|
3845
5087
|
urbanOrRural: "RURAL";
|
3846
5088
|
village?: string | null | undefined;
|
5089
|
+
} | {
|
5090
|
+
country: string;
|
5091
|
+
state: string;
|
5092
|
+
district2: string;
|
5093
|
+
cityOrTown?: string | null | undefined;
|
5094
|
+
addressLine1?: string | null | undefined;
|
5095
|
+
addressLine2?: string | null | undefined;
|
5096
|
+
addressLine3?: string | null | undefined;
|
5097
|
+
postcodeOrZip?: string | null | undefined;
|
3847
5098
|
} | {
|
3848
5099
|
type: string;
|
3849
5100
|
option: string;
|
3850
5101
|
filename: string;
|
3851
5102
|
originalFilename: string;
|
3852
5103
|
}[]>;
|
3853
|
-
duplicates: string[];
|
3854
5104
|
eventId: string;
|
3855
5105
|
transactionId: string;
|
5106
|
+
duplicates: string[];
|
3856
5107
|
type?: "VALIDATE" | undefined;
|
3857
5108
|
metadata?: Record<string, string | number | boolean | {
|
3858
5109
|
type: string;
|
@@ -3874,6 +5125,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3874
5125
|
province: string;
|
3875
5126
|
urbanOrRural: "RURAL";
|
3876
5127
|
village?: string | null | undefined;
|
5128
|
+
} | {
|
5129
|
+
country: string;
|
5130
|
+
state: string;
|
5131
|
+
district2: string;
|
5132
|
+
cityOrTown?: string | null | undefined;
|
5133
|
+
addressLine1?: string | null | undefined;
|
5134
|
+
addressLine2?: string | null | undefined;
|
5135
|
+
addressLine3?: string | null | undefined;
|
5136
|
+
postcodeOrZip?: string | null | undefined;
|
3877
5137
|
} | {
|
3878
5138
|
type: string;
|
3879
5139
|
option: string;
|
@@ -3911,7 +5171,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3911
5171
|
filename: string;
|
3912
5172
|
originalFilename: string;
|
3913
5173
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3914
|
-
country: z.
|
5174
|
+
country: z.ZodLiteral<string>;
|
3915
5175
|
province: z.ZodString;
|
3916
5176
|
district: z.ZodString;
|
3917
5177
|
}, {
|
@@ -3942,7 +5202,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3942
5202
|
street?: string | null | undefined;
|
3943
5203
|
zipCode?: string | null | undefined;
|
3944
5204
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3945
|
-
country: z.
|
5205
|
+
country: z.ZodLiteral<string>;
|
3946
5206
|
province: z.ZodString;
|
3947
5207
|
district: z.ZodString;
|
3948
5208
|
}, {
|
@@ -3960,6 +5220,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3960
5220
|
province: string;
|
3961
5221
|
urbanOrRural: "RURAL";
|
3962
5222
|
village?: string | null | undefined;
|
5223
|
+
}>, z.ZodObject<{
|
5224
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
5225
|
+
state: z.ZodString;
|
5226
|
+
district2: z.ZodString;
|
5227
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5228
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5229
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5230
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5231
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5232
|
+
}, "strip", z.ZodTypeAny, {
|
5233
|
+
country: string;
|
5234
|
+
state: string;
|
5235
|
+
district2: string;
|
5236
|
+
cityOrTown?: string | null | undefined;
|
5237
|
+
addressLine1?: string | null | undefined;
|
5238
|
+
addressLine2?: string | null | undefined;
|
5239
|
+
addressLine3?: string | null | undefined;
|
5240
|
+
postcodeOrZip?: string | null | undefined;
|
5241
|
+
}, {
|
5242
|
+
country: string;
|
5243
|
+
state: string;
|
5244
|
+
district2: string;
|
5245
|
+
cityOrTown?: string | null | undefined;
|
5246
|
+
addressLine1?: string | null | undefined;
|
5247
|
+
addressLine2?: string | null | undefined;
|
5248
|
+
addressLine3?: string | null | undefined;
|
5249
|
+
postcodeOrZip?: string | null | undefined;
|
3963
5250
|
}>]>>;
|
3964
5251
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3965
5252
|
filename: z.ZodString;
|
@@ -3989,7 +5276,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
3989
5276
|
filename: string;
|
3990
5277
|
originalFilename: string;
|
3991
5278
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3992
|
-
country: z.
|
5279
|
+
country: z.ZodLiteral<string>;
|
3993
5280
|
province: z.ZodString;
|
3994
5281
|
district: z.ZodString;
|
3995
5282
|
}, {
|
@@ -4020,7 +5307,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4020
5307
|
street?: string | null | undefined;
|
4021
5308
|
zipCode?: string | null | undefined;
|
4022
5309
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4023
|
-
country: z.
|
5310
|
+
country: z.ZodLiteral<string>;
|
4024
5311
|
province: z.ZodString;
|
4025
5312
|
district: z.ZodString;
|
4026
5313
|
}, {
|
@@ -4038,6 +5325,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4038
5325
|
province: string;
|
4039
5326
|
urbanOrRural: "RURAL";
|
4040
5327
|
village?: string | null | undefined;
|
5328
|
+
}>, z.ZodObject<{
|
5329
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
5330
|
+
state: z.ZodString;
|
5331
|
+
district2: z.ZodString;
|
5332
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5333
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5334
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5335
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5336
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5337
|
+
}, "strip", z.ZodTypeAny, {
|
5338
|
+
country: string;
|
5339
|
+
state: string;
|
5340
|
+
district2: string;
|
5341
|
+
cityOrTown?: string | null | undefined;
|
5342
|
+
addressLine1?: string | null | undefined;
|
5343
|
+
addressLine2?: string | null | undefined;
|
5344
|
+
addressLine3?: string | null | undefined;
|
5345
|
+
postcodeOrZip?: string | null | undefined;
|
5346
|
+
}, {
|
5347
|
+
country: string;
|
5348
|
+
state: string;
|
5349
|
+
district2: string;
|
5350
|
+
cityOrTown?: string | null | undefined;
|
5351
|
+
addressLine1?: string | null | undefined;
|
5352
|
+
addressLine2?: string | null | undefined;
|
5353
|
+
addressLine3?: string | null | undefined;
|
5354
|
+
postcodeOrZip?: string | null | undefined;
|
4041
5355
|
}>]>>>;
|
4042
5356
|
}, {
|
4043
5357
|
type: z.ZodDefault<z.ZodLiteral<"REGISTER">>;
|
@@ -4073,6 +5387,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4073
5387
|
province: string;
|
4074
5388
|
urbanOrRural: "RURAL";
|
4075
5389
|
village?: string | null | undefined;
|
5390
|
+
} | {
|
5391
|
+
country: string;
|
5392
|
+
state: string;
|
5393
|
+
district2: string;
|
5394
|
+
cityOrTown?: string | null | undefined;
|
5395
|
+
addressLine1?: string | null | undefined;
|
5396
|
+
addressLine2?: string | null | undefined;
|
5397
|
+
addressLine3?: string | null | undefined;
|
5398
|
+
postcodeOrZip?: string | null | undefined;
|
4076
5399
|
} | {
|
4077
5400
|
type: string;
|
4078
5401
|
option: string;
|
@@ -4105,6 +5428,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4105
5428
|
province: string;
|
4106
5429
|
urbanOrRural: "RURAL";
|
4107
5430
|
village?: string | null | undefined;
|
5431
|
+
} | {
|
5432
|
+
country: string;
|
5433
|
+
state: string;
|
5434
|
+
district2: string;
|
5435
|
+
cityOrTown?: string | null | undefined;
|
5436
|
+
addressLine1?: string | null | undefined;
|
5437
|
+
addressLine2?: string | null | undefined;
|
5438
|
+
addressLine3?: string | null | undefined;
|
5439
|
+
postcodeOrZip?: string | null | undefined;
|
4108
5440
|
} | {
|
4109
5441
|
type: string;
|
4110
5442
|
option: string;
|
@@ -4132,6 +5464,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4132
5464
|
province: string;
|
4133
5465
|
urbanOrRural: "RURAL";
|
4134
5466
|
village?: string | null | undefined;
|
5467
|
+
} | {
|
5468
|
+
country: string;
|
5469
|
+
state: string;
|
5470
|
+
district2: string;
|
5471
|
+
cityOrTown?: string | null | undefined;
|
5472
|
+
addressLine1?: string | null | undefined;
|
5473
|
+
addressLine2?: string | null | undefined;
|
5474
|
+
addressLine3?: string | null | undefined;
|
5475
|
+
postcodeOrZip?: string | null | undefined;
|
4135
5476
|
} | {
|
4136
5477
|
type: string;
|
4137
5478
|
option: string;
|
@@ -4165,6 +5506,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4165
5506
|
province: string;
|
4166
5507
|
urbanOrRural: "RURAL";
|
4167
5508
|
village?: string | null | undefined;
|
5509
|
+
} | {
|
5510
|
+
country: string;
|
5511
|
+
state: string;
|
5512
|
+
district2: string;
|
5513
|
+
cityOrTown?: string | null | undefined;
|
5514
|
+
addressLine1?: string | null | undefined;
|
5515
|
+
addressLine2?: string | null | undefined;
|
5516
|
+
addressLine3?: string | null | undefined;
|
5517
|
+
postcodeOrZip?: string | null | undefined;
|
4168
5518
|
} | {
|
4169
5519
|
type: string;
|
4170
5520
|
option: string;
|
@@ -4202,7 +5552,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4202
5552
|
filename: string;
|
4203
5553
|
originalFilename: string;
|
4204
5554
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
4205
|
-
country: z.
|
5555
|
+
country: z.ZodLiteral<string>;
|
4206
5556
|
province: z.ZodString;
|
4207
5557
|
district: z.ZodString;
|
4208
5558
|
}, {
|
@@ -4233,7 +5583,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4233
5583
|
street?: string | null | undefined;
|
4234
5584
|
zipCode?: string | null | undefined;
|
4235
5585
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4236
|
-
country: z.
|
5586
|
+
country: z.ZodLiteral<string>;
|
4237
5587
|
province: z.ZodString;
|
4238
5588
|
district: z.ZodString;
|
4239
5589
|
}, {
|
@@ -4251,6 +5601,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4251
5601
|
province: string;
|
4252
5602
|
urbanOrRural: "RURAL";
|
4253
5603
|
village?: string | null | undefined;
|
5604
|
+
}>, z.ZodObject<{
|
5605
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
5606
|
+
state: z.ZodString;
|
5607
|
+
district2: z.ZodString;
|
5608
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5609
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5610
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5611
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5612
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5613
|
+
}, "strip", z.ZodTypeAny, {
|
5614
|
+
country: string;
|
5615
|
+
state: string;
|
5616
|
+
district2: string;
|
5617
|
+
cityOrTown?: string | null | undefined;
|
5618
|
+
addressLine1?: string | null | undefined;
|
5619
|
+
addressLine2?: string | null | undefined;
|
5620
|
+
addressLine3?: string | null | undefined;
|
5621
|
+
postcodeOrZip?: string | null | undefined;
|
5622
|
+
}, {
|
5623
|
+
country: string;
|
5624
|
+
state: string;
|
5625
|
+
district2: string;
|
5626
|
+
cityOrTown?: string | null | undefined;
|
5627
|
+
addressLine1?: string | null | undefined;
|
5628
|
+
addressLine2?: string | null | undefined;
|
5629
|
+
addressLine3?: string | null | undefined;
|
5630
|
+
postcodeOrZip?: string | null | undefined;
|
4254
5631
|
}>]>>;
|
4255
5632
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4256
5633
|
filename: z.ZodString;
|
@@ -4280,7 +5657,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4280
5657
|
filename: string;
|
4281
5658
|
originalFilename: string;
|
4282
5659
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
4283
|
-
country: z.
|
5660
|
+
country: z.ZodLiteral<string>;
|
4284
5661
|
province: z.ZodString;
|
4285
5662
|
district: z.ZodString;
|
4286
5663
|
}, {
|
@@ -4311,7 +5688,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4311
5688
|
street?: string | null | undefined;
|
4312
5689
|
zipCode?: string | null | undefined;
|
4313
5690
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4314
|
-
country: z.
|
5691
|
+
country: z.ZodLiteral<string>;
|
4315
5692
|
province: z.ZodString;
|
4316
5693
|
district: z.ZodString;
|
4317
5694
|
}, {
|
@@ -4329,6 +5706,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4329
5706
|
province: string;
|
4330
5707
|
urbanOrRural: "RURAL";
|
4331
5708
|
village?: string | null | undefined;
|
5709
|
+
}>, z.ZodObject<{
|
5710
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
5711
|
+
state: z.ZodString;
|
5712
|
+
district2: z.ZodString;
|
5713
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5714
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5715
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5716
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5717
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5718
|
+
}, "strip", z.ZodTypeAny, {
|
5719
|
+
country: string;
|
5720
|
+
state: string;
|
5721
|
+
district2: string;
|
5722
|
+
cityOrTown?: string | null | undefined;
|
5723
|
+
addressLine1?: string | null | undefined;
|
5724
|
+
addressLine2?: string | null | undefined;
|
5725
|
+
addressLine3?: string | null | undefined;
|
5726
|
+
postcodeOrZip?: string | null | undefined;
|
5727
|
+
}, {
|
5728
|
+
country: string;
|
5729
|
+
state: string;
|
5730
|
+
district2: string;
|
5731
|
+
cityOrTown?: string | null | undefined;
|
5732
|
+
addressLine1?: string | null | undefined;
|
5733
|
+
addressLine2?: string | null | undefined;
|
5734
|
+
addressLine3?: string | null | undefined;
|
5735
|
+
postcodeOrZip?: string | null | undefined;
|
4332
5736
|
}>]>>>;
|
4333
5737
|
}, {
|
4334
5738
|
type: z.ZodDefault<z.ZodLiteral<"NOTIFY">>;
|
@@ -4354,6 +5758,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4354
5758
|
province: string;
|
4355
5759
|
urbanOrRural: "RURAL";
|
4356
5760
|
village?: string | null | undefined;
|
5761
|
+
} | {
|
5762
|
+
country: string;
|
5763
|
+
state: string;
|
5764
|
+
district2: string;
|
5765
|
+
cityOrTown?: string | null | undefined;
|
5766
|
+
addressLine1?: string | null | undefined;
|
5767
|
+
addressLine2?: string | null | undefined;
|
5768
|
+
addressLine3?: string | null | undefined;
|
5769
|
+
postcodeOrZip?: string | null | undefined;
|
4357
5770
|
} | {
|
4358
5771
|
type: string;
|
4359
5772
|
option: string;
|
@@ -4382,6 +5795,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4382
5795
|
province: string;
|
4383
5796
|
urbanOrRural: "RURAL";
|
4384
5797
|
village?: string | null | undefined;
|
5798
|
+
} | {
|
5799
|
+
country: string;
|
5800
|
+
state: string;
|
5801
|
+
district2: string;
|
5802
|
+
cityOrTown?: string | null | undefined;
|
5803
|
+
addressLine1?: string | null | undefined;
|
5804
|
+
addressLine2?: string | null | undefined;
|
5805
|
+
addressLine3?: string | null | undefined;
|
5806
|
+
postcodeOrZip?: string | null | undefined;
|
4385
5807
|
} | {
|
4386
5808
|
type: string;
|
4387
5809
|
option: string;
|
@@ -4409,6 +5831,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4409
5831
|
province: string;
|
4410
5832
|
urbanOrRural: "RURAL";
|
4411
5833
|
village?: string | null | undefined;
|
5834
|
+
} | {
|
5835
|
+
country: string;
|
5836
|
+
state: string;
|
5837
|
+
district2: string;
|
5838
|
+
cityOrTown?: string | null | undefined;
|
5839
|
+
addressLine1?: string | null | undefined;
|
5840
|
+
addressLine2?: string | null | undefined;
|
5841
|
+
addressLine3?: string | null | undefined;
|
5842
|
+
postcodeOrZip?: string | null | undefined;
|
4412
5843
|
} | {
|
4413
5844
|
type: string;
|
4414
5845
|
option: string;
|
@@ -4438,6 +5869,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4438
5869
|
province: string;
|
4439
5870
|
urbanOrRural: "RURAL";
|
4440
5871
|
village?: string | null | undefined;
|
5872
|
+
} | {
|
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;
|
4441
5881
|
} | {
|
4442
5882
|
type: string;
|
4443
5883
|
option: string;
|
@@ -4475,7 +5915,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4475
5915
|
filename: string;
|
4476
5916
|
originalFilename: string;
|
4477
5917
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
4478
|
-
country: z.
|
5918
|
+
country: z.ZodLiteral<string>;
|
4479
5919
|
province: z.ZodString;
|
4480
5920
|
district: z.ZodString;
|
4481
5921
|
}, {
|
@@ -4506,7 +5946,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4506
5946
|
street?: string | null | undefined;
|
4507
5947
|
zipCode?: string | null | undefined;
|
4508
5948
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4509
|
-
country: z.
|
5949
|
+
country: z.ZodLiteral<string>;
|
4510
5950
|
province: z.ZodString;
|
4511
5951
|
district: z.ZodString;
|
4512
5952
|
}, {
|
@@ -4524,6 +5964,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4524
5964
|
province: string;
|
4525
5965
|
urbanOrRural: "RURAL";
|
4526
5966
|
village?: string | null | undefined;
|
5967
|
+
}>, z.ZodObject<{
|
5968
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
5969
|
+
state: z.ZodString;
|
5970
|
+
district2: z.ZodString;
|
5971
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5972
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5973
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5974
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5975
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5976
|
+
}, "strip", z.ZodTypeAny, {
|
5977
|
+
country: string;
|
5978
|
+
state: string;
|
5979
|
+
district2: string;
|
5980
|
+
cityOrTown?: string | null | undefined;
|
5981
|
+
addressLine1?: string | null | undefined;
|
5982
|
+
addressLine2?: string | null | undefined;
|
5983
|
+
addressLine3?: string | null | undefined;
|
5984
|
+
postcodeOrZip?: string | null | undefined;
|
5985
|
+
}, {
|
5986
|
+
country: string;
|
5987
|
+
state: string;
|
5988
|
+
district2: string;
|
5989
|
+
cityOrTown?: string | null | undefined;
|
5990
|
+
addressLine1?: string | null | undefined;
|
5991
|
+
addressLine2?: string | null | undefined;
|
5992
|
+
addressLine3?: string | null | undefined;
|
5993
|
+
postcodeOrZip?: string | null | undefined;
|
4527
5994
|
}>]>>;
|
4528
5995
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4529
5996
|
filename: z.ZodString;
|
@@ -4553,7 +6020,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4553
6020
|
filename: string;
|
4554
6021
|
originalFilename: string;
|
4555
6022
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
4556
|
-
country: z.
|
6023
|
+
country: z.ZodLiteral<string>;
|
4557
6024
|
province: z.ZodString;
|
4558
6025
|
district: z.ZodString;
|
4559
6026
|
}, {
|
@@ -4584,7 +6051,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4584
6051
|
street?: string | null | undefined;
|
4585
6052
|
zipCode?: string | null | undefined;
|
4586
6053
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4587
|
-
country: z.
|
6054
|
+
country: z.ZodLiteral<string>;
|
4588
6055
|
province: z.ZodString;
|
4589
6056
|
district: z.ZodString;
|
4590
6057
|
}, {
|
@@ -4602,6 +6069,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4602
6069
|
province: string;
|
4603
6070
|
urbanOrRural: "RURAL";
|
4604
6071
|
village?: string | null | undefined;
|
6072
|
+
}>, z.ZodObject<{
|
6073
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
6074
|
+
state: z.ZodString;
|
6075
|
+
district2: z.ZodString;
|
6076
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6077
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6078
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6079
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6080
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6081
|
+
}, "strip", z.ZodTypeAny, {
|
6082
|
+
country: string;
|
6083
|
+
state: string;
|
6084
|
+
district2: string;
|
6085
|
+
cityOrTown?: string | null | undefined;
|
6086
|
+
addressLine1?: string | null | undefined;
|
6087
|
+
addressLine2?: string | null | undefined;
|
6088
|
+
addressLine3?: string | null | undefined;
|
6089
|
+
postcodeOrZip?: string | null | undefined;
|
6090
|
+
}, {
|
6091
|
+
country: string;
|
6092
|
+
state: string;
|
6093
|
+
district2: string;
|
6094
|
+
cityOrTown?: string | null | undefined;
|
6095
|
+
addressLine1?: string | null | undefined;
|
6096
|
+
addressLine2?: string | null | undefined;
|
6097
|
+
addressLine3?: string | null | undefined;
|
6098
|
+
postcodeOrZip?: string | null | undefined;
|
4605
6099
|
}>]>>>;
|
4606
6100
|
}, {
|
4607
6101
|
type: z.ZodDefault<z.ZodLiteral<"DECLARE">>;
|
@@ -4627,6 +6121,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4627
6121
|
province: string;
|
4628
6122
|
urbanOrRural: "RURAL";
|
4629
6123
|
village?: string | null | undefined;
|
6124
|
+
} | {
|
6125
|
+
country: string;
|
6126
|
+
state: string;
|
6127
|
+
district2: string;
|
6128
|
+
cityOrTown?: string | null | undefined;
|
6129
|
+
addressLine1?: string | null | undefined;
|
6130
|
+
addressLine2?: string | null | undefined;
|
6131
|
+
addressLine3?: string | null | undefined;
|
6132
|
+
postcodeOrZip?: string | null | undefined;
|
4630
6133
|
} | {
|
4631
6134
|
type: string;
|
4632
6135
|
option: string;
|
@@ -4655,6 +6158,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4655
6158
|
province: string;
|
4656
6159
|
urbanOrRural: "RURAL";
|
4657
6160
|
village?: string | null | undefined;
|
6161
|
+
} | {
|
6162
|
+
country: string;
|
6163
|
+
state: string;
|
6164
|
+
district2: string;
|
6165
|
+
cityOrTown?: string | null | undefined;
|
6166
|
+
addressLine1?: string | null | undefined;
|
6167
|
+
addressLine2?: string | null | undefined;
|
6168
|
+
addressLine3?: string | null | undefined;
|
6169
|
+
postcodeOrZip?: string | null | undefined;
|
4658
6170
|
} | {
|
4659
6171
|
type: string;
|
4660
6172
|
option: string;
|
@@ -4682,6 +6194,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4682
6194
|
province: string;
|
4683
6195
|
urbanOrRural: "RURAL";
|
4684
6196
|
village?: string | null | undefined;
|
6197
|
+
} | {
|
6198
|
+
country: string;
|
6199
|
+
state: string;
|
6200
|
+
district2: string;
|
6201
|
+
cityOrTown?: string | null | undefined;
|
6202
|
+
addressLine1?: string | null | undefined;
|
6203
|
+
addressLine2?: string | null | undefined;
|
6204
|
+
addressLine3?: string | null | undefined;
|
6205
|
+
postcodeOrZip?: string | null | undefined;
|
4685
6206
|
} | {
|
4686
6207
|
type: string;
|
4687
6208
|
option: string;
|
@@ -4711,6 +6232,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4711
6232
|
province: string;
|
4712
6233
|
urbanOrRural: "RURAL";
|
4713
6234
|
village?: string | null | undefined;
|
6235
|
+
} | {
|
6236
|
+
country: string;
|
6237
|
+
state: string;
|
6238
|
+
district2: string;
|
6239
|
+
cityOrTown?: string | null | undefined;
|
6240
|
+
addressLine1?: string | null | undefined;
|
6241
|
+
addressLine2?: string | null | undefined;
|
6242
|
+
addressLine3?: string | null | undefined;
|
6243
|
+
postcodeOrZip?: string | null | undefined;
|
4714
6244
|
} | {
|
4715
6245
|
type: string;
|
4716
6246
|
option: string;
|
@@ -4748,7 +6278,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4748
6278
|
filename: string;
|
4749
6279
|
originalFilename: string;
|
4750
6280
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
4751
|
-
country: z.
|
6281
|
+
country: z.ZodLiteral<string>;
|
4752
6282
|
province: z.ZodString;
|
4753
6283
|
district: z.ZodString;
|
4754
6284
|
}, {
|
@@ -4779,7 +6309,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4779
6309
|
street?: string | null | undefined;
|
4780
6310
|
zipCode?: string | null | undefined;
|
4781
6311
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4782
|
-
country: z.
|
6312
|
+
country: z.ZodLiteral<string>;
|
4783
6313
|
province: z.ZodString;
|
4784
6314
|
district: z.ZodString;
|
4785
6315
|
}, {
|
@@ -4797,6 +6327,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4797
6327
|
province: string;
|
4798
6328
|
urbanOrRural: "RURAL";
|
4799
6329
|
village?: string | null | undefined;
|
6330
|
+
}>, z.ZodObject<{
|
6331
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
6332
|
+
state: z.ZodString;
|
6333
|
+
district2: z.ZodString;
|
6334
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6335
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6336
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6337
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6338
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6339
|
+
}, "strip", z.ZodTypeAny, {
|
6340
|
+
country: string;
|
6341
|
+
state: string;
|
6342
|
+
district2: string;
|
6343
|
+
cityOrTown?: string | null | undefined;
|
6344
|
+
addressLine1?: string | null | undefined;
|
6345
|
+
addressLine2?: string | null | undefined;
|
6346
|
+
addressLine3?: string | null | undefined;
|
6347
|
+
postcodeOrZip?: string | null | undefined;
|
6348
|
+
}, {
|
6349
|
+
country: string;
|
6350
|
+
state: string;
|
6351
|
+
district2: string;
|
6352
|
+
cityOrTown?: string | null | undefined;
|
6353
|
+
addressLine1?: string | null | undefined;
|
6354
|
+
addressLine2?: string | null | undefined;
|
6355
|
+
addressLine3?: string | null | undefined;
|
6356
|
+
postcodeOrZip?: string | null | undefined;
|
4800
6357
|
}>]>>;
|
4801
6358
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4802
6359
|
filename: z.ZodString;
|
@@ -4826,7 +6383,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4826
6383
|
filename: string;
|
4827
6384
|
originalFilename: string;
|
4828
6385
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
4829
|
-
country: z.
|
6386
|
+
country: z.ZodLiteral<string>;
|
4830
6387
|
province: z.ZodString;
|
4831
6388
|
district: z.ZodString;
|
4832
6389
|
}, {
|
@@ -4857,7 +6414,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4857
6414
|
street?: string | null | undefined;
|
4858
6415
|
zipCode?: string | null | undefined;
|
4859
6416
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4860
|
-
country: z.
|
6417
|
+
country: z.ZodLiteral<string>;
|
4861
6418
|
province: z.ZodString;
|
4862
6419
|
district: z.ZodString;
|
4863
6420
|
}, {
|
@@ -4875,6 +6432,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4875
6432
|
province: string;
|
4876
6433
|
urbanOrRural: "RURAL";
|
4877
6434
|
village?: string | null | undefined;
|
6435
|
+
}>, z.ZodObject<{
|
6436
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
6437
|
+
state: z.ZodString;
|
6438
|
+
district2: z.ZodString;
|
6439
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6440
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6441
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6442
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6443
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6444
|
+
}, "strip", z.ZodTypeAny, {
|
6445
|
+
country: string;
|
6446
|
+
state: string;
|
6447
|
+
district2: string;
|
6448
|
+
cityOrTown?: string | null | undefined;
|
6449
|
+
addressLine1?: string | null | undefined;
|
6450
|
+
addressLine2?: string | null | undefined;
|
6451
|
+
addressLine3?: string | null | undefined;
|
6452
|
+
postcodeOrZip?: string | null | undefined;
|
6453
|
+
}, {
|
6454
|
+
country: string;
|
6455
|
+
state: string;
|
6456
|
+
district2: string;
|
6457
|
+
cityOrTown?: string | null | undefined;
|
6458
|
+
addressLine1?: string | null | undefined;
|
6459
|
+
addressLine2?: string | null | undefined;
|
6460
|
+
addressLine3?: string | null | undefined;
|
6461
|
+
postcodeOrZip?: string | null | undefined;
|
4878
6462
|
}>]>>>;
|
4879
6463
|
}, {
|
4880
6464
|
type: z.ZodDefault<z.ZodLiteral<"REJECT">>;
|
@@ -4900,6 +6484,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4900
6484
|
province: string;
|
4901
6485
|
urbanOrRural: "RURAL";
|
4902
6486
|
village?: string | null | undefined;
|
6487
|
+
} | {
|
6488
|
+
country: string;
|
6489
|
+
state: string;
|
6490
|
+
district2: string;
|
6491
|
+
cityOrTown?: string | null | undefined;
|
6492
|
+
addressLine1?: string | null | undefined;
|
6493
|
+
addressLine2?: string | null | undefined;
|
6494
|
+
addressLine3?: string | null | undefined;
|
6495
|
+
postcodeOrZip?: string | null | undefined;
|
4903
6496
|
} | {
|
4904
6497
|
type: string;
|
4905
6498
|
option: string;
|
@@ -4928,6 +6521,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4928
6521
|
province: string;
|
4929
6522
|
urbanOrRural: "RURAL";
|
4930
6523
|
village?: string | null | undefined;
|
6524
|
+
} | {
|
6525
|
+
country: string;
|
6526
|
+
state: string;
|
6527
|
+
district2: string;
|
6528
|
+
cityOrTown?: string | null | undefined;
|
6529
|
+
addressLine1?: string | null | undefined;
|
6530
|
+
addressLine2?: string | null | undefined;
|
6531
|
+
addressLine3?: string | null | undefined;
|
6532
|
+
postcodeOrZip?: string | null | undefined;
|
4931
6533
|
} | {
|
4932
6534
|
type: string;
|
4933
6535
|
option: string;
|
@@ -4955,6 +6557,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4955
6557
|
province: string;
|
4956
6558
|
urbanOrRural: "RURAL";
|
4957
6559
|
village?: string | null | undefined;
|
6560
|
+
} | {
|
6561
|
+
country: string;
|
6562
|
+
state: string;
|
6563
|
+
district2: string;
|
6564
|
+
cityOrTown?: string | null | undefined;
|
6565
|
+
addressLine1?: string | null | undefined;
|
6566
|
+
addressLine2?: string | null | undefined;
|
6567
|
+
addressLine3?: string | null | undefined;
|
6568
|
+
postcodeOrZip?: string | null | undefined;
|
4958
6569
|
} | {
|
4959
6570
|
type: string;
|
4960
6571
|
option: string;
|
@@ -4984,6 +6595,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
4984
6595
|
province: string;
|
4985
6596
|
urbanOrRural: "RURAL";
|
4986
6597
|
village?: string | null | undefined;
|
6598
|
+
} | {
|
6599
|
+
country: string;
|
6600
|
+
state: string;
|
6601
|
+
district2: string;
|
6602
|
+
cityOrTown?: string | null | undefined;
|
6603
|
+
addressLine1?: string | null | undefined;
|
6604
|
+
addressLine2?: string | null | undefined;
|
6605
|
+
addressLine3?: string | null | undefined;
|
6606
|
+
postcodeOrZip?: string | null | undefined;
|
4987
6607
|
} | {
|
4988
6608
|
type: string;
|
4989
6609
|
option: string;
|
@@ -5021,7 +6641,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5021
6641
|
filename: string;
|
5022
6642
|
originalFilename: string;
|
5023
6643
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
5024
|
-
country: z.
|
6644
|
+
country: z.ZodLiteral<string>;
|
5025
6645
|
province: z.ZodString;
|
5026
6646
|
district: z.ZodString;
|
5027
6647
|
}, {
|
@@ -5052,7 +6672,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5052
6672
|
street?: string | null | undefined;
|
5053
6673
|
zipCode?: string | null | undefined;
|
5054
6674
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5055
|
-
country: z.
|
6675
|
+
country: z.ZodLiteral<string>;
|
5056
6676
|
province: z.ZodString;
|
5057
6677
|
district: z.ZodString;
|
5058
6678
|
}, {
|
@@ -5070,6 +6690,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5070
6690
|
province: string;
|
5071
6691
|
urbanOrRural: "RURAL";
|
5072
6692
|
village?: string | null | undefined;
|
6693
|
+
}>, z.ZodObject<{
|
6694
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
6695
|
+
state: z.ZodString;
|
6696
|
+
district2: z.ZodString;
|
6697
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6698
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6699
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6700
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6701
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6702
|
+
}, "strip", z.ZodTypeAny, {
|
6703
|
+
country: string;
|
6704
|
+
state: string;
|
6705
|
+
district2: string;
|
6706
|
+
cityOrTown?: string | null | undefined;
|
6707
|
+
addressLine1?: string | null | undefined;
|
6708
|
+
addressLine2?: string | null | undefined;
|
6709
|
+
addressLine3?: string | null | undefined;
|
6710
|
+
postcodeOrZip?: string | null | undefined;
|
6711
|
+
}, {
|
6712
|
+
country: string;
|
6713
|
+
state: string;
|
6714
|
+
district2: string;
|
6715
|
+
cityOrTown?: string | null | undefined;
|
6716
|
+
addressLine1?: string | null | undefined;
|
6717
|
+
addressLine2?: string | null | undefined;
|
6718
|
+
addressLine3?: string | null | undefined;
|
6719
|
+
postcodeOrZip?: string | null | undefined;
|
5073
6720
|
}>]>>;
|
5074
6721
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5075
6722
|
filename: z.ZodString;
|
@@ -5099,7 +6746,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5099
6746
|
filename: string;
|
5100
6747
|
originalFilename: string;
|
5101
6748
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
5102
|
-
country: z.
|
6749
|
+
country: z.ZodLiteral<string>;
|
5103
6750
|
province: z.ZodString;
|
5104
6751
|
district: z.ZodString;
|
5105
6752
|
}, {
|
@@ -5130,7 +6777,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5130
6777
|
street?: string | null | undefined;
|
5131
6778
|
zipCode?: string | null | undefined;
|
5132
6779
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5133
|
-
country: z.
|
6780
|
+
country: z.ZodLiteral<string>;
|
5134
6781
|
province: z.ZodString;
|
5135
6782
|
district: z.ZodString;
|
5136
6783
|
}, {
|
@@ -5148,6 +6795,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5148
6795
|
province: string;
|
5149
6796
|
urbanOrRural: "RURAL";
|
5150
6797
|
village?: string | null | undefined;
|
6798
|
+
}>, z.ZodObject<{
|
6799
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
6800
|
+
state: z.ZodString;
|
6801
|
+
district2: z.ZodString;
|
6802
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6803
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6804
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6805
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6806
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6807
|
+
}, "strip", z.ZodTypeAny, {
|
6808
|
+
country: string;
|
6809
|
+
state: string;
|
6810
|
+
district2: string;
|
6811
|
+
cityOrTown?: string | null | undefined;
|
6812
|
+
addressLine1?: string | null | undefined;
|
6813
|
+
addressLine2?: string | null | undefined;
|
6814
|
+
addressLine3?: string | null | undefined;
|
6815
|
+
postcodeOrZip?: string | null | undefined;
|
6816
|
+
}, {
|
6817
|
+
country: string;
|
6818
|
+
state: string;
|
6819
|
+
district2: string;
|
6820
|
+
cityOrTown?: string | null | undefined;
|
6821
|
+
addressLine1?: string | null | undefined;
|
6822
|
+
addressLine2?: string | null | undefined;
|
6823
|
+
addressLine3?: string | null | undefined;
|
6824
|
+
postcodeOrZip?: string | null | undefined;
|
5151
6825
|
}>]>>>;
|
5152
6826
|
}, {
|
5153
6827
|
type: z.ZodDefault<z.ZodLiteral<"MARKED_AS_DUPLICATE">>;
|
@@ -5173,6 +6847,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5173
6847
|
province: string;
|
5174
6848
|
urbanOrRural: "RURAL";
|
5175
6849
|
village?: string | null | undefined;
|
6850
|
+
} | {
|
6851
|
+
country: string;
|
6852
|
+
state: string;
|
6853
|
+
district2: string;
|
6854
|
+
cityOrTown?: string | null | undefined;
|
6855
|
+
addressLine1?: string | null | undefined;
|
6856
|
+
addressLine2?: string | null | undefined;
|
6857
|
+
addressLine3?: string | null | undefined;
|
6858
|
+
postcodeOrZip?: string | null | undefined;
|
5176
6859
|
} | {
|
5177
6860
|
type: string;
|
5178
6861
|
option: string;
|
@@ -5201,6 +6884,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5201
6884
|
province: string;
|
5202
6885
|
urbanOrRural: "RURAL";
|
5203
6886
|
village?: string | null | undefined;
|
6887
|
+
} | {
|
6888
|
+
country: string;
|
6889
|
+
state: string;
|
6890
|
+
district2: string;
|
6891
|
+
cityOrTown?: string | null | undefined;
|
6892
|
+
addressLine1?: string | null | undefined;
|
6893
|
+
addressLine2?: string | null | undefined;
|
6894
|
+
addressLine3?: string | null | undefined;
|
6895
|
+
postcodeOrZip?: string | null | undefined;
|
5204
6896
|
} | {
|
5205
6897
|
type: string;
|
5206
6898
|
option: string;
|
@@ -5228,6 +6920,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5228
6920
|
province: string;
|
5229
6921
|
urbanOrRural: "RURAL";
|
5230
6922
|
village?: string | null | undefined;
|
6923
|
+
} | {
|
6924
|
+
country: string;
|
6925
|
+
state: string;
|
6926
|
+
district2: string;
|
6927
|
+
cityOrTown?: string | null | undefined;
|
6928
|
+
addressLine1?: string | null | undefined;
|
6929
|
+
addressLine2?: string | null | undefined;
|
6930
|
+
addressLine3?: string | null | undefined;
|
6931
|
+
postcodeOrZip?: string | null | undefined;
|
5231
6932
|
} | {
|
5232
6933
|
type: string;
|
5233
6934
|
option: string;
|
@@ -5257,6 +6958,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5257
6958
|
province: string;
|
5258
6959
|
urbanOrRural: "RURAL";
|
5259
6960
|
village?: string | null | undefined;
|
6961
|
+
} | {
|
6962
|
+
country: string;
|
6963
|
+
state: string;
|
6964
|
+
district2: string;
|
6965
|
+
cityOrTown?: string | null | undefined;
|
6966
|
+
addressLine1?: string | null | undefined;
|
6967
|
+
addressLine2?: string | null | undefined;
|
6968
|
+
addressLine3?: string | null | undefined;
|
6969
|
+
postcodeOrZip?: string | null | undefined;
|
5260
6970
|
} | {
|
5261
6971
|
type: string;
|
5262
6972
|
option: string;
|
@@ -5294,7 +7004,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5294
7004
|
filename: string;
|
5295
7005
|
originalFilename: string;
|
5296
7006
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
5297
|
-
country: z.
|
7007
|
+
country: z.ZodLiteral<string>;
|
5298
7008
|
province: z.ZodString;
|
5299
7009
|
district: z.ZodString;
|
5300
7010
|
}, {
|
@@ -5325,7 +7035,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5325
7035
|
street?: string | null | undefined;
|
5326
7036
|
zipCode?: string | null | undefined;
|
5327
7037
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5328
|
-
country: z.
|
7038
|
+
country: z.ZodLiteral<string>;
|
5329
7039
|
province: z.ZodString;
|
5330
7040
|
district: z.ZodString;
|
5331
7041
|
}, {
|
@@ -5343,6 +7053,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5343
7053
|
province: string;
|
5344
7054
|
urbanOrRural: "RURAL";
|
5345
7055
|
village?: string | null | undefined;
|
7056
|
+
}>, z.ZodObject<{
|
7057
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
7058
|
+
state: z.ZodString;
|
7059
|
+
district2: z.ZodString;
|
7060
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7061
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7062
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7063
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7064
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7065
|
+
}, "strip", z.ZodTypeAny, {
|
7066
|
+
country: string;
|
7067
|
+
state: string;
|
7068
|
+
district2: string;
|
7069
|
+
cityOrTown?: string | null | undefined;
|
7070
|
+
addressLine1?: string | null | undefined;
|
7071
|
+
addressLine2?: string | null | undefined;
|
7072
|
+
addressLine3?: string | null | undefined;
|
7073
|
+
postcodeOrZip?: string | null | undefined;
|
7074
|
+
}, {
|
7075
|
+
country: string;
|
7076
|
+
state: string;
|
7077
|
+
district2: string;
|
7078
|
+
cityOrTown?: string | null | undefined;
|
7079
|
+
addressLine1?: string | null | undefined;
|
7080
|
+
addressLine2?: string | null | undefined;
|
7081
|
+
addressLine3?: string | null | undefined;
|
7082
|
+
postcodeOrZip?: string | null | undefined;
|
5346
7083
|
}>]>>;
|
5347
7084
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5348
7085
|
filename: z.ZodString;
|
@@ -5372,7 +7109,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5372
7109
|
filename: string;
|
5373
7110
|
originalFilename: string;
|
5374
7111
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
5375
|
-
country: z.
|
7112
|
+
country: z.ZodLiteral<string>;
|
5376
7113
|
province: z.ZodString;
|
5377
7114
|
district: z.ZodString;
|
5378
7115
|
}, {
|
@@ -5403,7 +7140,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5403
7140
|
street?: string | null | undefined;
|
5404
7141
|
zipCode?: string | null | undefined;
|
5405
7142
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5406
|
-
country: z.
|
7143
|
+
country: z.ZodLiteral<string>;
|
5407
7144
|
province: z.ZodString;
|
5408
7145
|
district: z.ZodString;
|
5409
7146
|
}, {
|
@@ -5421,11 +7158,38 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5421
7158
|
province: string;
|
5422
7159
|
urbanOrRural: "RURAL";
|
5423
7160
|
village?: string | null | undefined;
|
7161
|
+
}>, z.ZodObject<{
|
7162
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
7163
|
+
state: z.ZodString;
|
7164
|
+
district2: z.ZodString;
|
7165
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7166
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7167
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7168
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7169
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7170
|
+
}, "strip", z.ZodTypeAny, {
|
7171
|
+
country: string;
|
7172
|
+
state: string;
|
7173
|
+
district2: string;
|
7174
|
+
cityOrTown?: string | null | undefined;
|
7175
|
+
addressLine1?: string | null | undefined;
|
7176
|
+
addressLine2?: string | null | undefined;
|
7177
|
+
addressLine3?: string | null | undefined;
|
7178
|
+
postcodeOrZip?: string | null | undefined;
|
7179
|
+
}, {
|
7180
|
+
country: string;
|
7181
|
+
state: string;
|
7182
|
+
district2: string;
|
7183
|
+
cityOrTown?: string | null | undefined;
|
7184
|
+
addressLine1?: string | null | undefined;
|
7185
|
+
addressLine2?: string | null | undefined;
|
7186
|
+
addressLine3?: string | null | undefined;
|
7187
|
+
postcodeOrZip?: string | null | undefined;
|
5424
7188
|
}>]>>>;
|
5425
7189
|
}, {
|
5426
|
-
type: z.ZodDefault<z.ZodLiteral<"
|
7190
|
+
type: z.ZodDefault<z.ZodLiteral<"ARCHIVE">>;
|
5427
7191
|
}>, "strip", z.ZodTypeAny, {
|
5428
|
-
type: "
|
7192
|
+
type: "ARCHIVE";
|
5429
7193
|
data: Record<string, string | number | boolean | {
|
5430
7194
|
type: string;
|
5431
7195
|
filename: string;
|
@@ -5446,6 +7210,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5446
7210
|
province: string;
|
5447
7211
|
urbanOrRural: "RURAL";
|
5448
7212
|
village?: string | null | undefined;
|
7213
|
+
} | {
|
7214
|
+
country: string;
|
7215
|
+
state: string;
|
7216
|
+
district2: string;
|
7217
|
+
cityOrTown?: string | null | undefined;
|
7218
|
+
addressLine1?: string | null | undefined;
|
7219
|
+
addressLine2?: string | null | undefined;
|
7220
|
+
addressLine3?: string | null | undefined;
|
7221
|
+
postcodeOrZip?: string | null | undefined;
|
5449
7222
|
} | {
|
5450
7223
|
type: string;
|
5451
7224
|
option: string;
|
@@ -5474,6 +7247,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5474
7247
|
province: string;
|
5475
7248
|
urbanOrRural: "RURAL";
|
5476
7249
|
village?: string | null | undefined;
|
7250
|
+
} | {
|
7251
|
+
country: string;
|
7252
|
+
state: string;
|
7253
|
+
district2: string;
|
7254
|
+
cityOrTown?: string | null | undefined;
|
7255
|
+
addressLine1?: string | null | undefined;
|
7256
|
+
addressLine2?: string | null | undefined;
|
7257
|
+
addressLine3?: string | null | undefined;
|
7258
|
+
postcodeOrZip?: string | null | undefined;
|
5477
7259
|
} | {
|
5478
7260
|
type: string;
|
5479
7261
|
option: string;
|
@@ -5501,6 +7283,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5501
7283
|
province: string;
|
5502
7284
|
urbanOrRural: "RURAL";
|
5503
7285
|
village?: string | null | undefined;
|
7286
|
+
} | {
|
7287
|
+
country: string;
|
7288
|
+
state: string;
|
7289
|
+
district2: string;
|
7290
|
+
cityOrTown?: string | null | undefined;
|
7291
|
+
addressLine1?: string | null | undefined;
|
7292
|
+
addressLine2?: string | null | undefined;
|
7293
|
+
addressLine3?: string | null | undefined;
|
7294
|
+
postcodeOrZip?: string | null | undefined;
|
5504
7295
|
} | {
|
5505
7296
|
type: string;
|
5506
7297
|
option: string;
|
@@ -5509,7 +7300,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5509
7300
|
}[]>;
|
5510
7301
|
eventId: string;
|
5511
7302
|
transactionId: string;
|
5512
|
-
type?: "
|
7303
|
+
type?: "ARCHIVE" | undefined;
|
5513
7304
|
metadata?: Record<string, string | number | boolean | {
|
5514
7305
|
type: string;
|
5515
7306
|
filename: string;
|
@@ -5530,6 +7321,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5530
7321
|
province: string;
|
5531
7322
|
urbanOrRural: "RURAL";
|
5532
7323
|
village?: string | null | undefined;
|
7324
|
+
} | {
|
7325
|
+
country: string;
|
7326
|
+
state: string;
|
7327
|
+
district2: string;
|
7328
|
+
cityOrTown?: string | null | undefined;
|
7329
|
+
addressLine1?: string | null | undefined;
|
7330
|
+
addressLine2?: string | null | undefined;
|
7331
|
+
addressLine3?: string | null | undefined;
|
7332
|
+
postcodeOrZip?: string | null | undefined;
|
5533
7333
|
} | {
|
5534
7334
|
type: string;
|
5535
7335
|
option: string;
|
@@ -5567,7 +7367,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5567
7367
|
filename: string;
|
5568
7368
|
originalFilename: string;
|
5569
7369
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
5570
|
-
country: z.
|
7370
|
+
country: z.ZodLiteral<string>;
|
5571
7371
|
province: z.ZodString;
|
5572
7372
|
district: z.ZodString;
|
5573
7373
|
}, {
|
@@ -5598,7 +7398,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5598
7398
|
street?: string | null | undefined;
|
5599
7399
|
zipCode?: string | null | undefined;
|
5600
7400
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5601
|
-
country: z.
|
7401
|
+
country: z.ZodLiteral<string>;
|
5602
7402
|
province: z.ZodString;
|
5603
7403
|
district: z.ZodString;
|
5604
7404
|
}, {
|
@@ -5616,6 +7416,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5616
7416
|
province: string;
|
5617
7417
|
urbanOrRural: "RURAL";
|
5618
7418
|
village?: string | null | undefined;
|
7419
|
+
}>, z.ZodObject<{
|
7420
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
7421
|
+
state: z.ZodString;
|
7422
|
+
district2: z.ZodString;
|
7423
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7424
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7425
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7426
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7427
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7428
|
+
}, "strip", z.ZodTypeAny, {
|
7429
|
+
country: string;
|
7430
|
+
state: string;
|
7431
|
+
district2: string;
|
7432
|
+
cityOrTown?: string | null | undefined;
|
7433
|
+
addressLine1?: string | null | undefined;
|
7434
|
+
addressLine2?: string | null | undefined;
|
7435
|
+
addressLine3?: string | null | undefined;
|
7436
|
+
postcodeOrZip?: string | null | undefined;
|
7437
|
+
}, {
|
7438
|
+
country: string;
|
7439
|
+
state: string;
|
7440
|
+
district2: string;
|
7441
|
+
cityOrTown?: string | null | undefined;
|
7442
|
+
addressLine1?: string | null | undefined;
|
7443
|
+
addressLine2?: string | null | undefined;
|
7444
|
+
addressLine3?: string | null | undefined;
|
7445
|
+
postcodeOrZip?: string | null | undefined;
|
5619
7446
|
}>]>>;
|
5620
7447
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5621
7448
|
filename: z.ZodString;
|
@@ -5645,7 +7472,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5645
7472
|
filename: string;
|
5646
7473
|
originalFilename: string;
|
5647
7474
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
5648
|
-
country: z.
|
7475
|
+
country: z.ZodLiteral<string>;
|
5649
7476
|
province: z.ZodString;
|
5650
7477
|
district: z.ZodString;
|
5651
7478
|
}, {
|
@@ -5676,7 +7503,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5676
7503
|
street?: string | null | undefined;
|
5677
7504
|
zipCode?: string | null | undefined;
|
5678
7505
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5679
|
-
country: z.
|
7506
|
+
country: z.ZodLiteral<string>;
|
5680
7507
|
province: z.ZodString;
|
5681
7508
|
district: z.ZodString;
|
5682
7509
|
}, {
|
@@ -5694,6 +7521,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5694
7521
|
province: string;
|
5695
7522
|
urbanOrRural: "RURAL";
|
5696
7523
|
village?: string | null | undefined;
|
7524
|
+
}>, z.ZodObject<{
|
7525
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
7526
|
+
state: z.ZodString;
|
7527
|
+
district2: z.ZodString;
|
7528
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7529
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7530
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7531
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7532
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7533
|
+
}, "strip", z.ZodTypeAny, {
|
7534
|
+
country: string;
|
7535
|
+
state: string;
|
7536
|
+
district2: string;
|
7537
|
+
cityOrTown?: string | null | undefined;
|
7538
|
+
addressLine1?: string | null | undefined;
|
7539
|
+
addressLine2?: string | null | undefined;
|
7540
|
+
addressLine3?: string | null | undefined;
|
7541
|
+
postcodeOrZip?: string | null | undefined;
|
7542
|
+
}, {
|
7543
|
+
country: string;
|
7544
|
+
state: string;
|
7545
|
+
district2: string;
|
7546
|
+
cityOrTown?: string | null | undefined;
|
7547
|
+
addressLine1?: string | null | undefined;
|
7548
|
+
addressLine2?: string | null | undefined;
|
7549
|
+
addressLine3?: string | null | undefined;
|
7550
|
+
postcodeOrZip?: string | null | undefined;
|
5697
7551
|
}>]>>>;
|
5698
7552
|
}, {
|
5699
7553
|
type: z.ZodDefault<z.ZodLiteral<"ASSIGN">>;
|
@@ -5720,6 +7574,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5720
7574
|
province: string;
|
5721
7575
|
urbanOrRural: "RURAL";
|
5722
7576
|
village?: string | null | undefined;
|
7577
|
+
} | {
|
7578
|
+
country: string;
|
7579
|
+
state: string;
|
7580
|
+
district2: string;
|
7581
|
+
cityOrTown?: string | null | undefined;
|
7582
|
+
addressLine1?: string | null | undefined;
|
7583
|
+
addressLine2?: string | null | undefined;
|
7584
|
+
addressLine3?: string | null | undefined;
|
7585
|
+
postcodeOrZip?: string | null | undefined;
|
5723
7586
|
} | {
|
5724
7587
|
type: string;
|
5725
7588
|
option: string;
|
@@ -5749,6 +7612,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5749
7612
|
province: string;
|
5750
7613
|
urbanOrRural: "RURAL";
|
5751
7614
|
village?: string | null | undefined;
|
7615
|
+
} | {
|
7616
|
+
country: string;
|
7617
|
+
state: string;
|
7618
|
+
district2: string;
|
7619
|
+
cityOrTown?: string | null | undefined;
|
7620
|
+
addressLine1?: string | null | undefined;
|
7621
|
+
addressLine2?: string | null | undefined;
|
7622
|
+
addressLine3?: string | null | undefined;
|
7623
|
+
postcodeOrZip?: string | null | undefined;
|
5752
7624
|
} | {
|
5753
7625
|
type: string;
|
5754
7626
|
option: string;
|
@@ -5776,6 +7648,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5776
7648
|
province: string;
|
5777
7649
|
urbanOrRural: "RURAL";
|
5778
7650
|
village?: string | null | undefined;
|
7651
|
+
} | {
|
7652
|
+
country: string;
|
7653
|
+
state: string;
|
7654
|
+
district2: string;
|
7655
|
+
cityOrTown?: string | null | undefined;
|
7656
|
+
addressLine1?: string | null | undefined;
|
7657
|
+
addressLine2?: string | null | undefined;
|
7658
|
+
addressLine3?: string | null | undefined;
|
7659
|
+
postcodeOrZip?: string | null | undefined;
|
5779
7660
|
} | {
|
5780
7661
|
type: string;
|
5781
7662
|
option: string;
|
@@ -5806,6 +7687,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5806
7687
|
province: string;
|
5807
7688
|
urbanOrRural: "RURAL";
|
5808
7689
|
village?: string | null | undefined;
|
7690
|
+
} | {
|
7691
|
+
country: string;
|
7692
|
+
state: string;
|
7693
|
+
district2: string;
|
7694
|
+
cityOrTown?: string | null | undefined;
|
7695
|
+
addressLine1?: string | null | undefined;
|
7696
|
+
addressLine2?: string | null | undefined;
|
7697
|
+
addressLine3?: string | null | undefined;
|
7698
|
+
postcodeOrZip?: string | null | undefined;
|
5809
7699
|
} | {
|
5810
7700
|
type: string;
|
5811
7701
|
option: string;
|
@@ -5843,7 +7733,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5843
7733
|
filename: string;
|
5844
7734
|
originalFilename: string;
|
5845
7735
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
5846
|
-
country: z.
|
7736
|
+
country: z.ZodLiteral<string>;
|
5847
7737
|
province: z.ZodString;
|
5848
7738
|
district: z.ZodString;
|
5849
7739
|
}, {
|
@@ -5874,7 +7764,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5874
7764
|
street?: string | null | undefined;
|
5875
7765
|
zipCode?: string | null | undefined;
|
5876
7766
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5877
|
-
country: z.
|
7767
|
+
country: z.ZodLiteral<string>;
|
5878
7768
|
province: z.ZodString;
|
5879
7769
|
district: z.ZodString;
|
5880
7770
|
}, {
|
@@ -5892,6 +7782,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5892
7782
|
province: string;
|
5893
7783
|
urbanOrRural: "RURAL";
|
5894
7784
|
village?: string | null | undefined;
|
7785
|
+
}>, z.ZodObject<{
|
7786
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
7787
|
+
state: z.ZodString;
|
7788
|
+
district2: z.ZodString;
|
7789
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7790
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7791
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7792
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7793
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7794
|
+
}, "strip", z.ZodTypeAny, {
|
7795
|
+
country: string;
|
7796
|
+
state: string;
|
7797
|
+
district2: string;
|
7798
|
+
cityOrTown?: string | null | undefined;
|
7799
|
+
addressLine1?: string | null | undefined;
|
7800
|
+
addressLine2?: string | null | undefined;
|
7801
|
+
addressLine3?: string | null | undefined;
|
7802
|
+
postcodeOrZip?: string | null | undefined;
|
7803
|
+
}, {
|
7804
|
+
country: string;
|
7805
|
+
state: string;
|
7806
|
+
district2: string;
|
7807
|
+
cityOrTown?: string | null | undefined;
|
7808
|
+
addressLine1?: string | null | undefined;
|
7809
|
+
addressLine2?: string | null | undefined;
|
7810
|
+
addressLine3?: string | null | undefined;
|
7811
|
+
postcodeOrZip?: string | null | undefined;
|
5895
7812
|
}>]>>;
|
5896
7813
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
5897
7814
|
filename: z.ZodString;
|
@@ -5921,7 +7838,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5921
7838
|
filename: string;
|
5922
7839
|
originalFilename: string;
|
5923
7840
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
5924
|
-
country: z.
|
7841
|
+
country: z.ZodLiteral<string>;
|
5925
7842
|
province: z.ZodString;
|
5926
7843
|
district: z.ZodString;
|
5927
7844
|
}, {
|
@@ -5952,7 +7869,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5952
7869
|
street?: string | null | undefined;
|
5953
7870
|
zipCode?: string | null | undefined;
|
5954
7871
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5955
|
-
country: z.
|
7872
|
+
country: z.ZodLiteral<string>;
|
5956
7873
|
province: z.ZodString;
|
5957
7874
|
district: z.ZodString;
|
5958
7875
|
}, {
|
@@ -5970,6 +7887,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5970
7887
|
province: string;
|
5971
7888
|
urbanOrRural: "RURAL";
|
5972
7889
|
village?: string | null | undefined;
|
7890
|
+
}>, z.ZodObject<{
|
7891
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
7892
|
+
state: z.ZodString;
|
7893
|
+
district2: z.ZodString;
|
7894
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7895
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7896
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7897
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7898
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7899
|
+
}, "strip", z.ZodTypeAny, {
|
7900
|
+
country: string;
|
7901
|
+
state: string;
|
7902
|
+
district2: string;
|
7903
|
+
cityOrTown?: string | null | undefined;
|
7904
|
+
addressLine1?: string | null | undefined;
|
7905
|
+
addressLine2?: string | null | undefined;
|
7906
|
+
addressLine3?: string | null | undefined;
|
7907
|
+
postcodeOrZip?: string | null | undefined;
|
7908
|
+
}, {
|
7909
|
+
country: string;
|
7910
|
+
state: string;
|
7911
|
+
district2: string;
|
7912
|
+
cityOrTown?: string | null | undefined;
|
7913
|
+
addressLine1?: string | null | undefined;
|
7914
|
+
addressLine2?: string | null | undefined;
|
7915
|
+
addressLine3?: string | null | undefined;
|
7916
|
+
postcodeOrZip?: string | null | undefined;
|
5973
7917
|
}>]>>>;
|
5974
7918
|
}, {
|
5975
7919
|
type: z.ZodDefault<z.ZodLiteral<"UNASSIGN">>;
|
@@ -5995,6 +7939,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
5995
7939
|
province: string;
|
5996
7940
|
urbanOrRural: "RURAL";
|
5997
7941
|
village?: string | null | undefined;
|
7942
|
+
} | {
|
7943
|
+
country: string;
|
7944
|
+
state: string;
|
7945
|
+
district2: string;
|
7946
|
+
cityOrTown?: string | null | undefined;
|
7947
|
+
addressLine1?: string | null | undefined;
|
7948
|
+
addressLine2?: string | null | undefined;
|
7949
|
+
addressLine3?: string | null | undefined;
|
7950
|
+
postcodeOrZip?: string | null | undefined;
|
5998
7951
|
} | {
|
5999
7952
|
type: string;
|
6000
7953
|
option: string;
|
@@ -6023,6 +7976,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6023
7976
|
province: string;
|
6024
7977
|
urbanOrRural: "RURAL";
|
6025
7978
|
village?: string | null | undefined;
|
7979
|
+
} | {
|
7980
|
+
country: string;
|
7981
|
+
state: string;
|
7982
|
+
district2: string;
|
7983
|
+
cityOrTown?: string | null | undefined;
|
7984
|
+
addressLine1?: string | null | undefined;
|
7985
|
+
addressLine2?: string | null | undefined;
|
7986
|
+
addressLine3?: string | null | undefined;
|
7987
|
+
postcodeOrZip?: string | null | undefined;
|
6026
7988
|
} | {
|
6027
7989
|
type: string;
|
6028
7990
|
option: string;
|
@@ -6050,6 +8012,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6050
8012
|
province: string;
|
6051
8013
|
urbanOrRural: "RURAL";
|
6052
8014
|
village?: string | null | undefined;
|
8015
|
+
} | {
|
8016
|
+
country: string;
|
8017
|
+
state: string;
|
8018
|
+
district2: string;
|
8019
|
+
cityOrTown?: string | null | undefined;
|
8020
|
+
addressLine1?: string | null | undefined;
|
8021
|
+
addressLine2?: string | null | undefined;
|
8022
|
+
addressLine3?: string | null | undefined;
|
8023
|
+
postcodeOrZip?: string | null | undefined;
|
6053
8024
|
} | {
|
6054
8025
|
type: string;
|
6055
8026
|
option: string;
|
@@ -6079,6 +8050,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6079
8050
|
province: string;
|
6080
8051
|
urbanOrRural: "RURAL";
|
6081
8052
|
village?: string | null | undefined;
|
8053
|
+
} | {
|
8054
|
+
country: string;
|
8055
|
+
state: string;
|
8056
|
+
district2: string;
|
8057
|
+
cityOrTown?: string | null | undefined;
|
8058
|
+
addressLine1?: string | null | undefined;
|
8059
|
+
addressLine2?: string | null | undefined;
|
8060
|
+
addressLine3?: string | null | undefined;
|
8061
|
+
postcodeOrZip?: string | null | undefined;
|
6082
8062
|
} | {
|
6083
8063
|
type: string;
|
6084
8064
|
option: string;
|
@@ -6116,7 +8096,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6116
8096
|
filename: string;
|
6117
8097
|
originalFilename: string;
|
6118
8098
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
6119
|
-
country: z.
|
8099
|
+
country: z.ZodLiteral<string>;
|
6120
8100
|
province: z.ZodString;
|
6121
8101
|
district: z.ZodString;
|
6122
8102
|
}, {
|
@@ -6147,7 +8127,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6147
8127
|
street?: string | null | undefined;
|
6148
8128
|
zipCode?: string | null | undefined;
|
6149
8129
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6150
|
-
country: z.
|
8130
|
+
country: z.ZodLiteral<string>;
|
6151
8131
|
province: z.ZodString;
|
6152
8132
|
district: z.ZodString;
|
6153
8133
|
}, {
|
@@ -6165,6 +8145,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6165
8145
|
province: string;
|
6166
8146
|
urbanOrRural: "RURAL";
|
6167
8147
|
village?: string | null | undefined;
|
8148
|
+
}>, z.ZodObject<{
|
8149
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
8150
|
+
state: z.ZodString;
|
8151
|
+
district2: z.ZodString;
|
8152
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8153
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8154
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8155
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8156
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8157
|
+
}, "strip", z.ZodTypeAny, {
|
8158
|
+
country: string;
|
8159
|
+
state: string;
|
8160
|
+
district2: string;
|
8161
|
+
cityOrTown?: string | null | undefined;
|
8162
|
+
addressLine1?: string | null | undefined;
|
8163
|
+
addressLine2?: string | null | undefined;
|
8164
|
+
addressLine3?: string | null | undefined;
|
8165
|
+
postcodeOrZip?: string | null | undefined;
|
8166
|
+
}, {
|
8167
|
+
country: string;
|
8168
|
+
state: string;
|
8169
|
+
district2: string;
|
8170
|
+
cityOrTown?: string | null | undefined;
|
8171
|
+
addressLine1?: string | null | undefined;
|
8172
|
+
addressLine2?: string | null | undefined;
|
8173
|
+
addressLine3?: string | null | undefined;
|
8174
|
+
postcodeOrZip?: string | null | undefined;
|
6168
8175
|
}>]>>;
|
6169
8176
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6170
8177
|
filename: z.ZodString;
|
@@ -6194,7 +8201,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6194
8201
|
filename: string;
|
6195
8202
|
originalFilename: string;
|
6196
8203
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
6197
|
-
country: z.
|
8204
|
+
country: z.ZodLiteral<string>;
|
6198
8205
|
province: z.ZodString;
|
6199
8206
|
district: z.ZodString;
|
6200
8207
|
}, {
|
@@ -6225,7 +8232,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6225
8232
|
street?: string | null | undefined;
|
6226
8233
|
zipCode?: string | null | undefined;
|
6227
8234
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6228
|
-
country: z.
|
8235
|
+
country: z.ZodLiteral<string>;
|
6229
8236
|
province: z.ZodString;
|
6230
8237
|
district: z.ZodString;
|
6231
8238
|
}, {
|
@@ -6243,6 +8250,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6243
8250
|
province: string;
|
6244
8251
|
urbanOrRural: "RURAL";
|
6245
8252
|
village?: string | null | undefined;
|
8253
|
+
}>, z.ZodObject<{
|
8254
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
8255
|
+
state: z.ZodString;
|
8256
|
+
district2: z.ZodString;
|
8257
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8258
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8259
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8260
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8261
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8262
|
+
}, "strip", z.ZodTypeAny, {
|
8263
|
+
country: string;
|
8264
|
+
state: string;
|
8265
|
+
district2: string;
|
8266
|
+
cityOrTown?: string | null | undefined;
|
8267
|
+
addressLine1?: string | null | undefined;
|
8268
|
+
addressLine2?: string | null | undefined;
|
8269
|
+
addressLine3?: string | null | undefined;
|
8270
|
+
postcodeOrZip?: string | null | undefined;
|
8271
|
+
}, {
|
8272
|
+
country: string;
|
8273
|
+
state: string;
|
8274
|
+
district2: string;
|
8275
|
+
cityOrTown?: string | null | undefined;
|
8276
|
+
addressLine1?: string | null | undefined;
|
8277
|
+
addressLine2?: string | null | undefined;
|
8278
|
+
addressLine3?: string | null | undefined;
|
8279
|
+
postcodeOrZip?: string | null | undefined;
|
6246
8280
|
}>]>>>;
|
6247
8281
|
}, {
|
6248
8282
|
type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
|
@@ -6268,6 +8302,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6268
8302
|
province: string;
|
6269
8303
|
urbanOrRural: "RURAL";
|
6270
8304
|
village?: string | null | undefined;
|
8305
|
+
} | {
|
8306
|
+
country: string;
|
8307
|
+
state: string;
|
8308
|
+
district2: string;
|
8309
|
+
cityOrTown?: string | null | undefined;
|
8310
|
+
addressLine1?: string | null | undefined;
|
8311
|
+
addressLine2?: string | null | undefined;
|
8312
|
+
addressLine3?: string | null | undefined;
|
8313
|
+
postcodeOrZip?: string | null | undefined;
|
6271
8314
|
} | {
|
6272
8315
|
type: string;
|
6273
8316
|
option: string;
|
@@ -6296,6 +8339,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6296
8339
|
province: string;
|
6297
8340
|
urbanOrRural: "RURAL";
|
6298
8341
|
village?: string | null | undefined;
|
8342
|
+
} | {
|
8343
|
+
country: string;
|
8344
|
+
state: string;
|
8345
|
+
district2: string;
|
8346
|
+
cityOrTown?: string | null | undefined;
|
8347
|
+
addressLine1?: string | null | undefined;
|
8348
|
+
addressLine2?: string | null | undefined;
|
8349
|
+
addressLine3?: string | null | undefined;
|
8350
|
+
postcodeOrZip?: string | null | undefined;
|
6299
8351
|
} | {
|
6300
8352
|
type: string;
|
6301
8353
|
option: string;
|
@@ -6323,6 +8375,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6323
8375
|
province: string;
|
6324
8376
|
urbanOrRural: "RURAL";
|
6325
8377
|
village?: string | null | undefined;
|
8378
|
+
} | {
|
8379
|
+
country: string;
|
8380
|
+
state: string;
|
8381
|
+
district2: string;
|
8382
|
+
cityOrTown?: string | null | undefined;
|
8383
|
+
addressLine1?: string | null | undefined;
|
8384
|
+
addressLine2?: string | null | undefined;
|
8385
|
+
addressLine3?: string | null | undefined;
|
8386
|
+
postcodeOrZip?: string | null | undefined;
|
6326
8387
|
} | {
|
6327
8388
|
type: string;
|
6328
8389
|
option: string;
|
@@ -6352,6 +8413,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6352
8413
|
province: string;
|
6353
8414
|
urbanOrRural: "RURAL";
|
6354
8415
|
village?: string | null | undefined;
|
8416
|
+
} | {
|
8417
|
+
country: string;
|
8418
|
+
state: string;
|
8419
|
+
district2: string;
|
8420
|
+
cityOrTown?: string | null | undefined;
|
8421
|
+
addressLine1?: string | null | undefined;
|
8422
|
+
addressLine2?: string | null | undefined;
|
8423
|
+
addressLine3?: string | null | undefined;
|
8424
|
+
postcodeOrZip?: string | null | undefined;
|
6355
8425
|
} | {
|
6356
8426
|
type: string;
|
6357
8427
|
option: string;
|
@@ -6389,7 +8459,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6389
8459
|
filename: string;
|
6390
8460
|
originalFilename: string;
|
6391
8461
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
6392
|
-
country: z.
|
8462
|
+
country: z.ZodLiteral<string>;
|
6393
8463
|
province: z.ZodString;
|
6394
8464
|
district: z.ZodString;
|
6395
8465
|
}, {
|
@@ -6420,7 +8490,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6420
8490
|
street?: string | null | undefined;
|
6421
8491
|
zipCode?: string | null | undefined;
|
6422
8492
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6423
|
-
country: z.
|
8493
|
+
country: z.ZodLiteral<string>;
|
6424
8494
|
province: z.ZodString;
|
6425
8495
|
district: z.ZodString;
|
6426
8496
|
}, {
|
@@ -6438,6 +8508,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6438
8508
|
province: string;
|
6439
8509
|
urbanOrRural: "RURAL";
|
6440
8510
|
village?: string | null | undefined;
|
8511
|
+
}>, z.ZodObject<{
|
8512
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
8513
|
+
state: z.ZodString;
|
8514
|
+
district2: z.ZodString;
|
8515
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8516
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8517
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8518
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8519
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8520
|
+
}, "strip", z.ZodTypeAny, {
|
8521
|
+
country: string;
|
8522
|
+
state: string;
|
8523
|
+
district2: string;
|
8524
|
+
cityOrTown?: string | null | undefined;
|
8525
|
+
addressLine1?: string | null | undefined;
|
8526
|
+
addressLine2?: string | null | undefined;
|
8527
|
+
addressLine3?: string | null | undefined;
|
8528
|
+
postcodeOrZip?: string | null | undefined;
|
8529
|
+
}, {
|
8530
|
+
country: string;
|
8531
|
+
state: string;
|
8532
|
+
district2: string;
|
8533
|
+
cityOrTown?: string | null | undefined;
|
8534
|
+
addressLine1?: string | null | undefined;
|
8535
|
+
addressLine2?: string | null | undefined;
|
8536
|
+
addressLine3?: string | null | undefined;
|
8537
|
+
postcodeOrZip?: string | null | undefined;
|
6441
8538
|
}>]>>;
|
6442
8539
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6443
8540
|
filename: z.ZodString;
|
@@ -6467,7 +8564,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6467
8564
|
filename: string;
|
6468
8565
|
originalFilename: string;
|
6469
8566
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
6470
|
-
country: z.
|
8567
|
+
country: z.ZodLiteral<string>;
|
6471
8568
|
province: z.ZodString;
|
6472
8569
|
district: z.ZodString;
|
6473
8570
|
}, {
|
@@ -6498,7 +8595,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6498
8595
|
street?: string | null | undefined;
|
6499
8596
|
zipCode?: string | null | undefined;
|
6500
8597
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6501
|
-
country: z.
|
8598
|
+
country: z.ZodLiteral<string>;
|
6502
8599
|
province: z.ZodString;
|
6503
8600
|
district: z.ZodString;
|
6504
8601
|
}, {
|
@@ -6516,6 +8613,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6516
8613
|
province: string;
|
6517
8614
|
urbanOrRural: "RURAL";
|
6518
8615
|
village?: string | null | undefined;
|
8616
|
+
}>, z.ZodObject<{
|
8617
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
8618
|
+
state: z.ZodString;
|
8619
|
+
district2: z.ZodString;
|
8620
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8621
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8622
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8623
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8624
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8625
|
+
}, "strip", z.ZodTypeAny, {
|
8626
|
+
country: string;
|
8627
|
+
state: string;
|
8628
|
+
district2: string;
|
8629
|
+
cityOrTown?: string | null | undefined;
|
8630
|
+
addressLine1?: string | null | undefined;
|
8631
|
+
addressLine2?: string | null | undefined;
|
8632
|
+
addressLine3?: string | null | undefined;
|
8633
|
+
postcodeOrZip?: string | null | undefined;
|
8634
|
+
}, {
|
8635
|
+
country: string;
|
8636
|
+
state: string;
|
8637
|
+
district2: string;
|
8638
|
+
cityOrTown?: string | null | undefined;
|
8639
|
+
addressLine1?: string | null | undefined;
|
8640
|
+
addressLine2?: string | null | undefined;
|
8641
|
+
addressLine3?: string | null | undefined;
|
8642
|
+
postcodeOrZip?: string | null | undefined;
|
6519
8643
|
}>]>>>;
|
6520
8644
|
}, {
|
6521
8645
|
type: z.ZodDefault<z.ZodLiteral<"REQUEST_CORRECTION">>;
|
@@ -6541,6 +8665,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6541
8665
|
province: string;
|
6542
8666
|
urbanOrRural: "RURAL";
|
6543
8667
|
village?: string | null | undefined;
|
8668
|
+
} | {
|
8669
|
+
country: string;
|
8670
|
+
state: string;
|
8671
|
+
district2: string;
|
8672
|
+
cityOrTown?: string | null | undefined;
|
8673
|
+
addressLine1?: string | null | undefined;
|
8674
|
+
addressLine2?: string | null | undefined;
|
8675
|
+
addressLine3?: string | null | undefined;
|
8676
|
+
postcodeOrZip?: string | null | undefined;
|
6544
8677
|
} | {
|
6545
8678
|
type: string;
|
6546
8679
|
option: string;
|
@@ -6569,6 +8702,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6569
8702
|
province: string;
|
6570
8703
|
urbanOrRural: "RURAL";
|
6571
8704
|
village?: string | null | undefined;
|
8705
|
+
} | {
|
8706
|
+
country: string;
|
8707
|
+
state: string;
|
8708
|
+
district2: string;
|
8709
|
+
cityOrTown?: string | null | undefined;
|
8710
|
+
addressLine1?: string | null | undefined;
|
8711
|
+
addressLine2?: string | null | undefined;
|
8712
|
+
addressLine3?: string | null | undefined;
|
8713
|
+
postcodeOrZip?: string | null | undefined;
|
6572
8714
|
} | {
|
6573
8715
|
type: string;
|
6574
8716
|
option: string;
|
@@ -6596,6 +8738,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6596
8738
|
province: string;
|
6597
8739
|
urbanOrRural: "RURAL";
|
6598
8740
|
village?: string | null | undefined;
|
8741
|
+
} | {
|
8742
|
+
country: string;
|
8743
|
+
state: string;
|
8744
|
+
district2: string;
|
8745
|
+
cityOrTown?: string | null | undefined;
|
8746
|
+
addressLine1?: string | null | undefined;
|
8747
|
+
addressLine2?: string | null | undefined;
|
8748
|
+
addressLine3?: string | null | undefined;
|
8749
|
+
postcodeOrZip?: string | null | undefined;
|
6599
8750
|
} | {
|
6600
8751
|
type: string;
|
6601
8752
|
option: string;
|
@@ -6625,6 +8776,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6625
8776
|
province: string;
|
6626
8777
|
urbanOrRural: "RURAL";
|
6627
8778
|
village?: string | null | undefined;
|
8779
|
+
} | {
|
8780
|
+
country: string;
|
8781
|
+
state: string;
|
8782
|
+
district2: string;
|
8783
|
+
cityOrTown?: string | null | undefined;
|
8784
|
+
addressLine1?: string | null | undefined;
|
8785
|
+
addressLine2?: string | null | undefined;
|
8786
|
+
addressLine3?: string | null | undefined;
|
8787
|
+
postcodeOrZip?: string | null | undefined;
|
6628
8788
|
} | {
|
6629
8789
|
type: string;
|
6630
8790
|
option: string;
|
@@ -6662,7 +8822,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6662
8822
|
filename: string;
|
6663
8823
|
originalFilename: string;
|
6664
8824
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
6665
|
-
country: z.
|
8825
|
+
country: z.ZodLiteral<string>;
|
6666
8826
|
province: z.ZodString;
|
6667
8827
|
district: z.ZodString;
|
6668
8828
|
}, {
|
@@ -6693,7 +8853,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6693
8853
|
street?: string | null | undefined;
|
6694
8854
|
zipCode?: string | null | undefined;
|
6695
8855
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6696
|
-
country: z.
|
8856
|
+
country: z.ZodLiteral<string>;
|
6697
8857
|
province: z.ZodString;
|
6698
8858
|
district: z.ZodString;
|
6699
8859
|
}, {
|
@@ -6711,6 +8871,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6711
8871
|
province: string;
|
6712
8872
|
urbanOrRural: "RURAL";
|
6713
8873
|
village?: string | null | undefined;
|
8874
|
+
}>, z.ZodObject<{
|
8875
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
8876
|
+
state: z.ZodString;
|
8877
|
+
district2: z.ZodString;
|
8878
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8879
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8880
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8881
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8882
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8883
|
+
}, "strip", z.ZodTypeAny, {
|
8884
|
+
country: string;
|
8885
|
+
state: string;
|
8886
|
+
district2: string;
|
8887
|
+
cityOrTown?: string | null | undefined;
|
8888
|
+
addressLine1?: string | null | undefined;
|
8889
|
+
addressLine2?: string | null | undefined;
|
8890
|
+
addressLine3?: string | null | undefined;
|
8891
|
+
postcodeOrZip?: string | null | undefined;
|
8892
|
+
}, {
|
8893
|
+
country: string;
|
8894
|
+
state: string;
|
8895
|
+
district2: string;
|
8896
|
+
cityOrTown?: string | null | undefined;
|
8897
|
+
addressLine1?: string | null | undefined;
|
8898
|
+
addressLine2?: string | null | undefined;
|
8899
|
+
addressLine3?: string | null | undefined;
|
8900
|
+
postcodeOrZip?: string | null | undefined;
|
6714
8901
|
}>]>>;
|
6715
8902
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6716
8903
|
filename: z.ZodString;
|
@@ -6740,7 +8927,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6740
8927
|
filename: string;
|
6741
8928
|
originalFilename: string;
|
6742
8929
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
6743
|
-
country: z.
|
8930
|
+
country: z.ZodLiteral<string>;
|
6744
8931
|
province: z.ZodString;
|
6745
8932
|
district: z.ZodString;
|
6746
8933
|
}, {
|
@@ -6771,7 +8958,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6771
8958
|
street?: string | null | undefined;
|
6772
8959
|
zipCode?: string | null | undefined;
|
6773
8960
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6774
|
-
country: z.
|
8961
|
+
country: z.ZodLiteral<string>;
|
6775
8962
|
province: z.ZodString;
|
6776
8963
|
district: z.ZodString;
|
6777
8964
|
}, {
|
@@ -6789,6 +8976,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6789
8976
|
province: string;
|
6790
8977
|
urbanOrRural: "RURAL";
|
6791
8978
|
village?: string | null | undefined;
|
8979
|
+
}>, z.ZodObject<{
|
8980
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
8981
|
+
state: z.ZodString;
|
8982
|
+
district2: z.ZodString;
|
8983
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8984
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8985
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8986
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8987
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8988
|
+
}, "strip", z.ZodTypeAny, {
|
8989
|
+
country: string;
|
8990
|
+
state: string;
|
8991
|
+
district2: string;
|
8992
|
+
cityOrTown?: string | null | undefined;
|
8993
|
+
addressLine1?: string | null | undefined;
|
8994
|
+
addressLine2?: string | null | undefined;
|
8995
|
+
addressLine3?: string | null | undefined;
|
8996
|
+
postcodeOrZip?: string | null | undefined;
|
8997
|
+
}, {
|
8998
|
+
country: string;
|
8999
|
+
state: string;
|
9000
|
+
district2: string;
|
9001
|
+
cityOrTown?: string | null | undefined;
|
9002
|
+
addressLine1?: string | null | undefined;
|
9003
|
+
addressLine2?: string | null | undefined;
|
9004
|
+
addressLine3?: string | null | undefined;
|
9005
|
+
postcodeOrZip?: string | null | undefined;
|
6792
9006
|
}>]>>>;
|
6793
9007
|
}, {
|
6794
9008
|
requestId: z.ZodString;
|
@@ -6815,6 +9029,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6815
9029
|
province: string;
|
6816
9030
|
urbanOrRural: "RURAL";
|
6817
9031
|
village?: string | null | undefined;
|
9032
|
+
} | {
|
9033
|
+
country: string;
|
9034
|
+
state: string;
|
9035
|
+
district2: string;
|
9036
|
+
cityOrTown?: string | null | undefined;
|
9037
|
+
addressLine1?: string | null | undefined;
|
9038
|
+
addressLine2?: string | null | undefined;
|
9039
|
+
addressLine3?: string | null | undefined;
|
9040
|
+
postcodeOrZip?: string | null | undefined;
|
6818
9041
|
} | {
|
6819
9042
|
type: string;
|
6820
9043
|
option: string;
|
@@ -6844,6 +9067,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6844
9067
|
province: string;
|
6845
9068
|
urbanOrRural: "RURAL";
|
6846
9069
|
village?: string | null | undefined;
|
9070
|
+
} | {
|
9071
|
+
country: string;
|
9072
|
+
state: string;
|
9073
|
+
district2: string;
|
9074
|
+
cityOrTown?: string | null | undefined;
|
9075
|
+
addressLine1?: string | null | undefined;
|
9076
|
+
addressLine2?: string | null | undefined;
|
9077
|
+
addressLine3?: string | null | undefined;
|
9078
|
+
postcodeOrZip?: string | null | undefined;
|
6847
9079
|
} | {
|
6848
9080
|
type: string;
|
6849
9081
|
option: string;
|
@@ -6871,6 +9103,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6871
9103
|
province: string;
|
6872
9104
|
urbanOrRural: "RURAL";
|
6873
9105
|
village?: string | null | undefined;
|
9106
|
+
} | {
|
9107
|
+
country: string;
|
9108
|
+
state: string;
|
9109
|
+
district2: string;
|
9110
|
+
cityOrTown?: string | null | undefined;
|
9111
|
+
addressLine1?: string | null | undefined;
|
9112
|
+
addressLine2?: string | null | undefined;
|
9113
|
+
addressLine3?: string | null | undefined;
|
9114
|
+
postcodeOrZip?: string | null | undefined;
|
6874
9115
|
} | {
|
6875
9116
|
type: string;
|
6876
9117
|
option: string;
|
@@ -6901,6 +9142,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6901
9142
|
province: string;
|
6902
9143
|
urbanOrRural: "RURAL";
|
6903
9144
|
village?: string | null | undefined;
|
9145
|
+
} | {
|
9146
|
+
country: string;
|
9147
|
+
state: string;
|
9148
|
+
district2: string;
|
9149
|
+
cityOrTown?: string | null | undefined;
|
9150
|
+
addressLine1?: string | null | undefined;
|
9151
|
+
addressLine2?: string | null | undefined;
|
9152
|
+
addressLine3?: string | null | undefined;
|
9153
|
+
postcodeOrZip?: string | null | undefined;
|
6904
9154
|
} | {
|
6905
9155
|
type: string;
|
6906
9156
|
option: string;
|
@@ -6938,7 +9188,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6938
9188
|
filename: string;
|
6939
9189
|
originalFilename: string;
|
6940
9190
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
6941
|
-
country: z.
|
9191
|
+
country: z.ZodLiteral<string>;
|
6942
9192
|
province: z.ZodString;
|
6943
9193
|
district: z.ZodString;
|
6944
9194
|
}, {
|
@@ -6969,7 +9219,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6969
9219
|
street?: string | null | undefined;
|
6970
9220
|
zipCode?: string | null | undefined;
|
6971
9221
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6972
|
-
country: z.
|
9222
|
+
country: z.ZodLiteral<string>;
|
6973
9223
|
province: z.ZodString;
|
6974
9224
|
district: z.ZodString;
|
6975
9225
|
}, {
|
@@ -6987,6 +9237,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
6987
9237
|
province: string;
|
6988
9238
|
urbanOrRural: "RURAL";
|
6989
9239
|
village?: string | null | undefined;
|
9240
|
+
}>, z.ZodObject<{
|
9241
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
9242
|
+
state: z.ZodString;
|
9243
|
+
district2: z.ZodString;
|
9244
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9245
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9246
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9247
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9248
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9249
|
+
}, "strip", z.ZodTypeAny, {
|
9250
|
+
country: string;
|
9251
|
+
state: string;
|
9252
|
+
district2: string;
|
9253
|
+
cityOrTown?: string | null | undefined;
|
9254
|
+
addressLine1?: string | null | undefined;
|
9255
|
+
addressLine2?: string | null | undefined;
|
9256
|
+
addressLine3?: string | null | undefined;
|
9257
|
+
postcodeOrZip?: string | null | undefined;
|
9258
|
+
}, {
|
9259
|
+
country: string;
|
9260
|
+
state: string;
|
9261
|
+
district2: string;
|
9262
|
+
cityOrTown?: string | null | undefined;
|
9263
|
+
addressLine1?: string | null | undefined;
|
9264
|
+
addressLine2?: string | null | undefined;
|
9265
|
+
addressLine3?: string | null | undefined;
|
9266
|
+
postcodeOrZip?: string | null | undefined;
|
6990
9267
|
}>]>>;
|
6991
9268
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
6992
9269
|
filename: z.ZodString;
|
@@ -7016,7 +9293,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7016
9293
|
filename: string;
|
7017
9294
|
originalFilename: string;
|
7018
9295
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
7019
|
-
country: z.
|
9296
|
+
country: z.ZodLiteral<string>;
|
7020
9297
|
province: z.ZodString;
|
7021
9298
|
district: z.ZodString;
|
7022
9299
|
}, {
|
@@ -7047,7 +9324,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7047
9324
|
street?: string | null | undefined;
|
7048
9325
|
zipCode?: string | null | undefined;
|
7049
9326
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7050
|
-
country: z.
|
9327
|
+
country: z.ZodLiteral<string>;
|
7051
9328
|
province: z.ZodString;
|
7052
9329
|
district: z.ZodString;
|
7053
9330
|
}, {
|
@@ -7065,6 +9342,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7065
9342
|
province: string;
|
7066
9343
|
urbanOrRural: "RURAL";
|
7067
9344
|
village?: string | null | undefined;
|
9345
|
+
}>, z.ZodObject<{
|
9346
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
9347
|
+
state: z.ZodString;
|
9348
|
+
district2: z.ZodString;
|
9349
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9350
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9351
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9352
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9353
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9354
|
+
}, "strip", z.ZodTypeAny, {
|
9355
|
+
country: string;
|
9356
|
+
state: string;
|
9357
|
+
district2: string;
|
9358
|
+
cityOrTown?: string | null | undefined;
|
9359
|
+
addressLine1?: string | null | undefined;
|
9360
|
+
addressLine2?: string | null | undefined;
|
9361
|
+
addressLine3?: string | null | undefined;
|
9362
|
+
postcodeOrZip?: string | null | undefined;
|
9363
|
+
}, {
|
9364
|
+
country: string;
|
9365
|
+
state: string;
|
9366
|
+
district2: string;
|
9367
|
+
cityOrTown?: string | null | undefined;
|
9368
|
+
addressLine1?: string | null | undefined;
|
9369
|
+
addressLine2?: string | null | undefined;
|
9370
|
+
addressLine3?: string | null | undefined;
|
9371
|
+
postcodeOrZip?: string | null | undefined;
|
7068
9372
|
}>]>>>;
|
7069
9373
|
}, {
|
7070
9374
|
requestId: z.ZodString;
|
@@ -7091,6 +9395,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7091
9395
|
province: string;
|
7092
9396
|
urbanOrRural: "RURAL";
|
7093
9397
|
village?: string | null | undefined;
|
9398
|
+
} | {
|
9399
|
+
country: string;
|
9400
|
+
state: string;
|
9401
|
+
district2: string;
|
9402
|
+
cityOrTown?: string | null | undefined;
|
9403
|
+
addressLine1?: string | null | undefined;
|
9404
|
+
addressLine2?: string | null | undefined;
|
9405
|
+
addressLine3?: string | null | undefined;
|
9406
|
+
postcodeOrZip?: string | null | undefined;
|
7094
9407
|
} | {
|
7095
9408
|
type: string;
|
7096
9409
|
option: string;
|
@@ -7120,6 +9433,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7120
9433
|
province: string;
|
7121
9434
|
urbanOrRural: "RURAL";
|
7122
9435
|
village?: string | null | undefined;
|
9436
|
+
} | {
|
9437
|
+
country: string;
|
9438
|
+
state: string;
|
9439
|
+
district2: string;
|
9440
|
+
cityOrTown?: string | null | undefined;
|
9441
|
+
addressLine1?: string | null | undefined;
|
9442
|
+
addressLine2?: string | null | undefined;
|
9443
|
+
addressLine3?: string | null | undefined;
|
9444
|
+
postcodeOrZip?: string | null | undefined;
|
7123
9445
|
} | {
|
7124
9446
|
type: string;
|
7125
9447
|
option: string;
|
@@ -7147,6 +9469,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7147
9469
|
province: string;
|
7148
9470
|
urbanOrRural: "RURAL";
|
7149
9471
|
village?: string | null | undefined;
|
9472
|
+
} | {
|
9473
|
+
country: string;
|
9474
|
+
state: string;
|
9475
|
+
district2: string;
|
9476
|
+
cityOrTown?: string | null | undefined;
|
9477
|
+
addressLine1?: string | null | undefined;
|
9478
|
+
addressLine2?: string | null | undefined;
|
9479
|
+
addressLine3?: string | null | undefined;
|
9480
|
+
postcodeOrZip?: string | null | undefined;
|
7150
9481
|
} | {
|
7151
9482
|
type: string;
|
7152
9483
|
option: string;
|
@@ -7177,6 +9508,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7177
9508
|
province: string;
|
7178
9509
|
urbanOrRural: "RURAL";
|
7179
9510
|
village?: string | null | undefined;
|
9511
|
+
} | {
|
9512
|
+
country: string;
|
9513
|
+
state: string;
|
9514
|
+
district2: string;
|
9515
|
+
cityOrTown?: string | null | undefined;
|
9516
|
+
addressLine1?: string | null | undefined;
|
9517
|
+
addressLine2?: string | null | undefined;
|
9518
|
+
addressLine3?: string | null | undefined;
|
9519
|
+
postcodeOrZip?: string | null | undefined;
|
7180
9520
|
} | {
|
7181
9521
|
type: string;
|
7182
9522
|
option: string;
|