@opencrvs/toolkit 1.8.0-rc.fbb7263 → 1.8.0-rc.fca3e39
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 +5020 -22
- package/dist/commons/conditionals/conditionals.d.ts +1 -0
- 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 +2079 -3
- package/dist/commons/events/ActionInput.d.ts +3132 -12
- package/dist/commons/events/ActionType.d.ts +6 -1
- package/dist/commons/events/CompositeFieldValue.d.ts +152 -2
- package/dist/commons/events/Draft.d.ts +288 -0
- package/dist/commons/events/EventConfig.d.ts +4 -28
- package/dist/commons/events/EventDocument.d.ts +2525 -5
- package/dist/commons/events/FieldConfig.d.ts +62 -1
- package/dist/commons/events/FieldType.d.ts +4 -0
- package/dist/commons/events/FieldTypeMapping.d.ts +132 -2
- package/dist/commons/events/FieldValue.d.ts +72 -0
- 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 +147 -3
- package/dist/commons/events/utils.d.ts +121 -0
- package/dist/conditionals/index.js +17 -0
- package/dist/events/index.js +314 -91
- package/package.json +1 -1
@@ -32,6 +32,7 @@ export declare const ActionUpdate: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodStr
|
|
32
32
|
originalFilename: string;
|
33
33
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
34
34
|
country: z.ZodString;
|
35
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
35
36
|
province: z.ZodString;
|
36
37
|
district: z.ZodString;
|
37
38
|
}, {
|
@@ -44,6 +45,7 @@ export declare const ActionUpdate: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodStr
|
|
44
45
|
}>, "strip", z.ZodTypeAny, {
|
45
46
|
country: string;
|
46
47
|
district: string;
|
48
|
+
addressType: "DOMESTIC";
|
47
49
|
province: string;
|
48
50
|
urbanOrRural: "URBAN";
|
49
51
|
number?: string | null | undefined;
|
@@ -54,6 +56,7 @@ export declare const ActionUpdate: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodStr
|
|
54
56
|
}, {
|
55
57
|
country: string;
|
56
58
|
district: string;
|
59
|
+
addressType: "DOMESTIC";
|
57
60
|
province: string;
|
58
61
|
urbanOrRural: "URBAN";
|
59
62
|
number?: string | null | undefined;
|
@@ -63,6 +66,7 @@ export declare const ActionUpdate: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodStr
|
|
63
66
|
zipCode?: string | null | undefined;
|
64
67
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
65
68
|
country: z.ZodString;
|
69
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
66
70
|
province: z.ZodString;
|
67
71
|
district: z.ZodString;
|
68
72
|
}, {
|
@@ -71,15 +75,47 @@ export declare const ActionUpdate: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodStr
|
|
71
75
|
}>, "strip", z.ZodTypeAny, {
|
72
76
|
country: string;
|
73
77
|
district: string;
|
78
|
+
addressType: "DOMESTIC";
|
74
79
|
province: string;
|
75
80
|
urbanOrRural: "RURAL";
|
76
81
|
village?: string | null | undefined;
|
77
82
|
}, {
|
78
83
|
country: string;
|
79
84
|
district: string;
|
85
|
+
addressType: "DOMESTIC";
|
80
86
|
province: string;
|
81
87
|
urbanOrRural: "RURAL";
|
82
88
|
village?: string | null | undefined;
|
89
|
+
}>, z.ZodObject<{
|
90
|
+
country: z.ZodString;
|
91
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
92
|
+
state: z.ZodString;
|
93
|
+
district2: z.ZodString;
|
94
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
95
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
96
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
97
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
98
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
99
|
+
}, "strip", z.ZodTypeAny, {
|
100
|
+
country: string;
|
101
|
+
state: string;
|
102
|
+
addressType: "INTERNATIONAL";
|
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;
|
109
|
+
}, {
|
110
|
+
country: string;
|
111
|
+
state: string;
|
112
|
+
addressType: "INTERNATIONAL";
|
113
|
+
district2: string;
|
114
|
+
cityOrTown?: string | null | undefined;
|
115
|
+
addressLine1?: string | null | undefined;
|
116
|
+
addressLine2?: string | null | undefined;
|
117
|
+
addressLine3?: string | null | undefined;
|
118
|
+
postcodeOrZip?: string | null | undefined;
|
83
119
|
}>]>>;
|
84
120
|
export type ActionUpdate = z.infer<typeof ActionUpdate>;
|
85
121
|
/**
|
@@ -119,6 +155,7 @@ export declare const ActionBase: z.ZodObject<{
|
|
119
155
|
originalFilename: string;
|
120
156
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
121
157
|
country: z.ZodString;
|
158
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
122
159
|
province: z.ZodString;
|
123
160
|
district: z.ZodString;
|
124
161
|
}, {
|
@@ -131,6 +168,7 @@ export declare const ActionBase: z.ZodObject<{
|
|
131
168
|
}>, "strip", z.ZodTypeAny, {
|
132
169
|
country: string;
|
133
170
|
district: string;
|
171
|
+
addressType: "DOMESTIC";
|
134
172
|
province: string;
|
135
173
|
urbanOrRural: "URBAN";
|
136
174
|
number?: string | null | undefined;
|
@@ -141,6 +179,7 @@ export declare const ActionBase: z.ZodObject<{
|
|
141
179
|
}, {
|
142
180
|
country: string;
|
143
181
|
district: string;
|
182
|
+
addressType: "DOMESTIC";
|
144
183
|
province: string;
|
145
184
|
urbanOrRural: "URBAN";
|
146
185
|
number?: string | null | undefined;
|
@@ -150,6 +189,7 @@ export declare const ActionBase: z.ZodObject<{
|
|
150
189
|
zipCode?: string | null | undefined;
|
151
190
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
152
191
|
country: z.ZodString;
|
192
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
153
193
|
province: z.ZodString;
|
154
194
|
district: z.ZodString;
|
155
195
|
}, {
|
@@ -158,15 +198,47 @@ export declare const ActionBase: z.ZodObject<{
|
|
158
198
|
}>, "strip", z.ZodTypeAny, {
|
159
199
|
country: string;
|
160
200
|
district: string;
|
201
|
+
addressType: "DOMESTIC";
|
161
202
|
province: string;
|
162
203
|
urbanOrRural: "RURAL";
|
163
204
|
village?: string | null | undefined;
|
164
205
|
}, {
|
165
206
|
country: string;
|
166
207
|
district: string;
|
208
|
+
addressType: "DOMESTIC";
|
167
209
|
province: string;
|
168
210
|
urbanOrRural: "RURAL";
|
169
211
|
village?: string | null | undefined;
|
212
|
+
}>, z.ZodObject<{
|
213
|
+
country: z.ZodString;
|
214
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
215
|
+
state: z.ZodString;
|
216
|
+
district2: z.ZodString;
|
217
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
218
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
219
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
220
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
221
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
222
|
+
}, "strip", z.ZodTypeAny, {
|
223
|
+
country: string;
|
224
|
+
state: string;
|
225
|
+
addressType: "INTERNATIONAL";
|
226
|
+
district2: string;
|
227
|
+
cityOrTown?: string | null | undefined;
|
228
|
+
addressLine1?: string | null | undefined;
|
229
|
+
addressLine2?: string | null | undefined;
|
230
|
+
addressLine3?: string | null | undefined;
|
231
|
+
postcodeOrZip?: string | null | undefined;
|
232
|
+
}, {
|
233
|
+
country: string;
|
234
|
+
state: string;
|
235
|
+
addressType: "INTERNATIONAL";
|
236
|
+
district2: string;
|
237
|
+
cityOrTown?: string | null | undefined;
|
238
|
+
addressLine1?: string | null | undefined;
|
239
|
+
addressLine2?: string | null | undefined;
|
240
|
+
addressLine3?: string | null | undefined;
|
241
|
+
postcodeOrZip?: string | null | undefined;
|
170
242
|
}>]>>;
|
171
243
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
172
244
|
filename: z.ZodString;
|
@@ -197,6 +269,7 @@ export declare const ActionBase: z.ZodObject<{
|
|
197
269
|
originalFilename: string;
|
198
270
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
199
271
|
country: z.ZodString;
|
272
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
200
273
|
province: z.ZodString;
|
201
274
|
district: z.ZodString;
|
202
275
|
}, {
|
@@ -209,6 +282,7 @@ export declare const ActionBase: z.ZodObject<{
|
|
209
282
|
}>, "strip", z.ZodTypeAny, {
|
210
283
|
country: string;
|
211
284
|
district: string;
|
285
|
+
addressType: "DOMESTIC";
|
212
286
|
province: string;
|
213
287
|
urbanOrRural: "URBAN";
|
214
288
|
number?: string | null | undefined;
|
@@ -219,6 +293,7 @@ export declare const ActionBase: z.ZodObject<{
|
|
219
293
|
}, {
|
220
294
|
country: string;
|
221
295
|
district: string;
|
296
|
+
addressType: "DOMESTIC";
|
222
297
|
province: string;
|
223
298
|
urbanOrRural: "URBAN";
|
224
299
|
number?: string | null | undefined;
|
@@ -228,6 +303,7 @@ export declare const ActionBase: z.ZodObject<{
|
|
228
303
|
zipCode?: string | null | undefined;
|
229
304
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
230
305
|
country: z.ZodString;
|
306
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
231
307
|
province: z.ZodString;
|
232
308
|
district: z.ZodString;
|
233
309
|
}, {
|
@@ -236,15 +312,47 @@ export declare const ActionBase: z.ZodObject<{
|
|
236
312
|
}>, "strip", z.ZodTypeAny, {
|
237
313
|
country: string;
|
238
314
|
district: string;
|
315
|
+
addressType: "DOMESTIC";
|
239
316
|
province: string;
|
240
317
|
urbanOrRural: "RURAL";
|
241
318
|
village?: string | null | undefined;
|
242
319
|
}, {
|
243
320
|
country: string;
|
244
321
|
district: string;
|
322
|
+
addressType: "DOMESTIC";
|
245
323
|
province: string;
|
246
324
|
urbanOrRural: "RURAL";
|
247
325
|
village?: string | null | undefined;
|
326
|
+
}>, z.ZodObject<{
|
327
|
+
country: z.ZodString;
|
328
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
329
|
+
state: z.ZodString;
|
330
|
+
district2: z.ZodString;
|
331
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
332
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
333
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
334
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
335
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
336
|
+
}, "strip", z.ZodTypeAny, {
|
337
|
+
country: string;
|
338
|
+
state: string;
|
339
|
+
addressType: "INTERNATIONAL";
|
340
|
+
district2: string;
|
341
|
+
cityOrTown?: string | null | undefined;
|
342
|
+
addressLine1?: string | null | undefined;
|
343
|
+
addressLine2?: string | null | undefined;
|
344
|
+
addressLine3?: string | null | undefined;
|
345
|
+
postcodeOrZip?: string | null | undefined;
|
346
|
+
}, {
|
347
|
+
country: string;
|
348
|
+
state: string;
|
349
|
+
addressType: "INTERNATIONAL";
|
350
|
+
district2: string;
|
351
|
+
cityOrTown?: string | null | undefined;
|
352
|
+
addressLine1?: string | null | undefined;
|
353
|
+
addressLine2?: string | null | undefined;
|
354
|
+
addressLine3?: string | null | undefined;
|
355
|
+
postcodeOrZip?: string | null | undefined;
|
248
356
|
}>]>>>;
|
249
357
|
createdAtLocation: z.ZodString;
|
250
358
|
}, "strip", z.ZodTypeAny, {
|
@@ -256,6 +364,7 @@ export declare const ActionBase: z.ZodObject<{
|
|
256
364
|
} | {
|
257
365
|
country: string;
|
258
366
|
district: string;
|
367
|
+
addressType: "DOMESTIC";
|
259
368
|
province: string;
|
260
369
|
urbanOrRural: "URBAN";
|
261
370
|
number?: string | null | undefined;
|
@@ -266,9 +375,20 @@ export declare const ActionBase: z.ZodObject<{
|
|
266
375
|
} | {
|
267
376
|
country: string;
|
268
377
|
district: string;
|
378
|
+
addressType: "DOMESTIC";
|
269
379
|
province: string;
|
270
380
|
urbanOrRural: "RURAL";
|
271
381
|
village?: string | null | undefined;
|
382
|
+
} | {
|
383
|
+
country: string;
|
384
|
+
state: string;
|
385
|
+
addressType: "INTERNATIONAL";
|
386
|
+
district2: string;
|
387
|
+
cityOrTown?: string | null | undefined;
|
388
|
+
addressLine1?: string | null | undefined;
|
389
|
+
addressLine2?: string | null | undefined;
|
390
|
+
addressLine3?: string | null | undefined;
|
391
|
+
postcodeOrZip?: string | null | undefined;
|
272
392
|
} | {
|
273
393
|
type: string;
|
274
394
|
option: string;
|
@@ -285,6 +405,7 @@ export declare const ActionBase: z.ZodObject<{
|
|
285
405
|
} | {
|
286
406
|
country: string;
|
287
407
|
district: string;
|
408
|
+
addressType: "DOMESTIC";
|
288
409
|
province: string;
|
289
410
|
urbanOrRural: "URBAN";
|
290
411
|
number?: string | null | undefined;
|
@@ -295,9 +416,20 @@ export declare const ActionBase: z.ZodObject<{
|
|
295
416
|
} | {
|
296
417
|
country: string;
|
297
418
|
district: string;
|
419
|
+
addressType: "DOMESTIC";
|
298
420
|
province: string;
|
299
421
|
urbanOrRural: "RURAL";
|
300
422
|
village?: string | null | undefined;
|
423
|
+
} | {
|
424
|
+
country: string;
|
425
|
+
state: string;
|
426
|
+
addressType: "INTERNATIONAL";
|
427
|
+
district2: string;
|
428
|
+
cityOrTown?: string | null | undefined;
|
429
|
+
addressLine1?: string | null | undefined;
|
430
|
+
addressLine2?: string | null | undefined;
|
431
|
+
addressLine3?: string | null | undefined;
|
432
|
+
postcodeOrZip?: string | null | undefined;
|
301
433
|
} | {
|
302
434
|
type: string;
|
303
435
|
option: string;
|
@@ -313,6 +445,7 @@ export declare const ActionBase: z.ZodObject<{
|
|
313
445
|
} | {
|
314
446
|
country: string;
|
315
447
|
district: string;
|
448
|
+
addressType: "DOMESTIC";
|
316
449
|
province: string;
|
317
450
|
urbanOrRural: "URBAN";
|
318
451
|
number?: string | null | undefined;
|
@@ -323,9 +456,20 @@ export declare const ActionBase: z.ZodObject<{
|
|
323
456
|
} | {
|
324
457
|
country: string;
|
325
458
|
district: string;
|
459
|
+
addressType: "DOMESTIC";
|
326
460
|
province: string;
|
327
461
|
urbanOrRural: "RURAL";
|
328
462
|
village?: string | null | undefined;
|
463
|
+
} | {
|
464
|
+
country: string;
|
465
|
+
state: string;
|
466
|
+
addressType: "INTERNATIONAL";
|
467
|
+
district2: string;
|
468
|
+
cityOrTown?: string | null | undefined;
|
469
|
+
addressLine1?: string | null | undefined;
|
470
|
+
addressLine2?: string | null | undefined;
|
471
|
+
addressLine3?: string | null | undefined;
|
472
|
+
postcodeOrZip?: string | null | undefined;
|
329
473
|
} | {
|
330
474
|
type: string;
|
331
475
|
option: string;
|
@@ -342,6 +486,7 @@ export declare const ActionBase: z.ZodObject<{
|
|
342
486
|
} | {
|
343
487
|
country: string;
|
344
488
|
district: string;
|
489
|
+
addressType: "DOMESTIC";
|
345
490
|
province: string;
|
346
491
|
urbanOrRural: "URBAN";
|
347
492
|
number?: string | null | undefined;
|
@@ -352,9 +497,20 @@ export declare const ActionBase: z.ZodObject<{
|
|
352
497
|
} | {
|
353
498
|
country: string;
|
354
499
|
district: string;
|
500
|
+
addressType: "DOMESTIC";
|
355
501
|
province: string;
|
356
502
|
urbanOrRural: "RURAL";
|
357
503
|
village?: string | null | undefined;
|
504
|
+
} | {
|
505
|
+
country: string;
|
506
|
+
state: string;
|
507
|
+
addressType: "INTERNATIONAL";
|
508
|
+
district2: string;
|
509
|
+
cityOrTown?: string | null | undefined;
|
510
|
+
addressLine1?: string | null | undefined;
|
511
|
+
addressLine2?: string | null | undefined;
|
512
|
+
addressLine3?: string | null | undefined;
|
513
|
+
postcodeOrZip?: string | null | undefined;
|
358
514
|
} | {
|
359
515
|
type: string;
|
360
516
|
option: string;
|
@@ -396,6 +552,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
396
552
|
originalFilename: string;
|
397
553
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
398
554
|
country: z.ZodString;
|
555
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
399
556
|
province: z.ZodString;
|
400
557
|
district: z.ZodString;
|
401
558
|
}, {
|
@@ -408,6 +565,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
408
565
|
}>, "strip", z.ZodTypeAny, {
|
409
566
|
country: string;
|
410
567
|
district: string;
|
568
|
+
addressType: "DOMESTIC";
|
411
569
|
province: string;
|
412
570
|
urbanOrRural: "URBAN";
|
413
571
|
number?: string | null | undefined;
|
@@ -418,6 +576,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
418
576
|
}, {
|
419
577
|
country: string;
|
420
578
|
district: string;
|
579
|
+
addressType: "DOMESTIC";
|
421
580
|
province: string;
|
422
581
|
urbanOrRural: "URBAN";
|
423
582
|
number?: string | null | undefined;
|
@@ -427,6 +586,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
427
586
|
zipCode?: string | null | undefined;
|
428
587
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
429
588
|
country: z.ZodString;
|
589
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
430
590
|
province: z.ZodString;
|
431
591
|
district: z.ZodString;
|
432
592
|
}, {
|
@@ -435,15 +595,47 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
435
595
|
}>, "strip", z.ZodTypeAny, {
|
436
596
|
country: string;
|
437
597
|
district: string;
|
598
|
+
addressType: "DOMESTIC";
|
438
599
|
province: string;
|
439
600
|
urbanOrRural: "RURAL";
|
440
601
|
village?: string | null | undefined;
|
441
602
|
}, {
|
442
603
|
country: string;
|
443
604
|
district: string;
|
605
|
+
addressType: "DOMESTIC";
|
444
606
|
province: string;
|
445
607
|
urbanOrRural: "RURAL";
|
446
608
|
village?: string | null | undefined;
|
609
|
+
}>, z.ZodObject<{
|
610
|
+
country: z.ZodString;
|
611
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
612
|
+
state: z.ZodString;
|
613
|
+
district2: z.ZodString;
|
614
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
615
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
616
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
617
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
618
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
619
|
+
}, "strip", z.ZodTypeAny, {
|
620
|
+
country: string;
|
621
|
+
state: string;
|
622
|
+
addressType: "INTERNATIONAL";
|
623
|
+
district2: string;
|
624
|
+
cityOrTown?: string | null | undefined;
|
625
|
+
addressLine1?: string | null | undefined;
|
626
|
+
addressLine2?: string | null | undefined;
|
627
|
+
addressLine3?: string | null | undefined;
|
628
|
+
postcodeOrZip?: string | null | undefined;
|
629
|
+
}, {
|
630
|
+
country: string;
|
631
|
+
state: string;
|
632
|
+
addressType: "INTERNATIONAL";
|
633
|
+
district2: string;
|
634
|
+
cityOrTown?: string | null | undefined;
|
635
|
+
addressLine1?: string | null | undefined;
|
636
|
+
addressLine2?: string | null | undefined;
|
637
|
+
addressLine3?: string | null | undefined;
|
638
|
+
postcodeOrZip?: string | null | undefined;
|
447
639
|
}>]>>;
|
448
640
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
449
641
|
filename: z.ZodString;
|
@@ -474,6 +666,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
474
666
|
originalFilename: string;
|
475
667
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
476
668
|
country: z.ZodString;
|
669
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
477
670
|
province: z.ZodString;
|
478
671
|
district: z.ZodString;
|
479
672
|
}, {
|
@@ -486,6 +679,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
486
679
|
}>, "strip", z.ZodTypeAny, {
|
487
680
|
country: string;
|
488
681
|
district: string;
|
682
|
+
addressType: "DOMESTIC";
|
489
683
|
province: string;
|
490
684
|
urbanOrRural: "URBAN";
|
491
685
|
number?: string | null | undefined;
|
@@ -496,6 +690,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
496
690
|
}, {
|
497
691
|
country: string;
|
498
692
|
district: string;
|
693
|
+
addressType: "DOMESTIC";
|
499
694
|
province: string;
|
500
695
|
urbanOrRural: "URBAN";
|
501
696
|
number?: string | null | undefined;
|
@@ -505,6 +700,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
505
700
|
zipCode?: string | null | undefined;
|
506
701
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
507
702
|
country: z.ZodString;
|
703
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
508
704
|
province: z.ZodString;
|
509
705
|
district: z.ZodString;
|
510
706
|
}, {
|
@@ -513,15 +709,47 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
513
709
|
}>, "strip", z.ZodTypeAny, {
|
514
710
|
country: string;
|
515
711
|
district: string;
|
712
|
+
addressType: "DOMESTIC";
|
516
713
|
province: string;
|
517
714
|
urbanOrRural: "RURAL";
|
518
715
|
village?: string | null | undefined;
|
519
716
|
}, {
|
520
717
|
country: string;
|
521
718
|
district: string;
|
719
|
+
addressType: "DOMESTIC";
|
522
720
|
province: string;
|
523
721
|
urbanOrRural: "RURAL";
|
524
722
|
village?: string | null | undefined;
|
723
|
+
}>, z.ZodObject<{
|
724
|
+
country: z.ZodString;
|
725
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
726
|
+
state: z.ZodString;
|
727
|
+
district2: z.ZodString;
|
728
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
729
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
730
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
731
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
732
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
733
|
+
}, "strip", z.ZodTypeAny, {
|
734
|
+
country: string;
|
735
|
+
state: string;
|
736
|
+
addressType: "INTERNATIONAL";
|
737
|
+
district2: string;
|
738
|
+
cityOrTown?: string | null | undefined;
|
739
|
+
addressLine1?: string | null | undefined;
|
740
|
+
addressLine2?: string | null | undefined;
|
741
|
+
addressLine3?: string | null | undefined;
|
742
|
+
postcodeOrZip?: string | null | undefined;
|
743
|
+
}, {
|
744
|
+
country: string;
|
745
|
+
state: string;
|
746
|
+
addressType: "INTERNATIONAL";
|
747
|
+
district2: string;
|
748
|
+
cityOrTown?: string | null | undefined;
|
749
|
+
addressLine1?: string | null | undefined;
|
750
|
+
addressLine2?: string | null | undefined;
|
751
|
+
addressLine3?: string | null | undefined;
|
752
|
+
postcodeOrZip?: string | null | undefined;
|
525
753
|
}>]>>>;
|
526
754
|
createdAtLocation: z.ZodString;
|
527
755
|
}, {
|
@@ -536,6 +764,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
536
764
|
} | {
|
537
765
|
country: string;
|
538
766
|
district: string;
|
767
|
+
addressType: "DOMESTIC";
|
539
768
|
province: string;
|
540
769
|
urbanOrRural: "URBAN";
|
541
770
|
number?: string | null | undefined;
|
@@ -546,9 +775,20 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
546
775
|
} | {
|
547
776
|
country: string;
|
548
777
|
district: string;
|
778
|
+
addressType: "DOMESTIC";
|
549
779
|
province: string;
|
550
780
|
urbanOrRural: "RURAL";
|
551
781
|
village?: string | null | undefined;
|
782
|
+
} | {
|
783
|
+
country: string;
|
784
|
+
state: string;
|
785
|
+
addressType: "INTERNATIONAL";
|
786
|
+
district2: string;
|
787
|
+
cityOrTown?: string | null | undefined;
|
788
|
+
addressLine1?: string | null | undefined;
|
789
|
+
addressLine2?: string | null | undefined;
|
790
|
+
addressLine3?: string | null | undefined;
|
791
|
+
postcodeOrZip?: string | null | undefined;
|
552
792
|
} | {
|
553
793
|
type: string;
|
554
794
|
option: string;
|
@@ -565,6 +805,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
565
805
|
} | {
|
566
806
|
country: string;
|
567
807
|
district: string;
|
808
|
+
addressType: "DOMESTIC";
|
568
809
|
province: string;
|
569
810
|
urbanOrRural: "URBAN";
|
570
811
|
number?: string | null | undefined;
|
@@ -575,9 +816,20 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
575
816
|
} | {
|
576
817
|
country: string;
|
577
818
|
district: string;
|
819
|
+
addressType: "DOMESTIC";
|
578
820
|
province: string;
|
579
821
|
urbanOrRural: "RURAL";
|
580
822
|
village?: string | null | undefined;
|
823
|
+
} | {
|
824
|
+
country: string;
|
825
|
+
state: string;
|
826
|
+
addressType: "INTERNATIONAL";
|
827
|
+
district2: string;
|
828
|
+
cityOrTown?: string | null | undefined;
|
829
|
+
addressLine1?: string | null | undefined;
|
830
|
+
addressLine2?: string | null | undefined;
|
831
|
+
addressLine3?: string | null | undefined;
|
832
|
+
postcodeOrZip?: string | null | undefined;
|
581
833
|
} | {
|
582
834
|
type: string;
|
583
835
|
option: string;
|
@@ -594,6 +846,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
594
846
|
} | {
|
595
847
|
country: string;
|
596
848
|
district: string;
|
849
|
+
addressType: "DOMESTIC";
|
597
850
|
province: string;
|
598
851
|
urbanOrRural: "URBAN";
|
599
852
|
number?: string | null | undefined;
|
@@ -604,9 +857,20 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
604
857
|
} | {
|
605
858
|
country: string;
|
606
859
|
district: string;
|
860
|
+
addressType: "DOMESTIC";
|
607
861
|
province: string;
|
608
862
|
urbanOrRural: "RURAL";
|
609
863
|
village?: string | null | undefined;
|
864
|
+
} | {
|
865
|
+
country: string;
|
866
|
+
state: string;
|
867
|
+
addressType: "INTERNATIONAL";
|
868
|
+
district2: string;
|
869
|
+
cityOrTown?: string | null | undefined;
|
870
|
+
addressLine1?: string | null | undefined;
|
871
|
+
addressLine2?: string | null | undefined;
|
872
|
+
addressLine3?: string | null | undefined;
|
873
|
+
postcodeOrZip?: string | null | undefined;
|
610
874
|
} | {
|
611
875
|
type: string;
|
612
876
|
option: string;
|
@@ -623,6 +887,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
623
887
|
} | {
|
624
888
|
country: string;
|
625
889
|
district: string;
|
890
|
+
addressType: "DOMESTIC";
|
626
891
|
province: string;
|
627
892
|
urbanOrRural: "URBAN";
|
628
893
|
number?: string | null | undefined;
|
@@ -633,9 +898,20 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
633
898
|
} | {
|
634
899
|
country: string;
|
635
900
|
district: string;
|
901
|
+
addressType: "DOMESTIC";
|
636
902
|
province: string;
|
637
903
|
urbanOrRural: "RURAL";
|
638
904
|
village?: string | null | undefined;
|
905
|
+
} | {
|
906
|
+
country: string;
|
907
|
+
state: string;
|
908
|
+
addressType: "INTERNATIONAL";
|
909
|
+
district2: string;
|
910
|
+
cityOrTown?: string | null | undefined;
|
911
|
+
addressLine1?: string | null | undefined;
|
912
|
+
addressLine2?: string | null | undefined;
|
913
|
+
addressLine3?: string | null | undefined;
|
914
|
+
postcodeOrZip?: string | null | undefined;
|
639
915
|
} | {
|
640
916
|
type: string;
|
641
917
|
option: string;
|
@@ -676,6 +952,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
676
952
|
originalFilename: string;
|
677
953
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
678
954
|
country: z.ZodString;
|
955
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
679
956
|
province: z.ZodString;
|
680
957
|
district: z.ZodString;
|
681
958
|
}, {
|
@@ -688,6 +965,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
688
965
|
}>, "strip", z.ZodTypeAny, {
|
689
966
|
country: string;
|
690
967
|
district: string;
|
968
|
+
addressType: "DOMESTIC";
|
691
969
|
province: string;
|
692
970
|
urbanOrRural: "URBAN";
|
693
971
|
number?: string | null | undefined;
|
@@ -698,6 +976,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
698
976
|
}, {
|
699
977
|
country: string;
|
700
978
|
district: string;
|
979
|
+
addressType: "DOMESTIC";
|
701
980
|
province: string;
|
702
981
|
urbanOrRural: "URBAN";
|
703
982
|
number?: string | null | undefined;
|
@@ -707,6 +986,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
707
986
|
zipCode?: string | null | undefined;
|
708
987
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
709
988
|
country: z.ZodString;
|
989
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
710
990
|
province: z.ZodString;
|
711
991
|
district: z.ZodString;
|
712
992
|
}, {
|
@@ -715,15 +995,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
715
995
|
}>, "strip", z.ZodTypeAny, {
|
716
996
|
country: string;
|
717
997
|
district: string;
|
998
|
+
addressType: "DOMESTIC";
|
718
999
|
province: string;
|
719
1000
|
urbanOrRural: "RURAL";
|
720
1001
|
village?: string | null | undefined;
|
721
1002
|
}, {
|
722
1003
|
country: string;
|
723
1004
|
district: string;
|
1005
|
+
addressType: "DOMESTIC";
|
724
1006
|
province: string;
|
725
1007
|
urbanOrRural: "RURAL";
|
726
1008
|
village?: string | null | undefined;
|
1009
|
+
}>, z.ZodObject<{
|
1010
|
+
country: z.ZodString;
|
1011
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
1012
|
+
state: z.ZodString;
|
1013
|
+
district2: z.ZodString;
|
1014
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1015
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1016
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1017
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1018
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1019
|
+
}, "strip", z.ZodTypeAny, {
|
1020
|
+
country: string;
|
1021
|
+
state: string;
|
1022
|
+
addressType: "INTERNATIONAL";
|
1023
|
+
district2: string;
|
1024
|
+
cityOrTown?: string | null | undefined;
|
1025
|
+
addressLine1?: string | null | undefined;
|
1026
|
+
addressLine2?: string | null | undefined;
|
1027
|
+
addressLine3?: string | null | undefined;
|
1028
|
+
postcodeOrZip?: string | null | undefined;
|
1029
|
+
}, {
|
1030
|
+
country: string;
|
1031
|
+
state: string;
|
1032
|
+
addressType: "INTERNATIONAL";
|
1033
|
+
district2: string;
|
1034
|
+
cityOrTown?: string | null | undefined;
|
1035
|
+
addressLine1?: string | null | undefined;
|
1036
|
+
addressLine2?: string | null | undefined;
|
1037
|
+
addressLine3?: string | null | undefined;
|
1038
|
+
postcodeOrZip?: string | null | undefined;
|
727
1039
|
}>]>>;
|
728
1040
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
729
1041
|
filename: z.ZodString;
|
@@ -754,6 +1066,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
754
1066
|
originalFilename: string;
|
755
1067
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
756
1068
|
country: z.ZodString;
|
1069
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
757
1070
|
province: z.ZodString;
|
758
1071
|
district: z.ZodString;
|
759
1072
|
}, {
|
@@ -766,6 +1079,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
766
1079
|
}>, "strip", z.ZodTypeAny, {
|
767
1080
|
country: string;
|
768
1081
|
district: string;
|
1082
|
+
addressType: "DOMESTIC";
|
769
1083
|
province: string;
|
770
1084
|
urbanOrRural: "URBAN";
|
771
1085
|
number?: string | null | undefined;
|
@@ -776,6 +1090,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
776
1090
|
}, {
|
777
1091
|
country: string;
|
778
1092
|
district: string;
|
1093
|
+
addressType: "DOMESTIC";
|
779
1094
|
province: string;
|
780
1095
|
urbanOrRural: "URBAN";
|
781
1096
|
number?: string | null | undefined;
|
@@ -785,6 +1100,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
785
1100
|
zipCode?: string | null | undefined;
|
786
1101
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
787
1102
|
country: z.ZodString;
|
1103
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
788
1104
|
province: z.ZodString;
|
789
1105
|
district: z.ZodString;
|
790
1106
|
}, {
|
@@ -793,15 +1109,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
793
1109
|
}>, "strip", z.ZodTypeAny, {
|
794
1110
|
country: string;
|
795
1111
|
district: string;
|
1112
|
+
addressType: "DOMESTIC";
|
796
1113
|
province: string;
|
797
1114
|
urbanOrRural: "RURAL";
|
798
1115
|
village?: string | null | undefined;
|
799
1116
|
}, {
|
800
1117
|
country: string;
|
801
1118
|
district: string;
|
1119
|
+
addressType: "DOMESTIC";
|
802
1120
|
province: string;
|
803
1121
|
urbanOrRural: "RURAL";
|
804
1122
|
village?: string | null | undefined;
|
1123
|
+
}>, z.ZodObject<{
|
1124
|
+
country: z.ZodString;
|
1125
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
1126
|
+
state: z.ZodString;
|
1127
|
+
district2: z.ZodString;
|
1128
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1129
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1130
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1131
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1132
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1133
|
+
}, "strip", z.ZodTypeAny, {
|
1134
|
+
country: string;
|
1135
|
+
state: string;
|
1136
|
+
addressType: "INTERNATIONAL";
|
1137
|
+
district2: string;
|
1138
|
+
cityOrTown?: string | null | undefined;
|
1139
|
+
addressLine1?: string | null | undefined;
|
1140
|
+
addressLine2?: string | null | undefined;
|
1141
|
+
addressLine3?: string | null | undefined;
|
1142
|
+
postcodeOrZip?: string | null | undefined;
|
1143
|
+
}, {
|
1144
|
+
country: string;
|
1145
|
+
state: string;
|
1146
|
+
addressType: "INTERNATIONAL";
|
1147
|
+
district2: string;
|
1148
|
+
cityOrTown?: string | null | undefined;
|
1149
|
+
addressLine1?: string | null | undefined;
|
1150
|
+
addressLine2?: string | null | undefined;
|
1151
|
+
addressLine3?: string | null | undefined;
|
1152
|
+
postcodeOrZip?: string | null | undefined;
|
805
1153
|
}>]>>>;
|
806
1154
|
createdAtLocation: z.ZodString;
|
807
1155
|
}, {
|
@@ -816,6 +1164,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
816
1164
|
} | {
|
817
1165
|
country: string;
|
818
1166
|
district: string;
|
1167
|
+
addressType: "DOMESTIC";
|
819
1168
|
province: string;
|
820
1169
|
urbanOrRural: "URBAN";
|
821
1170
|
number?: string | null | undefined;
|
@@ -826,9 +1175,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
826
1175
|
} | {
|
827
1176
|
country: string;
|
828
1177
|
district: string;
|
1178
|
+
addressType: "DOMESTIC";
|
829
1179
|
province: string;
|
830
1180
|
urbanOrRural: "RURAL";
|
831
1181
|
village?: string | null | undefined;
|
1182
|
+
} | {
|
1183
|
+
country: string;
|
1184
|
+
state: string;
|
1185
|
+
addressType: "INTERNATIONAL";
|
1186
|
+
district2: string;
|
1187
|
+
cityOrTown?: string | null | undefined;
|
1188
|
+
addressLine1?: string | null | undefined;
|
1189
|
+
addressLine2?: string | null | undefined;
|
1190
|
+
addressLine3?: string | null | undefined;
|
1191
|
+
postcodeOrZip?: string | null | undefined;
|
832
1192
|
} | {
|
833
1193
|
type: string;
|
834
1194
|
option: string;
|
@@ -845,6 +1205,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
845
1205
|
} | {
|
846
1206
|
country: string;
|
847
1207
|
district: string;
|
1208
|
+
addressType: "DOMESTIC";
|
848
1209
|
province: string;
|
849
1210
|
urbanOrRural: "URBAN";
|
850
1211
|
number?: string | null | undefined;
|
@@ -855,9 +1216,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
855
1216
|
} | {
|
856
1217
|
country: string;
|
857
1218
|
district: string;
|
1219
|
+
addressType: "DOMESTIC";
|
858
1220
|
province: string;
|
859
1221
|
urbanOrRural: "RURAL";
|
860
1222
|
village?: string | null | undefined;
|
1223
|
+
} | {
|
1224
|
+
country: string;
|
1225
|
+
state: string;
|
1226
|
+
addressType: "INTERNATIONAL";
|
1227
|
+
district2: string;
|
1228
|
+
cityOrTown?: string | null | undefined;
|
1229
|
+
addressLine1?: string | null | undefined;
|
1230
|
+
addressLine2?: string | null | undefined;
|
1231
|
+
addressLine3?: string | null | undefined;
|
1232
|
+
postcodeOrZip?: string | null | undefined;
|
861
1233
|
} | {
|
862
1234
|
type: string;
|
863
1235
|
option: string;
|
@@ -874,6 +1246,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
874
1246
|
} | {
|
875
1247
|
country: string;
|
876
1248
|
district: string;
|
1249
|
+
addressType: "DOMESTIC";
|
877
1250
|
province: string;
|
878
1251
|
urbanOrRural: "URBAN";
|
879
1252
|
number?: string | null | undefined;
|
@@ -884,9 +1257,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
884
1257
|
} | {
|
885
1258
|
country: string;
|
886
1259
|
district: string;
|
1260
|
+
addressType: "DOMESTIC";
|
887
1261
|
province: string;
|
888
1262
|
urbanOrRural: "RURAL";
|
889
1263
|
village?: string | null | undefined;
|
1264
|
+
} | {
|
1265
|
+
country: string;
|
1266
|
+
state: string;
|
1267
|
+
addressType: "INTERNATIONAL";
|
1268
|
+
district2: string;
|
1269
|
+
cityOrTown?: string | null | undefined;
|
1270
|
+
addressLine1?: string | null | undefined;
|
1271
|
+
addressLine2?: string | null | undefined;
|
1272
|
+
addressLine3?: string | null | undefined;
|
1273
|
+
postcodeOrZip?: string | null | undefined;
|
890
1274
|
} | {
|
891
1275
|
type: string;
|
892
1276
|
option: string;
|
@@ -903,6 +1287,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
903
1287
|
} | {
|
904
1288
|
country: string;
|
905
1289
|
district: string;
|
1290
|
+
addressType: "DOMESTIC";
|
906
1291
|
province: string;
|
907
1292
|
urbanOrRural: "URBAN";
|
908
1293
|
number?: string | null | undefined;
|
@@ -913,9 +1298,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
913
1298
|
} | {
|
914
1299
|
country: string;
|
915
1300
|
district: string;
|
1301
|
+
addressType: "DOMESTIC";
|
916
1302
|
province: string;
|
917
1303
|
urbanOrRural: "RURAL";
|
918
1304
|
village?: string | null | undefined;
|
1305
|
+
} | {
|
1306
|
+
country: string;
|
1307
|
+
state: string;
|
1308
|
+
addressType: "INTERNATIONAL";
|
1309
|
+
district2: string;
|
1310
|
+
cityOrTown?: string | null | undefined;
|
1311
|
+
addressLine1?: string | null | undefined;
|
1312
|
+
addressLine2?: string | null | undefined;
|
1313
|
+
addressLine3?: string | null | undefined;
|
1314
|
+
postcodeOrZip?: string | null | undefined;
|
919
1315
|
} | {
|
920
1316
|
type: string;
|
921
1317
|
option: string;
|
@@ -955,6 +1351,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
955
1351
|
originalFilename: string;
|
956
1352
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
957
1353
|
country: z.ZodString;
|
1354
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
958
1355
|
province: z.ZodString;
|
959
1356
|
district: z.ZodString;
|
960
1357
|
}, {
|
@@ -967,6 +1364,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
967
1364
|
}>, "strip", z.ZodTypeAny, {
|
968
1365
|
country: string;
|
969
1366
|
district: string;
|
1367
|
+
addressType: "DOMESTIC";
|
970
1368
|
province: string;
|
971
1369
|
urbanOrRural: "URBAN";
|
972
1370
|
number?: string | null | undefined;
|
@@ -977,6 +1375,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
977
1375
|
}, {
|
978
1376
|
country: string;
|
979
1377
|
district: string;
|
1378
|
+
addressType: "DOMESTIC";
|
980
1379
|
province: string;
|
981
1380
|
urbanOrRural: "URBAN";
|
982
1381
|
number?: string | null | undefined;
|
@@ -986,6 +1385,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
986
1385
|
zipCode?: string | null | undefined;
|
987
1386
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
988
1387
|
country: z.ZodString;
|
1388
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
989
1389
|
province: z.ZodString;
|
990
1390
|
district: z.ZodString;
|
991
1391
|
}, {
|
@@ -994,15 +1394,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
994
1394
|
}>, "strip", z.ZodTypeAny, {
|
995
1395
|
country: string;
|
996
1396
|
district: string;
|
1397
|
+
addressType: "DOMESTIC";
|
997
1398
|
province: string;
|
998
1399
|
urbanOrRural: "RURAL";
|
999
1400
|
village?: string | null | undefined;
|
1000
1401
|
}, {
|
1001
1402
|
country: string;
|
1002
1403
|
district: string;
|
1404
|
+
addressType: "DOMESTIC";
|
1003
1405
|
province: string;
|
1004
1406
|
urbanOrRural: "RURAL";
|
1005
1407
|
village?: string | null | undefined;
|
1408
|
+
}>, z.ZodObject<{
|
1409
|
+
country: z.ZodString;
|
1410
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
1411
|
+
state: z.ZodString;
|
1412
|
+
district2: z.ZodString;
|
1413
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1414
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1415
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1416
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1417
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1418
|
+
}, "strip", z.ZodTypeAny, {
|
1419
|
+
country: string;
|
1420
|
+
state: string;
|
1421
|
+
addressType: "INTERNATIONAL";
|
1422
|
+
district2: string;
|
1423
|
+
cityOrTown?: string | null | undefined;
|
1424
|
+
addressLine1?: string | null | undefined;
|
1425
|
+
addressLine2?: string | null | undefined;
|
1426
|
+
addressLine3?: string | null | undefined;
|
1427
|
+
postcodeOrZip?: string | null | undefined;
|
1428
|
+
}, {
|
1429
|
+
country: string;
|
1430
|
+
state: string;
|
1431
|
+
addressType: "INTERNATIONAL";
|
1432
|
+
district2: string;
|
1433
|
+
cityOrTown?: string | null | undefined;
|
1434
|
+
addressLine1?: string | null | undefined;
|
1435
|
+
addressLine2?: string | null | undefined;
|
1436
|
+
addressLine3?: string | null | undefined;
|
1437
|
+
postcodeOrZip?: string | null | undefined;
|
1006
1438
|
}>]>>;
|
1007
1439
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1008
1440
|
filename: z.ZodString;
|
@@ -1033,6 +1465,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1033
1465
|
originalFilename: string;
|
1034
1466
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1035
1467
|
country: z.ZodString;
|
1468
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
1036
1469
|
province: z.ZodString;
|
1037
1470
|
district: z.ZodString;
|
1038
1471
|
}, {
|
@@ -1045,6 +1478,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1045
1478
|
}>, "strip", z.ZodTypeAny, {
|
1046
1479
|
country: string;
|
1047
1480
|
district: string;
|
1481
|
+
addressType: "DOMESTIC";
|
1048
1482
|
province: string;
|
1049
1483
|
urbanOrRural: "URBAN";
|
1050
1484
|
number?: string | null | undefined;
|
@@ -1055,6 +1489,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1055
1489
|
}, {
|
1056
1490
|
country: string;
|
1057
1491
|
district: string;
|
1492
|
+
addressType: "DOMESTIC";
|
1058
1493
|
province: string;
|
1059
1494
|
urbanOrRural: "URBAN";
|
1060
1495
|
number?: string | null | undefined;
|
@@ -1064,6 +1499,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1064
1499
|
zipCode?: string | null | undefined;
|
1065
1500
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1066
1501
|
country: z.ZodString;
|
1502
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
1067
1503
|
province: z.ZodString;
|
1068
1504
|
district: z.ZodString;
|
1069
1505
|
}, {
|
@@ -1072,15 +1508,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1072
1508
|
}>, "strip", z.ZodTypeAny, {
|
1073
1509
|
country: string;
|
1074
1510
|
district: string;
|
1511
|
+
addressType: "DOMESTIC";
|
1075
1512
|
province: string;
|
1076
1513
|
urbanOrRural: "RURAL";
|
1077
1514
|
village?: string | null | undefined;
|
1078
1515
|
}, {
|
1079
1516
|
country: string;
|
1080
1517
|
district: string;
|
1518
|
+
addressType: "DOMESTIC";
|
1081
1519
|
province: string;
|
1082
1520
|
urbanOrRural: "RURAL";
|
1083
1521
|
village?: string | null | undefined;
|
1522
|
+
}>, z.ZodObject<{
|
1523
|
+
country: z.ZodString;
|
1524
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
1525
|
+
state: z.ZodString;
|
1526
|
+
district2: z.ZodString;
|
1527
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1528
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1529
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1530
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1531
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1532
|
+
}, "strip", z.ZodTypeAny, {
|
1533
|
+
country: string;
|
1534
|
+
state: string;
|
1535
|
+
addressType: "INTERNATIONAL";
|
1536
|
+
district2: string;
|
1537
|
+
cityOrTown?: string | null | undefined;
|
1538
|
+
addressLine1?: string | null | undefined;
|
1539
|
+
addressLine2?: string | null | undefined;
|
1540
|
+
addressLine3?: string | null | undefined;
|
1541
|
+
postcodeOrZip?: string | null | undefined;
|
1542
|
+
}, {
|
1543
|
+
country: string;
|
1544
|
+
state: string;
|
1545
|
+
addressType: "INTERNATIONAL";
|
1546
|
+
district2: string;
|
1547
|
+
cityOrTown?: string | null | undefined;
|
1548
|
+
addressLine1?: string | null | undefined;
|
1549
|
+
addressLine2?: string | null | undefined;
|
1550
|
+
addressLine3?: string | null | undefined;
|
1551
|
+
postcodeOrZip?: string | null | undefined;
|
1084
1552
|
}>]>>>;
|
1085
1553
|
createdAtLocation: z.ZodString;
|
1086
1554
|
}, {
|
@@ -1095,6 +1563,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1095
1563
|
} | {
|
1096
1564
|
country: string;
|
1097
1565
|
district: string;
|
1566
|
+
addressType: "DOMESTIC";
|
1098
1567
|
province: string;
|
1099
1568
|
urbanOrRural: "URBAN";
|
1100
1569
|
number?: string | null | undefined;
|
@@ -1105,9 +1574,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1105
1574
|
} | {
|
1106
1575
|
country: string;
|
1107
1576
|
district: string;
|
1577
|
+
addressType: "DOMESTIC";
|
1108
1578
|
province: string;
|
1109
1579
|
urbanOrRural: "RURAL";
|
1110
1580
|
village?: string | null | undefined;
|
1581
|
+
} | {
|
1582
|
+
country: string;
|
1583
|
+
state: string;
|
1584
|
+
addressType: "INTERNATIONAL";
|
1585
|
+
district2: string;
|
1586
|
+
cityOrTown?: string | null | undefined;
|
1587
|
+
addressLine1?: string | null | undefined;
|
1588
|
+
addressLine2?: string | null | undefined;
|
1589
|
+
addressLine3?: string | null | undefined;
|
1590
|
+
postcodeOrZip?: string | null | undefined;
|
1111
1591
|
} | {
|
1112
1592
|
type: string;
|
1113
1593
|
option: string;
|
@@ -1124,6 +1604,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1124
1604
|
} | {
|
1125
1605
|
country: string;
|
1126
1606
|
district: string;
|
1607
|
+
addressType: "DOMESTIC";
|
1127
1608
|
province: string;
|
1128
1609
|
urbanOrRural: "URBAN";
|
1129
1610
|
number?: string | null | undefined;
|
@@ -1134,9 +1615,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1134
1615
|
} | {
|
1135
1616
|
country: string;
|
1136
1617
|
district: string;
|
1618
|
+
addressType: "DOMESTIC";
|
1137
1619
|
province: string;
|
1138
1620
|
urbanOrRural: "RURAL";
|
1139
1621
|
village?: string | null | undefined;
|
1622
|
+
} | {
|
1623
|
+
country: string;
|
1624
|
+
state: string;
|
1625
|
+
addressType: "INTERNATIONAL";
|
1626
|
+
district2: string;
|
1627
|
+
cityOrTown?: string | null | undefined;
|
1628
|
+
addressLine1?: string | null | undefined;
|
1629
|
+
addressLine2?: string | null | undefined;
|
1630
|
+
addressLine3?: string | null | undefined;
|
1631
|
+
postcodeOrZip?: string | null | undefined;
|
1140
1632
|
} | {
|
1141
1633
|
type: string;
|
1142
1634
|
option: string;
|
@@ -1153,6 +1645,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1153
1645
|
} | {
|
1154
1646
|
country: string;
|
1155
1647
|
district: string;
|
1648
|
+
addressType: "DOMESTIC";
|
1156
1649
|
province: string;
|
1157
1650
|
urbanOrRural: "URBAN";
|
1158
1651
|
number?: string | null | undefined;
|
@@ -1163,9 +1656,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1163
1656
|
} | {
|
1164
1657
|
country: string;
|
1165
1658
|
district: string;
|
1659
|
+
addressType: "DOMESTIC";
|
1166
1660
|
province: string;
|
1167
1661
|
urbanOrRural: "RURAL";
|
1168
1662
|
village?: string | null | undefined;
|
1663
|
+
} | {
|
1664
|
+
country: string;
|
1665
|
+
state: string;
|
1666
|
+
addressType: "INTERNATIONAL";
|
1667
|
+
district2: string;
|
1668
|
+
cityOrTown?: string | null | undefined;
|
1669
|
+
addressLine1?: string | null | undefined;
|
1670
|
+
addressLine2?: string | null | undefined;
|
1671
|
+
addressLine3?: string | null | undefined;
|
1672
|
+
postcodeOrZip?: string | null | undefined;
|
1169
1673
|
} | {
|
1170
1674
|
type: string;
|
1171
1675
|
option: string;
|
@@ -1182,6 +1686,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1182
1686
|
} | {
|
1183
1687
|
country: string;
|
1184
1688
|
district: string;
|
1689
|
+
addressType: "DOMESTIC";
|
1185
1690
|
province: string;
|
1186
1691
|
urbanOrRural: "URBAN";
|
1187
1692
|
number?: string | null | undefined;
|
@@ -1192,9 +1697,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1192
1697
|
} | {
|
1193
1698
|
country: string;
|
1194
1699
|
district: string;
|
1700
|
+
addressType: "DOMESTIC";
|
1195
1701
|
province: string;
|
1196
1702
|
urbanOrRural: "RURAL";
|
1197
1703
|
village?: string | null | undefined;
|
1704
|
+
} | {
|
1705
|
+
country: string;
|
1706
|
+
state: string;
|
1707
|
+
addressType: "INTERNATIONAL";
|
1708
|
+
district2: string;
|
1709
|
+
cityOrTown?: string | null | undefined;
|
1710
|
+
addressLine1?: string | null | undefined;
|
1711
|
+
addressLine2?: string | null | undefined;
|
1712
|
+
addressLine3?: string | null | undefined;
|
1713
|
+
postcodeOrZip?: string | null | undefined;
|
1198
1714
|
} | {
|
1199
1715
|
type: string;
|
1200
1716
|
option: string;
|
@@ -1234,6 +1750,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1234
1750
|
originalFilename: string;
|
1235
1751
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1236
1752
|
country: z.ZodString;
|
1753
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
1237
1754
|
province: z.ZodString;
|
1238
1755
|
district: z.ZodString;
|
1239
1756
|
}, {
|
@@ -1246,6 +1763,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1246
1763
|
}>, "strip", z.ZodTypeAny, {
|
1247
1764
|
country: string;
|
1248
1765
|
district: string;
|
1766
|
+
addressType: "DOMESTIC";
|
1249
1767
|
province: string;
|
1250
1768
|
urbanOrRural: "URBAN";
|
1251
1769
|
number?: string | null | undefined;
|
@@ -1256,6 +1774,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1256
1774
|
}, {
|
1257
1775
|
country: string;
|
1258
1776
|
district: string;
|
1777
|
+
addressType: "DOMESTIC";
|
1259
1778
|
province: string;
|
1260
1779
|
urbanOrRural: "URBAN";
|
1261
1780
|
number?: string | null | undefined;
|
@@ -1265,6 +1784,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1265
1784
|
zipCode?: string | null | undefined;
|
1266
1785
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1267
1786
|
country: z.ZodString;
|
1787
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
1268
1788
|
province: z.ZodString;
|
1269
1789
|
district: z.ZodString;
|
1270
1790
|
}, {
|
@@ -1273,15 +1793,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1273
1793
|
}>, "strip", z.ZodTypeAny, {
|
1274
1794
|
country: string;
|
1275
1795
|
district: string;
|
1796
|
+
addressType: "DOMESTIC";
|
1276
1797
|
province: string;
|
1277
1798
|
urbanOrRural: "RURAL";
|
1278
1799
|
village?: string | null | undefined;
|
1279
1800
|
}, {
|
1280
1801
|
country: string;
|
1281
1802
|
district: string;
|
1803
|
+
addressType: "DOMESTIC";
|
1282
1804
|
province: string;
|
1283
1805
|
urbanOrRural: "RURAL";
|
1284
1806
|
village?: string | null | undefined;
|
1807
|
+
}>, z.ZodObject<{
|
1808
|
+
country: z.ZodString;
|
1809
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
1810
|
+
state: z.ZodString;
|
1811
|
+
district2: z.ZodString;
|
1812
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1813
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1814
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1815
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1816
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1817
|
+
}, "strip", z.ZodTypeAny, {
|
1818
|
+
country: string;
|
1819
|
+
state: string;
|
1820
|
+
addressType: "INTERNATIONAL";
|
1821
|
+
district2: string;
|
1822
|
+
cityOrTown?: string | null | undefined;
|
1823
|
+
addressLine1?: string | null | undefined;
|
1824
|
+
addressLine2?: string | null | undefined;
|
1825
|
+
addressLine3?: string | null | undefined;
|
1826
|
+
postcodeOrZip?: string | null | undefined;
|
1827
|
+
}, {
|
1828
|
+
country: string;
|
1829
|
+
state: string;
|
1830
|
+
addressType: "INTERNATIONAL";
|
1831
|
+
district2: string;
|
1832
|
+
cityOrTown?: string | null | undefined;
|
1833
|
+
addressLine1?: string | null | undefined;
|
1834
|
+
addressLine2?: string | null | undefined;
|
1835
|
+
addressLine3?: string | null | undefined;
|
1836
|
+
postcodeOrZip?: string | null | undefined;
|
1285
1837
|
}>]>>;
|
1286
1838
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1287
1839
|
filename: z.ZodString;
|
@@ -1312,6 +1864,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1312
1864
|
originalFilename: string;
|
1313
1865
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1314
1866
|
country: z.ZodString;
|
1867
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
1315
1868
|
province: z.ZodString;
|
1316
1869
|
district: z.ZodString;
|
1317
1870
|
}, {
|
@@ -1324,6 +1877,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1324
1877
|
}>, "strip", z.ZodTypeAny, {
|
1325
1878
|
country: string;
|
1326
1879
|
district: string;
|
1880
|
+
addressType: "DOMESTIC";
|
1327
1881
|
province: string;
|
1328
1882
|
urbanOrRural: "URBAN";
|
1329
1883
|
number?: string | null | undefined;
|
@@ -1334,6 +1888,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1334
1888
|
}, {
|
1335
1889
|
country: string;
|
1336
1890
|
district: string;
|
1891
|
+
addressType: "DOMESTIC";
|
1337
1892
|
province: string;
|
1338
1893
|
urbanOrRural: "URBAN";
|
1339
1894
|
number?: string | null | undefined;
|
@@ -1343,6 +1898,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1343
1898
|
zipCode?: string | null | undefined;
|
1344
1899
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1345
1900
|
country: z.ZodString;
|
1901
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
1346
1902
|
province: z.ZodString;
|
1347
1903
|
district: z.ZodString;
|
1348
1904
|
}, {
|
@@ -1351,15 +1907,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1351
1907
|
}>, "strip", z.ZodTypeAny, {
|
1352
1908
|
country: string;
|
1353
1909
|
district: string;
|
1910
|
+
addressType: "DOMESTIC";
|
1354
1911
|
province: string;
|
1355
1912
|
urbanOrRural: "RURAL";
|
1356
1913
|
village?: string | null | undefined;
|
1357
1914
|
}, {
|
1358
1915
|
country: string;
|
1359
1916
|
district: string;
|
1917
|
+
addressType: "DOMESTIC";
|
1360
1918
|
province: string;
|
1361
1919
|
urbanOrRural: "RURAL";
|
1362
1920
|
village?: string | null | undefined;
|
1921
|
+
}>, z.ZodObject<{
|
1922
|
+
country: z.ZodString;
|
1923
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
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
|
+
addressType: "INTERNATIONAL";
|
1935
|
+
district2: string;
|
1936
|
+
cityOrTown?: string | null | undefined;
|
1937
|
+
addressLine1?: string | null | undefined;
|
1938
|
+
addressLine2?: string | null | undefined;
|
1939
|
+
addressLine3?: string | null | undefined;
|
1940
|
+
postcodeOrZip?: string | null | undefined;
|
1941
|
+
}, {
|
1942
|
+
country: string;
|
1943
|
+
state: string;
|
1944
|
+
addressType: "INTERNATIONAL";
|
1945
|
+
district2: string;
|
1946
|
+
cityOrTown?: string | null | undefined;
|
1947
|
+
addressLine1?: string | null | undefined;
|
1948
|
+
addressLine2?: string | null | undefined;
|
1949
|
+
addressLine3?: string | null | undefined;
|
1950
|
+
postcodeOrZip?: string | null | undefined;
|
1363
1951
|
}>]>>>;
|
1364
1952
|
createdAtLocation: z.ZodString;
|
1365
1953
|
}, {
|
@@ -1374,6 +1962,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1374
1962
|
} | {
|
1375
1963
|
country: string;
|
1376
1964
|
district: string;
|
1965
|
+
addressType: "DOMESTIC";
|
1377
1966
|
province: string;
|
1378
1967
|
urbanOrRural: "URBAN";
|
1379
1968
|
number?: string | null | undefined;
|
@@ -1384,9 +1973,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1384
1973
|
} | {
|
1385
1974
|
country: string;
|
1386
1975
|
district: string;
|
1976
|
+
addressType: "DOMESTIC";
|
1387
1977
|
province: string;
|
1388
1978
|
urbanOrRural: "RURAL";
|
1389
1979
|
village?: string | null | undefined;
|
1980
|
+
} | {
|
1981
|
+
country: string;
|
1982
|
+
state: string;
|
1983
|
+
addressType: "INTERNATIONAL";
|
1984
|
+
district2: string;
|
1985
|
+
cityOrTown?: string | null | undefined;
|
1986
|
+
addressLine1?: string | null | undefined;
|
1987
|
+
addressLine2?: string | null | undefined;
|
1988
|
+
addressLine3?: string | null | undefined;
|
1989
|
+
postcodeOrZip?: string | null | undefined;
|
1390
1990
|
} | {
|
1391
1991
|
type: string;
|
1392
1992
|
option: string;
|
@@ -1403,6 +2003,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1403
2003
|
} | {
|
1404
2004
|
country: string;
|
1405
2005
|
district: string;
|
2006
|
+
addressType: "DOMESTIC";
|
1406
2007
|
province: string;
|
1407
2008
|
urbanOrRural: "URBAN";
|
1408
2009
|
number?: string | null | undefined;
|
@@ -1413,9 +2014,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1413
2014
|
} | {
|
1414
2015
|
country: string;
|
1415
2016
|
district: string;
|
2017
|
+
addressType: "DOMESTIC";
|
1416
2018
|
province: string;
|
1417
2019
|
urbanOrRural: "RURAL";
|
1418
2020
|
village?: string | null | undefined;
|
2021
|
+
} | {
|
2022
|
+
country: string;
|
2023
|
+
state: string;
|
2024
|
+
addressType: "INTERNATIONAL";
|
2025
|
+
district2: string;
|
2026
|
+
cityOrTown?: string | null | undefined;
|
2027
|
+
addressLine1?: string | null | undefined;
|
2028
|
+
addressLine2?: string | null | undefined;
|
2029
|
+
addressLine3?: string | null | undefined;
|
2030
|
+
postcodeOrZip?: string | null | undefined;
|
1419
2031
|
} | {
|
1420
2032
|
type: string;
|
1421
2033
|
option: string;
|
@@ -1432,6 +2044,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1432
2044
|
} | {
|
1433
2045
|
country: string;
|
1434
2046
|
district: string;
|
2047
|
+
addressType: "DOMESTIC";
|
1435
2048
|
province: string;
|
1436
2049
|
urbanOrRural: "URBAN";
|
1437
2050
|
number?: string | null | undefined;
|
@@ -1442,9 +2055,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1442
2055
|
} | {
|
1443
2056
|
country: string;
|
1444
2057
|
district: string;
|
2058
|
+
addressType: "DOMESTIC";
|
1445
2059
|
province: string;
|
1446
2060
|
urbanOrRural: "RURAL";
|
1447
2061
|
village?: string | null | undefined;
|
2062
|
+
} | {
|
2063
|
+
country: string;
|
2064
|
+
state: string;
|
2065
|
+
addressType: "INTERNATIONAL";
|
2066
|
+
district2: string;
|
2067
|
+
cityOrTown?: string | null | undefined;
|
2068
|
+
addressLine1?: string | null | undefined;
|
2069
|
+
addressLine2?: string | null | undefined;
|
2070
|
+
addressLine3?: string | null | undefined;
|
2071
|
+
postcodeOrZip?: string | null | undefined;
|
1448
2072
|
} | {
|
1449
2073
|
type: string;
|
1450
2074
|
option: string;
|
@@ -1461,6 +2085,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1461
2085
|
} | {
|
1462
2086
|
country: string;
|
1463
2087
|
district: string;
|
2088
|
+
addressType: "DOMESTIC";
|
1464
2089
|
province: string;
|
1465
2090
|
urbanOrRural: "URBAN";
|
1466
2091
|
number?: string | null | undefined;
|
@@ -1471,9 +2096,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1471
2096
|
} | {
|
1472
2097
|
country: string;
|
1473
2098
|
district: string;
|
2099
|
+
addressType: "DOMESTIC";
|
1474
2100
|
province: string;
|
1475
2101
|
urbanOrRural: "RURAL";
|
1476
2102
|
village?: string | null | undefined;
|
2103
|
+
} | {
|
2104
|
+
country: string;
|
2105
|
+
state: string;
|
2106
|
+
addressType: "INTERNATIONAL";
|
2107
|
+
district2: string;
|
2108
|
+
cityOrTown?: string | null | undefined;
|
2109
|
+
addressLine1?: string | null | undefined;
|
2110
|
+
addressLine2?: string | null | undefined;
|
2111
|
+
addressLine3?: string | null | undefined;
|
2112
|
+
postcodeOrZip?: string | null | undefined;
|
1477
2113
|
} | {
|
1478
2114
|
type: string;
|
1479
2115
|
option: string;
|
@@ -1513,6 +2149,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1513
2149
|
originalFilename: string;
|
1514
2150
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1515
2151
|
country: z.ZodString;
|
2152
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
1516
2153
|
province: z.ZodString;
|
1517
2154
|
district: z.ZodString;
|
1518
2155
|
}, {
|
@@ -1525,6 +2162,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1525
2162
|
}>, "strip", z.ZodTypeAny, {
|
1526
2163
|
country: string;
|
1527
2164
|
district: string;
|
2165
|
+
addressType: "DOMESTIC";
|
1528
2166
|
province: string;
|
1529
2167
|
urbanOrRural: "URBAN";
|
1530
2168
|
number?: string | null | undefined;
|
@@ -1535,6 +2173,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1535
2173
|
}, {
|
1536
2174
|
country: string;
|
1537
2175
|
district: string;
|
2176
|
+
addressType: "DOMESTIC";
|
1538
2177
|
province: string;
|
1539
2178
|
urbanOrRural: "URBAN";
|
1540
2179
|
number?: string | null | undefined;
|
@@ -1544,6 +2183,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1544
2183
|
zipCode?: string | null | undefined;
|
1545
2184
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1546
2185
|
country: z.ZodString;
|
2186
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
1547
2187
|
province: z.ZodString;
|
1548
2188
|
district: z.ZodString;
|
1549
2189
|
}, {
|
@@ -1552,15 +2192,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1552
2192
|
}>, "strip", z.ZodTypeAny, {
|
1553
2193
|
country: string;
|
1554
2194
|
district: string;
|
2195
|
+
addressType: "DOMESTIC";
|
1555
2196
|
province: string;
|
1556
2197
|
urbanOrRural: "RURAL";
|
1557
2198
|
village?: string | null | undefined;
|
1558
2199
|
}, {
|
1559
2200
|
country: string;
|
1560
2201
|
district: string;
|
2202
|
+
addressType: "DOMESTIC";
|
1561
2203
|
province: string;
|
1562
2204
|
urbanOrRural: "RURAL";
|
1563
2205
|
village?: string | null | undefined;
|
2206
|
+
}>, z.ZodObject<{
|
2207
|
+
country: z.ZodString;
|
2208
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
2209
|
+
state: z.ZodString;
|
2210
|
+
district2: z.ZodString;
|
2211
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2212
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2213
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2214
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2215
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2216
|
+
}, "strip", z.ZodTypeAny, {
|
2217
|
+
country: string;
|
2218
|
+
state: string;
|
2219
|
+
addressType: "INTERNATIONAL";
|
2220
|
+
district2: string;
|
2221
|
+
cityOrTown?: string | null | undefined;
|
2222
|
+
addressLine1?: string | null | undefined;
|
2223
|
+
addressLine2?: string | null | undefined;
|
2224
|
+
addressLine3?: string | null | undefined;
|
2225
|
+
postcodeOrZip?: string | null | undefined;
|
2226
|
+
}, {
|
2227
|
+
country: string;
|
2228
|
+
state: string;
|
2229
|
+
addressType: "INTERNATIONAL";
|
2230
|
+
district2: string;
|
2231
|
+
cityOrTown?: string | null | undefined;
|
2232
|
+
addressLine1?: string | null | undefined;
|
2233
|
+
addressLine2?: string | null | undefined;
|
2234
|
+
addressLine3?: string | null | undefined;
|
2235
|
+
postcodeOrZip?: string | null | undefined;
|
1564
2236
|
}>]>>;
|
1565
2237
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1566
2238
|
filename: z.ZodString;
|
@@ -1591,6 +2263,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1591
2263
|
originalFilename: string;
|
1592
2264
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1593
2265
|
country: z.ZodString;
|
2266
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
1594
2267
|
province: z.ZodString;
|
1595
2268
|
district: z.ZodString;
|
1596
2269
|
}, {
|
@@ -1603,6 +2276,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1603
2276
|
}>, "strip", z.ZodTypeAny, {
|
1604
2277
|
country: string;
|
1605
2278
|
district: string;
|
2279
|
+
addressType: "DOMESTIC";
|
1606
2280
|
province: string;
|
1607
2281
|
urbanOrRural: "URBAN";
|
1608
2282
|
number?: string | null | undefined;
|
@@ -1613,6 +2287,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1613
2287
|
}, {
|
1614
2288
|
country: string;
|
1615
2289
|
district: string;
|
2290
|
+
addressType: "DOMESTIC";
|
1616
2291
|
province: string;
|
1617
2292
|
urbanOrRural: "URBAN";
|
1618
2293
|
number?: string | null | undefined;
|
@@ -1622,6 +2297,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1622
2297
|
zipCode?: string | null | undefined;
|
1623
2298
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1624
2299
|
country: z.ZodString;
|
2300
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
1625
2301
|
province: z.ZodString;
|
1626
2302
|
district: z.ZodString;
|
1627
2303
|
}, {
|
@@ -1630,15 +2306,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1630
2306
|
}>, "strip", z.ZodTypeAny, {
|
1631
2307
|
country: string;
|
1632
2308
|
district: string;
|
2309
|
+
addressType: "DOMESTIC";
|
1633
2310
|
province: string;
|
1634
2311
|
urbanOrRural: "RURAL";
|
1635
2312
|
village?: string | null | undefined;
|
1636
2313
|
}, {
|
1637
2314
|
country: string;
|
1638
2315
|
district: string;
|
2316
|
+
addressType: "DOMESTIC";
|
1639
2317
|
province: string;
|
1640
2318
|
urbanOrRural: "RURAL";
|
1641
2319
|
village?: string | null | undefined;
|
2320
|
+
}>, z.ZodObject<{
|
2321
|
+
country: z.ZodString;
|
2322
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
2323
|
+
state: z.ZodString;
|
2324
|
+
district2: z.ZodString;
|
2325
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2326
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2327
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2328
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2329
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2330
|
+
}, "strip", z.ZodTypeAny, {
|
2331
|
+
country: string;
|
2332
|
+
state: string;
|
2333
|
+
addressType: "INTERNATIONAL";
|
2334
|
+
district2: string;
|
2335
|
+
cityOrTown?: string | null | undefined;
|
2336
|
+
addressLine1?: string | null | undefined;
|
2337
|
+
addressLine2?: string | null | undefined;
|
2338
|
+
addressLine3?: string | null | undefined;
|
2339
|
+
postcodeOrZip?: string | null | undefined;
|
2340
|
+
}, {
|
2341
|
+
country: string;
|
2342
|
+
state: string;
|
2343
|
+
addressType: "INTERNATIONAL";
|
2344
|
+
district2: string;
|
2345
|
+
cityOrTown?: string | null | undefined;
|
2346
|
+
addressLine1?: string | null | undefined;
|
2347
|
+
addressLine2?: string | null | undefined;
|
2348
|
+
addressLine3?: string | null | undefined;
|
2349
|
+
postcodeOrZip?: string | null | undefined;
|
1642
2350
|
}>]>>>;
|
1643
2351
|
createdAtLocation: z.ZodString;
|
1644
2352
|
}, {
|
@@ -1653,6 +2361,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1653
2361
|
} | {
|
1654
2362
|
country: string;
|
1655
2363
|
district: string;
|
2364
|
+
addressType: "DOMESTIC";
|
1656
2365
|
province: string;
|
1657
2366
|
urbanOrRural: "URBAN";
|
1658
2367
|
number?: string | null | undefined;
|
@@ -1663,9 +2372,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1663
2372
|
} | {
|
1664
2373
|
country: string;
|
1665
2374
|
district: string;
|
2375
|
+
addressType: "DOMESTIC";
|
1666
2376
|
province: string;
|
1667
2377
|
urbanOrRural: "RURAL";
|
1668
2378
|
village?: string | null | undefined;
|
2379
|
+
} | {
|
2380
|
+
country: string;
|
2381
|
+
state: string;
|
2382
|
+
addressType: "INTERNATIONAL";
|
2383
|
+
district2: string;
|
2384
|
+
cityOrTown?: string | null | undefined;
|
2385
|
+
addressLine1?: string | null | undefined;
|
2386
|
+
addressLine2?: string | null | undefined;
|
2387
|
+
addressLine3?: string | null | undefined;
|
2388
|
+
postcodeOrZip?: string | null | undefined;
|
1669
2389
|
} | {
|
1670
2390
|
type: string;
|
1671
2391
|
option: string;
|
@@ -1682,6 +2402,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1682
2402
|
} | {
|
1683
2403
|
country: string;
|
1684
2404
|
district: string;
|
2405
|
+
addressType: "DOMESTIC";
|
1685
2406
|
province: string;
|
1686
2407
|
urbanOrRural: "URBAN";
|
1687
2408
|
number?: string | null | undefined;
|
@@ -1692,9 +2413,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1692
2413
|
} | {
|
1693
2414
|
country: string;
|
1694
2415
|
district: string;
|
2416
|
+
addressType: "DOMESTIC";
|
1695
2417
|
province: string;
|
1696
2418
|
urbanOrRural: "RURAL";
|
1697
2419
|
village?: string | null | undefined;
|
2420
|
+
} | {
|
2421
|
+
country: string;
|
2422
|
+
state: string;
|
2423
|
+
addressType: "INTERNATIONAL";
|
2424
|
+
district2: string;
|
2425
|
+
cityOrTown?: string | null | undefined;
|
2426
|
+
addressLine1?: string | null | undefined;
|
2427
|
+
addressLine2?: string | null | undefined;
|
2428
|
+
addressLine3?: string | null | undefined;
|
2429
|
+
postcodeOrZip?: string | null | undefined;
|
1698
2430
|
} | {
|
1699
2431
|
type: string;
|
1700
2432
|
option: string;
|
@@ -1711,6 +2443,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1711
2443
|
} | {
|
1712
2444
|
country: string;
|
1713
2445
|
district: string;
|
2446
|
+
addressType: "DOMESTIC";
|
1714
2447
|
province: string;
|
1715
2448
|
urbanOrRural: "URBAN";
|
1716
2449
|
number?: string | null | undefined;
|
@@ -1721,9 +2454,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1721
2454
|
} | {
|
1722
2455
|
country: string;
|
1723
2456
|
district: string;
|
2457
|
+
addressType: "DOMESTIC";
|
1724
2458
|
province: string;
|
1725
2459
|
urbanOrRural: "RURAL";
|
1726
2460
|
village?: string | null | undefined;
|
2461
|
+
} | {
|
2462
|
+
country: string;
|
2463
|
+
state: string;
|
2464
|
+
addressType: "INTERNATIONAL";
|
2465
|
+
district2: string;
|
2466
|
+
cityOrTown?: string | null | undefined;
|
2467
|
+
addressLine1?: string | null | undefined;
|
2468
|
+
addressLine2?: string | null | undefined;
|
2469
|
+
addressLine3?: string | null | undefined;
|
2470
|
+
postcodeOrZip?: string | null | undefined;
|
1727
2471
|
} | {
|
1728
2472
|
type: string;
|
1729
2473
|
option: string;
|
@@ -1740,6 +2484,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1740
2484
|
} | {
|
1741
2485
|
country: string;
|
1742
2486
|
district: string;
|
2487
|
+
addressType: "DOMESTIC";
|
1743
2488
|
province: string;
|
1744
2489
|
urbanOrRural: "URBAN";
|
1745
2490
|
number?: string | null | undefined;
|
@@ -1750,9 +2495,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1750
2495
|
} | {
|
1751
2496
|
country: string;
|
1752
2497
|
district: string;
|
2498
|
+
addressType: "DOMESTIC";
|
1753
2499
|
province: string;
|
1754
2500
|
urbanOrRural: "RURAL";
|
1755
2501
|
village?: string | null | undefined;
|
2502
|
+
} | {
|
2503
|
+
country: string;
|
2504
|
+
state: string;
|
2505
|
+
addressType: "INTERNATIONAL";
|
2506
|
+
district2: string;
|
2507
|
+
cityOrTown?: string | null | undefined;
|
2508
|
+
addressLine1?: string | null | undefined;
|
2509
|
+
addressLine2?: string | null | undefined;
|
2510
|
+
addressLine3?: string | null | undefined;
|
2511
|
+
postcodeOrZip?: string | null | undefined;
|
1756
2512
|
} | {
|
1757
2513
|
type: string;
|
1758
2514
|
option: string;
|
@@ -1792,6 +2548,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1792
2548
|
originalFilename: string;
|
1793
2549
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1794
2550
|
country: z.ZodString;
|
2551
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
1795
2552
|
province: z.ZodString;
|
1796
2553
|
district: z.ZodString;
|
1797
2554
|
}, {
|
@@ -1804,6 +2561,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1804
2561
|
}>, "strip", z.ZodTypeAny, {
|
1805
2562
|
country: string;
|
1806
2563
|
district: string;
|
2564
|
+
addressType: "DOMESTIC";
|
1807
2565
|
province: string;
|
1808
2566
|
urbanOrRural: "URBAN";
|
1809
2567
|
number?: string | null | undefined;
|
@@ -1814,6 +2572,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1814
2572
|
}, {
|
1815
2573
|
country: string;
|
1816
2574
|
district: string;
|
2575
|
+
addressType: "DOMESTIC";
|
1817
2576
|
province: string;
|
1818
2577
|
urbanOrRural: "URBAN";
|
1819
2578
|
number?: string | null | undefined;
|
@@ -1823,6 +2582,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1823
2582
|
zipCode?: string | null | undefined;
|
1824
2583
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1825
2584
|
country: z.ZodString;
|
2585
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
1826
2586
|
province: z.ZodString;
|
1827
2587
|
district: z.ZodString;
|
1828
2588
|
}, {
|
@@ -1831,15 +2591,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1831
2591
|
}>, "strip", z.ZodTypeAny, {
|
1832
2592
|
country: string;
|
1833
2593
|
district: string;
|
2594
|
+
addressType: "DOMESTIC";
|
1834
2595
|
province: string;
|
1835
2596
|
urbanOrRural: "RURAL";
|
1836
2597
|
village?: string | null | undefined;
|
1837
2598
|
}, {
|
1838
2599
|
country: string;
|
1839
2600
|
district: string;
|
2601
|
+
addressType: "DOMESTIC";
|
1840
2602
|
province: string;
|
1841
2603
|
urbanOrRural: "RURAL";
|
1842
2604
|
village?: string | null | undefined;
|
2605
|
+
}>, z.ZodObject<{
|
2606
|
+
country: z.ZodString;
|
2607
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
2608
|
+
state: z.ZodString;
|
2609
|
+
district2: z.ZodString;
|
2610
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2611
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2612
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2613
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2614
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2615
|
+
}, "strip", z.ZodTypeAny, {
|
2616
|
+
country: string;
|
2617
|
+
state: string;
|
2618
|
+
addressType: "INTERNATIONAL";
|
2619
|
+
district2: string;
|
2620
|
+
cityOrTown?: string | null | undefined;
|
2621
|
+
addressLine1?: string | null | undefined;
|
2622
|
+
addressLine2?: string | null | undefined;
|
2623
|
+
addressLine3?: string | null | undefined;
|
2624
|
+
postcodeOrZip?: string | null | undefined;
|
2625
|
+
}, {
|
2626
|
+
country: string;
|
2627
|
+
state: string;
|
2628
|
+
addressType: "INTERNATIONAL";
|
2629
|
+
district2: string;
|
2630
|
+
cityOrTown?: string | null | undefined;
|
2631
|
+
addressLine1?: string | null | undefined;
|
2632
|
+
addressLine2?: string | null | undefined;
|
2633
|
+
addressLine3?: string | null | undefined;
|
2634
|
+
postcodeOrZip?: string | null | undefined;
|
1843
2635
|
}>]>>;
|
1844
2636
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1845
2637
|
filename: z.ZodString;
|
@@ -1870,6 +2662,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1870
2662
|
originalFilename: string;
|
1871
2663
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1872
2664
|
country: z.ZodString;
|
2665
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
1873
2666
|
province: z.ZodString;
|
1874
2667
|
district: z.ZodString;
|
1875
2668
|
}, {
|
@@ -1882,6 +2675,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1882
2675
|
}>, "strip", z.ZodTypeAny, {
|
1883
2676
|
country: string;
|
1884
2677
|
district: string;
|
2678
|
+
addressType: "DOMESTIC";
|
1885
2679
|
province: string;
|
1886
2680
|
urbanOrRural: "URBAN";
|
1887
2681
|
number?: string | null | undefined;
|
@@ -1892,6 +2686,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1892
2686
|
}, {
|
1893
2687
|
country: string;
|
1894
2688
|
district: string;
|
2689
|
+
addressType: "DOMESTIC";
|
1895
2690
|
province: string;
|
1896
2691
|
urbanOrRural: "URBAN";
|
1897
2692
|
number?: string | null | undefined;
|
@@ -1901,6 +2696,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1901
2696
|
zipCode?: string | null | undefined;
|
1902
2697
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1903
2698
|
country: z.ZodString;
|
2699
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
1904
2700
|
province: z.ZodString;
|
1905
2701
|
district: z.ZodString;
|
1906
2702
|
}, {
|
@@ -1909,21 +2705,53 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1909
2705
|
}>, "strip", z.ZodTypeAny, {
|
1910
2706
|
country: string;
|
1911
2707
|
district: string;
|
2708
|
+
addressType: "DOMESTIC";
|
1912
2709
|
province: string;
|
1913
2710
|
urbanOrRural: "RURAL";
|
1914
2711
|
village?: string | null | undefined;
|
1915
2712
|
}, {
|
1916
2713
|
country: string;
|
1917
2714
|
district: string;
|
2715
|
+
addressType: "DOMESTIC";
|
1918
2716
|
province: string;
|
1919
2717
|
urbanOrRural: "RURAL";
|
1920
2718
|
village?: string | null | undefined;
|
2719
|
+
}>, z.ZodObject<{
|
2720
|
+
country: z.ZodString;
|
2721
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
2722
|
+
state: z.ZodString;
|
2723
|
+
district2: z.ZodString;
|
2724
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2725
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2726
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2727
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2728
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2729
|
+
}, "strip", z.ZodTypeAny, {
|
2730
|
+
country: string;
|
2731
|
+
state: string;
|
2732
|
+
addressType: "INTERNATIONAL";
|
2733
|
+
district2: string;
|
2734
|
+
cityOrTown?: string | null | undefined;
|
2735
|
+
addressLine1?: string | null | undefined;
|
2736
|
+
addressLine2?: string | null | undefined;
|
2737
|
+
addressLine3?: string | null | undefined;
|
2738
|
+
postcodeOrZip?: string | null | undefined;
|
2739
|
+
}, {
|
2740
|
+
country: string;
|
2741
|
+
state: string;
|
2742
|
+
addressType: "INTERNATIONAL";
|
2743
|
+
district2: string;
|
2744
|
+
cityOrTown?: string | null | undefined;
|
2745
|
+
addressLine1?: string | null | undefined;
|
2746
|
+
addressLine2?: string | null | undefined;
|
2747
|
+
addressLine3?: string | null | undefined;
|
2748
|
+
postcodeOrZip?: string | null | undefined;
|
1921
2749
|
}>]>>>;
|
1922
2750
|
createdAtLocation: z.ZodString;
|
1923
2751
|
}, {
|
1924
|
-
type: z.ZodLiteral<"
|
2752
|
+
type: z.ZodLiteral<"ARCHIVE">;
|
1925
2753
|
}>, "strip", z.ZodTypeAny, {
|
1926
|
-
type: "
|
2754
|
+
type: "ARCHIVE";
|
1927
2755
|
id: string;
|
1928
2756
|
data: Record<string, string | number | boolean | {
|
1929
2757
|
type: string;
|
@@ -1932,6 +2760,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1932
2760
|
} | {
|
1933
2761
|
country: string;
|
1934
2762
|
district: string;
|
2763
|
+
addressType: "DOMESTIC";
|
1935
2764
|
province: string;
|
1936
2765
|
urbanOrRural: "URBAN";
|
1937
2766
|
number?: string | null | undefined;
|
@@ -1942,9 +2771,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1942
2771
|
} | {
|
1943
2772
|
country: string;
|
1944
2773
|
district: string;
|
2774
|
+
addressType: "DOMESTIC";
|
1945
2775
|
province: string;
|
1946
2776
|
urbanOrRural: "RURAL";
|
1947
2777
|
village?: string | null | undefined;
|
2778
|
+
} | {
|
2779
|
+
country: string;
|
2780
|
+
state: string;
|
2781
|
+
addressType: "INTERNATIONAL";
|
2782
|
+
district2: string;
|
2783
|
+
cityOrTown?: string | null | undefined;
|
2784
|
+
addressLine1?: string | null | undefined;
|
2785
|
+
addressLine2?: string | null | undefined;
|
2786
|
+
addressLine3?: string | null | undefined;
|
2787
|
+
postcodeOrZip?: string | null | undefined;
|
1948
2788
|
} | {
|
1949
2789
|
type: string;
|
1950
2790
|
option: string;
|
@@ -1961,6 +2801,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1961
2801
|
} | {
|
1962
2802
|
country: string;
|
1963
2803
|
district: string;
|
2804
|
+
addressType: "DOMESTIC";
|
1964
2805
|
province: string;
|
1965
2806
|
urbanOrRural: "URBAN";
|
1966
2807
|
number?: string | null | undefined;
|
@@ -1971,9 +2812,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1971
2812
|
} | {
|
1972
2813
|
country: string;
|
1973
2814
|
district: string;
|
2815
|
+
addressType: "DOMESTIC";
|
1974
2816
|
province: string;
|
1975
2817
|
urbanOrRural: "RURAL";
|
1976
2818
|
village?: string | null | undefined;
|
2819
|
+
} | {
|
2820
|
+
country: string;
|
2821
|
+
state: string;
|
2822
|
+
addressType: "INTERNATIONAL";
|
2823
|
+
district2: string;
|
2824
|
+
cityOrTown?: string | null | undefined;
|
2825
|
+
addressLine1?: string | null | undefined;
|
2826
|
+
addressLine2?: string | null | undefined;
|
2827
|
+
addressLine3?: string | null | undefined;
|
2828
|
+
postcodeOrZip?: string | null | undefined;
|
1977
2829
|
} | {
|
1978
2830
|
type: string;
|
1979
2831
|
option: string;
|
@@ -1981,7 +2833,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1981
2833
|
originalFilename: string;
|
1982
2834
|
}[]> | undefined;
|
1983
2835
|
}, {
|
1984
|
-
type: "
|
2836
|
+
type: "ARCHIVE";
|
1985
2837
|
id: string;
|
1986
2838
|
data: Record<string, string | number | boolean | {
|
1987
2839
|
type: string;
|
@@ -1990,6 +2842,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1990
2842
|
} | {
|
1991
2843
|
country: string;
|
1992
2844
|
district: string;
|
2845
|
+
addressType: "DOMESTIC";
|
1993
2846
|
province: string;
|
1994
2847
|
urbanOrRural: "URBAN";
|
1995
2848
|
number?: string | null | undefined;
|
@@ -2000,9 +2853,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2000
2853
|
} | {
|
2001
2854
|
country: string;
|
2002
2855
|
district: string;
|
2856
|
+
addressType: "DOMESTIC";
|
2003
2857
|
province: string;
|
2004
2858
|
urbanOrRural: "RURAL";
|
2005
2859
|
village?: string | null | undefined;
|
2860
|
+
} | {
|
2861
|
+
country: string;
|
2862
|
+
state: string;
|
2863
|
+
addressType: "INTERNATIONAL";
|
2864
|
+
district2: string;
|
2865
|
+
cityOrTown?: string | null | undefined;
|
2866
|
+
addressLine1?: string | null | undefined;
|
2867
|
+
addressLine2?: string | null | undefined;
|
2868
|
+
addressLine3?: string | null | undefined;
|
2869
|
+
postcodeOrZip?: string | null | undefined;
|
2006
2870
|
} | {
|
2007
2871
|
type: string;
|
2008
2872
|
option: string;
|
@@ -2019,6 +2883,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2019
2883
|
} | {
|
2020
2884
|
country: string;
|
2021
2885
|
district: string;
|
2886
|
+
addressType: "DOMESTIC";
|
2022
2887
|
province: string;
|
2023
2888
|
urbanOrRural: "URBAN";
|
2024
2889
|
number?: string | null | undefined;
|
@@ -2029,9 +2894,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2029
2894
|
} | {
|
2030
2895
|
country: string;
|
2031
2896
|
district: string;
|
2897
|
+
addressType: "DOMESTIC";
|
2032
2898
|
province: string;
|
2033
2899
|
urbanOrRural: "RURAL";
|
2034
2900
|
village?: string | null | undefined;
|
2901
|
+
} | {
|
2902
|
+
country: string;
|
2903
|
+
state: string;
|
2904
|
+
addressType: "INTERNATIONAL";
|
2905
|
+
district2: string;
|
2906
|
+
cityOrTown?: string | null | undefined;
|
2907
|
+
addressLine1?: string | null | undefined;
|
2908
|
+
addressLine2?: string | null | undefined;
|
2909
|
+
addressLine3?: string | null | undefined;
|
2910
|
+
postcodeOrZip?: string | null | undefined;
|
2035
2911
|
} | {
|
2036
2912
|
type: string;
|
2037
2913
|
option: string;
|
@@ -2071,6 +2947,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2071
2947
|
originalFilename: string;
|
2072
2948
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2073
2949
|
country: z.ZodString;
|
2950
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
2074
2951
|
province: z.ZodString;
|
2075
2952
|
district: z.ZodString;
|
2076
2953
|
}, {
|
@@ -2083,6 +2960,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2083
2960
|
}>, "strip", z.ZodTypeAny, {
|
2084
2961
|
country: string;
|
2085
2962
|
district: string;
|
2963
|
+
addressType: "DOMESTIC";
|
2086
2964
|
province: string;
|
2087
2965
|
urbanOrRural: "URBAN";
|
2088
2966
|
number?: string | null | undefined;
|
@@ -2093,6 +2971,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2093
2971
|
}, {
|
2094
2972
|
country: string;
|
2095
2973
|
district: string;
|
2974
|
+
addressType: "DOMESTIC";
|
2096
2975
|
province: string;
|
2097
2976
|
urbanOrRural: "URBAN";
|
2098
2977
|
number?: string | null | undefined;
|
@@ -2102,6 +2981,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2102
2981
|
zipCode?: string | null | undefined;
|
2103
2982
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2104
2983
|
country: z.ZodString;
|
2984
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
2105
2985
|
province: z.ZodString;
|
2106
2986
|
district: z.ZodString;
|
2107
2987
|
}, {
|
@@ -2110,15 +2990,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2110
2990
|
}>, "strip", z.ZodTypeAny, {
|
2111
2991
|
country: string;
|
2112
2992
|
district: string;
|
2993
|
+
addressType: "DOMESTIC";
|
2113
2994
|
province: string;
|
2114
2995
|
urbanOrRural: "RURAL";
|
2115
2996
|
village?: string | null | undefined;
|
2116
2997
|
}, {
|
2117
2998
|
country: string;
|
2118
2999
|
district: string;
|
3000
|
+
addressType: "DOMESTIC";
|
2119
3001
|
province: string;
|
2120
3002
|
urbanOrRural: "RURAL";
|
2121
3003
|
village?: string | null | undefined;
|
3004
|
+
}>, z.ZodObject<{
|
3005
|
+
country: z.ZodString;
|
3006
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
3007
|
+
state: z.ZodString;
|
3008
|
+
district2: z.ZodString;
|
3009
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3010
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3011
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3012
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3013
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3014
|
+
}, "strip", z.ZodTypeAny, {
|
3015
|
+
country: string;
|
3016
|
+
state: string;
|
3017
|
+
addressType: "INTERNATIONAL";
|
3018
|
+
district2: string;
|
3019
|
+
cityOrTown?: string | null | undefined;
|
3020
|
+
addressLine1?: string | null | undefined;
|
3021
|
+
addressLine2?: string | null | undefined;
|
3022
|
+
addressLine3?: string | null | undefined;
|
3023
|
+
postcodeOrZip?: string | null | undefined;
|
3024
|
+
}, {
|
3025
|
+
country: string;
|
3026
|
+
state: string;
|
3027
|
+
addressType: "INTERNATIONAL";
|
3028
|
+
district2: string;
|
3029
|
+
cityOrTown?: string | null | undefined;
|
3030
|
+
addressLine1?: string | null | undefined;
|
3031
|
+
addressLine2?: string | null | undefined;
|
3032
|
+
addressLine3?: string | null | undefined;
|
3033
|
+
postcodeOrZip?: string | null | undefined;
|
2122
3034
|
}>]>>;
|
2123
3035
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2124
3036
|
filename: z.ZodString;
|
@@ -2149,6 +3061,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2149
3061
|
originalFilename: string;
|
2150
3062
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2151
3063
|
country: z.ZodString;
|
3064
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
2152
3065
|
province: z.ZodString;
|
2153
3066
|
district: z.ZodString;
|
2154
3067
|
}, {
|
@@ -2161,6 +3074,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2161
3074
|
}>, "strip", z.ZodTypeAny, {
|
2162
3075
|
country: string;
|
2163
3076
|
district: string;
|
3077
|
+
addressType: "DOMESTIC";
|
2164
3078
|
province: string;
|
2165
3079
|
urbanOrRural: "URBAN";
|
2166
3080
|
number?: string | null | undefined;
|
@@ -2171,6 +3085,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2171
3085
|
}, {
|
2172
3086
|
country: string;
|
2173
3087
|
district: string;
|
3088
|
+
addressType: "DOMESTIC";
|
2174
3089
|
province: string;
|
2175
3090
|
urbanOrRural: "URBAN";
|
2176
3091
|
number?: string | null | undefined;
|
@@ -2180,6 +3095,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2180
3095
|
zipCode?: string | null | undefined;
|
2181
3096
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2182
3097
|
country: z.ZodString;
|
3098
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
2183
3099
|
province: z.ZodString;
|
2184
3100
|
district: z.ZodString;
|
2185
3101
|
}, {
|
@@ -2188,15 +3104,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2188
3104
|
}>, "strip", z.ZodTypeAny, {
|
2189
3105
|
country: string;
|
2190
3106
|
district: string;
|
3107
|
+
addressType: "DOMESTIC";
|
2191
3108
|
province: string;
|
2192
3109
|
urbanOrRural: "RURAL";
|
2193
3110
|
village?: string | null | undefined;
|
2194
3111
|
}, {
|
2195
3112
|
country: string;
|
2196
3113
|
district: string;
|
3114
|
+
addressType: "DOMESTIC";
|
2197
3115
|
province: string;
|
2198
3116
|
urbanOrRural: "RURAL";
|
2199
3117
|
village?: string | null | undefined;
|
3118
|
+
}>, z.ZodObject<{
|
3119
|
+
country: z.ZodString;
|
3120
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
3121
|
+
state: z.ZodString;
|
3122
|
+
district2: z.ZodString;
|
3123
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3124
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3125
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3126
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3127
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3128
|
+
}, "strip", z.ZodTypeAny, {
|
3129
|
+
country: string;
|
3130
|
+
state: string;
|
3131
|
+
addressType: "INTERNATIONAL";
|
3132
|
+
district2: string;
|
3133
|
+
cityOrTown?: string | null | undefined;
|
3134
|
+
addressLine1?: string | null | undefined;
|
3135
|
+
addressLine2?: string | null | undefined;
|
3136
|
+
addressLine3?: string | null | undefined;
|
3137
|
+
postcodeOrZip?: string | null | undefined;
|
3138
|
+
}, {
|
3139
|
+
country: string;
|
3140
|
+
state: string;
|
3141
|
+
addressType: "INTERNATIONAL";
|
3142
|
+
district2: string;
|
3143
|
+
cityOrTown?: string | null | undefined;
|
3144
|
+
addressLine1?: string | null | undefined;
|
3145
|
+
addressLine2?: string | null | undefined;
|
3146
|
+
addressLine3?: string | null | undefined;
|
3147
|
+
postcodeOrZip?: string | null | undefined;
|
2200
3148
|
}>]>>>;
|
2201
3149
|
createdAtLocation: z.ZodString;
|
2202
3150
|
}, {
|
@@ -2211,6 +3159,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2211
3159
|
} | {
|
2212
3160
|
country: string;
|
2213
3161
|
district: string;
|
3162
|
+
addressType: "DOMESTIC";
|
2214
3163
|
province: string;
|
2215
3164
|
urbanOrRural: "URBAN";
|
2216
3165
|
number?: string | null | undefined;
|
@@ -2221,9 +3170,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2221
3170
|
} | {
|
2222
3171
|
country: string;
|
2223
3172
|
district: string;
|
3173
|
+
addressType: "DOMESTIC";
|
2224
3174
|
province: string;
|
2225
3175
|
urbanOrRural: "RURAL";
|
2226
3176
|
village?: string | null | undefined;
|
3177
|
+
} | {
|
3178
|
+
country: string;
|
3179
|
+
state: string;
|
3180
|
+
addressType: "INTERNATIONAL";
|
3181
|
+
district2: string;
|
3182
|
+
cityOrTown?: string | null | undefined;
|
3183
|
+
addressLine1?: string | null | undefined;
|
3184
|
+
addressLine2?: string | null | undefined;
|
3185
|
+
addressLine3?: string | null | undefined;
|
3186
|
+
postcodeOrZip?: string | null | undefined;
|
2227
3187
|
} | {
|
2228
3188
|
type: string;
|
2229
3189
|
option: string;
|
@@ -2240,6 +3200,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2240
3200
|
} | {
|
2241
3201
|
country: string;
|
2242
3202
|
district: string;
|
3203
|
+
addressType: "DOMESTIC";
|
2243
3204
|
province: string;
|
2244
3205
|
urbanOrRural: "URBAN";
|
2245
3206
|
number?: string | null | undefined;
|
@@ -2250,9 +3211,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2250
3211
|
} | {
|
2251
3212
|
country: string;
|
2252
3213
|
district: string;
|
3214
|
+
addressType: "DOMESTIC";
|
2253
3215
|
province: string;
|
2254
3216
|
urbanOrRural: "RURAL";
|
2255
3217
|
village?: string | null | undefined;
|
3218
|
+
} | {
|
3219
|
+
country: string;
|
3220
|
+
state: string;
|
3221
|
+
addressType: "INTERNATIONAL";
|
3222
|
+
district2: string;
|
3223
|
+
cityOrTown?: string | null | undefined;
|
3224
|
+
addressLine1?: string | null | undefined;
|
3225
|
+
addressLine2?: string | null | undefined;
|
3226
|
+
addressLine3?: string | null | undefined;
|
3227
|
+
postcodeOrZip?: string | null | undefined;
|
2256
3228
|
} | {
|
2257
3229
|
type: string;
|
2258
3230
|
option: string;
|
@@ -2269,6 +3241,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2269
3241
|
} | {
|
2270
3242
|
country: string;
|
2271
3243
|
district: string;
|
3244
|
+
addressType: "DOMESTIC";
|
2272
3245
|
province: string;
|
2273
3246
|
urbanOrRural: "URBAN";
|
2274
3247
|
number?: string | null | undefined;
|
@@ -2279,9 +3252,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2279
3252
|
} | {
|
2280
3253
|
country: string;
|
2281
3254
|
district: string;
|
3255
|
+
addressType: "DOMESTIC";
|
2282
3256
|
province: string;
|
2283
3257
|
urbanOrRural: "RURAL";
|
2284
3258
|
village?: string | null | undefined;
|
3259
|
+
} | {
|
3260
|
+
country: string;
|
3261
|
+
state: string;
|
3262
|
+
addressType: "INTERNATIONAL";
|
3263
|
+
district2: string;
|
3264
|
+
cityOrTown?: string | null | undefined;
|
3265
|
+
addressLine1?: string | null | undefined;
|
3266
|
+
addressLine2?: string | null | undefined;
|
3267
|
+
addressLine3?: string | null | undefined;
|
3268
|
+
postcodeOrZip?: string | null | undefined;
|
2285
3269
|
} | {
|
2286
3270
|
type: string;
|
2287
3271
|
option: string;
|
@@ -2298,6 +3282,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2298
3282
|
} | {
|
2299
3283
|
country: string;
|
2300
3284
|
district: string;
|
3285
|
+
addressType: "DOMESTIC";
|
2301
3286
|
province: string;
|
2302
3287
|
urbanOrRural: "URBAN";
|
2303
3288
|
number?: string | null | undefined;
|
@@ -2308,9 +3293,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2308
3293
|
} | {
|
2309
3294
|
country: string;
|
2310
3295
|
district: string;
|
3296
|
+
addressType: "DOMESTIC";
|
2311
3297
|
province: string;
|
2312
3298
|
urbanOrRural: "RURAL";
|
2313
3299
|
village?: string | null | undefined;
|
3300
|
+
} | {
|
3301
|
+
country: string;
|
3302
|
+
state: string;
|
3303
|
+
addressType: "INTERNATIONAL";
|
3304
|
+
district2: string;
|
3305
|
+
cityOrTown?: string | null | undefined;
|
3306
|
+
addressLine1?: string | null | undefined;
|
3307
|
+
addressLine2?: string | null | undefined;
|
3308
|
+
addressLine3?: string | null | undefined;
|
3309
|
+
postcodeOrZip?: string | null | undefined;
|
2314
3310
|
} | {
|
2315
3311
|
type: string;
|
2316
3312
|
option: string;
|
@@ -2350,6 +3346,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2350
3346
|
originalFilename: string;
|
2351
3347
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2352
3348
|
country: z.ZodString;
|
3349
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
2353
3350
|
province: z.ZodString;
|
2354
3351
|
district: z.ZodString;
|
2355
3352
|
}, {
|
@@ -2362,6 +3359,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2362
3359
|
}>, "strip", z.ZodTypeAny, {
|
2363
3360
|
country: string;
|
2364
3361
|
district: string;
|
3362
|
+
addressType: "DOMESTIC";
|
2365
3363
|
province: string;
|
2366
3364
|
urbanOrRural: "URBAN";
|
2367
3365
|
number?: string | null | undefined;
|
@@ -2372,6 +3370,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2372
3370
|
}, {
|
2373
3371
|
country: string;
|
2374
3372
|
district: string;
|
3373
|
+
addressType: "DOMESTIC";
|
2375
3374
|
province: string;
|
2376
3375
|
urbanOrRural: "URBAN";
|
2377
3376
|
number?: string | null | undefined;
|
@@ -2381,6 +3380,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2381
3380
|
zipCode?: string | null | undefined;
|
2382
3381
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2383
3382
|
country: z.ZodString;
|
3383
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
2384
3384
|
province: z.ZodString;
|
2385
3385
|
district: z.ZodString;
|
2386
3386
|
}, {
|
@@ -2389,15 +3389,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2389
3389
|
}>, "strip", z.ZodTypeAny, {
|
2390
3390
|
country: string;
|
2391
3391
|
district: string;
|
3392
|
+
addressType: "DOMESTIC";
|
2392
3393
|
province: string;
|
2393
3394
|
urbanOrRural: "RURAL";
|
2394
3395
|
village?: string | null | undefined;
|
2395
3396
|
}, {
|
2396
3397
|
country: string;
|
2397
3398
|
district: string;
|
3399
|
+
addressType: "DOMESTIC";
|
2398
3400
|
province: string;
|
2399
3401
|
urbanOrRural: "RURAL";
|
2400
3402
|
village?: string | null | undefined;
|
3403
|
+
}>, z.ZodObject<{
|
3404
|
+
country: z.ZodString;
|
3405
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
3406
|
+
state: z.ZodString;
|
3407
|
+
district2: z.ZodString;
|
3408
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3409
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3410
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3411
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3412
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3413
|
+
}, "strip", z.ZodTypeAny, {
|
3414
|
+
country: string;
|
3415
|
+
state: string;
|
3416
|
+
addressType: "INTERNATIONAL";
|
3417
|
+
district2: string;
|
3418
|
+
cityOrTown?: string | null | undefined;
|
3419
|
+
addressLine1?: string | null | undefined;
|
3420
|
+
addressLine2?: string | null | undefined;
|
3421
|
+
addressLine3?: string | null | undefined;
|
3422
|
+
postcodeOrZip?: string | null | undefined;
|
3423
|
+
}, {
|
3424
|
+
country: string;
|
3425
|
+
state: string;
|
3426
|
+
addressType: "INTERNATIONAL";
|
3427
|
+
district2: string;
|
3428
|
+
cityOrTown?: string | null | undefined;
|
3429
|
+
addressLine1?: string | null | undefined;
|
3430
|
+
addressLine2?: string | null | undefined;
|
3431
|
+
addressLine3?: string | null | undefined;
|
3432
|
+
postcodeOrZip?: string | null | undefined;
|
2401
3433
|
}>]>>;
|
2402
3434
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2403
3435
|
filename: z.ZodString;
|
@@ -2428,6 +3460,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2428
3460
|
originalFilename: string;
|
2429
3461
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2430
3462
|
country: z.ZodString;
|
3463
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
2431
3464
|
province: z.ZodString;
|
2432
3465
|
district: z.ZodString;
|
2433
3466
|
}, {
|
@@ -2440,6 +3473,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2440
3473
|
}>, "strip", z.ZodTypeAny, {
|
2441
3474
|
country: string;
|
2442
3475
|
district: string;
|
3476
|
+
addressType: "DOMESTIC";
|
2443
3477
|
province: string;
|
2444
3478
|
urbanOrRural: "URBAN";
|
2445
3479
|
number?: string | null | undefined;
|
@@ -2450,6 +3484,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2450
3484
|
}, {
|
2451
3485
|
country: string;
|
2452
3486
|
district: string;
|
3487
|
+
addressType: "DOMESTIC";
|
2453
3488
|
province: string;
|
2454
3489
|
urbanOrRural: "URBAN";
|
2455
3490
|
number?: string | null | undefined;
|
@@ -2459,6 +3494,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2459
3494
|
zipCode?: string | null | undefined;
|
2460
3495
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2461
3496
|
country: z.ZodString;
|
3497
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
2462
3498
|
province: z.ZodString;
|
2463
3499
|
district: z.ZodString;
|
2464
3500
|
}, {
|
@@ -2467,15 +3503,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2467
3503
|
}>, "strip", z.ZodTypeAny, {
|
2468
3504
|
country: string;
|
2469
3505
|
district: string;
|
3506
|
+
addressType: "DOMESTIC";
|
2470
3507
|
province: string;
|
2471
3508
|
urbanOrRural: "RURAL";
|
2472
3509
|
village?: string | null | undefined;
|
2473
3510
|
}, {
|
2474
3511
|
country: string;
|
2475
3512
|
district: string;
|
3513
|
+
addressType: "DOMESTIC";
|
2476
3514
|
province: string;
|
2477
3515
|
urbanOrRural: "RURAL";
|
2478
3516
|
village?: string | null | undefined;
|
3517
|
+
}>, z.ZodObject<{
|
3518
|
+
country: z.ZodString;
|
3519
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
3520
|
+
state: z.ZodString;
|
3521
|
+
district2: z.ZodString;
|
3522
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3523
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3524
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3525
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3526
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3527
|
+
}, "strip", z.ZodTypeAny, {
|
3528
|
+
country: string;
|
3529
|
+
state: string;
|
3530
|
+
addressType: "INTERNATIONAL";
|
3531
|
+
district2: string;
|
3532
|
+
cityOrTown?: string | null | undefined;
|
3533
|
+
addressLine1?: string | null | undefined;
|
3534
|
+
addressLine2?: string | null | undefined;
|
3535
|
+
addressLine3?: string | null | undefined;
|
3536
|
+
postcodeOrZip?: string | null | undefined;
|
3537
|
+
}, {
|
3538
|
+
country: string;
|
3539
|
+
state: string;
|
3540
|
+
addressType: "INTERNATIONAL";
|
3541
|
+
district2: string;
|
3542
|
+
cityOrTown?: string | null | undefined;
|
3543
|
+
addressLine1?: string | null | undefined;
|
3544
|
+
addressLine2?: string | null | undefined;
|
3545
|
+
addressLine3?: string | null | undefined;
|
3546
|
+
postcodeOrZip?: string | null | undefined;
|
2479
3547
|
}>]>>>;
|
2480
3548
|
createdAtLocation: z.ZodString;
|
2481
3549
|
}, {
|
@@ -2500,6 +3568,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2500
3568
|
} | {
|
2501
3569
|
country: string;
|
2502
3570
|
district: string;
|
3571
|
+
addressType: "DOMESTIC";
|
2503
3572
|
province: string;
|
2504
3573
|
urbanOrRural: "URBAN";
|
2505
3574
|
number?: string | null | undefined;
|
@@ -2510,9 +3579,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2510
3579
|
} | {
|
2511
3580
|
country: string;
|
2512
3581
|
district: string;
|
3582
|
+
addressType: "DOMESTIC";
|
2513
3583
|
province: string;
|
2514
3584
|
urbanOrRural: "RURAL";
|
2515
3585
|
village?: string | null | undefined;
|
3586
|
+
} | {
|
3587
|
+
country: string;
|
3588
|
+
state: string;
|
3589
|
+
addressType: "INTERNATIONAL";
|
3590
|
+
district2: string;
|
3591
|
+
cityOrTown?: string | null | undefined;
|
3592
|
+
addressLine1?: string | null | undefined;
|
3593
|
+
addressLine2?: string | null | undefined;
|
3594
|
+
addressLine3?: string | null | undefined;
|
3595
|
+
postcodeOrZip?: string | null | undefined;
|
2516
3596
|
} | {
|
2517
3597
|
type: string;
|
2518
3598
|
option: string;
|
@@ -2533,6 +3613,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2533
3613
|
} | {
|
2534
3614
|
country: string;
|
2535
3615
|
district: string;
|
3616
|
+
addressType: "DOMESTIC";
|
2536
3617
|
province: string;
|
2537
3618
|
urbanOrRural: "URBAN";
|
2538
3619
|
number?: string | null | undefined;
|
@@ -2543,9 +3624,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2543
3624
|
} | {
|
2544
3625
|
country: string;
|
2545
3626
|
district: string;
|
3627
|
+
addressType: "DOMESTIC";
|
2546
3628
|
province: string;
|
2547
3629
|
urbanOrRural: "RURAL";
|
2548
3630
|
village?: string | null | undefined;
|
3631
|
+
} | {
|
3632
|
+
country: string;
|
3633
|
+
state: string;
|
3634
|
+
addressType: "INTERNATIONAL";
|
3635
|
+
district2: string;
|
3636
|
+
cityOrTown?: string | null | undefined;
|
3637
|
+
addressLine1?: string | null | undefined;
|
3638
|
+
addressLine2?: string | null | undefined;
|
3639
|
+
addressLine3?: string | null | undefined;
|
3640
|
+
postcodeOrZip?: string | null | undefined;
|
2549
3641
|
} | {
|
2550
3642
|
type: string;
|
2551
3643
|
option: string;
|
@@ -2562,6 +3654,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2562
3654
|
} | {
|
2563
3655
|
country: string;
|
2564
3656
|
district: string;
|
3657
|
+
addressType: "DOMESTIC";
|
2565
3658
|
province: string;
|
2566
3659
|
urbanOrRural: "URBAN";
|
2567
3660
|
number?: string | null | undefined;
|
@@ -2572,9 +3665,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2572
3665
|
} | {
|
2573
3666
|
country: string;
|
2574
3667
|
district: string;
|
3668
|
+
addressType: "DOMESTIC";
|
2575
3669
|
province: string;
|
2576
3670
|
urbanOrRural: "RURAL";
|
2577
3671
|
village?: string | null | undefined;
|
3672
|
+
} | {
|
3673
|
+
country: string;
|
3674
|
+
state: string;
|
3675
|
+
addressType: "INTERNATIONAL";
|
3676
|
+
district2: string;
|
3677
|
+
cityOrTown?: string | null | undefined;
|
3678
|
+
addressLine1?: string | null | undefined;
|
3679
|
+
addressLine2?: string | null | undefined;
|
3680
|
+
addressLine3?: string | null | undefined;
|
3681
|
+
postcodeOrZip?: string | null | undefined;
|
2578
3682
|
} | {
|
2579
3683
|
type: string;
|
2580
3684
|
option: string;
|
@@ -2595,6 +3699,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2595
3699
|
} | {
|
2596
3700
|
country: string;
|
2597
3701
|
district: string;
|
3702
|
+
addressType: "DOMESTIC";
|
2598
3703
|
province: string;
|
2599
3704
|
urbanOrRural: "URBAN";
|
2600
3705
|
number?: string | null | undefined;
|
@@ -2605,9 +3710,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2605
3710
|
} | {
|
2606
3711
|
country: string;
|
2607
3712
|
district: string;
|
3713
|
+
addressType: "DOMESTIC";
|
2608
3714
|
province: string;
|
2609
3715
|
urbanOrRural: "RURAL";
|
2610
3716
|
village?: string | null | undefined;
|
3717
|
+
} | {
|
3718
|
+
country: string;
|
3719
|
+
state: string;
|
3720
|
+
addressType: "INTERNATIONAL";
|
3721
|
+
district2: string;
|
3722
|
+
cityOrTown?: string | null | undefined;
|
3723
|
+
addressLine1?: string | null | undefined;
|
3724
|
+
addressLine2?: string | null | undefined;
|
3725
|
+
addressLine3?: string | null | undefined;
|
3726
|
+
postcodeOrZip?: string | null | undefined;
|
2611
3727
|
} | {
|
2612
3728
|
type: string;
|
2613
3729
|
option: string;
|
@@ -2647,6 +3763,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2647
3763
|
originalFilename: string;
|
2648
3764
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2649
3765
|
country: z.ZodString;
|
3766
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
2650
3767
|
province: z.ZodString;
|
2651
3768
|
district: z.ZodString;
|
2652
3769
|
}, {
|
@@ -2659,6 +3776,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2659
3776
|
}>, "strip", z.ZodTypeAny, {
|
2660
3777
|
country: string;
|
2661
3778
|
district: string;
|
3779
|
+
addressType: "DOMESTIC";
|
2662
3780
|
province: string;
|
2663
3781
|
urbanOrRural: "URBAN";
|
2664
3782
|
number?: string | null | undefined;
|
@@ -2669,6 +3787,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2669
3787
|
}, {
|
2670
3788
|
country: string;
|
2671
3789
|
district: string;
|
3790
|
+
addressType: "DOMESTIC";
|
2672
3791
|
province: string;
|
2673
3792
|
urbanOrRural: "URBAN";
|
2674
3793
|
number?: string | null | undefined;
|
@@ -2678,6 +3797,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2678
3797
|
zipCode?: string | null | undefined;
|
2679
3798
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2680
3799
|
country: z.ZodString;
|
3800
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
2681
3801
|
province: z.ZodString;
|
2682
3802
|
district: z.ZodString;
|
2683
3803
|
}, {
|
@@ -2686,15 +3806,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2686
3806
|
}>, "strip", z.ZodTypeAny, {
|
2687
3807
|
country: string;
|
2688
3808
|
district: string;
|
3809
|
+
addressType: "DOMESTIC";
|
2689
3810
|
province: string;
|
2690
3811
|
urbanOrRural: "RURAL";
|
2691
3812
|
village?: string | null | undefined;
|
2692
3813
|
}, {
|
2693
3814
|
country: string;
|
2694
3815
|
district: string;
|
3816
|
+
addressType: "DOMESTIC";
|
2695
3817
|
province: string;
|
2696
3818
|
urbanOrRural: "RURAL";
|
2697
3819
|
village?: string | null | undefined;
|
3820
|
+
}>, z.ZodObject<{
|
3821
|
+
country: z.ZodString;
|
3822
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
3823
|
+
state: z.ZodString;
|
3824
|
+
district2: z.ZodString;
|
3825
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3826
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3827
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3828
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3829
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3830
|
+
}, "strip", z.ZodTypeAny, {
|
3831
|
+
country: string;
|
3832
|
+
state: string;
|
3833
|
+
addressType: "INTERNATIONAL";
|
3834
|
+
district2: string;
|
3835
|
+
cityOrTown?: string | null | undefined;
|
3836
|
+
addressLine1?: string | null | undefined;
|
3837
|
+
addressLine2?: string | null | undefined;
|
3838
|
+
addressLine3?: string | null | undefined;
|
3839
|
+
postcodeOrZip?: string | null | undefined;
|
3840
|
+
}, {
|
3841
|
+
country: string;
|
3842
|
+
state: string;
|
3843
|
+
addressType: "INTERNATIONAL";
|
3844
|
+
district2: string;
|
3845
|
+
cityOrTown?: string | null | undefined;
|
3846
|
+
addressLine1?: string | null | undefined;
|
3847
|
+
addressLine2?: string | null | undefined;
|
3848
|
+
addressLine3?: string | null | undefined;
|
3849
|
+
postcodeOrZip?: string | null | undefined;
|
2698
3850
|
}>]>>;
|
2699
3851
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2700
3852
|
filename: z.ZodString;
|
@@ -2725,6 +3877,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2725
3877
|
originalFilename: string;
|
2726
3878
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2727
3879
|
country: z.ZodString;
|
3880
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
2728
3881
|
province: z.ZodString;
|
2729
3882
|
district: z.ZodString;
|
2730
3883
|
}, {
|
@@ -2737,6 +3890,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2737
3890
|
}>, "strip", z.ZodTypeAny, {
|
2738
3891
|
country: string;
|
2739
3892
|
district: string;
|
3893
|
+
addressType: "DOMESTIC";
|
2740
3894
|
province: string;
|
2741
3895
|
urbanOrRural: "URBAN";
|
2742
3896
|
number?: string | null | undefined;
|
@@ -2747,6 +3901,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2747
3901
|
}, {
|
2748
3902
|
country: string;
|
2749
3903
|
district: string;
|
3904
|
+
addressType: "DOMESTIC";
|
2750
3905
|
province: string;
|
2751
3906
|
urbanOrRural: "URBAN";
|
2752
3907
|
number?: string | null | undefined;
|
@@ -2756,6 +3911,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2756
3911
|
zipCode?: string | null | undefined;
|
2757
3912
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2758
3913
|
country: z.ZodString;
|
3914
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
2759
3915
|
province: z.ZodString;
|
2760
3916
|
district: z.ZodString;
|
2761
3917
|
}, {
|
@@ -2764,15 +3920,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2764
3920
|
}>, "strip", z.ZodTypeAny, {
|
2765
3921
|
country: string;
|
2766
3922
|
district: string;
|
3923
|
+
addressType: "DOMESTIC";
|
2767
3924
|
province: string;
|
2768
3925
|
urbanOrRural: "RURAL";
|
2769
3926
|
village?: string | null | undefined;
|
2770
3927
|
}, {
|
2771
3928
|
country: string;
|
2772
3929
|
district: string;
|
3930
|
+
addressType: "DOMESTIC";
|
2773
3931
|
province: string;
|
2774
3932
|
urbanOrRural: "RURAL";
|
2775
3933
|
village?: string | null | undefined;
|
3934
|
+
}>, z.ZodObject<{
|
3935
|
+
country: z.ZodString;
|
3936
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
3937
|
+
state: z.ZodString;
|
3938
|
+
district2: z.ZodString;
|
3939
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3940
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3941
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3942
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3943
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3944
|
+
}, "strip", z.ZodTypeAny, {
|
3945
|
+
country: string;
|
3946
|
+
state: string;
|
3947
|
+
addressType: "INTERNATIONAL";
|
3948
|
+
district2: string;
|
3949
|
+
cityOrTown?: string | null | undefined;
|
3950
|
+
addressLine1?: string | null | undefined;
|
3951
|
+
addressLine2?: string | null | undefined;
|
3952
|
+
addressLine3?: string | null | undefined;
|
3953
|
+
postcodeOrZip?: string | null | undefined;
|
3954
|
+
}, {
|
3955
|
+
country: string;
|
3956
|
+
state: string;
|
3957
|
+
addressType: "INTERNATIONAL";
|
3958
|
+
district2: string;
|
3959
|
+
cityOrTown?: string | null | undefined;
|
3960
|
+
addressLine1?: string | null | undefined;
|
3961
|
+
addressLine2?: string | null | undefined;
|
3962
|
+
addressLine3?: string | null | undefined;
|
3963
|
+
postcodeOrZip?: string | null | undefined;
|
2776
3964
|
}>]>>>;
|
2777
3965
|
createdAtLocation: z.ZodString;
|
2778
3966
|
}, {
|
@@ -2787,6 +3975,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2787
3975
|
} | {
|
2788
3976
|
country: string;
|
2789
3977
|
district: string;
|
3978
|
+
addressType: "DOMESTIC";
|
2790
3979
|
province: string;
|
2791
3980
|
urbanOrRural: "URBAN";
|
2792
3981
|
number?: string | null | undefined;
|
@@ -2797,9 +3986,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2797
3986
|
} | {
|
2798
3987
|
country: string;
|
2799
3988
|
district: string;
|
3989
|
+
addressType: "DOMESTIC";
|
2800
3990
|
province: string;
|
2801
3991
|
urbanOrRural: "RURAL";
|
2802
3992
|
village?: string | null | undefined;
|
3993
|
+
} | {
|
3994
|
+
country: string;
|
3995
|
+
state: string;
|
3996
|
+
addressType: "INTERNATIONAL";
|
3997
|
+
district2: string;
|
3998
|
+
cityOrTown?: string | null | undefined;
|
3999
|
+
addressLine1?: string | null | undefined;
|
4000
|
+
addressLine2?: string | null | undefined;
|
4001
|
+
addressLine3?: string | null | undefined;
|
4002
|
+
postcodeOrZip?: string | null | undefined;
|
2803
4003
|
} | {
|
2804
4004
|
type: string;
|
2805
4005
|
option: string;
|
@@ -2816,6 +4016,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2816
4016
|
} | {
|
2817
4017
|
country: string;
|
2818
4018
|
district: string;
|
4019
|
+
addressType: "DOMESTIC";
|
2819
4020
|
province: string;
|
2820
4021
|
urbanOrRural: "URBAN";
|
2821
4022
|
number?: string | null | undefined;
|
@@ -2826,9 +4027,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2826
4027
|
} | {
|
2827
4028
|
country: string;
|
2828
4029
|
district: string;
|
4030
|
+
addressType: "DOMESTIC";
|
2829
4031
|
province: string;
|
2830
4032
|
urbanOrRural: "RURAL";
|
2831
4033
|
village?: string | null | undefined;
|
4034
|
+
} | {
|
4035
|
+
country: string;
|
4036
|
+
state: string;
|
4037
|
+
addressType: "INTERNATIONAL";
|
4038
|
+
district2: string;
|
4039
|
+
cityOrTown?: string | null | undefined;
|
4040
|
+
addressLine1?: string | null | undefined;
|
4041
|
+
addressLine2?: string | null | undefined;
|
4042
|
+
addressLine3?: string | null | undefined;
|
4043
|
+
postcodeOrZip?: string | null | undefined;
|
2832
4044
|
} | {
|
2833
4045
|
type: string;
|
2834
4046
|
option: string;
|
@@ -2845,6 +4057,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2845
4057
|
} | {
|
2846
4058
|
country: string;
|
2847
4059
|
district: string;
|
4060
|
+
addressType: "DOMESTIC";
|
2848
4061
|
province: string;
|
2849
4062
|
urbanOrRural: "URBAN";
|
2850
4063
|
number?: string | null | undefined;
|
@@ -2855,9 +4068,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2855
4068
|
} | {
|
2856
4069
|
country: string;
|
2857
4070
|
district: string;
|
4071
|
+
addressType: "DOMESTIC";
|
2858
4072
|
province: string;
|
2859
4073
|
urbanOrRural: "RURAL";
|
2860
4074
|
village?: string | null | undefined;
|
4075
|
+
} | {
|
4076
|
+
country: string;
|
4077
|
+
state: string;
|
4078
|
+
addressType: "INTERNATIONAL";
|
4079
|
+
district2: string;
|
4080
|
+
cityOrTown?: string | null | undefined;
|
4081
|
+
addressLine1?: string | null | undefined;
|
4082
|
+
addressLine2?: string | null | undefined;
|
4083
|
+
addressLine3?: string | null | undefined;
|
4084
|
+
postcodeOrZip?: string | null | undefined;
|
2861
4085
|
} | {
|
2862
4086
|
type: string;
|
2863
4087
|
option: string;
|
@@ -2874,6 +4098,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2874
4098
|
} | {
|
2875
4099
|
country: string;
|
2876
4100
|
district: string;
|
4101
|
+
addressType: "DOMESTIC";
|
2877
4102
|
province: string;
|
2878
4103
|
urbanOrRural: "URBAN";
|
2879
4104
|
number?: string | null | undefined;
|
@@ -2884,9 +4109,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2884
4109
|
} | {
|
2885
4110
|
country: string;
|
2886
4111
|
district: string;
|
4112
|
+
addressType: "DOMESTIC";
|
2887
4113
|
province: string;
|
2888
4114
|
urbanOrRural: "RURAL";
|
2889
4115
|
village?: string | null | undefined;
|
4116
|
+
} | {
|
4117
|
+
country: string;
|
4118
|
+
state: string;
|
4119
|
+
addressType: "INTERNATIONAL";
|
4120
|
+
district2: string;
|
4121
|
+
cityOrTown?: string | null | undefined;
|
4122
|
+
addressLine1?: string | null | undefined;
|
4123
|
+
addressLine2?: string | null | undefined;
|
4124
|
+
addressLine3?: string | null | undefined;
|
4125
|
+
postcodeOrZip?: string | null | undefined;
|
2890
4126
|
} | {
|
2891
4127
|
type: string;
|
2892
4128
|
option: string;
|
@@ -2926,6 +4162,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2926
4162
|
originalFilename: string;
|
2927
4163
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2928
4164
|
country: z.ZodString;
|
4165
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
2929
4166
|
province: z.ZodString;
|
2930
4167
|
district: z.ZodString;
|
2931
4168
|
}, {
|
@@ -2938,6 +4175,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2938
4175
|
}>, "strip", z.ZodTypeAny, {
|
2939
4176
|
country: string;
|
2940
4177
|
district: string;
|
4178
|
+
addressType: "DOMESTIC";
|
2941
4179
|
province: string;
|
2942
4180
|
urbanOrRural: "URBAN";
|
2943
4181
|
number?: string | null | undefined;
|
@@ -2948,6 +4186,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2948
4186
|
}, {
|
2949
4187
|
country: string;
|
2950
4188
|
district: string;
|
4189
|
+
addressType: "DOMESTIC";
|
2951
4190
|
province: string;
|
2952
4191
|
urbanOrRural: "URBAN";
|
2953
4192
|
number?: string | null | undefined;
|
@@ -2957,6 +4196,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2957
4196
|
zipCode?: string | null | undefined;
|
2958
4197
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2959
4198
|
country: z.ZodString;
|
4199
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
2960
4200
|
province: z.ZodString;
|
2961
4201
|
district: z.ZodString;
|
2962
4202
|
}, {
|
@@ -2965,15 +4205,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2965
4205
|
}>, "strip", z.ZodTypeAny, {
|
2966
4206
|
country: string;
|
2967
4207
|
district: string;
|
4208
|
+
addressType: "DOMESTIC";
|
2968
4209
|
province: string;
|
2969
4210
|
urbanOrRural: "RURAL";
|
2970
4211
|
village?: string | null | undefined;
|
2971
4212
|
}, {
|
2972
4213
|
country: string;
|
2973
4214
|
district: string;
|
4215
|
+
addressType: "DOMESTIC";
|
2974
4216
|
province: string;
|
2975
4217
|
urbanOrRural: "RURAL";
|
2976
4218
|
village?: string | null | undefined;
|
4219
|
+
}>, z.ZodObject<{
|
4220
|
+
country: z.ZodString;
|
4221
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
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
|
+
addressType: "INTERNATIONAL";
|
4233
|
+
district2: string;
|
4234
|
+
cityOrTown?: string | null | undefined;
|
4235
|
+
addressLine1?: string | null | undefined;
|
4236
|
+
addressLine2?: string | null | undefined;
|
4237
|
+
addressLine3?: string | null | undefined;
|
4238
|
+
postcodeOrZip?: string | null | undefined;
|
4239
|
+
}, {
|
4240
|
+
country: string;
|
4241
|
+
state: string;
|
4242
|
+
addressType: "INTERNATIONAL";
|
4243
|
+
district2: string;
|
4244
|
+
cityOrTown?: string | null | undefined;
|
4245
|
+
addressLine1?: string | null | undefined;
|
4246
|
+
addressLine2?: string | null | undefined;
|
4247
|
+
addressLine3?: string | null | undefined;
|
4248
|
+
postcodeOrZip?: string | null | undefined;
|
2977
4249
|
}>]>>;
|
2978
4250
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2979
4251
|
filename: z.ZodString;
|
@@ -3004,6 +4276,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3004
4276
|
originalFilename: string;
|
3005
4277
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3006
4278
|
country: z.ZodString;
|
4279
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
3007
4280
|
province: z.ZodString;
|
3008
4281
|
district: z.ZodString;
|
3009
4282
|
}, {
|
@@ -3016,6 +4289,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3016
4289
|
}>, "strip", z.ZodTypeAny, {
|
3017
4290
|
country: string;
|
3018
4291
|
district: string;
|
4292
|
+
addressType: "DOMESTIC";
|
3019
4293
|
province: string;
|
3020
4294
|
urbanOrRural: "URBAN";
|
3021
4295
|
number?: string | null | undefined;
|
@@ -3026,6 +4300,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3026
4300
|
}, {
|
3027
4301
|
country: string;
|
3028
4302
|
district: string;
|
4303
|
+
addressType: "DOMESTIC";
|
3029
4304
|
province: string;
|
3030
4305
|
urbanOrRural: "URBAN";
|
3031
4306
|
number?: string | null | undefined;
|
@@ -3035,6 +4310,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3035
4310
|
zipCode?: string | null | undefined;
|
3036
4311
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3037
4312
|
country: z.ZodString;
|
4313
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
3038
4314
|
province: z.ZodString;
|
3039
4315
|
district: z.ZodString;
|
3040
4316
|
}, {
|
@@ -3043,15 +4319,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3043
4319
|
}>, "strip", z.ZodTypeAny, {
|
3044
4320
|
country: string;
|
3045
4321
|
district: string;
|
4322
|
+
addressType: "DOMESTIC";
|
3046
4323
|
province: string;
|
3047
4324
|
urbanOrRural: "RURAL";
|
3048
4325
|
village?: string | null | undefined;
|
3049
4326
|
}, {
|
3050
4327
|
country: string;
|
3051
4328
|
district: string;
|
4329
|
+
addressType: "DOMESTIC";
|
3052
4330
|
province: string;
|
3053
4331
|
urbanOrRural: "RURAL";
|
3054
4332
|
village?: string | null | undefined;
|
4333
|
+
}>, z.ZodObject<{
|
4334
|
+
country: z.ZodString;
|
4335
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
4336
|
+
state: z.ZodString;
|
4337
|
+
district2: z.ZodString;
|
4338
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4339
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4340
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4341
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4342
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4343
|
+
}, "strip", z.ZodTypeAny, {
|
4344
|
+
country: string;
|
4345
|
+
state: string;
|
4346
|
+
addressType: "INTERNATIONAL";
|
4347
|
+
district2: string;
|
4348
|
+
cityOrTown?: string | null | undefined;
|
4349
|
+
addressLine1?: string | null | undefined;
|
4350
|
+
addressLine2?: string | null | undefined;
|
4351
|
+
addressLine3?: string | null | undefined;
|
4352
|
+
postcodeOrZip?: string | null | undefined;
|
4353
|
+
}, {
|
4354
|
+
country: string;
|
4355
|
+
state: string;
|
4356
|
+
addressType: "INTERNATIONAL";
|
4357
|
+
district2: string;
|
4358
|
+
cityOrTown?: string | null | undefined;
|
4359
|
+
addressLine1?: string | null | undefined;
|
4360
|
+
addressLine2?: string | null | undefined;
|
4361
|
+
addressLine3?: string | null | undefined;
|
4362
|
+
postcodeOrZip?: string | null | undefined;
|
3055
4363
|
}>]>>>;
|
3056
4364
|
createdAtLocation: z.ZodString;
|
3057
4365
|
}, {
|
@@ -3067,6 +4375,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3067
4375
|
} | {
|
3068
4376
|
country: string;
|
3069
4377
|
district: string;
|
4378
|
+
addressType: "DOMESTIC";
|
3070
4379
|
province: string;
|
3071
4380
|
urbanOrRural: "URBAN";
|
3072
4381
|
number?: string | null | undefined;
|
@@ -3077,9 +4386,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3077
4386
|
} | {
|
3078
4387
|
country: string;
|
3079
4388
|
district: string;
|
4389
|
+
addressType: "DOMESTIC";
|
3080
4390
|
province: string;
|
3081
4391
|
urbanOrRural: "RURAL";
|
3082
4392
|
village?: string | null | undefined;
|
4393
|
+
} | {
|
4394
|
+
country: string;
|
4395
|
+
state: string;
|
4396
|
+
addressType: "INTERNATIONAL";
|
4397
|
+
district2: string;
|
4398
|
+
cityOrTown?: string | null | undefined;
|
4399
|
+
addressLine1?: string | null | undefined;
|
4400
|
+
addressLine2?: string | null | undefined;
|
4401
|
+
addressLine3?: string | null | undefined;
|
4402
|
+
postcodeOrZip?: string | null | undefined;
|
3083
4403
|
} | {
|
3084
4404
|
type: string;
|
3085
4405
|
option: string;
|
@@ -3097,6 +4417,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3097
4417
|
} | {
|
3098
4418
|
country: string;
|
3099
4419
|
district: string;
|
4420
|
+
addressType: "DOMESTIC";
|
3100
4421
|
province: string;
|
3101
4422
|
urbanOrRural: "URBAN";
|
3102
4423
|
number?: string | null | undefined;
|
@@ -3107,9 +4428,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3107
4428
|
} | {
|
3108
4429
|
country: string;
|
3109
4430
|
district: string;
|
4431
|
+
addressType: "DOMESTIC";
|
3110
4432
|
province: string;
|
3111
4433
|
urbanOrRural: "RURAL";
|
3112
4434
|
village?: string | null | undefined;
|
4435
|
+
} | {
|
4436
|
+
country: string;
|
4437
|
+
state: string;
|
4438
|
+
addressType: "INTERNATIONAL";
|
4439
|
+
district2: string;
|
4440
|
+
cityOrTown?: string | null | undefined;
|
4441
|
+
addressLine1?: string | null | undefined;
|
4442
|
+
addressLine2?: string | null | undefined;
|
4443
|
+
addressLine3?: string | null | undefined;
|
4444
|
+
postcodeOrZip?: string | null | undefined;
|
3113
4445
|
} | {
|
3114
4446
|
type: string;
|
3115
4447
|
option: string;
|
@@ -3126,6 +4458,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3126
4458
|
} | {
|
3127
4459
|
country: string;
|
3128
4460
|
district: string;
|
4461
|
+
addressType: "DOMESTIC";
|
3129
4462
|
province: string;
|
3130
4463
|
urbanOrRural: "URBAN";
|
3131
4464
|
number?: string | null | undefined;
|
@@ -3136,9 +4469,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3136
4469
|
} | {
|
3137
4470
|
country: string;
|
3138
4471
|
district: string;
|
4472
|
+
addressType: "DOMESTIC";
|
3139
4473
|
province: string;
|
3140
4474
|
urbanOrRural: "RURAL";
|
3141
4475
|
village?: string | null | undefined;
|
4476
|
+
} | {
|
4477
|
+
country: string;
|
4478
|
+
state: string;
|
4479
|
+
addressType: "INTERNATIONAL";
|
4480
|
+
district2: string;
|
4481
|
+
cityOrTown?: string | null | undefined;
|
4482
|
+
addressLine1?: string | null | undefined;
|
4483
|
+
addressLine2?: string | null | undefined;
|
4484
|
+
addressLine3?: string | null | undefined;
|
4485
|
+
postcodeOrZip?: string | null | undefined;
|
3142
4486
|
} | {
|
3143
4487
|
type: string;
|
3144
4488
|
option: string;
|
@@ -3156,6 +4500,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3156
4500
|
} | {
|
3157
4501
|
country: string;
|
3158
4502
|
district: string;
|
4503
|
+
addressType: "DOMESTIC";
|
3159
4504
|
province: string;
|
3160
4505
|
urbanOrRural: "URBAN";
|
3161
4506
|
number?: string | null | undefined;
|
@@ -3166,9 +4511,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3166
4511
|
} | {
|
3167
4512
|
country: string;
|
3168
4513
|
district: string;
|
4514
|
+
addressType: "DOMESTIC";
|
3169
4515
|
province: string;
|
3170
4516
|
urbanOrRural: "RURAL";
|
3171
4517
|
village?: string | null | undefined;
|
4518
|
+
} | {
|
4519
|
+
country: string;
|
4520
|
+
state: string;
|
4521
|
+
addressType: "INTERNATIONAL";
|
4522
|
+
district2: string;
|
4523
|
+
cityOrTown?: string | null | undefined;
|
4524
|
+
addressLine1?: string | null | undefined;
|
4525
|
+
addressLine2?: string | null | undefined;
|
4526
|
+
addressLine3?: string | null | undefined;
|
4527
|
+
postcodeOrZip?: string | null | undefined;
|
3172
4528
|
} | {
|
3173
4529
|
type: string;
|
3174
4530
|
option: string;
|
@@ -3208,6 +4564,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3208
4564
|
originalFilename: string;
|
3209
4565
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3210
4566
|
country: z.ZodString;
|
4567
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
3211
4568
|
province: z.ZodString;
|
3212
4569
|
district: z.ZodString;
|
3213
4570
|
}, {
|
@@ -3220,6 +4577,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3220
4577
|
}>, "strip", z.ZodTypeAny, {
|
3221
4578
|
country: string;
|
3222
4579
|
district: string;
|
4580
|
+
addressType: "DOMESTIC";
|
3223
4581
|
province: string;
|
3224
4582
|
urbanOrRural: "URBAN";
|
3225
4583
|
number?: string | null | undefined;
|
@@ -3230,6 +4588,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3230
4588
|
}, {
|
3231
4589
|
country: string;
|
3232
4590
|
district: string;
|
4591
|
+
addressType: "DOMESTIC";
|
3233
4592
|
province: string;
|
3234
4593
|
urbanOrRural: "URBAN";
|
3235
4594
|
number?: string | null | undefined;
|
@@ -3239,6 +4598,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3239
4598
|
zipCode?: string | null | undefined;
|
3240
4599
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3241
4600
|
country: z.ZodString;
|
4601
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
3242
4602
|
province: z.ZodString;
|
3243
4603
|
district: z.ZodString;
|
3244
4604
|
}, {
|
@@ -3247,15 +4607,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3247
4607
|
}>, "strip", z.ZodTypeAny, {
|
3248
4608
|
country: string;
|
3249
4609
|
district: string;
|
4610
|
+
addressType: "DOMESTIC";
|
3250
4611
|
province: string;
|
3251
4612
|
urbanOrRural: "RURAL";
|
3252
4613
|
village?: string | null | undefined;
|
3253
4614
|
}, {
|
3254
4615
|
country: string;
|
3255
4616
|
district: string;
|
4617
|
+
addressType: "DOMESTIC";
|
3256
4618
|
province: string;
|
3257
4619
|
urbanOrRural: "RURAL";
|
3258
4620
|
village?: string | null | undefined;
|
4621
|
+
}>, z.ZodObject<{
|
4622
|
+
country: z.ZodString;
|
4623
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
4624
|
+
state: z.ZodString;
|
4625
|
+
district2: z.ZodString;
|
4626
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4627
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4628
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4629
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4630
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4631
|
+
}, "strip", z.ZodTypeAny, {
|
4632
|
+
country: string;
|
4633
|
+
state: string;
|
4634
|
+
addressType: "INTERNATIONAL";
|
4635
|
+
district2: string;
|
4636
|
+
cityOrTown?: string | null | undefined;
|
4637
|
+
addressLine1?: string | null | undefined;
|
4638
|
+
addressLine2?: string | null | undefined;
|
4639
|
+
addressLine3?: string | null | undefined;
|
4640
|
+
postcodeOrZip?: string | null | undefined;
|
4641
|
+
}, {
|
4642
|
+
country: string;
|
4643
|
+
state: string;
|
4644
|
+
addressType: "INTERNATIONAL";
|
4645
|
+
district2: string;
|
4646
|
+
cityOrTown?: string | null | undefined;
|
4647
|
+
addressLine1?: string | null | undefined;
|
4648
|
+
addressLine2?: string | null | undefined;
|
4649
|
+
addressLine3?: string | null | undefined;
|
4650
|
+
postcodeOrZip?: string | null | undefined;
|
3259
4651
|
}>]>>;
|
3260
4652
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3261
4653
|
filename: z.ZodString;
|
@@ -3286,6 +4678,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3286
4678
|
originalFilename: string;
|
3287
4679
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3288
4680
|
country: z.ZodString;
|
4681
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
3289
4682
|
province: z.ZodString;
|
3290
4683
|
district: z.ZodString;
|
3291
4684
|
}, {
|
@@ -3298,6 +4691,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3298
4691
|
}>, "strip", z.ZodTypeAny, {
|
3299
4692
|
country: string;
|
3300
4693
|
district: string;
|
4694
|
+
addressType: "DOMESTIC";
|
3301
4695
|
province: string;
|
3302
4696
|
urbanOrRural: "URBAN";
|
3303
4697
|
number?: string | null | undefined;
|
@@ -3308,6 +4702,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3308
4702
|
}, {
|
3309
4703
|
country: string;
|
3310
4704
|
district: string;
|
4705
|
+
addressType: "DOMESTIC";
|
3311
4706
|
province: string;
|
3312
4707
|
urbanOrRural: "URBAN";
|
3313
4708
|
number?: string | null | undefined;
|
@@ -3317,6 +4712,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3317
4712
|
zipCode?: string | null | undefined;
|
3318
4713
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3319
4714
|
country: z.ZodString;
|
4715
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
3320
4716
|
province: z.ZodString;
|
3321
4717
|
district: z.ZodString;
|
3322
4718
|
}, {
|
@@ -3325,15 +4721,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3325
4721
|
}>, "strip", z.ZodTypeAny, {
|
3326
4722
|
country: string;
|
3327
4723
|
district: string;
|
4724
|
+
addressType: "DOMESTIC";
|
3328
4725
|
province: string;
|
3329
4726
|
urbanOrRural: "RURAL";
|
3330
4727
|
village?: string | null | undefined;
|
3331
4728
|
}, {
|
3332
4729
|
country: string;
|
3333
4730
|
district: string;
|
4731
|
+
addressType: "DOMESTIC";
|
3334
4732
|
province: string;
|
3335
4733
|
urbanOrRural: "RURAL";
|
3336
4734
|
village?: string | null | undefined;
|
4735
|
+
}>, z.ZodObject<{
|
4736
|
+
country: z.ZodString;
|
4737
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
4738
|
+
state: z.ZodString;
|
4739
|
+
district2: z.ZodString;
|
4740
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4741
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4742
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4743
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4744
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4745
|
+
}, "strip", z.ZodTypeAny, {
|
4746
|
+
country: string;
|
4747
|
+
state: string;
|
4748
|
+
addressType: "INTERNATIONAL";
|
4749
|
+
district2: string;
|
4750
|
+
cityOrTown?: string | null | undefined;
|
4751
|
+
addressLine1?: string | null | undefined;
|
4752
|
+
addressLine2?: string | null | undefined;
|
4753
|
+
addressLine3?: string | null | undefined;
|
4754
|
+
postcodeOrZip?: string | null | undefined;
|
4755
|
+
}, {
|
4756
|
+
country: string;
|
4757
|
+
state: string;
|
4758
|
+
addressType: "INTERNATIONAL";
|
4759
|
+
district2: string;
|
4760
|
+
cityOrTown?: string | null | undefined;
|
4761
|
+
addressLine1?: string | null | undefined;
|
4762
|
+
addressLine2?: string | null | undefined;
|
4763
|
+
addressLine3?: string | null | undefined;
|
4764
|
+
postcodeOrZip?: string | null | undefined;
|
3337
4765
|
}>]>>>;
|
3338
4766
|
createdAtLocation: z.ZodString;
|
3339
4767
|
}, {
|
@@ -3348,6 +4776,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3348
4776
|
} | {
|
3349
4777
|
country: string;
|
3350
4778
|
district: string;
|
4779
|
+
addressType: "DOMESTIC";
|
3351
4780
|
province: string;
|
3352
4781
|
urbanOrRural: "URBAN";
|
3353
4782
|
number?: string | null | undefined;
|
@@ -3358,9 +4787,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3358
4787
|
} | {
|
3359
4788
|
country: string;
|
3360
4789
|
district: string;
|
4790
|
+
addressType: "DOMESTIC";
|
3361
4791
|
province: string;
|
3362
4792
|
urbanOrRural: "RURAL";
|
3363
4793
|
village?: string | null | undefined;
|
4794
|
+
} | {
|
4795
|
+
country: string;
|
4796
|
+
state: string;
|
4797
|
+
addressType: "INTERNATIONAL";
|
4798
|
+
district2: string;
|
4799
|
+
cityOrTown?: string | null | undefined;
|
4800
|
+
addressLine1?: string | null | undefined;
|
4801
|
+
addressLine2?: string | null | undefined;
|
4802
|
+
addressLine3?: string | null | undefined;
|
4803
|
+
postcodeOrZip?: string | null | undefined;
|
3364
4804
|
} | {
|
3365
4805
|
type: string;
|
3366
4806
|
option: string;
|
@@ -3377,6 +4817,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3377
4817
|
} | {
|
3378
4818
|
country: string;
|
3379
4819
|
district: string;
|
4820
|
+
addressType: "DOMESTIC";
|
3380
4821
|
province: string;
|
3381
4822
|
urbanOrRural: "URBAN";
|
3382
4823
|
number?: string | null | undefined;
|
@@ -3387,9 +4828,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3387
4828
|
} | {
|
3388
4829
|
country: string;
|
3389
4830
|
district: string;
|
4831
|
+
addressType: "DOMESTIC";
|
3390
4832
|
province: string;
|
3391
4833
|
urbanOrRural: "RURAL";
|
3392
4834
|
village?: string | null | undefined;
|
4835
|
+
} | {
|
4836
|
+
country: string;
|
4837
|
+
state: string;
|
4838
|
+
addressType: "INTERNATIONAL";
|
4839
|
+
district2: string;
|
4840
|
+
cityOrTown?: string | null | undefined;
|
4841
|
+
addressLine1?: string | null | undefined;
|
4842
|
+
addressLine2?: string | null | undefined;
|
4843
|
+
addressLine3?: string | null | undefined;
|
4844
|
+
postcodeOrZip?: string | null | undefined;
|
3393
4845
|
} | {
|
3394
4846
|
type: string;
|
3395
4847
|
option: string;
|
@@ -3406,6 +4858,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3406
4858
|
} | {
|
3407
4859
|
country: string;
|
3408
4860
|
district: string;
|
4861
|
+
addressType: "DOMESTIC";
|
3409
4862
|
province: string;
|
3410
4863
|
urbanOrRural: "URBAN";
|
3411
4864
|
number?: string | null | undefined;
|
@@ -3416,9 +4869,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3416
4869
|
} | {
|
3417
4870
|
country: string;
|
3418
4871
|
district: string;
|
4872
|
+
addressType: "DOMESTIC";
|
3419
4873
|
province: string;
|
3420
4874
|
urbanOrRural: "RURAL";
|
3421
4875
|
village?: string | null | undefined;
|
4876
|
+
} | {
|
4877
|
+
country: string;
|
4878
|
+
state: string;
|
4879
|
+
addressType: "INTERNATIONAL";
|
4880
|
+
district2: string;
|
4881
|
+
cityOrTown?: string | null | undefined;
|
4882
|
+
addressLine1?: string | null | undefined;
|
4883
|
+
addressLine2?: string | null | undefined;
|
4884
|
+
addressLine3?: string | null | undefined;
|
4885
|
+
postcodeOrZip?: string | null | undefined;
|
3422
4886
|
} | {
|
3423
4887
|
type: string;
|
3424
4888
|
option: string;
|
@@ -3435,6 +4899,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3435
4899
|
} | {
|
3436
4900
|
country: string;
|
3437
4901
|
district: string;
|
4902
|
+
addressType: "DOMESTIC";
|
3438
4903
|
province: string;
|
3439
4904
|
urbanOrRural: "URBAN";
|
3440
4905
|
number?: string | null | undefined;
|
@@ -3445,9 +4910,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3445
4910
|
} | {
|
3446
4911
|
country: string;
|
3447
4912
|
district: string;
|
4913
|
+
addressType: "DOMESTIC";
|
3448
4914
|
province: string;
|
3449
4915
|
urbanOrRural: "RURAL";
|
3450
4916
|
village?: string | null | undefined;
|
4917
|
+
} | {
|
4918
|
+
country: string;
|
4919
|
+
state: string;
|
4920
|
+
addressType: "INTERNATIONAL";
|
4921
|
+
district2: string;
|
4922
|
+
cityOrTown?: string | null | undefined;
|
4923
|
+
addressLine1?: string | null | undefined;
|
4924
|
+
addressLine2?: string | null | undefined;
|
4925
|
+
addressLine3?: string | null | undefined;
|
4926
|
+
postcodeOrZip?: string | null | undefined;
|
3451
4927
|
} | {
|
3452
4928
|
type: string;
|
3453
4929
|
option: string;
|
@@ -3487,6 +4963,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3487
4963
|
originalFilename: string;
|
3488
4964
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3489
4965
|
country: z.ZodString;
|
4966
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
3490
4967
|
province: z.ZodString;
|
3491
4968
|
district: z.ZodString;
|
3492
4969
|
}, {
|
@@ -3499,6 +4976,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3499
4976
|
}>, "strip", z.ZodTypeAny, {
|
3500
4977
|
country: string;
|
3501
4978
|
district: string;
|
4979
|
+
addressType: "DOMESTIC";
|
3502
4980
|
province: string;
|
3503
4981
|
urbanOrRural: "URBAN";
|
3504
4982
|
number?: string | null | undefined;
|
@@ -3509,6 +4987,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3509
4987
|
}, {
|
3510
4988
|
country: string;
|
3511
4989
|
district: string;
|
4990
|
+
addressType: "DOMESTIC";
|
3512
4991
|
province: string;
|
3513
4992
|
urbanOrRural: "URBAN";
|
3514
4993
|
number?: string | null | undefined;
|
@@ -3518,6 +4997,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3518
4997
|
zipCode?: string | null | undefined;
|
3519
4998
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3520
4999
|
country: z.ZodString;
|
5000
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
3521
5001
|
province: z.ZodString;
|
3522
5002
|
district: z.ZodString;
|
3523
5003
|
}, {
|
@@ -3526,15 +5006,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3526
5006
|
}>, "strip", z.ZodTypeAny, {
|
3527
5007
|
country: string;
|
3528
5008
|
district: string;
|
5009
|
+
addressType: "DOMESTIC";
|
3529
5010
|
province: string;
|
3530
5011
|
urbanOrRural: "RURAL";
|
3531
5012
|
village?: string | null | undefined;
|
3532
5013
|
}, {
|
3533
5014
|
country: string;
|
3534
5015
|
district: string;
|
5016
|
+
addressType: "DOMESTIC";
|
3535
5017
|
province: string;
|
3536
5018
|
urbanOrRural: "RURAL";
|
3537
5019
|
village?: string | null | undefined;
|
5020
|
+
}>, z.ZodObject<{
|
5021
|
+
country: z.ZodString;
|
5022
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
5023
|
+
state: z.ZodString;
|
5024
|
+
district2: z.ZodString;
|
5025
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5026
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5027
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5028
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5029
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5030
|
+
}, "strip", z.ZodTypeAny, {
|
5031
|
+
country: string;
|
5032
|
+
state: string;
|
5033
|
+
addressType: "INTERNATIONAL";
|
5034
|
+
district2: string;
|
5035
|
+
cityOrTown?: string | null | undefined;
|
5036
|
+
addressLine1?: string | null | undefined;
|
5037
|
+
addressLine2?: string | null | undefined;
|
5038
|
+
addressLine3?: string | null | undefined;
|
5039
|
+
postcodeOrZip?: string | null | undefined;
|
5040
|
+
}, {
|
5041
|
+
country: string;
|
5042
|
+
state: string;
|
5043
|
+
addressType: "INTERNATIONAL";
|
5044
|
+
district2: string;
|
5045
|
+
cityOrTown?: string | null | undefined;
|
5046
|
+
addressLine1?: string | null | undefined;
|
5047
|
+
addressLine2?: string | null | undefined;
|
5048
|
+
addressLine3?: string | null | undefined;
|
5049
|
+
postcodeOrZip?: string | null | undefined;
|
3538
5050
|
}>]>>;
|
3539
5051
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3540
5052
|
filename: z.ZodString;
|
@@ -3565,6 +5077,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3565
5077
|
originalFilename: string;
|
3566
5078
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3567
5079
|
country: z.ZodString;
|
5080
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
3568
5081
|
province: z.ZodString;
|
3569
5082
|
district: z.ZodString;
|
3570
5083
|
}, {
|
@@ -3577,6 +5090,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3577
5090
|
}>, "strip", z.ZodTypeAny, {
|
3578
5091
|
country: string;
|
3579
5092
|
district: string;
|
5093
|
+
addressType: "DOMESTIC";
|
3580
5094
|
province: string;
|
3581
5095
|
urbanOrRural: "URBAN";
|
3582
5096
|
number?: string | null | undefined;
|
@@ -3587,6 +5101,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3587
5101
|
}, {
|
3588
5102
|
country: string;
|
3589
5103
|
district: string;
|
5104
|
+
addressType: "DOMESTIC";
|
3590
5105
|
province: string;
|
3591
5106
|
urbanOrRural: "URBAN";
|
3592
5107
|
number?: string | null | undefined;
|
@@ -3596,6 +5111,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3596
5111
|
zipCode?: string | null | undefined;
|
3597
5112
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3598
5113
|
country: z.ZodString;
|
5114
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
3599
5115
|
province: z.ZodString;
|
3600
5116
|
district: z.ZodString;
|
3601
5117
|
}, {
|
@@ -3604,15 +5120,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3604
5120
|
}>, "strip", z.ZodTypeAny, {
|
3605
5121
|
country: string;
|
3606
5122
|
district: string;
|
5123
|
+
addressType: "DOMESTIC";
|
3607
5124
|
province: string;
|
3608
5125
|
urbanOrRural: "RURAL";
|
3609
5126
|
village?: string | null | undefined;
|
3610
5127
|
}, {
|
3611
5128
|
country: string;
|
3612
5129
|
district: string;
|
5130
|
+
addressType: "DOMESTIC";
|
3613
5131
|
province: string;
|
3614
5132
|
urbanOrRural: "RURAL";
|
3615
5133
|
village?: string | null | undefined;
|
5134
|
+
}>, z.ZodObject<{
|
5135
|
+
country: z.ZodString;
|
5136
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
5137
|
+
state: z.ZodString;
|
5138
|
+
district2: z.ZodString;
|
5139
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5140
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5141
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5142
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5143
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5144
|
+
}, "strip", z.ZodTypeAny, {
|
5145
|
+
country: string;
|
5146
|
+
state: string;
|
5147
|
+
addressType: "INTERNATIONAL";
|
5148
|
+
district2: string;
|
5149
|
+
cityOrTown?: string | null | undefined;
|
5150
|
+
addressLine1?: string | null | undefined;
|
5151
|
+
addressLine2?: string | null | undefined;
|
5152
|
+
addressLine3?: string | null | undefined;
|
5153
|
+
postcodeOrZip?: string | null | undefined;
|
5154
|
+
}, {
|
5155
|
+
country: string;
|
5156
|
+
state: string;
|
5157
|
+
addressType: "INTERNATIONAL";
|
5158
|
+
district2: string;
|
5159
|
+
cityOrTown?: string | null | undefined;
|
5160
|
+
addressLine1?: string | null | undefined;
|
5161
|
+
addressLine2?: string | null | undefined;
|
5162
|
+
addressLine3?: string | null | undefined;
|
5163
|
+
postcodeOrZip?: string | null | undefined;
|
3616
5164
|
}>]>>>;
|
3617
5165
|
createdAtLocation: z.ZodString;
|
3618
5166
|
}, {
|
@@ -3628,6 +5176,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3628
5176
|
} | {
|
3629
5177
|
country: string;
|
3630
5178
|
district: string;
|
5179
|
+
addressType: "DOMESTIC";
|
3631
5180
|
province: string;
|
3632
5181
|
urbanOrRural: "URBAN";
|
3633
5182
|
number?: string | null | undefined;
|
@@ -3638,9 +5187,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3638
5187
|
} | {
|
3639
5188
|
country: string;
|
3640
5189
|
district: string;
|
5190
|
+
addressType: "DOMESTIC";
|
3641
5191
|
province: string;
|
3642
5192
|
urbanOrRural: "RURAL";
|
3643
5193
|
village?: string | null | undefined;
|
5194
|
+
} | {
|
5195
|
+
country: string;
|
5196
|
+
state: string;
|
5197
|
+
addressType: "INTERNATIONAL";
|
5198
|
+
district2: string;
|
5199
|
+
cityOrTown?: string | null | undefined;
|
5200
|
+
addressLine1?: string | null | undefined;
|
5201
|
+
addressLine2?: string | null | undefined;
|
5202
|
+
addressLine3?: string | null | undefined;
|
5203
|
+
postcodeOrZip?: string | null | undefined;
|
3644
5204
|
} | {
|
3645
5205
|
type: string;
|
3646
5206
|
option: string;
|
@@ -3658,6 +5218,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3658
5218
|
} | {
|
3659
5219
|
country: string;
|
3660
5220
|
district: string;
|
5221
|
+
addressType: "DOMESTIC";
|
3661
5222
|
province: string;
|
3662
5223
|
urbanOrRural: "URBAN";
|
3663
5224
|
number?: string | null | undefined;
|
@@ -3668,9 +5229,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3668
5229
|
} | {
|
3669
5230
|
country: string;
|
3670
5231
|
district: string;
|
5232
|
+
addressType: "DOMESTIC";
|
3671
5233
|
province: string;
|
3672
5234
|
urbanOrRural: "RURAL";
|
3673
5235
|
village?: string | null | undefined;
|
5236
|
+
} | {
|
5237
|
+
country: string;
|
5238
|
+
state: string;
|
5239
|
+
addressType: "INTERNATIONAL";
|
5240
|
+
district2: string;
|
5241
|
+
cityOrTown?: string | null | undefined;
|
5242
|
+
addressLine1?: string | null | undefined;
|
5243
|
+
addressLine2?: string | null | undefined;
|
5244
|
+
addressLine3?: string | null | undefined;
|
5245
|
+
postcodeOrZip?: string | null | undefined;
|
3674
5246
|
} | {
|
3675
5247
|
type: string;
|
3676
5248
|
option: string;
|
@@ -3687,6 +5259,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3687
5259
|
} | {
|
3688
5260
|
country: string;
|
3689
5261
|
district: string;
|
5262
|
+
addressType: "DOMESTIC";
|
3690
5263
|
province: string;
|
3691
5264
|
urbanOrRural: "URBAN";
|
3692
5265
|
number?: string | null | undefined;
|
@@ -3697,9 +5270,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3697
5270
|
} | {
|
3698
5271
|
country: string;
|
3699
5272
|
district: string;
|
5273
|
+
addressType: "DOMESTIC";
|
3700
5274
|
province: string;
|
3701
5275
|
urbanOrRural: "RURAL";
|
3702
5276
|
village?: string | null | undefined;
|
5277
|
+
} | {
|
5278
|
+
country: string;
|
5279
|
+
state: string;
|
5280
|
+
addressType: "INTERNATIONAL";
|
5281
|
+
district2: string;
|
5282
|
+
cityOrTown?: string | null | undefined;
|
5283
|
+
addressLine1?: string | null | undefined;
|
5284
|
+
addressLine2?: string | null | undefined;
|
5285
|
+
addressLine3?: string | null | undefined;
|
5286
|
+
postcodeOrZip?: string | null | undefined;
|
3703
5287
|
} | {
|
3704
5288
|
type: string;
|
3705
5289
|
option: string;
|
@@ -3717,6 +5301,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3717
5301
|
} | {
|
3718
5302
|
country: string;
|
3719
5303
|
district: string;
|
5304
|
+
addressType: "DOMESTIC";
|
3720
5305
|
province: string;
|
3721
5306
|
urbanOrRural: "URBAN";
|
3722
5307
|
number?: string | null | undefined;
|
@@ -3727,9 +5312,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3727
5312
|
} | {
|
3728
5313
|
country: string;
|
3729
5314
|
district: string;
|
5315
|
+
addressType: "DOMESTIC";
|
3730
5316
|
province: string;
|
3731
5317
|
urbanOrRural: "RURAL";
|
3732
5318
|
village?: string | null | undefined;
|
5319
|
+
} | {
|
5320
|
+
country: string;
|
5321
|
+
state: string;
|
5322
|
+
addressType: "INTERNATIONAL";
|
5323
|
+
district2: string;
|
5324
|
+
cityOrTown?: string | null | undefined;
|
5325
|
+
addressLine1?: string | null | undefined;
|
5326
|
+
addressLine2?: string | null | undefined;
|
5327
|
+
addressLine3?: string | null | undefined;
|
5328
|
+
postcodeOrZip?: string | null | undefined;
|
3733
5329
|
} | {
|
3734
5330
|
type: string;
|
3735
5331
|
option: string;
|
@@ -3769,6 +5365,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3769
5365
|
originalFilename: string;
|
3770
5366
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3771
5367
|
country: z.ZodString;
|
5368
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
3772
5369
|
province: z.ZodString;
|
3773
5370
|
district: z.ZodString;
|
3774
5371
|
}, {
|
@@ -3781,6 +5378,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3781
5378
|
}>, "strip", z.ZodTypeAny, {
|
3782
5379
|
country: string;
|
3783
5380
|
district: string;
|
5381
|
+
addressType: "DOMESTIC";
|
3784
5382
|
province: string;
|
3785
5383
|
urbanOrRural: "URBAN";
|
3786
5384
|
number?: string | null | undefined;
|
@@ -3791,6 +5389,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3791
5389
|
}, {
|
3792
5390
|
country: string;
|
3793
5391
|
district: string;
|
5392
|
+
addressType: "DOMESTIC";
|
3794
5393
|
province: string;
|
3795
5394
|
urbanOrRural: "URBAN";
|
3796
5395
|
number?: string | null | undefined;
|
@@ -3800,6 +5399,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3800
5399
|
zipCode?: string | null | undefined;
|
3801
5400
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3802
5401
|
country: z.ZodString;
|
5402
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
3803
5403
|
province: z.ZodString;
|
3804
5404
|
district: z.ZodString;
|
3805
5405
|
}, {
|
@@ -3808,15 +5408,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3808
5408
|
}>, "strip", z.ZodTypeAny, {
|
3809
5409
|
country: string;
|
3810
5410
|
district: string;
|
5411
|
+
addressType: "DOMESTIC";
|
3811
5412
|
province: string;
|
3812
5413
|
urbanOrRural: "RURAL";
|
3813
5414
|
village?: string | null | undefined;
|
3814
5415
|
}, {
|
3815
5416
|
country: string;
|
3816
5417
|
district: string;
|
5418
|
+
addressType: "DOMESTIC";
|
3817
5419
|
province: string;
|
3818
5420
|
urbanOrRural: "RURAL";
|
3819
5421
|
village?: string | null | undefined;
|
5422
|
+
}>, z.ZodObject<{
|
5423
|
+
country: z.ZodString;
|
5424
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
5425
|
+
state: z.ZodString;
|
5426
|
+
district2: z.ZodString;
|
5427
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5428
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5429
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5430
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5431
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5432
|
+
}, "strip", z.ZodTypeAny, {
|
5433
|
+
country: string;
|
5434
|
+
state: string;
|
5435
|
+
addressType: "INTERNATIONAL";
|
5436
|
+
district2: string;
|
5437
|
+
cityOrTown?: string | null | undefined;
|
5438
|
+
addressLine1?: string | null | undefined;
|
5439
|
+
addressLine2?: string | null | undefined;
|
5440
|
+
addressLine3?: string | null | undefined;
|
5441
|
+
postcodeOrZip?: string | null | undefined;
|
5442
|
+
}, {
|
5443
|
+
country: string;
|
5444
|
+
state: string;
|
5445
|
+
addressType: "INTERNATIONAL";
|
5446
|
+
district2: string;
|
5447
|
+
cityOrTown?: string | null | undefined;
|
5448
|
+
addressLine1?: string | null | undefined;
|
5449
|
+
addressLine2?: string | null | undefined;
|
5450
|
+
addressLine3?: string | null | undefined;
|
5451
|
+
postcodeOrZip?: string | null | undefined;
|
3820
5452
|
}>]>>;
|
3821
5453
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3822
5454
|
filename: z.ZodString;
|
@@ -3847,6 +5479,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3847
5479
|
originalFilename: string;
|
3848
5480
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3849
5481
|
country: z.ZodString;
|
5482
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
3850
5483
|
province: z.ZodString;
|
3851
5484
|
district: z.ZodString;
|
3852
5485
|
}, {
|
@@ -3859,6 +5492,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3859
5492
|
}>, "strip", z.ZodTypeAny, {
|
3860
5493
|
country: string;
|
3861
5494
|
district: string;
|
5495
|
+
addressType: "DOMESTIC";
|
3862
5496
|
province: string;
|
3863
5497
|
urbanOrRural: "URBAN";
|
3864
5498
|
number?: string | null | undefined;
|
@@ -3869,6 +5503,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3869
5503
|
}, {
|
3870
5504
|
country: string;
|
3871
5505
|
district: string;
|
5506
|
+
addressType: "DOMESTIC";
|
3872
5507
|
province: string;
|
3873
5508
|
urbanOrRural: "URBAN";
|
3874
5509
|
number?: string | null | undefined;
|
@@ -3878,6 +5513,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3878
5513
|
zipCode?: string | null | undefined;
|
3879
5514
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3880
5515
|
country: z.ZodString;
|
5516
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
3881
5517
|
province: z.ZodString;
|
3882
5518
|
district: z.ZodString;
|
3883
5519
|
}, {
|
@@ -3886,15 +5522,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3886
5522
|
}>, "strip", z.ZodTypeAny, {
|
3887
5523
|
country: string;
|
3888
5524
|
district: string;
|
5525
|
+
addressType: "DOMESTIC";
|
3889
5526
|
province: string;
|
3890
5527
|
urbanOrRural: "RURAL";
|
3891
5528
|
village?: string | null | undefined;
|
3892
5529
|
}, {
|
3893
5530
|
country: string;
|
3894
5531
|
district: string;
|
5532
|
+
addressType: "DOMESTIC";
|
3895
5533
|
province: string;
|
3896
5534
|
urbanOrRural: "RURAL";
|
3897
5535
|
village?: string | null | undefined;
|
5536
|
+
}>, z.ZodObject<{
|
5537
|
+
country: z.ZodString;
|
5538
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
5539
|
+
state: z.ZodString;
|
5540
|
+
district2: z.ZodString;
|
5541
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5542
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5543
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5544
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5545
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5546
|
+
}, "strip", z.ZodTypeAny, {
|
5547
|
+
country: string;
|
5548
|
+
state: string;
|
5549
|
+
addressType: "INTERNATIONAL";
|
5550
|
+
district2: string;
|
5551
|
+
cityOrTown?: string | null | undefined;
|
5552
|
+
addressLine1?: string | null | undefined;
|
5553
|
+
addressLine2?: string | null | undefined;
|
5554
|
+
addressLine3?: string | null | undefined;
|
5555
|
+
postcodeOrZip?: string | null | undefined;
|
5556
|
+
}, {
|
5557
|
+
country: string;
|
5558
|
+
state: string;
|
5559
|
+
addressType: "INTERNATIONAL";
|
5560
|
+
district2: string;
|
5561
|
+
cityOrTown?: string | null | undefined;
|
5562
|
+
addressLine1?: string | null | undefined;
|
5563
|
+
addressLine2?: string | null | undefined;
|
5564
|
+
addressLine3?: string | null | undefined;
|
5565
|
+
postcodeOrZip?: string | null | undefined;
|
3898
5566
|
}>]>>>;
|
3899
5567
|
createdAtLocation: z.ZodString;
|
3900
5568
|
}, {
|
@@ -3910,6 +5578,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3910
5578
|
} | {
|
3911
5579
|
country: string;
|
3912
5580
|
district: string;
|
5581
|
+
addressType: "DOMESTIC";
|
3913
5582
|
province: string;
|
3914
5583
|
urbanOrRural: "URBAN";
|
3915
5584
|
number?: string | null | undefined;
|
@@ -3920,9 +5589,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3920
5589
|
} | {
|
3921
5590
|
country: string;
|
3922
5591
|
district: string;
|
5592
|
+
addressType: "DOMESTIC";
|
3923
5593
|
province: string;
|
3924
5594
|
urbanOrRural: "RURAL";
|
3925
5595
|
village?: string | null | undefined;
|
5596
|
+
} | {
|
5597
|
+
country: string;
|
5598
|
+
state: string;
|
5599
|
+
addressType: "INTERNATIONAL";
|
5600
|
+
district2: string;
|
5601
|
+
cityOrTown?: string | null | undefined;
|
5602
|
+
addressLine1?: string | null | undefined;
|
5603
|
+
addressLine2?: string | null | undefined;
|
5604
|
+
addressLine3?: string | null | undefined;
|
5605
|
+
postcodeOrZip?: string | null | undefined;
|
3926
5606
|
} | {
|
3927
5607
|
type: string;
|
3928
5608
|
option: string;
|
@@ -3940,6 +5620,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3940
5620
|
} | {
|
3941
5621
|
country: string;
|
3942
5622
|
district: string;
|
5623
|
+
addressType: "DOMESTIC";
|
3943
5624
|
province: string;
|
3944
5625
|
urbanOrRural: "URBAN";
|
3945
5626
|
number?: string | null | undefined;
|
@@ -3950,9 +5631,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3950
5631
|
} | {
|
3951
5632
|
country: string;
|
3952
5633
|
district: string;
|
5634
|
+
addressType: "DOMESTIC";
|
3953
5635
|
province: string;
|
3954
5636
|
urbanOrRural: "RURAL";
|
3955
5637
|
village?: string | null | undefined;
|
5638
|
+
} | {
|
5639
|
+
country: string;
|
5640
|
+
state: string;
|
5641
|
+
addressType: "INTERNATIONAL";
|
5642
|
+
district2: string;
|
5643
|
+
cityOrTown?: string | null | undefined;
|
5644
|
+
addressLine1?: string | null | undefined;
|
5645
|
+
addressLine2?: string | null | undefined;
|
5646
|
+
addressLine3?: string | null | undefined;
|
5647
|
+
postcodeOrZip?: string | null | undefined;
|
3956
5648
|
} | {
|
3957
5649
|
type: string;
|
3958
5650
|
option: string;
|
@@ -3969,6 +5661,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3969
5661
|
} | {
|
3970
5662
|
country: string;
|
3971
5663
|
district: string;
|
5664
|
+
addressType: "DOMESTIC";
|
3972
5665
|
province: string;
|
3973
5666
|
urbanOrRural: "URBAN";
|
3974
5667
|
number?: string | null | undefined;
|
@@ -3979,9 +5672,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3979
5672
|
} | {
|
3980
5673
|
country: string;
|
3981
5674
|
district: string;
|
5675
|
+
addressType: "DOMESTIC";
|
3982
5676
|
province: string;
|
3983
5677
|
urbanOrRural: "RURAL";
|
3984
5678
|
village?: string | null | undefined;
|
5679
|
+
} | {
|
5680
|
+
country: string;
|
5681
|
+
state: string;
|
5682
|
+
addressType: "INTERNATIONAL";
|
5683
|
+
district2: string;
|
5684
|
+
cityOrTown?: string | null | undefined;
|
5685
|
+
addressLine1?: string | null | undefined;
|
5686
|
+
addressLine2?: string | null | undefined;
|
5687
|
+
addressLine3?: string | null | undefined;
|
5688
|
+
postcodeOrZip?: string | null | undefined;
|
3985
5689
|
} | {
|
3986
5690
|
type: string;
|
3987
5691
|
option: string;
|
@@ -3999,6 +5703,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3999
5703
|
} | {
|
4000
5704
|
country: string;
|
4001
5705
|
district: string;
|
5706
|
+
addressType: "DOMESTIC";
|
4002
5707
|
province: string;
|
4003
5708
|
urbanOrRural: "URBAN";
|
4004
5709
|
number?: string | null | undefined;
|
@@ -4009,9 +5714,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4009
5714
|
} | {
|
4010
5715
|
country: string;
|
4011
5716
|
district: string;
|
5717
|
+
addressType: "DOMESTIC";
|
4012
5718
|
province: string;
|
4013
5719
|
urbanOrRural: "RURAL";
|
4014
5720
|
village?: string | null | undefined;
|
5721
|
+
} | {
|
5722
|
+
country: string;
|
5723
|
+
state: string;
|
5724
|
+
addressType: "INTERNATIONAL";
|
5725
|
+
district2: string;
|
5726
|
+
cityOrTown?: string | null | undefined;
|
5727
|
+
addressLine1?: string | null | undefined;
|
5728
|
+
addressLine2?: string | null | undefined;
|
5729
|
+
addressLine3?: string | null | undefined;
|
5730
|
+
postcodeOrZip?: string | null | undefined;
|
4015
5731
|
} | {
|
4016
5732
|
type: string;
|
4017
5733
|
option: string;
|
@@ -4051,6 +5767,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4051
5767
|
originalFilename: string;
|
4052
5768
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
4053
5769
|
country: z.ZodString;
|
5770
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
4054
5771
|
province: z.ZodString;
|
4055
5772
|
district: z.ZodString;
|
4056
5773
|
}, {
|
@@ -4063,6 +5780,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4063
5780
|
}>, "strip", z.ZodTypeAny, {
|
4064
5781
|
country: string;
|
4065
5782
|
district: string;
|
5783
|
+
addressType: "DOMESTIC";
|
4066
5784
|
province: string;
|
4067
5785
|
urbanOrRural: "URBAN";
|
4068
5786
|
number?: string | null | undefined;
|
@@ -4073,6 +5791,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4073
5791
|
}, {
|
4074
5792
|
country: string;
|
4075
5793
|
district: string;
|
5794
|
+
addressType: "DOMESTIC";
|
4076
5795
|
province: string;
|
4077
5796
|
urbanOrRural: "URBAN";
|
4078
5797
|
number?: string | null | undefined;
|
@@ -4082,6 +5801,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4082
5801
|
zipCode?: string | null | undefined;
|
4083
5802
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4084
5803
|
country: z.ZodString;
|
5804
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
4085
5805
|
province: z.ZodString;
|
4086
5806
|
district: z.ZodString;
|
4087
5807
|
}, {
|
@@ -4090,15 +5810,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4090
5810
|
}>, "strip", z.ZodTypeAny, {
|
4091
5811
|
country: string;
|
4092
5812
|
district: string;
|
5813
|
+
addressType: "DOMESTIC";
|
4093
5814
|
province: string;
|
4094
5815
|
urbanOrRural: "RURAL";
|
4095
5816
|
village?: string | null | undefined;
|
4096
5817
|
}, {
|
4097
5818
|
country: string;
|
4098
5819
|
district: string;
|
5820
|
+
addressType: "DOMESTIC";
|
4099
5821
|
province: string;
|
4100
5822
|
urbanOrRural: "RURAL";
|
4101
5823
|
village?: string | null | undefined;
|
5824
|
+
}>, z.ZodObject<{
|
5825
|
+
country: z.ZodString;
|
5826
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
5827
|
+
state: z.ZodString;
|
5828
|
+
district2: z.ZodString;
|
5829
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5830
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5831
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5832
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5833
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5834
|
+
}, "strip", z.ZodTypeAny, {
|
5835
|
+
country: string;
|
5836
|
+
state: string;
|
5837
|
+
addressType: "INTERNATIONAL";
|
5838
|
+
district2: string;
|
5839
|
+
cityOrTown?: string | null | undefined;
|
5840
|
+
addressLine1?: string | null | undefined;
|
5841
|
+
addressLine2?: string | null | undefined;
|
5842
|
+
addressLine3?: string | null | undefined;
|
5843
|
+
postcodeOrZip?: string | null | undefined;
|
5844
|
+
}, {
|
5845
|
+
country: string;
|
5846
|
+
state: string;
|
5847
|
+
addressType: "INTERNATIONAL";
|
5848
|
+
district2: string;
|
5849
|
+
cityOrTown?: string | null | undefined;
|
5850
|
+
addressLine1?: string | null | undefined;
|
5851
|
+
addressLine2?: string | null | undefined;
|
5852
|
+
addressLine3?: string | null | undefined;
|
5853
|
+
postcodeOrZip?: string | null | undefined;
|
4102
5854
|
}>]>>;
|
4103
5855
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4104
5856
|
filename: z.ZodString;
|
@@ -4129,6 +5881,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4129
5881
|
originalFilename: string;
|
4130
5882
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
4131
5883
|
country: z.ZodString;
|
5884
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
4132
5885
|
province: z.ZodString;
|
4133
5886
|
district: z.ZodString;
|
4134
5887
|
}, {
|
@@ -4141,6 +5894,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4141
5894
|
}>, "strip", z.ZodTypeAny, {
|
4142
5895
|
country: string;
|
4143
5896
|
district: string;
|
5897
|
+
addressType: "DOMESTIC";
|
4144
5898
|
province: string;
|
4145
5899
|
urbanOrRural: "URBAN";
|
4146
5900
|
number?: string | null | undefined;
|
@@ -4151,6 +5905,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4151
5905
|
}, {
|
4152
5906
|
country: string;
|
4153
5907
|
district: string;
|
5908
|
+
addressType: "DOMESTIC";
|
4154
5909
|
province: string;
|
4155
5910
|
urbanOrRural: "URBAN";
|
4156
5911
|
number?: string | null | undefined;
|
@@ -4160,6 +5915,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4160
5915
|
zipCode?: string | null | undefined;
|
4161
5916
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4162
5917
|
country: z.ZodString;
|
5918
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
4163
5919
|
province: z.ZodString;
|
4164
5920
|
district: z.ZodString;
|
4165
5921
|
}, {
|
@@ -4168,15 +5924,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4168
5924
|
}>, "strip", z.ZodTypeAny, {
|
4169
5925
|
country: string;
|
4170
5926
|
district: string;
|
5927
|
+
addressType: "DOMESTIC";
|
4171
5928
|
province: string;
|
4172
5929
|
urbanOrRural: "RURAL";
|
4173
5930
|
village?: string | null | undefined;
|
4174
5931
|
}, {
|
4175
5932
|
country: string;
|
4176
5933
|
district: string;
|
5934
|
+
addressType: "DOMESTIC";
|
4177
5935
|
province: string;
|
4178
5936
|
urbanOrRural: "RURAL";
|
4179
5937
|
village?: string | null | undefined;
|
5938
|
+
}>, z.ZodObject<{
|
5939
|
+
country: z.ZodString;
|
5940
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
5941
|
+
state: z.ZodString;
|
5942
|
+
district2: z.ZodString;
|
5943
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5944
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5945
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5946
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5947
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5948
|
+
}, "strip", z.ZodTypeAny, {
|
5949
|
+
country: string;
|
5950
|
+
state: string;
|
5951
|
+
addressType: "INTERNATIONAL";
|
5952
|
+
district2: string;
|
5953
|
+
cityOrTown?: string | null | undefined;
|
5954
|
+
addressLine1?: string | null | undefined;
|
5955
|
+
addressLine2?: string | null | undefined;
|
5956
|
+
addressLine3?: string | null | undefined;
|
5957
|
+
postcodeOrZip?: string | null | undefined;
|
5958
|
+
}, {
|
5959
|
+
country: string;
|
5960
|
+
state: string;
|
5961
|
+
addressType: "INTERNATIONAL";
|
5962
|
+
district2: string;
|
5963
|
+
cityOrTown?: string | null | undefined;
|
5964
|
+
addressLine1?: string | null | undefined;
|
5965
|
+
addressLine2?: string | null | undefined;
|
5966
|
+
addressLine3?: string | null | undefined;
|
5967
|
+
postcodeOrZip?: string | null | undefined;
|
4180
5968
|
}>]>>>;
|
4181
5969
|
createdAtLocation: z.ZodString;
|
4182
5970
|
}, {
|
@@ -4191,6 +5979,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4191
5979
|
} | {
|
4192
5980
|
country: string;
|
4193
5981
|
district: string;
|
5982
|
+
addressType: "DOMESTIC";
|
4194
5983
|
province: string;
|
4195
5984
|
urbanOrRural: "URBAN";
|
4196
5985
|
number?: string | null | undefined;
|
@@ -4201,9 +5990,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4201
5990
|
} | {
|
4202
5991
|
country: string;
|
4203
5992
|
district: string;
|
5993
|
+
addressType: "DOMESTIC";
|
4204
5994
|
province: string;
|
4205
5995
|
urbanOrRural: "RURAL";
|
4206
5996
|
village?: string | null | undefined;
|
5997
|
+
} | {
|
5998
|
+
country: string;
|
5999
|
+
state: string;
|
6000
|
+
addressType: "INTERNATIONAL";
|
6001
|
+
district2: string;
|
6002
|
+
cityOrTown?: string | null | undefined;
|
6003
|
+
addressLine1?: string | null | undefined;
|
6004
|
+
addressLine2?: string | null | undefined;
|
6005
|
+
addressLine3?: string | null | undefined;
|
6006
|
+
postcodeOrZip?: string | null | undefined;
|
4207
6007
|
} | {
|
4208
6008
|
type: string;
|
4209
6009
|
option: string;
|
@@ -4220,6 +6020,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4220
6020
|
} | {
|
4221
6021
|
country: string;
|
4222
6022
|
district: string;
|
6023
|
+
addressType: "DOMESTIC";
|
4223
6024
|
province: string;
|
4224
6025
|
urbanOrRural: "URBAN";
|
4225
6026
|
number?: string | null | undefined;
|
@@ -4230,9 +6031,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4230
6031
|
} | {
|
4231
6032
|
country: string;
|
4232
6033
|
district: string;
|
6034
|
+
addressType: "DOMESTIC";
|
4233
6035
|
province: string;
|
4234
6036
|
urbanOrRural: "RURAL";
|
4235
6037
|
village?: string | null | undefined;
|
6038
|
+
} | {
|
6039
|
+
country: string;
|
6040
|
+
state: string;
|
6041
|
+
addressType: "INTERNATIONAL";
|
6042
|
+
district2: string;
|
6043
|
+
cityOrTown?: string | null | undefined;
|
6044
|
+
addressLine1?: string | null | undefined;
|
6045
|
+
addressLine2?: string | null | undefined;
|
6046
|
+
addressLine3?: string | null | undefined;
|
6047
|
+
postcodeOrZip?: string | null | undefined;
|
4236
6048
|
} | {
|
4237
6049
|
type: string;
|
4238
6050
|
option: string;
|
@@ -4249,6 +6061,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4249
6061
|
} | {
|
4250
6062
|
country: string;
|
4251
6063
|
district: string;
|
6064
|
+
addressType: "DOMESTIC";
|
4252
6065
|
province: string;
|
4253
6066
|
urbanOrRural: "URBAN";
|
4254
6067
|
number?: string | null | undefined;
|
@@ -4259,9 +6072,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4259
6072
|
} | {
|
4260
6073
|
country: string;
|
4261
6074
|
district: string;
|
6075
|
+
addressType: "DOMESTIC";
|
4262
6076
|
province: string;
|
4263
6077
|
urbanOrRural: "RURAL";
|
4264
6078
|
village?: string | null | undefined;
|
6079
|
+
} | {
|
6080
|
+
country: string;
|
6081
|
+
state: string;
|
6082
|
+
addressType: "INTERNATIONAL";
|
6083
|
+
district2: string;
|
6084
|
+
cityOrTown?: string | null | undefined;
|
6085
|
+
addressLine1?: string | null | undefined;
|
6086
|
+
addressLine2?: string | null | undefined;
|
6087
|
+
addressLine3?: string | null | undefined;
|
6088
|
+
postcodeOrZip?: string | null | undefined;
|
4265
6089
|
} | {
|
4266
6090
|
type: string;
|
4267
6091
|
option: string;
|
@@ -4278,6 +6102,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4278
6102
|
} | {
|
4279
6103
|
country: string;
|
4280
6104
|
district: string;
|
6105
|
+
addressType: "DOMESTIC";
|
4281
6106
|
province: string;
|
4282
6107
|
urbanOrRural: "URBAN";
|
4283
6108
|
number?: string | null | undefined;
|
@@ -4288,9 +6113,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4288
6113
|
} | {
|
4289
6114
|
country: string;
|
4290
6115
|
district: string;
|
6116
|
+
addressType: "DOMESTIC";
|
4291
6117
|
province: string;
|
4292
6118
|
urbanOrRural: "RURAL";
|
4293
6119
|
village?: string | null | undefined;
|
6120
|
+
} | {
|
6121
|
+
country: string;
|
6122
|
+
state: string;
|
6123
|
+
addressType: "INTERNATIONAL";
|
6124
|
+
district2: string;
|
6125
|
+
cityOrTown?: string | null | undefined;
|
6126
|
+
addressLine1?: string | null | undefined;
|
6127
|
+
addressLine2?: string | null | undefined;
|
6128
|
+
addressLine3?: string | null | undefined;
|
6129
|
+
postcodeOrZip?: string | null | undefined;
|
4294
6130
|
} | {
|
4295
6131
|
type: string;
|
4296
6132
|
option: string;
|
@@ -4330,6 +6166,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4330
6166
|
originalFilename: string;
|
4331
6167
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
4332
6168
|
country: z.ZodString;
|
6169
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
4333
6170
|
province: z.ZodString;
|
4334
6171
|
district: z.ZodString;
|
4335
6172
|
}, {
|
@@ -4342,6 +6179,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4342
6179
|
}>, "strip", z.ZodTypeAny, {
|
4343
6180
|
country: string;
|
4344
6181
|
district: string;
|
6182
|
+
addressType: "DOMESTIC";
|
4345
6183
|
province: string;
|
4346
6184
|
urbanOrRural: "URBAN";
|
4347
6185
|
number?: string | null | undefined;
|
@@ -4352,6 +6190,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4352
6190
|
}, {
|
4353
6191
|
country: string;
|
4354
6192
|
district: string;
|
6193
|
+
addressType: "DOMESTIC";
|
4355
6194
|
province: string;
|
4356
6195
|
urbanOrRural: "URBAN";
|
4357
6196
|
number?: string | null | undefined;
|
@@ -4361,6 +6200,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4361
6200
|
zipCode?: string | null | undefined;
|
4362
6201
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4363
6202
|
country: z.ZodString;
|
6203
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
4364
6204
|
province: z.ZodString;
|
4365
6205
|
district: z.ZodString;
|
4366
6206
|
}, {
|
@@ -4369,15 +6209,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4369
6209
|
}>, "strip", z.ZodTypeAny, {
|
4370
6210
|
country: string;
|
4371
6211
|
district: string;
|
6212
|
+
addressType: "DOMESTIC";
|
4372
6213
|
province: string;
|
4373
6214
|
urbanOrRural: "RURAL";
|
4374
6215
|
village?: string | null | undefined;
|
4375
6216
|
}, {
|
4376
6217
|
country: string;
|
4377
6218
|
district: string;
|
6219
|
+
addressType: "DOMESTIC";
|
4378
6220
|
province: string;
|
4379
6221
|
urbanOrRural: "RURAL";
|
4380
6222
|
village?: string | null | undefined;
|
6223
|
+
}>, z.ZodObject<{
|
6224
|
+
country: z.ZodString;
|
6225
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
6226
|
+
state: z.ZodString;
|
6227
|
+
district2: z.ZodString;
|
6228
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6229
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6230
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6231
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6232
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6233
|
+
}, "strip", z.ZodTypeAny, {
|
6234
|
+
country: string;
|
6235
|
+
state: string;
|
6236
|
+
addressType: "INTERNATIONAL";
|
6237
|
+
district2: string;
|
6238
|
+
cityOrTown?: string | null | undefined;
|
6239
|
+
addressLine1?: string | null | undefined;
|
6240
|
+
addressLine2?: string | null | undefined;
|
6241
|
+
addressLine3?: string | null | undefined;
|
6242
|
+
postcodeOrZip?: string | null | undefined;
|
6243
|
+
}, {
|
6244
|
+
country: string;
|
6245
|
+
state: string;
|
6246
|
+
addressType: "INTERNATIONAL";
|
6247
|
+
district2: string;
|
6248
|
+
cityOrTown?: string | null | undefined;
|
6249
|
+
addressLine1?: string | null | undefined;
|
6250
|
+
addressLine2?: string | null | undefined;
|
6251
|
+
addressLine3?: string | null | undefined;
|
6252
|
+
postcodeOrZip?: string | null | undefined;
|
4381
6253
|
}>]>>;
|
4382
6254
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4383
6255
|
filename: z.ZodString;
|
@@ -4408,6 +6280,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4408
6280
|
originalFilename: string;
|
4409
6281
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
4410
6282
|
country: z.ZodString;
|
6283
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
4411
6284
|
province: z.ZodString;
|
4412
6285
|
district: z.ZodString;
|
4413
6286
|
}, {
|
@@ -4420,6 +6293,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4420
6293
|
}>, "strip", z.ZodTypeAny, {
|
4421
6294
|
country: string;
|
4422
6295
|
district: string;
|
6296
|
+
addressType: "DOMESTIC";
|
4423
6297
|
province: string;
|
4424
6298
|
urbanOrRural: "URBAN";
|
4425
6299
|
number?: string | null | undefined;
|
@@ -4430,6 +6304,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4430
6304
|
}, {
|
4431
6305
|
country: string;
|
4432
6306
|
district: string;
|
6307
|
+
addressType: "DOMESTIC";
|
4433
6308
|
province: string;
|
4434
6309
|
urbanOrRural: "URBAN";
|
4435
6310
|
number?: string | null | undefined;
|
@@ -4439,6 +6314,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4439
6314
|
zipCode?: string | null | undefined;
|
4440
6315
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4441
6316
|
country: z.ZodString;
|
6317
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
4442
6318
|
province: z.ZodString;
|
4443
6319
|
district: z.ZodString;
|
4444
6320
|
}, {
|
@@ -4447,15 +6323,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4447
6323
|
}>, "strip", z.ZodTypeAny, {
|
4448
6324
|
country: string;
|
4449
6325
|
district: string;
|
6326
|
+
addressType: "DOMESTIC";
|
4450
6327
|
province: string;
|
4451
6328
|
urbanOrRural: "RURAL";
|
4452
6329
|
village?: string | null | undefined;
|
4453
6330
|
}, {
|
4454
6331
|
country: string;
|
4455
6332
|
district: string;
|
6333
|
+
addressType: "DOMESTIC";
|
4456
6334
|
province: string;
|
4457
6335
|
urbanOrRural: "RURAL";
|
4458
6336
|
village?: string | null | undefined;
|
6337
|
+
}>, z.ZodObject<{
|
6338
|
+
country: z.ZodString;
|
6339
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
6340
|
+
state: z.ZodString;
|
6341
|
+
district2: z.ZodString;
|
6342
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6343
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6344
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6345
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6346
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6347
|
+
}, "strip", z.ZodTypeAny, {
|
6348
|
+
country: string;
|
6349
|
+
state: string;
|
6350
|
+
addressType: "INTERNATIONAL";
|
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;
|
6357
|
+
}, {
|
6358
|
+
country: string;
|
6359
|
+
state: string;
|
6360
|
+
addressType: "INTERNATIONAL";
|
6361
|
+
district2: string;
|
6362
|
+
cityOrTown?: string | null | undefined;
|
6363
|
+
addressLine1?: string | null | undefined;
|
6364
|
+
addressLine2?: string | null | undefined;
|
6365
|
+
addressLine3?: string | null | undefined;
|
6366
|
+
postcodeOrZip?: string | null | undefined;
|
4459
6367
|
}>]>>>;
|
4460
6368
|
createdAtLocation: z.ZodString;
|
4461
6369
|
}, {
|
@@ -4470,6 +6378,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4470
6378
|
} | {
|
4471
6379
|
country: string;
|
4472
6380
|
district: string;
|
6381
|
+
addressType: "DOMESTIC";
|
4473
6382
|
province: string;
|
4474
6383
|
urbanOrRural: "URBAN";
|
4475
6384
|
number?: string | null | undefined;
|
@@ -4480,9 +6389,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4480
6389
|
} | {
|
4481
6390
|
country: string;
|
4482
6391
|
district: string;
|
6392
|
+
addressType: "DOMESTIC";
|
4483
6393
|
province: string;
|
4484
6394
|
urbanOrRural: "RURAL";
|
4485
6395
|
village?: string | null | undefined;
|
6396
|
+
} | {
|
6397
|
+
country: string;
|
6398
|
+
state: string;
|
6399
|
+
addressType: "INTERNATIONAL";
|
6400
|
+
district2: string;
|
6401
|
+
cityOrTown?: string | null | undefined;
|
6402
|
+
addressLine1?: string | null | undefined;
|
6403
|
+
addressLine2?: string | null | undefined;
|
6404
|
+
addressLine3?: string | null | undefined;
|
6405
|
+
postcodeOrZip?: string | null | undefined;
|
4486
6406
|
} | {
|
4487
6407
|
type: string;
|
4488
6408
|
option: string;
|
@@ -4499,6 +6419,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4499
6419
|
} | {
|
4500
6420
|
country: string;
|
4501
6421
|
district: string;
|
6422
|
+
addressType: "DOMESTIC";
|
4502
6423
|
province: string;
|
4503
6424
|
urbanOrRural: "URBAN";
|
4504
6425
|
number?: string | null | undefined;
|
@@ -4509,9 +6430,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4509
6430
|
} | {
|
4510
6431
|
country: string;
|
4511
6432
|
district: string;
|
6433
|
+
addressType: "DOMESTIC";
|
4512
6434
|
province: string;
|
4513
6435
|
urbanOrRural: "RURAL";
|
4514
6436
|
village?: string | null | undefined;
|
6437
|
+
} | {
|
6438
|
+
country: string;
|
6439
|
+
state: string;
|
6440
|
+
addressType: "INTERNATIONAL";
|
6441
|
+
district2: string;
|
6442
|
+
cityOrTown?: string | null | undefined;
|
6443
|
+
addressLine1?: string | null | undefined;
|
6444
|
+
addressLine2?: string | null | undefined;
|
6445
|
+
addressLine3?: string | null | undefined;
|
6446
|
+
postcodeOrZip?: string | null | undefined;
|
4515
6447
|
} | {
|
4516
6448
|
type: string;
|
4517
6449
|
option: string;
|
@@ -4528,6 +6460,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4528
6460
|
} | {
|
4529
6461
|
country: string;
|
4530
6462
|
district: string;
|
6463
|
+
addressType: "DOMESTIC";
|
4531
6464
|
province: string;
|
4532
6465
|
urbanOrRural: "URBAN";
|
4533
6466
|
number?: string | null | undefined;
|
@@ -4538,9 +6471,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4538
6471
|
} | {
|
4539
6472
|
country: string;
|
4540
6473
|
district: string;
|
6474
|
+
addressType: "DOMESTIC";
|
4541
6475
|
province: string;
|
4542
6476
|
urbanOrRural: "RURAL";
|
4543
6477
|
village?: string | null | undefined;
|
6478
|
+
} | {
|
6479
|
+
country: string;
|
6480
|
+
state: string;
|
6481
|
+
addressType: "INTERNATIONAL";
|
6482
|
+
district2: string;
|
6483
|
+
cityOrTown?: string | null | undefined;
|
6484
|
+
addressLine1?: string | null | undefined;
|
6485
|
+
addressLine2?: string | null | undefined;
|
6486
|
+
addressLine3?: string | null | undefined;
|
6487
|
+
postcodeOrZip?: string | null | undefined;
|
4544
6488
|
} | {
|
4545
6489
|
type: string;
|
4546
6490
|
option: string;
|
@@ -4557,6 +6501,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4557
6501
|
} | {
|
4558
6502
|
country: string;
|
4559
6503
|
district: string;
|
6504
|
+
addressType: "DOMESTIC";
|
4560
6505
|
province: string;
|
4561
6506
|
urbanOrRural: "URBAN";
|
4562
6507
|
number?: string | null | undefined;
|
@@ -4567,9 +6512,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4567
6512
|
} | {
|
4568
6513
|
country: string;
|
4569
6514
|
district: string;
|
6515
|
+
addressType: "DOMESTIC";
|
4570
6516
|
province: string;
|
4571
6517
|
urbanOrRural: "RURAL";
|
4572
6518
|
village?: string | null | undefined;
|
6519
|
+
} | {
|
6520
|
+
country: string;
|
6521
|
+
state: string;
|
6522
|
+
addressType: "INTERNATIONAL";
|
6523
|
+
district2: string;
|
6524
|
+
cityOrTown?: string | null | undefined;
|
6525
|
+
addressLine1?: string | null | undefined;
|
6526
|
+
addressLine2?: string | null | undefined;
|
6527
|
+
addressLine3?: string | null | undefined;
|
6528
|
+
postcodeOrZip?: string | null | undefined;
|
4573
6529
|
} | {
|
4574
6530
|
type: string;
|
4575
6531
|
option: string;
|
@@ -4609,6 +6565,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4609
6565
|
originalFilename: string;
|
4610
6566
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
4611
6567
|
country: z.ZodString;
|
6568
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
4612
6569
|
province: z.ZodString;
|
4613
6570
|
district: z.ZodString;
|
4614
6571
|
}, {
|
@@ -4621,6 +6578,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4621
6578
|
}>, "strip", z.ZodTypeAny, {
|
4622
6579
|
country: string;
|
4623
6580
|
district: string;
|
6581
|
+
addressType: "DOMESTIC";
|
4624
6582
|
province: string;
|
4625
6583
|
urbanOrRural: "URBAN";
|
4626
6584
|
number?: string | null | undefined;
|
@@ -4631,6 +6589,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4631
6589
|
}, {
|
4632
6590
|
country: string;
|
4633
6591
|
district: string;
|
6592
|
+
addressType: "DOMESTIC";
|
4634
6593
|
province: string;
|
4635
6594
|
urbanOrRural: "URBAN";
|
4636
6595
|
number?: string | null | undefined;
|
@@ -4640,6 +6599,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4640
6599
|
zipCode?: string | null | undefined;
|
4641
6600
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4642
6601
|
country: z.ZodString;
|
6602
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
4643
6603
|
province: z.ZodString;
|
4644
6604
|
district: z.ZodString;
|
4645
6605
|
}, {
|
@@ -4648,15 +6608,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4648
6608
|
}>, "strip", z.ZodTypeAny, {
|
4649
6609
|
country: string;
|
4650
6610
|
district: string;
|
6611
|
+
addressType: "DOMESTIC";
|
4651
6612
|
province: string;
|
4652
6613
|
urbanOrRural: "RURAL";
|
4653
6614
|
village?: string | null | undefined;
|
4654
6615
|
}, {
|
4655
6616
|
country: string;
|
4656
6617
|
district: string;
|
6618
|
+
addressType: "DOMESTIC";
|
4657
6619
|
province: string;
|
4658
6620
|
urbanOrRural: "RURAL";
|
4659
6621
|
village?: string | null | undefined;
|
6622
|
+
}>, z.ZodObject<{
|
6623
|
+
country: z.ZodString;
|
6624
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
6625
|
+
state: z.ZodString;
|
6626
|
+
district2: z.ZodString;
|
6627
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6628
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6629
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6630
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6631
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6632
|
+
}, "strip", z.ZodTypeAny, {
|
6633
|
+
country: string;
|
6634
|
+
state: string;
|
6635
|
+
addressType: "INTERNATIONAL";
|
6636
|
+
district2: string;
|
6637
|
+
cityOrTown?: string | null | undefined;
|
6638
|
+
addressLine1?: string | null | undefined;
|
6639
|
+
addressLine2?: string | null | undefined;
|
6640
|
+
addressLine3?: string | null | undefined;
|
6641
|
+
postcodeOrZip?: string | null | undefined;
|
6642
|
+
}, {
|
6643
|
+
country: string;
|
6644
|
+
state: string;
|
6645
|
+
addressType: "INTERNATIONAL";
|
6646
|
+
district2: string;
|
6647
|
+
cityOrTown?: string | null | undefined;
|
6648
|
+
addressLine1?: string | null | undefined;
|
6649
|
+
addressLine2?: string | null | undefined;
|
6650
|
+
addressLine3?: string | null | undefined;
|
6651
|
+
postcodeOrZip?: string | null | undefined;
|
4660
6652
|
}>]>>;
|
4661
6653
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4662
6654
|
filename: z.ZodString;
|
@@ -4687,6 +6679,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4687
6679
|
originalFilename: string;
|
4688
6680
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
4689
6681
|
country: z.ZodString;
|
6682
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
4690
6683
|
province: z.ZodString;
|
4691
6684
|
district: z.ZodString;
|
4692
6685
|
}, {
|
@@ -4699,6 +6692,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4699
6692
|
}>, "strip", z.ZodTypeAny, {
|
4700
6693
|
country: string;
|
4701
6694
|
district: string;
|
6695
|
+
addressType: "DOMESTIC";
|
4702
6696
|
province: string;
|
4703
6697
|
urbanOrRural: "URBAN";
|
4704
6698
|
number?: string | null | undefined;
|
@@ -4709,6 +6703,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4709
6703
|
}, {
|
4710
6704
|
country: string;
|
4711
6705
|
district: string;
|
6706
|
+
addressType: "DOMESTIC";
|
4712
6707
|
province: string;
|
4713
6708
|
urbanOrRural: "URBAN";
|
4714
6709
|
number?: string | null | undefined;
|
@@ -4718,6 +6713,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4718
6713
|
zipCode?: string | null | undefined;
|
4719
6714
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4720
6715
|
country: z.ZodString;
|
6716
|
+
addressType: z.ZodLiteral<"DOMESTIC">;
|
4721
6717
|
province: z.ZodString;
|
4722
6718
|
district: z.ZodString;
|
4723
6719
|
}, {
|
@@ -4726,15 +6722,47 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4726
6722
|
}>, "strip", z.ZodTypeAny, {
|
4727
6723
|
country: string;
|
4728
6724
|
district: string;
|
6725
|
+
addressType: "DOMESTIC";
|
4729
6726
|
province: string;
|
4730
6727
|
urbanOrRural: "RURAL";
|
4731
6728
|
village?: string | null | undefined;
|
4732
6729
|
}, {
|
4733
6730
|
country: string;
|
4734
6731
|
district: string;
|
6732
|
+
addressType: "DOMESTIC";
|
4735
6733
|
province: string;
|
4736
6734
|
urbanOrRural: "RURAL";
|
4737
6735
|
village?: string | null | undefined;
|
6736
|
+
}>, z.ZodObject<{
|
6737
|
+
country: z.ZodString;
|
6738
|
+
addressType: z.ZodLiteral<"INTERNATIONAL">;
|
6739
|
+
state: z.ZodString;
|
6740
|
+
district2: z.ZodString;
|
6741
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6742
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6743
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6744
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6745
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6746
|
+
}, "strip", z.ZodTypeAny, {
|
6747
|
+
country: string;
|
6748
|
+
state: string;
|
6749
|
+
addressType: "INTERNATIONAL";
|
6750
|
+
district2: string;
|
6751
|
+
cityOrTown?: string | null | undefined;
|
6752
|
+
addressLine1?: string | null | undefined;
|
6753
|
+
addressLine2?: string | null | undefined;
|
6754
|
+
addressLine3?: string | null | undefined;
|
6755
|
+
postcodeOrZip?: string | null | undefined;
|
6756
|
+
}, {
|
6757
|
+
country: string;
|
6758
|
+
state: string;
|
6759
|
+
addressType: "INTERNATIONAL";
|
6760
|
+
district2: string;
|
6761
|
+
cityOrTown?: string | null | undefined;
|
6762
|
+
addressLine1?: string | null | undefined;
|
6763
|
+
addressLine2?: string | null | undefined;
|
6764
|
+
addressLine3?: string | null | undefined;
|
6765
|
+
postcodeOrZip?: string | null | undefined;
|
4738
6766
|
}>]>>>;
|
4739
6767
|
createdAtLocation: z.ZodString;
|
4740
6768
|
}, {
|
@@ -4749,6 +6777,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4749
6777
|
} | {
|
4750
6778
|
country: string;
|
4751
6779
|
district: string;
|
6780
|
+
addressType: "DOMESTIC";
|
4752
6781
|
province: string;
|
4753
6782
|
urbanOrRural: "URBAN";
|
4754
6783
|
number?: string | null | undefined;
|
@@ -4759,9 +6788,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4759
6788
|
} | {
|
4760
6789
|
country: string;
|
4761
6790
|
district: string;
|
6791
|
+
addressType: "DOMESTIC";
|
4762
6792
|
province: string;
|
4763
6793
|
urbanOrRural: "RURAL";
|
4764
6794
|
village?: string | null | undefined;
|
6795
|
+
} | {
|
6796
|
+
country: string;
|
6797
|
+
state: string;
|
6798
|
+
addressType: "INTERNATIONAL";
|
6799
|
+
district2: string;
|
6800
|
+
cityOrTown?: string | null | undefined;
|
6801
|
+
addressLine1?: string | null | undefined;
|
6802
|
+
addressLine2?: string | null | undefined;
|
6803
|
+
addressLine3?: string | null | undefined;
|
6804
|
+
postcodeOrZip?: string | null | undefined;
|
4765
6805
|
} | {
|
4766
6806
|
type: string;
|
4767
6807
|
option: string;
|
@@ -4778,6 +6818,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4778
6818
|
} | {
|
4779
6819
|
country: string;
|
4780
6820
|
district: string;
|
6821
|
+
addressType: "DOMESTIC";
|
4781
6822
|
province: string;
|
4782
6823
|
urbanOrRural: "URBAN";
|
4783
6824
|
number?: string | null | undefined;
|
@@ -4788,9 +6829,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4788
6829
|
} | {
|
4789
6830
|
country: string;
|
4790
6831
|
district: string;
|
6832
|
+
addressType: "DOMESTIC";
|
4791
6833
|
province: string;
|
4792
6834
|
urbanOrRural: "RURAL";
|
4793
6835
|
village?: string | null | undefined;
|
6836
|
+
} | {
|
6837
|
+
country: string;
|
6838
|
+
state: string;
|
6839
|
+
addressType: "INTERNATIONAL";
|
6840
|
+
district2: string;
|
6841
|
+
cityOrTown?: string | null | undefined;
|
6842
|
+
addressLine1?: string | null | undefined;
|
6843
|
+
addressLine2?: string | null | undefined;
|
6844
|
+
addressLine3?: string | null | undefined;
|
6845
|
+
postcodeOrZip?: string | null | undefined;
|
4794
6846
|
} | {
|
4795
6847
|
type: string;
|
4796
6848
|
option: string;
|
@@ -4807,6 +6859,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4807
6859
|
} | {
|
4808
6860
|
country: string;
|
4809
6861
|
district: string;
|
6862
|
+
addressType: "DOMESTIC";
|
4810
6863
|
province: string;
|
4811
6864
|
urbanOrRural: "URBAN";
|
4812
6865
|
number?: string | null | undefined;
|
@@ -4817,9 +6870,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4817
6870
|
} | {
|
4818
6871
|
country: string;
|
4819
6872
|
district: string;
|
6873
|
+
addressType: "DOMESTIC";
|
4820
6874
|
province: string;
|
4821
6875
|
urbanOrRural: "RURAL";
|
4822
6876
|
village?: string | null | undefined;
|
6877
|
+
} | {
|
6878
|
+
country: string;
|
6879
|
+
state: string;
|
6880
|
+
addressType: "INTERNATIONAL";
|
6881
|
+
district2: string;
|
6882
|
+
cityOrTown?: string | null | undefined;
|
6883
|
+
addressLine1?: string | null | undefined;
|
6884
|
+
addressLine2?: string | null | undefined;
|
6885
|
+
addressLine3?: string | null | undefined;
|
6886
|
+
postcodeOrZip?: string | null | undefined;
|
4823
6887
|
} | {
|
4824
6888
|
type: string;
|
4825
6889
|
option: string;
|
@@ -4836,6 +6900,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4836
6900
|
} | {
|
4837
6901
|
country: string;
|
4838
6902
|
district: string;
|
6903
|
+
addressType: "DOMESTIC";
|
4839
6904
|
province: string;
|
4840
6905
|
urbanOrRural: "URBAN";
|
4841
6906
|
number?: string | null | undefined;
|
@@ -4846,9 +6911,20 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4846
6911
|
} | {
|
4847
6912
|
country: string;
|
4848
6913
|
district: string;
|
6914
|
+
addressType: "DOMESTIC";
|
4849
6915
|
province: string;
|
4850
6916
|
urbanOrRural: "RURAL";
|
4851
6917
|
village?: string | null | undefined;
|
6918
|
+
} | {
|
6919
|
+
country: string;
|
6920
|
+
state: string;
|
6921
|
+
addressType: "INTERNATIONAL";
|
6922
|
+
district2: string;
|
6923
|
+
cityOrTown?: string | null | undefined;
|
6924
|
+
addressLine1?: string | null | undefined;
|
6925
|
+
addressLine2?: string | null | undefined;
|
6926
|
+
addressLine3?: string | null | undefined;
|
6927
|
+
postcodeOrZip?: string | null | undefined;
|
4852
6928
|
} | {
|
4853
6929
|
type: string;
|
4854
6930
|
option: string;
|