@opencrvs/toolkit 1.8.0-rc.fbb7263 → 1.8.0-rc.fd16d13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commons/api/router.d.ts +3769 -22
- package/dist/commons/conditionals/validate-address.test.d.ts +2 -0
- package/dist/commons/conditionals/validate.d.ts +27 -0
- package/dist/commons/conditionals/validate.test.d.ts +2 -0
- package/dist/commons/events/ActionConfig.d.ts +6 -24
- package/dist/commons/events/ActionDocument.d.ts +1630 -73
- package/dist/commons/events/ActionInput.d.ts +2456 -116
- package/dist/commons/events/ActionType.d.ts +1 -1
- package/dist/commons/events/CompositeFieldValue.d.ts +120 -10
- package/dist/commons/events/Draft.d.ts +224 -8
- package/dist/commons/events/EventConfig.d.ts +4 -28
- package/dist/commons/events/EventDocument.d.ts +1955 -65
- package/dist/commons/events/FieldConfig.d.ts +49 -3
- package/dist/commons/events/FieldType.d.ts +4 -0
- package/dist/commons/events/FieldTypeMapping.d.ts +108 -6
- package/dist/commons/events/FieldValue.d.ts +58 -4
- package/dist/commons/events/TemplateConfig.d.ts +38 -0
- package/dist/commons/events/defineConfig.d.ts +1 -7
- package/dist/commons/events/index.d.ts +1 -0
- package/dist/commons/events/test.utils.d.ts +111 -3
- package/dist/commons/events/utils.d.ts +112 -0
- package/dist/events/index.js +284 -93
- package/package.json +1 -1
@@ -36,7 +36,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
36
36
|
filename: string;
|
37
37
|
originalFilename: string;
|
38
38
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
39
|
-
country: z.
|
39
|
+
country: z.ZodLiteral<string>;
|
40
40
|
province: z.ZodString;
|
41
41
|
district: z.ZodString;
|
42
42
|
}, {
|
@@ -67,7 +67,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
67
67
|
street?: string | null | undefined;
|
68
68
|
zipCode?: string | null | undefined;
|
69
69
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
70
|
-
country: z.
|
70
|
+
country: z.ZodLiteral<string>;
|
71
71
|
province: z.ZodString;
|
72
72
|
district: z.ZodString;
|
73
73
|
}, {
|
@@ -85,6 +85,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
85
85
|
province: string;
|
86
86
|
urbanOrRural: "RURAL";
|
87
87
|
village?: string | null | undefined;
|
88
|
+
}>, z.ZodObject<{
|
89
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
90
|
+
state: z.ZodString;
|
91
|
+
district2: z.ZodString;
|
92
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
93
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
94
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
95
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
96
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
97
|
+
}, "strip", z.ZodTypeAny, {
|
98
|
+
country: string;
|
99
|
+
state: string;
|
100
|
+
district2: string;
|
101
|
+
cityOrTown?: string | null | undefined;
|
102
|
+
addressLine1?: string | null | undefined;
|
103
|
+
addressLine2?: string | null | undefined;
|
104
|
+
addressLine3?: string | null | undefined;
|
105
|
+
postcodeOrZip?: string | null | undefined;
|
106
|
+
}, {
|
107
|
+
country: string;
|
108
|
+
state: string;
|
109
|
+
district2: string;
|
110
|
+
cityOrTown?: string | null | undefined;
|
111
|
+
addressLine1?: string | null | undefined;
|
112
|
+
addressLine2?: string | null | undefined;
|
113
|
+
addressLine3?: string | null | undefined;
|
114
|
+
postcodeOrZip?: string | null | undefined;
|
88
115
|
}>]>>;
|
89
116
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
90
117
|
filename: z.ZodString;
|
@@ -114,7 +141,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
114
141
|
filename: string;
|
115
142
|
originalFilename: string;
|
116
143
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
117
|
-
country: z.
|
144
|
+
country: z.ZodLiteral<string>;
|
118
145
|
province: z.ZodString;
|
119
146
|
district: z.ZodString;
|
120
147
|
}, {
|
@@ -145,7 +172,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
145
172
|
street?: string | null | undefined;
|
146
173
|
zipCode?: string | null | undefined;
|
147
174
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
148
|
-
country: z.
|
175
|
+
country: z.ZodLiteral<string>;
|
149
176
|
province: z.ZodString;
|
150
177
|
district: z.ZodString;
|
151
178
|
}, {
|
@@ -163,6 +190,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
163
190
|
province: string;
|
164
191
|
urbanOrRural: "RURAL";
|
165
192
|
village?: string | null | undefined;
|
193
|
+
}>, z.ZodObject<{
|
194
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
195
|
+
state: z.ZodString;
|
196
|
+
district2: z.ZodString;
|
197
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
198
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
199
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
200
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
201
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
202
|
+
}, "strip", z.ZodTypeAny, {
|
203
|
+
country: string;
|
204
|
+
state: string;
|
205
|
+
district2: string;
|
206
|
+
cityOrTown?: string | null | undefined;
|
207
|
+
addressLine1?: string | null | undefined;
|
208
|
+
addressLine2?: string | null | undefined;
|
209
|
+
addressLine3?: string | null | undefined;
|
210
|
+
postcodeOrZip?: string | null | undefined;
|
211
|
+
}, {
|
212
|
+
country: string;
|
213
|
+
state: string;
|
214
|
+
district2: string;
|
215
|
+
cityOrTown?: string | null | undefined;
|
216
|
+
addressLine1?: string | null | undefined;
|
217
|
+
addressLine2?: string | null | undefined;
|
218
|
+
addressLine3?: string | null | undefined;
|
219
|
+
postcodeOrZip?: string | null | undefined;
|
166
220
|
}>]>>>;
|
167
221
|
createdAtLocation: z.ZodString;
|
168
222
|
}, {
|
@@ -190,6 +244,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
190
244
|
province: string;
|
191
245
|
urbanOrRural: "RURAL";
|
192
246
|
village?: string | null | undefined;
|
247
|
+
} | {
|
248
|
+
country: string;
|
249
|
+
state: string;
|
250
|
+
district2: string;
|
251
|
+
cityOrTown?: string | null | undefined;
|
252
|
+
addressLine1?: string | null | undefined;
|
253
|
+
addressLine2?: string | null | undefined;
|
254
|
+
addressLine3?: string | null | undefined;
|
255
|
+
postcodeOrZip?: string | null | undefined;
|
193
256
|
} | {
|
194
257
|
type: string;
|
195
258
|
option: string;
|
@@ -219,6 +282,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
219
282
|
province: string;
|
220
283
|
urbanOrRural: "RURAL";
|
221
284
|
village?: string | null | undefined;
|
285
|
+
} | {
|
286
|
+
country: string;
|
287
|
+
state: string;
|
288
|
+
district2: string;
|
289
|
+
cityOrTown?: string | null | undefined;
|
290
|
+
addressLine1?: string | null | undefined;
|
291
|
+
addressLine2?: string | null | undefined;
|
292
|
+
addressLine3?: string | null | undefined;
|
293
|
+
postcodeOrZip?: string | null | undefined;
|
222
294
|
} | {
|
223
295
|
type: string;
|
224
296
|
option: string;
|
@@ -248,6 +320,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
248
320
|
province: string;
|
249
321
|
urbanOrRural: "RURAL";
|
250
322
|
village?: string | null | undefined;
|
323
|
+
} | {
|
324
|
+
country: string;
|
325
|
+
state: string;
|
326
|
+
district2: string;
|
327
|
+
cityOrTown?: string | null | undefined;
|
328
|
+
addressLine1?: string | null | undefined;
|
329
|
+
addressLine2?: string | null | undefined;
|
330
|
+
addressLine3?: string | null | undefined;
|
331
|
+
postcodeOrZip?: string | null | undefined;
|
251
332
|
} | {
|
252
333
|
type: string;
|
253
334
|
option: string;
|
@@ -277,6 +358,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
277
358
|
province: string;
|
278
359
|
urbanOrRural: "RURAL";
|
279
360
|
village?: string | null | undefined;
|
361
|
+
} | {
|
362
|
+
country: string;
|
363
|
+
state: string;
|
364
|
+
district2: string;
|
365
|
+
cityOrTown?: string | null | undefined;
|
366
|
+
addressLine1?: string | null | undefined;
|
367
|
+
addressLine2?: string | null | undefined;
|
368
|
+
addressLine3?: string | null | undefined;
|
369
|
+
postcodeOrZip?: string | null | undefined;
|
280
370
|
} | {
|
281
371
|
type: string;
|
282
372
|
option: string;
|
@@ -315,7 +405,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
315
405
|
filename: string;
|
316
406
|
originalFilename: string;
|
317
407
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
318
|
-
country: z.
|
408
|
+
country: z.ZodLiteral<string>;
|
319
409
|
province: z.ZodString;
|
320
410
|
district: z.ZodString;
|
321
411
|
}, {
|
@@ -346,7 +436,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
346
436
|
street?: string | null | undefined;
|
347
437
|
zipCode?: string | null | undefined;
|
348
438
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
349
|
-
country: z.
|
439
|
+
country: z.ZodLiteral<string>;
|
350
440
|
province: z.ZodString;
|
351
441
|
district: z.ZodString;
|
352
442
|
}, {
|
@@ -364,6 +454,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
364
454
|
province: string;
|
365
455
|
urbanOrRural: "RURAL";
|
366
456
|
village?: string | null | undefined;
|
457
|
+
}>, z.ZodObject<{
|
458
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
459
|
+
state: z.ZodString;
|
460
|
+
district2: z.ZodString;
|
461
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
462
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
463
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
464
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
465
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
466
|
+
}, "strip", z.ZodTypeAny, {
|
467
|
+
country: string;
|
468
|
+
state: string;
|
469
|
+
district2: string;
|
470
|
+
cityOrTown?: string | null | undefined;
|
471
|
+
addressLine1?: string | null | undefined;
|
472
|
+
addressLine2?: string | null | undefined;
|
473
|
+
addressLine3?: string | null | undefined;
|
474
|
+
postcodeOrZip?: string | null | undefined;
|
475
|
+
}, {
|
476
|
+
country: string;
|
477
|
+
state: string;
|
478
|
+
district2: string;
|
479
|
+
cityOrTown?: string | null | undefined;
|
480
|
+
addressLine1?: string | null | undefined;
|
481
|
+
addressLine2?: string | null | undefined;
|
482
|
+
addressLine3?: string | null | undefined;
|
483
|
+
postcodeOrZip?: string | null | undefined;
|
367
484
|
}>]>>;
|
368
485
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
369
486
|
filename: z.ZodString;
|
@@ -393,7 +510,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
393
510
|
filename: string;
|
394
511
|
originalFilename: string;
|
395
512
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
396
|
-
country: z.
|
513
|
+
country: z.ZodLiteral<string>;
|
397
514
|
province: z.ZodString;
|
398
515
|
district: z.ZodString;
|
399
516
|
}, {
|
@@ -424,7 +541,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
424
541
|
street?: string | null | undefined;
|
425
542
|
zipCode?: string | null | undefined;
|
426
543
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
427
|
-
country: z.
|
544
|
+
country: z.ZodLiteral<string>;
|
428
545
|
province: z.ZodString;
|
429
546
|
district: z.ZodString;
|
430
547
|
}, {
|
@@ -442,6 +559,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
442
559
|
province: string;
|
443
560
|
urbanOrRural: "RURAL";
|
444
561
|
village?: string | null | undefined;
|
562
|
+
}>, z.ZodObject<{
|
563
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
564
|
+
state: z.ZodString;
|
565
|
+
district2: z.ZodString;
|
566
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
567
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
568
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
569
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
570
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
571
|
+
}, "strip", z.ZodTypeAny, {
|
572
|
+
country: string;
|
573
|
+
state: string;
|
574
|
+
district2: string;
|
575
|
+
cityOrTown?: string | null | undefined;
|
576
|
+
addressLine1?: string | null | undefined;
|
577
|
+
addressLine2?: string | null | undefined;
|
578
|
+
addressLine3?: string | null | undefined;
|
579
|
+
postcodeOrZip?: string | null | undefined;
|
580
|
+
}, {
|
581
|
+
country: string;
|
582
|
+
state: string;
|
583
|
+
district2: string;
|
584
|
+
cityOrTown?: string | null | undefined;
|
585
|
+
addressLine1?: string | null | undefined;
|
586
|
+
addressLine2?: string | null | undefined;
|
587
|
+
addressLine3?: string | null | undefined;
|
588
|
+
postcodeOrZip?: string | null | undefined;
|
445
589
|
}>]>>>;
|
446
590
|
createdAtLocation: z.ZodString;
|
447
591
|
}, {
|
@@ -469,6 +613,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
469
613
|
province: string;
|
470
614
|
urbanOrRural: "RURAL";
|
471
615
|
village?: string | null | undefined;
|
616
|
+
} | {
|
617
|
+
country: string;
|
618
|
+
state: string;
|
619
|
+
district2: string;
|
620
|
+
cityOrTown?: string | null | undefined;
|
621
|
+
addressLine1?: string | null | undefined;
|
622
|
+
addressLine2?: string | null | undefined;
|
623
|
+
addressLine3?: string | null | undefined;
|
624
|
+
postcodeOrZip?: string | null | undefined;
|
472
625
|
} | {
|
473
626
|
type: string;
|
474
627
|
option: string;
|
@@ -498,6 +651,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
498
651
|
province: string;
|
499
652
|
urbanOrRural: "RURAL";
|
500
653
|
village?: string | null | undefined;
|
654
|
+
} | {
|
655
|
+
country: string;
|
656
|
+
state: string;
|
657
|
+
district2: string;
|
658
|
+
cityOrTown?: string | null | undefined;
|
659
|
+
addressLine1?: string | null | undefined;
|
660
|
+
addressLine2?: string | null | undefined;
|
661
|
+
addressLine3?: string | null | undefined;
|
662
|
+
postcodeOrZip?: string | null | undefined;
|
501
663
|
} | {
|
502
664
|
type: string;
|
503
665
|
option: string;
|
@@ -527,6 +689,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
527
689
|
province: string;
|
528
690
|
urbanOrRural: "RURAL";
|
529
691
|
village?: string | null | undefined;
|
692
|
+
} | {
|
693
|
+
country: string;
|
694
|
+
state: string;
|
695
|
+
district2: string;
|
696
|
+
cityOrTown?: string | null | undefined;
|
697
|
+
addressLine1?: string | null | undefined;
|
698
|
+
addressLine2?: string | null | undefined;
|
699
|
+
addressLine3?: string | null | undefined;
|
700
|
+
postcodeOrZip?: string | null | undefined;
|
530
701
|
} | {
|
531
702
|
type: string;
|
532
703
|
option: string;
|
@@ -556,6 +727,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
556
727
|
province: string;
|
557
728
|
urbanOrRural: "RURAL";
|
558
729
|
village?: string | null | undefined;
|
730
|
+
} | {
|
731
|
+
country: string;
|
732
|
+
state: string;
|
733
|
+
district2: string;
|
734
|
+
cityOrTown?: string | null | undefined;
|
735
|
+
addressLine1?: string | null | undefined;
|
736
|
+
addressLine2?: string | null | undefined;
|
737
|
+
addressLine3?: string | null | undefined;
|
738
|
+
postcodeOrZip?: string | null | undefined;
|
559
739
|
} | {
|
560
740
|
type: string;
|
561
741
|
option: string;
|
@@ -594,7 +774,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
594
774
|
filename: string;
|
595
775
|
originalFilename: string;
|
596
776
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
597
|
-
country: z.
|
777
|
+
country: z.ZodLiteral<string>;
|
598
778
|
province: z.ZodString;
|
599
779
|
district: z.ZodString;
|
600
780
|
}, {
|
@@ -625,7 +805,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
625
805
|
street?: string | null | undefined;
|
626
806
|
zipCode?: string | null | undefined;
|
627
807
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
628
|
-
country: z.
|
808
|
+
country: z.ZodLiteral<string>;
|
629
809
|
province: z.ZodString;
|
630
810
|
district: z.ZodString;
|
631
811
|
}, {
|
@@ -643,6 +823,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
643
823
|
province: string;
|
644
824
|
urbanOrRural: "RURAL";
|
645
825
|
village?: string | null | undefined;
|
826
|
+
}>, z.ZodObject<{
|
827
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
828
|
+
state: z.ZodString;
|
829
|
+
district2: z.ZodString;
|
830
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
831
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
832
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
833
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
834
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
835
|
+
}, "strip", z.ZodTypeAny, {
|
836
|
+
country: string;
|
837
|
+
state: string;
|
838
|
+
district2: string;
|
839
|
+
cityOrTown?: string | null | undefined;
|
840
|
+
addressLine1?: string | null | undefined;
|
841
|
+
addressLine2?: string | null | undefined;
|
842
|
+
addressLine3?: string | null | undefined;
|
843
|
+
postcodeOrZip?: string | null | undefined;
|
844
|
+
}, {
|
845
|
+
country: string;
|
846
|
+
state: string;
|
847
|
+
district2: string;
|
848
|
+
cityOrTown?: string | null | undefined;
|
849
|
+
addressLine1?: string | null | undefined;
|
850
|
+
addressLine2?: string | null | undefined;
|
851
|
+
addressLine3?: string | null | undefined;
|
852
|
+
postcodeOrZip?: string | null | undefined;
|
646
853
|
}>]>>;
|
647
854
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
648
855
|
filename: z.ZodString;
|
@@ -672,7 +879,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
672
879
|
filename: string;
|
673
880
|
originalFilename: string;
|
674
881
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
675
|
-
country: z.
|
882
|
+
country: z.ZodLiteral<string>;
|
676
883
|
province: z.ZodString;
|
677
884
|
district: z.ZodString;
|
678
885
|
}, {
|
@@ -703,7 +910,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
703
910
|
street?: string | null | undefined;
|
704
911
|
zipCode?: string | null | undefined;
|
705
912
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
706
|
-
country: z.
|
913
|
+
country: z.ZodLiteral<string>;
|
707
914
|
province: z.ZodString;
|
708
915
|
district: z.ZodString;
|
709
916
|
}, {
|
@@ -721,6 +928,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
721
928
|
province: string;
|
722
929
|
urbanOrRural: "RURAL";
|
723
930
|
village?: string | null | undefined;
|
931
|
+
}>, z.ZodObject<{
|
932
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
933
|
+
state: z.ZodString;
|
934
|
+
district2: z.ZodString;
|
935
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
936
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
937
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
938
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
939
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
940
|
+
}, "strip", z.ZodTypeAny, {
|
941
|
+
country: string;
|
942
|
+
state: string;
|
943
|
+
district2: string;
|
944
|
+
cityOrTown?: string | null | undefined;
|
945
|
+
addressLine1?: string | null | undefined;
|
946
|
+
addressLine2?: string | null | undefined;
|
947
|
+
addressLine3?: string | null | undefined;
|
948
|
+
postcodeOrZip?: string | null | undefined;
|
949
|
+
}, {
|
950
|
+
country: string;
|
951
|
+
state: string;
|
952
|
+
district2: string;
|
953
|
+
cityOrTown?: string | null | undefined;
|
954
|
+
addressLine1?: string | null | undefined;
|
955
|
+
addressLine2?: string | null | undefined;
|
956
|
+
addressLine3?: string | null | undefined;
|
957
|
+
postcodeOrZip?: string | null | undefined;
|
724
958
|
}>]>>>;
|
725
959
|
createdAtLocation: z.ZodString;
|
726
960
|
}, {
|
@@ -748,6 +982,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
748
982
|
province: string;
|
749
983
|
urbanOrRural: "RURAL";
|
750
984
|
village?: string | null | undefined;
|
985
|
+
} | {
|
986
|
+
country: string;
|
987
|
+
state: string;
|
988
|
+
district2: string;
|
989
|
+
cityOrTown?: string | null | undefined;
|
990
|
+
addressLine1?: string | null | undefined;
|
991
|
+
addressLine2?: string | null | undefined;
|
992
|
+
addressLine3?: string | null | undefined;
|
993
|
+
postcodeOrZip?: string | null | undefined;
|
751
994
|
} | {
|
752
995
|
type: string;
|
753
996
|
option: string;
|
@@ -777,6 +1020,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
777
1020
|
province: string;
|
778
1021
|
urbanOrRural: "RURAL";
|
779
1022
|
village?: string | null | undefined;
|
1023
|
+
} | {
|
1024
|
+
country: string;
|
1025
|
+
state: string;
|
1026
|
+
district2: string;
|
1027
|
+
cityOrTown?: string | null | undefined;
|
1028
|
+
addressLine1?: string | null | undefined;
|
1029
|
+
addressLine2?: string | null | undefined;
|
1030
|
+
addressLine3?: string | null | undefined;
|
1031
|
+
postcodeOrZip?: string | null | undefined;
|
780
1032
|
} | {
|
781
1033
|
type: string;
|
782
1034
|
option: string;
|
@@ -806,6 +1058,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
806
1058
|
province: string;
|
807
1059
|
urbanOrRural: "RURAL";
|
808
1060
|
village?: string | null | undefined;
|
1061
|
+
} | {
|
1062
|
+
country: string;
|
1063
|
+
state: string;
|
1064
|
+
district2: string;
|
1065
|
+
cityOrTown?: string | null | undefined;
|
1066
|
+
addressLine1?: string | null | undefined;
|
1067
|
+
addressLine2?: string | null | undefined;
|
1068
|
+
addressLine3?: string | null | undefined;
|
1069
|
+
postcodeOrZip?: string | null | undefined;
|
809
1070
|
} | {
|
810
1071
|
type: string;
|
811
1072
|
option: string;
|
@@ -835,6 +1096,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
835
1096
|
province: string;
|
836
1097
|
urbanOrRural: "RURAL";
|
837
1098
|
village?: string | null | undefined;
|
1099
|
+
} | {
|
1100
|
+
country: string;
|
1101
|
+
state: string;
|
1102
|
+
district2: string;
|
1103
|
+
cityOrTown?: string | null | undefined;
|
1104
|
+
addressLine1?: string | null | undefined;
|
1105
|
+
addressLine2?: string | null | undefined;
|
1106
|
+
addressLine3?: string | null | undefined;
|
1107
|
+
postcodeOrZip?: string | null | undefined;
|
838
1108
|
} | {
|
839
1109
|
type: string;
|
840
1110
|
option: string;
|
@@ -873,7 +1143,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
873
1143
|
filename: string;
|
874
1144
|
originalFilename: string;
|
875
1145
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
876
|
-
country: z.
|
1146
|
+
country: z.ZodLiteral<string>;
|
877
1147
|
province: z.ZodString;
|
878
1148
|
district: z.ZodString;
|
879
1149
|
}, {
|
@@ -904,7 +1174,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
904
1174
|
street?: string | null | undefined;
|
905
1175
|
zipCode?: string | null | undefined;
|
906
1176
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
907
|
-
country: z.
|
1177
|
+
country: z.ZodLiteral<string>;
|
908
1178
|
province: z.ZodString;
|
909
1179
|
district: z.ZodString;
|
910
1180
|
}, {
|
@@ -922,6 +1192,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
922
1192
|
province: string;
|
923
1193
|
urbanOrRural: "RURAL";
|
924
1194
|
village?: string | null | undefined;
|
1195
|
+
}>, z.ZodObject<{
|
1196
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
1197
|
+
state: z.ZodString;
|
1198
|
+
district2: z.ZodString;
|
1199
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1200
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1201
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1202
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1203
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1204
|
+
}, "strip", z.ZodTypeAny, {
|
1205
|
+
country: string;
|
1206
|
+
state: string;
|
1207
|
+
district2: string;
|
1208
|
+
cityOrTown?: string | null | undefined;
|
1209
|
+
addressLine1?: string | null | undefined;
|
1210
|
+
addressLine2?: string | null | undefined;
|
1211
|
+
addressLine3?: string | null | undefined;
|
1212
|
+
postcodeOrZip?: string | null | undefined;
|
1213
|
+
}, {
|
1214
|
+
country: string;
|
1215
|
+
state: string;
|
1216
|
+
district2: string;
|
1217
|
+
cityOrTown?: string | null | undefined;
|
1218
|
+
addressLine1?: string | null | undefined;
|
1219
|
+
addressLine2?: string | null | undefined;
|
1220
|
+
addressLine3?: string | null | undefined;
|
1221
|
+
postcodeOrZip?: string | null | undefined;
|
925
1222
|
}>]>>;
|
926
1223
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
927
1224
|
filename: z.ZodString;
|
@@ -951,7 +1248,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
951
1248
|
filename: string;
|
952
1249
|
originalFilename: string;
|
953
1250
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
954
|
-
country: z.
|
1251
|
+
country: z.ZodLiteral<string>;
|
955
1252
|
province: z.ZodString;
|
956
1253
|
district: z.ZodString;
|
957
1254
|
}, {
|
@@ -982,7 +1279,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
982
1279
|
street?: string | null | undefined;
|
983
1280
|
zipCode?: string | null | undefined;
|
984
1281
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
985
|
-
country: z.
|
1282
|
+
country: z.ZodLiteral<string>;
|
986
1283
|
province: z.ZodString;
|
987
1284
|
district: z.ZodString;
|
988
1285
|
}, {
|
@@ -1000,6 +1297,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
1000
1297
|
province: string;
|
1001
1298
|
urbanOrRural: "RURAL";
|
1002
1299
|
village?: string | null | undefined;
|
1300
|
+
}>, z.ZodObject<{
|
1301
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
1302
|
+
state: z.ZodString;
|
1303
|
+
district2: z.ZodString;
|
1304
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1305
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1306
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1307
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1308
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1309
|
+
}, "strip", z.ZodTypeAny, {
|
1310
|
+
country: string;
|
1311
|
+
state: string;
|
1312
|
+
district2: string;
|
1313
|
+
cityOrTown?: string | null | undefined;
|
1314
|
+
addressLine1?: string | null | undefined;
|
1315
|
+
addressLine2?: string | null | undefined;
|
1316
|
+
addressLine3?: string | null | undefined;
|
1317
|
+
postcodeOrZip?: string | null | undefined;
|
1318
|
+
}, {
|
1319
|
+
country: string;
|
1320
|
+
state: string;
|
1321
|
+
district2: string;
|
1322
|
+
cityOrTown?: string | null | undefined;
|
1323
|
+
addressLine1?: string | null | undefined;
|
1324
|
+
addressLine2?: string | null | undefined;
|
1325
|
+
addressLine3?: string | null | undefined;
|
1326
|
+
postcodeOrZip?: string | null | undefined;
|
1003
1327
|
}>]>>>;
|
1004
1328
|
createdAtLocation: z.ZodString;
|
1005
1329
|
}, {
|
@@ -1027,6 +1351,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
1027
1351
|
province: string;
|
1028
1352
|
urbanOrRural: "RURAL";
|
1029
1353
|
village?: string | null | undefined;
|
1354
|
+
} | {
|
1355
|
+
country: string;
|
1356
|
+
state: string;
|
1357
|
+
district2: string;
|
1358
|
+
cityOrTown?: string | null | undefined;
|
1359
|
+
addressLine1?: string | null | undefined;
|
1360
|
+
addressLine2?: string | null | undefined;
|
1361
|
+
addressLine3?: string | null | undefined;
|
1362
|
+
postcodeOrZip?: string | null | undefined;
|
1030
1363
|
} | {
|
1031
1364
|
type: string;
|
1032
1365
|
option: string;
|
@@ -1056,6 +1389,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
1056
1389
|
province: string;
|
1057
1390
|
urbanOrRural: "RURAL";
|
1058
1391
|
village?: string | null | undefined;
|
1392
|
+
} | {
|
1393
|
+
country: string;
|
1394
|
+
state: string;
|
1395
|
+
district2: string;
|
1396
|
+
cityOrTown?: string | null | undefined;
|
1397
|
+
addressLine1?: string | null | undefined;
|
1398
|
+
addressLine2?: string | null | undefined;
|
1399
|
+
addressLine3?: string | null | undefined;
|
1400
|
+
postcodeOrZip?: string | null | undefined;
|
1059
1401
|
} | {
|
1060
1402
|
type: string;
|
1061
1403
|
option: string;
|
@@ -1085,6 +1427,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
1085
1427
|
province: string;
|
1086
1428
|
urbanOrRural: "RURAL";
|
1087
1429
|
village?: string | null | undefined;
|
1430
|
+
} | {
|
1431
|
+
country: string;
|
1432
|
+
state: string;
|
1433
|
+
district2: string;
|
1434
|
+
cityOrTown?: string | null | undefined;
|
1435
|
+
addressLine1?: string | null | undefined;
|
1436
|
+
addressLine2?: string | null | undefined;
|
1437
|
+
addressLine3?: string | null | undefined;
|
1438
|
+
postcodeOrZip?: string | null | undefined;
|
1088
1439
|
} | {
|
1089
1440
|
type: string;
|
1090
1441
|
option: string;
|
@@ -1114,6 +1465,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
1114
1465
|
province: string;
|
1115
1466
|
urbanOrRural: "RURAL";
|
1116
1467
|
village?: string | null | undefined;
|
1468
|
+
} | {
|
1469
|
+
country: string;
|
1470
|
+
state: string;
|
1471
|
+
district2: string;
|
1472
|
+
cityOrTown?: string | null | undefined;
|
1473
|
+
addressLine1?: string | null | undefined;
|
1474
|
+
addressLine2?: string | null | undefined;
|
1475
|
+
addressLine3?: string | null | undefined;
|
1476
|
+
postcodeOrZip?: string | null | undefined;
|
1117
1477
|
} | {
|
1118
1478
|
type: string;
|
1119
1479
|
option: string;
|
@@ -1152,7 +1512,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1152
1512
|
filename: string;
|
1153
1513
|
originalFilename: string;
|
1154
1514
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1155
|
-
country: z.
|
1515
|
+
country: z.ZodLiteral<string>;
|
1156
1516
|
province: z.ZodString;
|
1157
1517
|
district: z.ZodString;
|
1158
1518
|
}, {
|
@@ -1183,7 +1543,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1183
1543
|
street?: string | null | undefined;
|
1184
1544
|
zipCode?: string | null | undefined;
|
1185
1545
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1186
|
-
country: z.
|
1546
|
+
country: z.ZodLiteral<string>;
|
1187
1547
|
province: z.ZodString;
|
1188
1548
|
district: z.ZodString;
|
1189
1549
|
}, {
|
@@ -1201,6 +1561,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
1201
1561
|
province: string;
|
1202
1562
|
urbanOrRural: "RURAL";
|
1203
1563
|
village?: string | null | undefined;
|
1564
|
+
}>, z.ZodObject<{
|
1565
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
1566
|
+
state: z.ZodString;
|
1567
|
+
district2: z.ZodString;
|
1568
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1569
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1570
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1571
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1572
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1573
|
+
}, "strip", z.ZodTypeAny, {
|
1574
|
+
country: string;
|
1575
|
+
state: string;
|
1576
|
+
district2: string;
|
1577
|
+
cityOrTown?: string | null | undefined;
|
1578
|
+
addressLine1?: string | null | undefined;
|
1579
|
+
addressLine2?: string | null | undefined;
|
1580
|
+
addressLine3?: string | null | undefined;
|
1581
|
+
postcodeOrZip?: string | null | undefined;
|
1582
|
+
}, {
|
1583
|
+
country: string;
|
1584
|
+
state: string;
|
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;
|
1204
1591
|
}>]>>;
|
1205
1592
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1206
1593
|
filename: z.ZodString;
|
@@ -1230,7 +1617,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1230
1617
|
filename: string;
|
1231
1618
|
originalFilename: string;
|
1232
1619
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1233
|
-
country: z.
|
1620
|
+
country: z.ZodLiteral<string>;
|
1234
1621
|
province: z.ZodString;
|
1235
1622
|
district: z.ZodString;
|
1236
1623
|
}, {
|
@@ -1261,7 +1648,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1261
1648
|
street?: string | null | undefined;
|
1262
1649
|
zipCode?: string | null | undefined;
|
1263
1650
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1264
|
-
country: z.
|
1651
|
+
country: z.ZodLiteral<string>;
|
1265
1652
|
province: z.ZodString;
|
1266
1653
|
district: z.ZodString;
|
1267
1654
|
}, {
|
@@ -1279,12 +1666,39 @@ export declare const EventDocument: z.ZodObject<{
|
|
1279
1666
|
province: string;
|
1280
1667
|
urbanOrRural: "RURAL";
|
1281
1668
|
village?: string | null | undefined;
|
1669
|
+
}>, z.ZodObject<{
|
1670
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
1671
|
+
state: z.ZodString;
|
1672
|
+
district2: z.ZodString;
|
1673
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1674
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1675
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1676
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1677
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1678
|
+
}, "strip", z.ZodTypeAny, {
|
1679
|
+
country: string;
|
1680
|
+
state: string;
|
1681
|
+
district2: string;
|
1682
|
+
cityOrTown?: string | null | undefined;
|
1683
|
+
addressLine1?: string | null | undefined;
|
1684
|
+
addressLine2?: string | null | undefined;
|
1685
|
+
addressLine3?: string | null | undefined;
|
1686
|
+
postcodeOrZip?: string | null | undefined;
|
1687
|
+
}, {
|
1688
|
+
country: string;
|
1689
|
+
state: string;
|
1690
|
+
district2: string;
|
1691
|
+
cityOrTown?: string | null | undefined;
|
1692
|
+
addressLine1?: string | null | undefined;
|
1693
|
+
addressLine2?: string | null | undefined;
|
1694
|
+
addressLine3?: string | null | undefined;
|
1695
|
+
postcodeOrZip?: string | null | undefined;
|
1282
1696
|
}>]>>>;
|
1283
1697
|
createdAtLocation: z.ZodString;
|
1284
1698
|
}, {
|
1285
|
-
type: z.ZodLiteral<"
|
1699
|
+
type: z.ZodLiteral<"ARCHIVE">;
|
1286
1700
|
}>, "strip", z.ZodTypeAny, {
|
1287
|
-
type: "
|
1701
|
+
type: "ARCHIVE";
|
1288
1702
|
id: string;
|
1289
1703
|
data: Record<string, string | number | boolean | {
|
1290
1704
|
type: string;
|
@@ -1306,6 +1720,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
1306
1720
|
province: string;
|
1307
1721
|
urbanOrRural: "RURAL";
|
1308
1722
|
village?: string | null | undefined;
|
1723
|
+
} | {
|
1724
|
+
country: string;
|
1725
|
+
state: string;
|
1726
|
+
district2: string;
|
1727
|
+
cityOrTown?: string | null | undefined;
|
1728
|
+
addressLine1?: string | null | undefined;
|
1729
|
+
addressLine2?: string | null | undefined;
|
1730
|
+
addressLine3?: string | null | undefined;
|
1731
|
+
postcodeOrZip?: string | null | undefined;
|
1309
1732
|
} | {
|
1310
1733
|
type: string;
|
1311
1734
|
option: string;
|
@@ -1335,6 +1758,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
1335
1758
|
province: string;
|
1336
1759
|
urbanOrRural: "RURAL";
|
1337
1760
|
village?: string | null | undefined;
|
1761
|
+
} | {
|
1762
|
+
country: string;
|
1763
|
+
state: string;
|
1764
|
+
district2: string;
|
1765
|
+
cityOrTown?: string | null | undefined;
|
1766
|
+
addressLine1?: string | null | undefined;
|
1767
|
+
addressLine2?: string | null | undefined;
|
1768
|
+
addressLine3?: string | null | undefined;
|
1769
|
+
postcodeOrZip?: string | null | undefined;
|
1338
1770
|
} | {
|
1339
1771
|
type: string;
|
1340
1772
|
option: string;
|
@@ -1342,7 +1774,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1342
1774
|
originalFilename: string;
|
1343
1775
|
}[]> | undefined;
|
1344
1776
|
}, {
|
1345
|
-
type: "
|
1777
|
+
type: "ARCHIVE";
|
1346
1778
|
id: string;
|
1347
1779
|
data: Record<string, string | number | boolean | {
|
1348
1780
|
type: string;
|
@@ -1364,6 +1796,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
1364
1796
|
province: string;
|
1365
1797
|
urbanOrRural: "RURAL";
|
1366
1798
|
village?: string | null | undefined;
|
1799
|
+
} | {
|
1800
|
+
country: string;
|
1801
|
+
state: string;
|
1802
|
+
district2: string;
|
1803
|
+
cityOrTown?: string | null | undefined;
|
1804
|
+
addressLine1?: string | null | undefined;
|
1805
|
+
addressLine2?: string | null | undefined;
|
1806
|
+
addressLine3?: string | null | undefined;
|
1807
|
+
postcodeOrZip?: string | null | undefined;
|
1367
1808
|
} | {
|
1368
1809
|
type: string;
|
1369
1810
|
option: string;
|
@@ -1393,6 +1834,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
1393
1834
|
province: string;
|
1394
1835
|
urbanOrRural: "RURAL";
|
1395
1836
|
village?: string | null | undefined;
|
1837
|
+
} | {
|
1838
|
+
country: string;
|
1839
|
+
state: string;
|
1840
|
+
district2: string;
|
1841
|
+
cityOrTown?: string | null | undefined;
|
1842
|
+
addressLine1?: string | null | undefined;
|
1843
|
+
addressLine2?: string | null | undefined;
|
1844
|
+
addressLine3?: string | null | undefined;
|
1845
|
+
postcodeOrZip?: string | null | undefined;
|
1396
1846
|
} | {
|
1397
1847
|
type: string;
|
1398
1848
|
option: string;
|
@@ -1431,7 +1881,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1431
1881
|
filename: string;
|
1432
1882
|
originalFilename: string;
|
1433
1883
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1434
|
-
country: z.
|
1884
|
+
country: z.ZodLiteral<string>;
|
1435
1885
|
province: z.ZodString;
|
1436
1886
|
district: z.ZodString;
|
1437
1887
|
}, {
|
@@ -1462,7 +1912,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1462
1912
|
street?: string | null | undefined;
|
1463
1913
|
zipCode?: string | null | undefined;
|
1464
1914
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1465
|
-
country: z.
|
1915
|
+
country: z.ZodLiteral<string>;
|
1466
1916
|
province: z.ZodString;
|
1467
1917
|
district: z.ZodString;
|
1468
1918
|
}, {
|
@@ -1480,6 +1930,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
1480
1930
|
province: string;
|
1481
1931
|
urbanOrRural: "RURAL";
|
1482
1932
|
village?: string | null | undefined;
|
1933
|
+
}>, z.ZodObject<{
|
1934
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
1935
|
+
state: z.ZodString;
|
1936
|
+
district2: z.ZodString;
|
1937
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1938
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1939
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1940
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1941
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1942
|
+
}, "strip", z.ZodTypeAny, {
|
1943
|
+
country: string;
|
1944
|
+
state: string;
|
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;
|
1951
|
+
}, {
|
1952
|
+
country: string;
|
1953
|
+
state: string;
|
1954
|
+
district2: string;
|
1955
|
+
cityOrTown?: string | null | undefined;
|
1956
|
+
addressLine1?: string | null | undefined;
|
1957
|
+
addressLine2?: string | null | undefined;
|
1958
|
+
addressLine3?: string | null | undefined;
|
1959
|
+
postcodeOrZip?: string | null | undefined;
|
1483
1960
|
}>]>>;
|
1484
1961
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1485
1962
|
filename: z.ZodString;
|
@@ -1509,7 +1986,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1509
1986
|
filename: string;
|
1510
1987
|
originalFilename: string;
|
1511
1988
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1512
|
-
country: z.
|
1989
|
+
country: z.ZodLiteral<string>;
|
1513
1990
|
province: z.ZodString;
|
1514
1991
|
district: z.ZodString;
|
1515
1992
|
}, {
|
@@ -1540,7 +2017,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1540
2017
|
street?: string | null | undefined;
|
1541
2018
|
zipCode?: string | null | undefined;
|
1542
2019
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1543
|
-
country: z.
|
2020
|
+
country: z.ZodLiteral<string>;
|
1544
2021
|
province: z.ZodString;
|
1545
2022
|
district: z.ZodString;
|
1546
2023
|
}, {
|
@@ -1558,6 +2035,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
1558
2035
|
province: string;
|
1559
2036
|
urbanOrRural: "RURAL";
|
1560
2037
|
village?: string | null | undefined;
|
2038
|
+
}>, z.ZodObject<{
|
2039
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
2040
|
+
state: z.ZodString;
|
2041
|
+
district2: z.ZodString;
|
2042
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2043
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2044
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2045
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2046
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2047
|
+
}, "strip", z.ZodTypeAny, {
|
2048
|
+
country: string;
|
2049
|
+
state: string;
|
2050
|
+
district2: string;
|
2051
|
+
cityOrTown?: string | null | undefined;
|
2052
|
+
addressLine1?: string | null | undefined;
|
2053
|
+
addressLine2?: string | null | undefined;
|
2054
|
+
addressLine3?: string | null | undefined;
|
2055
|
+
postcodeOrZip?: string | null | undefined;
|
2056
|
+
}, {
|
2057
|
+
country: string;
|
2058
|
+
state: string;
|
2059
|
+
district2: string;
|
2060
|
+
cityOrTown?: string | null | undefined;
|
2061
|
+
addressLine1?: string | null | undefined;
|
2062
|
+
addressLine2?: string | null | undefined;
|
2063
|
+
addressLine3?: string | null | undefined;
|
2064
|
+
postcodeOrZip?: string | null | undefined;
|
1561
2065
|
}>]>>>;
|
1562
2066
|
createdAtLocation: z.ZodString;
|
1563
2067
|
}, {
|
@@ -1585,6 +2089,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
1585
2089
|
province: string;
|
1586
2090
|
urbanOrRural: "RURAL";
|
1587
2091
|
village?: string | null | undefined;
|
2092
|
+
} | {
|
2093
|
+
country: string;
|
2094
|
+
state: string;
|
2095
|
+
district2: string;
|
2096
|
+
cityOrTown?: string | null | undefined;
|
2097
|
+
addressLine1?: string | null | undefined;
|
2098
|
+
addressLine2?: string | null | undefined;
|
2099
|
+
addressLine3?: string | null | undefined;
|
2100
|
+
postcodeOrZip?: string | null | undefined;
|
1588
2101
|
} | {
|
1589
2102
|
type: string;
|
1590
2103
|
option: string;
|
@@ -1614,6 +2127,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
1614
2127
|
province: string;
|
1615
2128
|
urbanOrRural: "RURAL";
|
1616
2129
|
village?: string | null | undefined;
|
2130
|
+
} | {
|
2131
|
+
country: string;
|
2132
|
+
state: string;
|
2133
|
+
district2: string;
|
2134
|
+
cityOrTown?: string | null | undefined;
|
2135
|
+
addressLine1?: string | null | undefined;
|
2136
|
+
addressLine2?: string | null | undefined;
|
2137
|
+
addressLine3?: string | null | undefined;
|
2138
|
+
postcodeOrZip?: string | null | undefined;
|
1617
2139
|
} | {
|
1618
2140
|
type: string;
|
1619
2141
|
option: string;
|
@@ -1643,6 +2165,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
1643
2165
|
province: string;
|
1644
2166
|
urbanOrRural: "RURAL";
|
1645
2167
|
village?: string | null | undefined;
|
2168
|
+
} | {
|
2169
|
+
country: string;
|
2170
|
+
state: string;
|
2171
|
+
district2: string;
|
2172
|
+
cityOrTown?: string | null | undefined;
|
2173
|
+
addressLine1?: string | null | undefined;
|
2174
|
+
addressLine2?: string | null | undefined;
|
2175
|
+
addressLine3?: string | null | undefined;
|
2176
|
+
postcodeOrZip?: string | null | undefined;
|
1646
2177
|
} | {
|
1647
2178
|
type: string;
|
1648
2179
|
option: string;
|
@@ -1672,6 +2203,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
1672
2203
|
province: string;
|
1673
2204
|
urbanOrRural: "RURAL";
|
1674
2205
|
village?: string | null | undefined;
|
2206
|
+
} | {
|
2207
|
+
country: string;
|
2208
|
+
state: string;
|
2209
|
+
district2: string;
|
2210
|
+
cityOrTown?: string | null | undefined;
|
2211
|
+
addressLine1?: string | null | undefined;
|
2212
|
+
addressLine2?: string | null | undefined;
|
2213
|
+
addressLine3?: string | null | undefined;
|
2214
|
+
postcodeOrZip?: string | null | undefined;
|
1675
2215
|
} | {
|
1676
2216
|
type: string;
|
1677
2217
|
option: string;
|
@@ -1710,7 +2250,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1710
2250
|
filename: string;
|
1711
2251
|
originalFilename: string;
|
1712
2252
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1713
|
-
country: z.
|
2253
|
+
country: z.ZodLiteral<string>;
|
1714
2254
|
province: z.ZodString;
|
1715
2255
|
district: z.ZodString;
|
1716
2256
|
}, {
|
@@ -1741,7 +2281,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1741
2281
|
street?: string | null | undefined;
|
1742
2282
|
zipCode?: string | null | undefined;
|
1743
2283
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1744
|
-
country: z.
|
2284
|
+
country: z.ZodLiteral<string>;
|
1745
2285
|
province: z.ZodString;
|
1746
2286
|
district: z.ZodString;
|
1747
2287
|
}, {
|
@@ -1759,6 +2299,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
1759
2299
|
province: string;
|
1760
2300
|
urbanOrRural: "RURAL";
|
1761
2301
|
village?: string | null | undefined;
|
2302
|
+
}>, z.ZodObject<{
|
2303
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
2304
|
+
state: z.ZodString;
|
2305
|
+
district2: z.ZodString;
|
2306
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2307
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2308
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2309
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2310
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2311
|
+
}, "strip", z.ZodTypeAny, {
|
2312
|
+
country: string;
|
2313
|
+
state: string;
|
2314
|
+
district2: string;
|
2315
|
+
cityOrTown?: string | null | undefined;
|
2316
|
+
addressLine1?: string | null | undefined;
|
2317
|
+
addressLine2?: string | null | undefined;
|
2318
|
+
addressLine3?: string | null | undefined;
|
2319
|
+
postcodeOrZip?: string | null | undefined;
|
2320
|
+
}, {
|
2321
|
+
country: string;
|
2322
|
+
state: string;
|
2323
|
+
district2: string;
|
2324
|
+
cityOrTown?: string | null | undefined;
|
2325
|
+
addressLine1?: string | null | undefined;
|
2326
|
+
addressLine2?: string | null | undefined;
|
2327
|
+
addressLine3?: string | null | undefined;
|
2328
|
+
postcodeOrZip?: string | null | undefined;
|
1762
2329
|
}>]>>;
|
1763
2330
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
1764
2331
|
filename: z.ZodString;
|
@@ -1788,7 +2355,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1788
2355
|
filename: string;
|
1789
2356
|
originalFilename: string;
|
1790
2357
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
1791
|
-
country: z.
|
2358
|
+
country: z.ZodLiteral<string>;
|
1792
2359
|
province: z.ZodString;
|
1793
2360
|
district: z.ZodString;
|
1794
2361
|
}, {
|
@@ -1819,7 +2386,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
1819
2386
|
street?: string | null | undefined;
|
1820
2387
|
zipCode?: string | null | undefined;
|
1821
2388
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
1822
|
-
country: z.
|
2389
|
+
country: z.ZodLiteral<string>;
|
1823
2390
|
province: z.ZodString;
|
1824
2391
|
district: z.ZodString;
|
1825
2392
|
}, {
|
@@ -1837,6 +2404,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
1837
2404
|
province: string;
|
1838
2405
|
urbanOrRural: "RURAL";
|
1839
2406
|
village?: string | null | undefined;
|
2407
|
+
}>, z.ZodObject<{
|
2408
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
2409
|
+
state: z.ZodString;
|
2410
|
+
district2: z.ZodString;
|
2411
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2412
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2413
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2414
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2415
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2416
|
+
}, "strip", z.ZodTypeAny, {
|
2417
|
+
country: string;
|
2418
|
+
state: string;
|
2419
|
+
district2: string;
|
2420
|
+
cityOrTown?: string | null | undefined;
|
2421
|
+
addressLine1?: string | null | undefined;
|
2422
|
+
addressLine2?: string | null | undefined;
|
2423
|
+
addressLine3?: string | null | undefined;
|
2424
|
+
postcodeOrZip?: string | null | undefined;
|
2425
|
+
}, {
|
2426
|
+
country: string;
|
2427
|
+
state: string;
|
2428
|
+
district2: string;
|
2429
|
+
cityOrTown?: string | null | undefined;
|
2430
|
+
addressLine1?: string | null | undefined;
|
2431
|
+
addressLine2?: string | null | undefined;
|
2432
|
+
addressLine3?: string | null | undefined;
|
2433
|
+
postcodeOrZip?: string | null | undefined;
|
1840
2434
|
}>]>>>;
|
1841
2435
|
createdAtLocation: z.ZodString;
|
1842
2436
|
}, {
|
@@ -1874,6 +2468,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
1874
2468
|
province: string;
|
1875
2469
|
urbanOrRural: "RURAL";
|
1876
2470
|
village?: string | null | undefined;
|
2471
|
+
} | {
|
2472
|
+
country: string;
|
2473
|
+
state: string;
|
2474
|
+
district2: string;
|
2475
|
+
cityOrTown?: string | null | undefined;
|
2476
|
+
addressLine1?: string | null | undefined;
|
2477
|
+
addressLine2?: string | null | undefined;
|
2478
|
+
addressLine3?: string | null | undefined;
|
2479
|
+
postcodeOrZip?: string | null | undefined;
|
1877
2480
|
} | {
|
1878
2481
|
type: string;
|
1879
2482
|
option: string;
|
@@ -1907,6 +2510,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
1907
2510
|
province: string;
|
1908
2511
|
urbanOrRural: "RURAL";
|
1909
2512
|
village?: string | null | undefined;
|
2513
|
+
} | {
|
2514
|
+
country: string;
|
2515
|
+
state: string;
|
2516
|
+
district2: string;
|
2517
|
+
cityOrTown?: string | null | undefined;
|
2518
|
+
addressLine1?: string | null | undefined;
|
2519
|
+
addressLine2?: string | null | undefined;
|
2520
|
+
addressLine3?: string | null | undefined;
|
2521
|
+
postcodeOrZip?: string | null | undefined;
|
1910
2522
|
} | {
|
1911
2523
|
type: string;
|
1912
2524
|
option: string;
|
@@ -1936,6 +2548,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
1936
2548
|
province: string;
|
1937
2549
|
urbanOrRural: "RURAL";
|
1938
2550
|
village?: string | null | undefined;
|
2551
|
+
} | {
|
2552
|
+
country: string;
|
2553
|
+
state: string;
|
2554
|
+
district2: string;
|
2555
|
+
cityOrTown?: string | null | undefined;
|
2556
|
+
addressLine1?: string | null | undefined;
|
2557
|
+
addressLine2?: string | null | undefined;
|
2558
|
+
addressLine3?: string | null | undefined;
|
2559
|
+
postcodeOrZip?: string | null | undefined;
|
1939
2560
|
} | {
|
1940
2561
|
type: string;
|
1941
2562
|
option: string;
|
@@ -1969,6 +2590,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
1969
2590
|
province: string;
|
1970
2591
|
urbanOrRural: "RURAL";
|
1971
2592
|
village?: string | null | undefined;
|
2593
|
+
} | {
|
2594
|
+
country: string;
|
2595
|
+
state: string;
|
2596
|
+
district2: string;
|
2597
|
+
cityOrTown?: string | null | undefined;
|
2598
|
+
addressLine1?: string | null | undefined;
|
2599
|
+
addressLine2?: string | null | undefined;
|
2600
|
+
addressLine3?: string | null | undefined;
|
2601
|
+
postcodeOrZip?: string | null | undefined;
|
1972
2602
|
} | {
|
1973
2603
|
type: string;
|
1974
2604
|
option: string;
|
@@ -2007,7 +2637,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2007
2637
|
filename: string;
|
2008
2638
|
originalFilename: string;
|
2009
2639
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2010
|
-
country: z.
|
2640
|
+
country: z.ZodLiteral<string>;
|
2011
2641
|
province: z.ZodString;
|
2012
2642
|
district: z.ZodString;
|
2013
2643
|
}, {
|
@@ -2038,7 +2668,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2038
2668
|
street?: string | null | undefined;
|
2039
2669
|
zipCode?: string | null | undefined;
|
2040
2670
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2041
|
-
country: z.
|
2671
|
+
country: z.ZodLiteral<string>;
|
2042
2672
|
province: z.ZodString;
|
2043
2673
|
district: z.ZodString;
|
2044
2674
|
}, {
|
@@ -2056,6 +2686,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
2056
2686
|
province: string;
|
2057
2687
|
urbanOrRural: "RURAL";
|
2058
2688
|
village?: string | null | undefined;
|
2689
|
+
}>, z.ZodObject<{
|
2690
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
2691
|
+
state: z.ZodString;
|
2692
|
+
district2: z.ZodString;
|
2693
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2694
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2695
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2696
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2697
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2698
|
+
}, "strip", z.ZodTypeAny, {
|
2699
|
+
country: string;
|
2700
|
+
state: string;
|
2701
|
+
district2: string;
|
2702
|
+
cityOrTown?: string | null | undefined;
|
2703
|
+
addressLine1?: string | null | undefined;
|
2704
|
+
addressLine2?: string | null | undefined;
|
2705
|
+
addressLine3?: string | null | undefined;
|
2706
|
+
postcodeOrZip?: string | null | undefined;
|
2707
|
+
}, {
|
2708
|
+
country: string;
|
2709
|
+
state: string;
|
2710
|
+
district2: string;
|
2711
|
+
cityOrTown?: string | null | undefined;
|
2712
|
+
addressLine1?: string | null | undefined;
|
2713
|
+
addressLine2?: string | null | undefined;
|
2714
|
+
addressLine3?: string | null | undefined;
|
2715
|
+
postcodeOrZip?: string | null | undefined;
|
2059
2716
|
}>]>>;
|
2060
2717
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2061
2718
|
filename: z.ZodString;
|
@@ -2085,7 +2742,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2085
2742
|
filename: string;
|
2086
2743
|
originalFilename: string;
|
2087
2744
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2088
|
-
country: z.
|
2745
|
+
country: z.ZodLiteral<string>;
|
2089
2746
|
province: z.ZodString;
|
2090
2747
|
district: z.ZodString;
|
2091
2748
|
}, {
|
@@ -2116,7 +2773,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2116
2773
|
street?: string | null | undefined;
|
2117
2774
|
zipCode?: string | null | undefined;
|
2118
2775
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2119
|
-
country: z.
|
2776
|
+
country: z.ZodLiteral<string>;
|
2120
2777
|
province: z.ZodString;
|
2121
2778
|
district: z.ZodString;
|
2122
2779
|
}, {
|
@@ -2134,6 +2791,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
2134
2791
|
province: string;
|
2135
2792
|
urbanOrRural: "RURAL";
|
2136
2793
|
village?: string | null | undefined;
|
2794
|
+
}>, z.ZodObject<{
|
2795
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
2796
|
+
state: z.ZodString;
|
2797
|
+
district2: z.ZodString;
|
2798
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2799
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2800
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2801
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2802
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2803
|
+
}, "strip", z.ZodTypeAny, {
|
2804
|
+
country: string;
|
2805
|
+
state: string;
|
2806
|
+
district2: string;
|
2807
|
+
cityOrTown?: string | null | undefined;
|
2808
|
+
addressLine1?: string | null | undefined;
|
2809
|
+
addressLine2?: string | null | undefined;
|
2810
|
+
addressLine3?: string | null | undefined;
|
2811
|
+
postcodeOrZip?: string | null | undefined;
|
2812
|
+
}, {
|
2813
|
+
country: string;
|
2814
|
+
state: string;
|
2815
|
+
district2: string;
|
2816
|
+
cityOrTown?: string | null | undefined;
|
2817
|
+
addressLine1?: string | null | undefined;
|
2818
|
+
addressLine2?: string | null | undefined;
|
2819
|
+
addressLine3?: string | null | undefined;
|
2820
|
+
postcodeOrZip?: string | null | undefined;
|
2137
2821
|
}>]>>>;
|
2138
2822
|
createdAtLocation: z.ZodString;
|
2139
2823
|
}, {
|
@@ -2161,6 +2845,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
2161
2845
|
province: string;
|
2162
2846
|
urbanOrRural: "RURAL";
|
2163
2847
|
village?: string | null | undefined;
|
2848
|
+
} | {
|
2849
|
+
country: string;
|
2850
|
+
state: string;
|
2851
|
+
district2: string;
|
2852
|
+
cityOrTown?: string | null | undefined;
|
2853
|
+
addressLine1?: string | null | undefined;
|
2854
|
+
addressLine2?: string | null | undefined;
|
2855
|
+
addressLine3?: string | null | undefined;
|
2856
|
+
postcodeOrZip?: string | null | undefined;
|
2164
2857
|
} | {
|
2165
2858
|
type: string;
|
2166
2859
|
option: string;
|
@@ -2190,6 +2883,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
2190
2883
|
province: string;
|
2191
2884
|
urbanOrRural: "RURAL";
|
2192
2885
|
village?: string | null | undefined;
|
2886
|
+
} | {
|
2887
|
+
country: string;
|
2888
|
+
state: string;
|
2889
|
+
district2: string;
|
2890
|
+
cityOrTown?: string | null | undefined;
|
2891
|
+
addressLine1?: string | null | undefined;
|
2892
|
+
addressLine2?: string | null | undefined;
|
2893
|
+
addressLine3?: string | null | undefined;
|
2894
|
+
postcodeOrZip?: string | null | undefined;
|
2193
2895
|
} | {
|
2194
2896
|
type: string;
|
2195
2897
|
option: string;
|
@@ -2219,6 +2921,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
2219
2921
|
province: string;
|
2220
2922
|
urbanOrRural: "RURAL";
|
2221
2923
|
village?: string | null | undefined;
|
2924
|
+
} | {
|
2925
|
+
country: string;
|
2926
|
+
state: string;
|
2927
|
+
district2: string;
|
2928
|
+
cityOrTown?: string | null | undefined;
|
2929
|
+
addressLine1?: string | null | undefined;
|
2930
|
+
addressLine2?: string | null | undefined;
|
2931
|
+
addressLine3?: string | null | undefined;
|
2932
|
+
postcodeOrZip?: string | null | undefined;
|
2222
2933
|
} | {
|
2223
2934
|
type: string;
|
2224
2935
|
option: string;
|
@@ -2248,6 +2959,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
2248
2959
|
province: string;
|
2249
2960
|
urbanOrRural: "RURAL";
|
2250
2961
|
village?: string | null | undefined;
|
2962
|
+
} | {
|
2963
|
+
country: string;
|
2964
|
+
state: string;
|
2965
|
+
district2: string;
|
2966
|
+
cityOrTown?: string | null | undefined;
|
2967
|
+
addressLine1?: string | null | undefined;
|
2968
|
+
addressLine2?: string | null | undefined;
|
2969
|
+
addressLine3?: string | null | undefined;
|
2970
|
+
postcodeOrZip?: string | null | undefined;
|
2251
2971
|
} | {
|
2252
2972
|
type: string;
|
2253
2973
|
option: string;
|
@@ -2286,7 +3006,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2286
3006
|
filename: string;
|
2287
3007
|
originalFilename: string;
|
2288
3008
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2289
|
-
country: z.
|
3009
|
+
country: z.ZodLiteral<string>;
|
2290
3010
|
province: z.ZodString;
|
2291
3011
|
district: z.ZodString;
|
2292
3012
|
}, {
|
@@ -2317,7 +3037,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2317
3037
|
street?: string | null | undefined;
|
2318
3038
|
zipCode?: string | null | undefined;
|
2319
3039
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2320
|
-
country: z.
|
3040
|
+
country: z.ZodLiteral<string>;
|
2321
3041
|
province: z.ZodString;
|
2322
3042
|
district: z.ZodString;
|
2323
3043
|
}, {
|
@@ -2335,6 +3055,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
2335
3055
|
province: string;
|
2336
3056
|
urbanOrRural: "RURAL";
|
2337
3057
|
village?: string | null | undefined;
|
3058
|
+
}>, z.ZodObject<{
|
3059
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
3060
|
+
state: z.ZodString;
|
3061
|
+
district2: z.ZodString;
|
3062
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3063
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3064
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3065
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3066
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3067
|
+
}, "strip", z.ZodTypeAny, {
|
3068
|
+
country: string;
|
3069
|
+
state: string;
|
3070
|
+
district2: string;
|
3071
|
+
cityOrTown?: string | null | undefined;
|
3072
|
+
addressLine1?: string | null | undefined;
|
3073
|
+
addressLine2?: string | null | undefined;
|
3074
|
+
addressLine3?: string | null | undefined;
|
3075
|
+
postcodeOrZip?: string | null | undefined;
|
3076
|
+
}, {
|
3077
|
+
country: string;
|
3078
|
+
state: string;
|
3079
|
+
district2: string;
|
3080
|
+
cityOrTown?: string | null | undefined;
|
3081
|
+
addressLine1?: string | null | undefined;
|
3082
|
+
addressLine2?: string | null | undefined;
|
3083
|
+
addressLine3?: string | null | undefined;
|
3084
|
+
postcodeOrZip?: string | null | undefined;
|
2338
3085
|
}>]>>;
|
2339
3086
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2340
3087
|
filename: z.ZodString;
|
@@ -2364,7 +3111,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2364
3111
|
filename: string;
|
2365
3112
|
originalFilename: string;
|
2366
3113
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2367
|
-
country: z.
|
3114
|
+
country: z.ZodLiteral<string>;
|
2368
3115
|
province: z.ZodString;
|
2369
3116
|
district: z.ZodString;
|
2370
3117
|
}, {
|
@@ -2395,7 +3142,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2395
3142
|
street?: string | null | undefined;
|
2396
3143
|
zipCode?: string | null | undefined;
|
2397
3144
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2398
|
-
country: z.
|
3145
|
+
country: z.ZodLiteral<string>;
|
2399
3146
|
province: z.ZodString;
|
2400
3147
|
district: z.ZodString;
|
2401
3148
|
}, {
|
@@ -2413,6 +3160,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
2413
3160
|
province: string;
|
2414
3161
|
urbanOrRural: "RURAL";
|
2415
3162
|
village?: string | null | undefined;
|
3163
|
+
}>, z.ZodObject<{
|
3164
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
3165
|
+
state: z.ZodString;
|
3166
|
+
district2: z.ZodString;
|
3167
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3168
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3169
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3170
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3171
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3172
|
+
}, "strip", z.ZodTypeAny, {
|
3173
|
+
country: string;
|
3174
|
+
state: string;
|
3175
|
+
district2: string;
|
3176
|
+
cityOrTown?: string | null | undefined;
|
3177
|
+
addressLine1?: string | null | undefined;
|
3178
|
+
addressLine2?: string | null | undefined;
|
3179
|
+
addressLine3?: string | null | undefined;
|
3180
|
+
postcodeOrZip?: string | null | undefined;
|
3181
|
+
}, {
|
3182
|
+
country: string;
|
3183
|
+
state: string;
|
3184
|
+
district2: string;
|
3185
|
+
cityOrTown?: string | null | undefined;
|
3186
|
+
addressLine1?: string | null | undefined;
|
3187
|
+
addressLine2?: string | null | undefined;
|
3188
|
+
addressLine3?: string | null | undefined;
|
3189
|
+
postcodeOrZip?: string | null | undefined;
|
2416
3190
|
}>]>>>;
|
2417
3191
|
createdAtLocation: z.ZodString;
|
2418
3192
|
}, {
|
@@ -2441,6 +3215,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
2441
3215
|
province: string;
|
2442
3216
|
urbanOrRural: "RURAL";
|
2443
3217
|
village?: string | null | undefined;
|
3218
|
+
} | {
|
3219
|
+
country: string;
|
3220
|
+
state: string;
|
3221
|
+
district2: string;
|
3222
|
+
cityOrTown?: string | null | undefined;
|
3223
|
+
addressLine1?: string | null | undefined;
|
3224
|
+
addressLine2?: string | null | undefined;
|
3225
|
+
addressLine3?: string | null | undefined;
|
3226
|
+
postcodeOrZip?: string | null | undefined;
|
2444
3227
|
} | {
|
2445
3228
|
type: string;
|
2446
3229
|
option: string;
|
@@ -2471,6 +3254,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
2471
3254
|
province: string;
|
2472
3255
|
urbanOrRural: "RURAL";
|
2473
3256
|
village?: string | null | undefined;
|
3257
|
+
} | {
|
3258
|
+
country: string;
|
3259
|
+
state: string;
|
3260
|
+
district2: string;
|
3261
|
+
cityOrTown?: string | null | undefined;
|
3262
|
+
addressLine1?: string | null | undefined;
|
3263
|
+
addressLine2?: string | null | undefined;
|
3264
|
+
addressLine3?: string | null | undefined;
|
3265
|
+
postcodeOrZip?: string | null | undefined;
|
2474
3266
|
} | {
|
2475
3267
|
type: string;
|
2476
3268
|
option: string;
|
@@ -2500,6 +3292,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
2500
3292
|
province: string;
|
2501
3293
|
urbanOrRural: "RURAL";
|
2502
3294
|
village?: string | null | undefined;
|
3295
|
+
} | {
|
3296
|
+
country: string;
|
3297
|
+
state: string;
|
3298
|
+
district2: string;
|
3299
|
+
cityOrTown?: string | null | undefined;
|
3300
|
+
addressLine1?: string | null | undefined;
|
3301
|
+
addressLine2?: string | null | undefined;
|
3302
|
+
addressLine3?: string | null | undefined;
|
3303
|
+
postcodeOrZip?: string | null | undefined;
|
2503
3304
|
} | {
|
2504
3305
|
type: string;
|
2505
3306
|
option: string;
|
@@ -2530,6 +3331,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
2530
3331
|
province: string;
|
2531
3332
|
urbanOrRural: "RURAL";
|
2532
3333
|
village?: string | null | undefined;
|
3334
|
+
} | {
|
3335
|
+
country: string;
|
3336
|
+
state: string;
|
3337
|
+
district2: string;
|
3338
|
+
cityOrTown?: string | null | undefined;
|
3339
|
+
addressLine1?: string | null | undefined;
|
3340
|
+
addressLine2?: string | null | undefined;
|
3341
|
+
addressLine3?: string | null | undefined;
|
3342
|
+
postcodeOrZip?: string | null | undefined;
|
2533
3343
|
} | {
|
2534
3344
|
type: string;
|
2535
3345
|
option: string;
|
@@ -2568,7 +3378,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2568
3378
|
filename: string;
|
2569
3379
|
originalFilename: string;
|
2570
3380
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2571
|
-
country: z.
|
3381
|
+
country: z.ZodLiteral<string>;
|
2572
3382
|
province: z.ZodString;
|
2573
3383
|
district: z.ZodString;
|
2574
3384
|
}, {
|
@@ -2599,7 +3409,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2599
3409
|
street?: string | null | undefined;
|
2600
3410
|
zipCode?: string | null | undefined;
|
2601
3411
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2602
|
-
country: z.
|
3412
|
+
country: z.ZodLiteral<string>;
|
2603
3413
|
province: z.ZodString;
|
2604
3414
|
district: z.ZodString;
|
2605
3415
|
}, {
|
@@ -2617,6 +3427,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
2617
3427
|
province: string;
|
2618
3428
|
urbanOrRural: "RURAL";
|
2619
3429
|
village?: string | null | undefined;
|
3430
|
+
}>, z.ZodObject<{
|
3431
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
3432
|
+
state: z.ZodString;
|
3433
|
+
district2: z.ZodString;
|
3434
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3435
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3436
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3437
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3438
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3439
|
+
}, "strip", z.ZodTypeAny, {
|
3440
|
+
country: string;
|
3441
|
+
state: string;
|
3442
|
+
district2: string;
|
3443
|
+
cityOrTown?: string | null | undefined;
|
3444
|
+
addressLine1?: string | null | undefined;
|
3445
|
+
addressLine2?: string | null | undefined;
|
3446
|
+
addressLine3?: string | null | undefined;
|
3447
|
+
postcodeOrZip?: string | null | undefined;
|
3448
|
+
}, {
|
3449
|
+
country: string;
|
3450
|
+
state: string;
|
3451
|
+
district2: string;
|
3452
|
+
cityOrTown?: string | null | undefined;
|
3453
|
+
addressLine1?: string | null | undefined;
|
3454
|
+
addressLine2?: string | null | undefined;
|
3455
|
+
addressLine3?: string | null | undefined;
|
3456
|
+
postcodeOrZip?: string | null | undefined;
|
2620
3457
|
}>]>>;
|
2621
3458
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2622
3459
|
filename: z.ZodString;
|
@@ -2646,7 +3483,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2646
3483
|
filename: string;
|
2647
3484
|
originalFilename: string;
|
2648
3485
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2649
|
-
country: z.
|
3486
|
+
country: z.ZodLiteral<string>;
|
2650
3487
|
province: z.ZodString;
|
2651
3488
|
district: z.ZodString;
|
2652
3489
|
}, {
|
@@ -2677,7 +3514,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2677
3514
|
street?: string | null | undefined;
|
2678
3515
|
zipCode?: string | null | undefined;
|
2679
3516
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2680
|
-
country: z.
|
3517
|
+
country: z.ZodLiteral<string>;
|
2681
3518
|
province: z.ZodString;
|
2682
3519
|
district: z.ZodString;
|
2683
3520
|
}, {
|
@@ -2695,6 +3532,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
2695
3532
|
province: string;
|
2696
3533
|
urbanOrRural: "RURAL";
|
2697
3534
|
village?: string | null | undefined;
|
3535
|
+
}>, z.ZodObject<{
|
3536
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
3537
|
+
state: z.ZodString;
|
3538
|
+
district2: z.ZodString;
|
3539
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3540
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3541
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3542
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3543
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3544
|
+
}, "strip", z.ZodTypeAny, {
|
3545
|
+
country: string;
|
3546
|
+
state: string;
|
3547
|
+
district2: string;
|
3548
|
+
cityOrTown?: string | null | undefined;
|
3549
|
+
addressLine1?: string | null | undefined;
|
3550
|
+
addressLine2?: string | null | undefined;
|
3551
|
+
addressLine3?: string | null | undefined;
|
3552
|
+
postcodeOrZip?: string | null | undefined;
|
3553
|
+
}, {
|
3554
|
+
country: string;
|
3555
|
+
state: string;
|
3556
|
+
district2: string;
|
3557
|
+
cityOrTown?: string | null | undefined;
|
3558
|
+
addressLine1?: string | null | undefined;
|
3559
|
+
addressLine2?: string | null | undefined;
|
3560
|
+
addressLine3?: string | null | undefined;
|
3561
|
+
postcodeOrZip?: string | null | undefined;
|
2698
3562
|
}>]>>>;
|
2699
3563
|
createdAtLocation: z.ZodString;
|
2700
3564
|
}, {
|
@@ -2722,6 +3586,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
2722
3586
|
province: string;
|
2723
3587
|
urbanOrRural: "RURAL";
|
2724
3588
|
village?: string | null | undefined;
|
3589
|
+
} | {
|
3590
|
+
country: string;
|
3591
|
+
state: string;
|
3592
|
+
district2: string;
|
3593
|
+
cityOrTown?: string | null | undefined;
|
3594
|
+
addressLine1?: string | null | undefined;
|
3595
|
+
addressLine2?: string | null | undefined;
|
3596
|
+
addressLine3?: string | null | undefined;
|
3597
|
+
postcodeOrZip?: string | null | undefined;
|
2725
3598
|
} | {
|
2726
3599
|
type: string;
|
2727
3600
|
option: string;
|
@@ -2751,6 +3624,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
2751
3624
|
province: string;
|
2752
3625
|
urbanOrRural: "RURAL";
|
2753
3626
|
village?: string | null | undefined;
|
3627
|
+
} | {
|
3628
|
+
country: string;
|
3629
|
+
state: string;
|
3630
|
+
district2: string;
|
3631
|
+
cityOrTown?: string | null | undefined;
|
3632
|
+
addressLine1?: string | null | undefined;
|
3633
|
+
addressLine2?: string | null | undefined;
|
3634
|
+
addressLine3?: string | null | undefined;
|
3635
|
+
postcodeOrZip?: string | null | undefined;
|
2754
3636
|
} | {
|
2755
3637
|
type: string;
|
2756
3638
|
option: string;
|
@@ -2780,6 +3662,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
2780
3662
|
province: string;
|
2781
3663
|
urbanOrRural: "RURAL";
|
2782
3664
|
village?: string | null | undefined;
|
3665
|
+
} | {
|
3666
|
+
country: string;
|
3667
|
+
state: string;
|
3668
|
+
district2: string;
|
3669
|
+
cityOrTown?: string | null | undefined;
|
3670
|
+
addressLine1?: string | null | undefined;
|
3671
|
+
addressLine2?: string | null | undefined;
|
3672
|
+
addressLine3?: string | null | undefined;
|
3673
|
+
postcodeOrZip?: string | null | undefined;
|
2783
3674
|
} | {
|
2784
3675
|
type: string;
|
2785
3676
|
option: string;
|
@@ -2809,6 +3700,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
2809
3700
|
province: string;
|
2810
3701
|
urbanOrRural: "RURAL";
|
2811
3702
|
village?: string | null | undefined;
|
3703
|
+
} | {
|
3704
|
+
country: string;
|
3705
|
+
state: string;
|
3706
|
+
district2: string;
|
3707
|
+
cityOrTown?: string | null | undefined;
|
3708
|
+
addressLine1?: string | null | undefined;
|
3709
|
+
addressLine2?: string | null | undefined;
|
3710
|
+
addressLine3?: string | null | undefined;
|
3711
|
+
postcodeOrZip?: string | null | undefined;
|
2812
3712
|
} | {
|
2813
3713
|
type: string;
|
2814
3714
|
option: string;
|
@@ -2847,7 +3747,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2847
3747
|
filename: string;
|
2848
3748
|
originalFilename: string;
|
2849
3749
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2850
|
-
country: z.
|
3750
|
+
country: z.ZodLiteral<string>;
|
2851
3751
|
province: z.ZodString;
|
2852
3752
|
district: z.ZodString;
|
2853
3753
|
}, {
|
@@ -2878,7 +3778,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2878
3778
|
street?: string | null | undefined;
|
2879
3779
|
zipCode?: string | null | undefined;
|
2880
3780
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2881
|
-
country: z.
|
3781
|
+
country: z.ZodLiteral<string>;
|
2882
3782
|
province: z.ZodString;
|
2883
3783
|
district: z.ZodString;
|
2884
3784
|
}, {
|
@@ -2896,6 +3796,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
2896
3796
|
province: string;
|
2897
3797
|
urbanOrRural: "RURAL";
|
2898
3798
|
village?: string | null | undefined;
|
3799
|
+
}>, z.ZodObject<{
|
3800
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
3801
|
+
state: z.ZodString;
|
3802
|
+
district2: z.ZodString;
|
3803
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3804
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3805
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3806
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3807
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3808
|
+
}, "strip", z.ZodTypeAny, {
|
3809
|
+
country: string;
|
3810
|
+
state: string;
|
3811
|
+
district2: string;
|
3812
|
+
cityOrTown?: string | null | undefined;
|
3813
|
+
addressLine1?: string | null | undefined;
|
3814
|
+
addressLine2?: string | null | undefined;
|
3815
|
+
addressLine3?: string | null | undefined;
|
3816
|
+
postcodeOrZip?: string | null | undefined;
|
3817
|
+
}, {
|
3818
|
+
country: string;
|
3819
|
+
state: string;
|
3820
|
+
district2: string;
|
3821
|
+
cityOrTown?: string | null | undefined;
|
3822
|
+
addressLine1?: string | null | undefined;
|
3823
|
+
addressLine2?: string | null | undefined;
|
3824
|
+
addressLine3?: string | null | undefined;
|
3825
|
+
postcodeOrZip?: string | null | undefined;
|
2899
3826
|
}>]>>;
|
2900
3827
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
2901
3828
|
filename: z.ZodString;
|
@@ -2925,7 +3852,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2925
3852
|
filename: string;
|
2926
3853
|
originalFilename: string;
|
2927
3854
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
2928
|
-
country: z.
|
3855
|
+
country: z.ZodLiteral<string>;
|
2929
3856
|
province: z.ZodString;
|
2930
3857
|
district: z.ZodString;
|
2931
3858
|
}, {
|
@@ -2956,7 +3883,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
2956
3883
|
street?: string | null | undefined;
|
2957
3884
|
zipCode?: string | null | undefined;
|
2958
3885
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2959
|
-
country: z.
|
3886
|
+
country: z.ZodLiteral<string>;
|
2960
3887
|
province: z.ZodString;
|
2961
3888
|
district: z.ZodString;
|
2962
3889
|
}, {
|
@@ -2974,6 +3901,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
2974
3901
|
province: string;
|
2975
3902
|
urbanOrRural: "RURAL";
|
2976
3903
|
village?: string | null | undefined;
|
3904
|
+
}>, z.ZodObject<{
|
3905
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
3906
|
+
state: z.ZodString;
|
3907
|
+
district2: z.ZodString;
|
3908
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3909
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3910
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3911
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3912
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3913
|
+
}, "strip", z.ZodTypeAny, {
|
3914
|
+
country: string;
|
3915
|
+
state: string;
|
3916
|
+
district2: string;
|
3917
|
+
cityOrTown?: string | null | undefined;
|
3918
|
+
addressLine1?: string | null | undefined;
|
3919
|
+
addressLine2?: string | null | undefined;
|
3920
|
+
addressLine3?: string | null | undefined;
|
3921
|
+
postcodeOrZip?: string | null | undefined;
|
3922
|
+
}, {
|
3923
|
+
country: string;
|
3924
|
+
state: string;
|
3925
|
+
district2: string;
|
3926
|
+
cityOrTown?: string | null | undefined;
|
3927
|
+
addressLine1?: string | null | undefined;
|
3928
|
+
addressLine2?: string | null | undefined;
|
3929
|
+
addressLine3?: string | null | undefined;
|
3930
|
+
postcodeOrZip?: string | null | undefined;
|
2977
3931
|
}>]>>>;
|
2978
3932
|
createdAtLocation: z.ZodString;
|
2979
3933
|
}, {
|
@@ -3002,6 +3956,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
3002
3956
|
province: string;
|
3003
3957
|
urbanOrRural: "RURAL";
|
3004
3958
|
village?: string | null | undefined;
|
3959
|
+
} | {
|
3960
|
+
country: string;
|
3961
|
+
state: string;
|
3962
|
+
district2: string;
|
3963
|
+
cityOrTown?: string | null | undefined;
|
3964
|
+
addressLine1?: string | null | undefined;
|
3965
|
+
addressLine2?: string | null | undefined;
|
3966
|
+
addressLine3?: string | null | undefined;
|
3967
|
+
postcodeOrZip?: string | null | undefined;
|
3005
3968
|
} | {
|
3006
3969
|
type: string;
|
3007
3970
|
option: string;
|
@@ -3032,6 +3995,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
3032
3995
|
province: string;
|
3033
3996
|
urbanOrRural: "RURAL";
|
3034
3997
|
village?: string | null | undefined;
|
3998
|
+
} | {
|
3999
|
+
country: string;
|
4000
|
+
state: string;
|
4001
|
+
district2: string;
|
4002
|
+
cityOrTown?: string | null | undefined;
|
4003
|
+
addressLine1?: string | null | undefined;
|
4004
|
+
addressLine2?: string | null | undefined;
|
4005
|
+
addressLine3?: string | null | undefined;
|
4006
|
+
postcodeOrZip?: string | null | undefined;
|
3035
4007
|
} | {
|
3036
4008
|
type: string;
|
3037
4009
|
option: string;
|
@@ -3061,6 +4033,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
3061
4033
|
province: string;
|
3062
4034
|
urbanOrRural: "RURAL";
|
3063
4035
|
village?: string | null | undefined;
|
4036
|
+
} | {
|
4037
|
+
country: string;
|
4038
|
+
state: string;
|
4039
|
+
district2: string;
|
4040
|
+
cityOrTown?: string | null | undefined;
|
4041
|
+
addressLine1?: string | null | undefined;
|
4042
|
+
addressLine2?: string | null | undefined;
|
4043
|
+
addressLine3?: string | null | undefined;
|
4044
|
+
postcodeOrZip?: string | null | undefined;
|
3064
4045
|
} | {
|
3065
4046
|
type: string;
|
3066
4047
|
option: string;
|
@@ -3091,6 +4072,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
3091
4072
|
province: string;
|
3092
4073
|
urbanOrRural: "RURAL";
|
3093
4074
|
village?: string | null | undefined;
|
4075
|
+
} | {
|
4076
|
+
country: string;
|
4077
|
+
state: string;
|
4078
|
+
district2: string;
|
4079
|
+
cityOrTown?: string | null | undefined;
|
4080
|
+
addressLine1?: string | null | undefined;
|
4081
|
+
addressLine2?: string | null | undefined;
|
4082
|
+
addressLine3?: string | null | undefined;
|
4083
|
+
postcodeOrZip?: string | null | undefined;
|
3094
4084
|
} | {
|
3095
4085
|
type: string;
|
3096
4086
|
option: string;
|
@@ -3129,7 +4119,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3129
4119
|
filename: string;
|
3130
4120
|
originalFilename: string;
|
3131
4121
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3132
|
-
country: z.
|
4122
|
+
country: z.ZodLiteral<string>;
|
3133
4123
|
province: z.ZodString;
|
3134
4124
|
district: z.ZodString;
|
3135
4125
|
}, {
|
@@ -3160,7 +4150,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3160
4150
|
street?: string | null | undefined;
|
3161
4151
|
zipCode?: string | null | undefined;
|
3162
4152
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3163
|
-
country: z.
|
4153
|
+
country: z.ZodLiteral<string>;
|
3164
4154
|
province: z.ZodString;
|
3165
4155
|
district: z.ZodString;
|
3166
4156
|
}, {
|
@@ -3178,6 +4168,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
3178
4168
|
province: string;
|
3179
4169
|
urbanOrRural: "RURAL";
|
3180
4170
|
village?: string | null | undefined;
|
4171
|
+
}>, z.ZodObject<{
|
4172
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
4173
|
+
state: z.ZodString;
|
4174
|
+
district2: z.ZodString;
|
4175
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4176
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4177
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4178
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4179
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4180
|
+
}, "strip", z.ZodTypeAny, {
|
4181
|
+
country: string;
|
4182
|
+
state: string;
|
4183
|
+
district2: string;
|
4184
|
+
cityOrTown?: string | null | undefined;
|
4185
|
+
addressLine1?: string | null | undefined;
|
4186
|
+
addressLine2?: string | null | undefined;
|
4187
|
+
addressLine3?: string | null | undefined;
|
4188
|
+
postcodeOrZip?: string | null | undefined;
|
4189
|
+
}, {
|
4190
|
+
country: string;
|
4191
|
+
state: string;
|
4192
|
+
district2: string;
|
4193
|
+
cityOrTown?: string | null | undefined;
|
4194
|
+
addressLine1?: string | null | undefined;
|
4195
|
+
addressLine2?: string | null | undefined;
|
4196
|
+
addressLine3?: string | null | undefined;
|
4197
|
+
postcodeOrZip?: string | null | undefined;
|
3181
4198
|
}>]>>;
|
3182
4199
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3183
4200
|
filename: z.ZodString;
|
@@ -3207,7 +4224,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3207
4224
|
filename: string;
|
3208
4225
|
originalFilename: string;
|
3209
4226
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3210
|
-
country: z.
|
4227
|
+
country: z.ZodLiteral<string>;
|
3211
4228
|
province: z.ZodString;
|
3212
4229
|
district: z.ZodString;
|
3213
4230
|
}, {
|
@@ -3238,7 +4255,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3238
4255
|
street?: string | null | undefined;
|
3239
4256
|
zipCode?: string | null | undefined;
|
3240
4257
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3241
|
-
country: z.
|
4258
|
+
country: z.ZodLiteral<string>;
|
3242
4259
|
province: z.ZodString;
|
3243
4260
|
district: z.ZodString;
|
3244
4261
|
}, {
|
@@ -3256,6 +4273,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
3256
4273
|
province: string;
|
3257
4274
|
urbanOrRural: "RURAL";
|
3258
4275
|
village?: string | null | undefined;
|
4276
|
+
}>, z.ZodObject<{
|
4277
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
4278
|
+
state: z.ZodString;
|
4279
|
+
district2: z.ZodString;
|
4280
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4281
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4282
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4283
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4284
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4285
|
+
}, "strip", z.ZodTypeAny, {
|
4286
|
+
country: string;
|
4287
|
+
state: string;
|
4288
|
+
district2: string;
|
4289
|
+
cityOrTown?: string | null | undefined;
|
4290
|
+
addressLine1?: string | null | undefined;
|
4291
|
+
addressLine2?: string | null | undefined;
|
4292
|
+
addressLine3?: string | null | undefined;
|
4293
|
+
postcodeOrZip?: string | null | undefined;
|
4294
|
+
}, {
|
4295
|
+
country: string;
|
4296
|
+
state: string;
|
4297
|
+
district2: string;
|
4298
|
+
cityOrTown?: string | null | undefined;
|
4299
|
+
addressLine1?: string | null | undefined;
|
4300
|
+
addressLine2?: string | null | undefined;
|
4301
|
+
addressLine3?: string | null | undefined;
|
4302
|
+
postcodeOrZip?: string | null | undefined;
|
3259
4303
|
}>]>>>;
|
3260
4304
|
createdAtLocation: z.ZodString;
|
3261
4305
|
}, {
|
@@ -3284,6 +4328,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
3284
4328
|
province: string;
|
3285
4329
|
urbanOrRural: "RURAL";
|
3286
4330
|
village?: string | null | undefined;
|
4331
|
+
} | {
|
4332
|
+
country: string;
|
4333
|
+
state: string;
|
4334
|
+
district2: string;
|
4335
|
+
cityOrTown?: string | null | undefined;
|
4336
|
+
addressLine1?: string | null | undefined;
|
4337
|
+
addressLine2?: string | null | undefined;
|
4338
|
+
addressLine3?: string | null | undefined;
|
4339
|
+
postcodeOrZip?: string | null | undefined;
|
3287
4340
|
} | {
|
3288
4341
|
type: string;
|
3289
4342
|
option: string;
|
@@ -3314,6 +4367,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
3314
4367
|
province: string;
|
3315
4368
|
urbanOrRural: "RURAL";
|
3316
4369
|
village?: string | null | undefined;
|
4370
|
+
} | {
|
4371
|
+
country: string;
|
4372
|
+
state: string;
|
4373
|
+
district2: string;
|
4374
|
+
cityOrTown?: string | null | undefined;
|
4375
|
+
addressLine1?: string | null | undefined;
|
4376
|
+
addressLine2?: string | null | undefined;
|
4377
|
+
addressLine3?: string | null | undefined;
|
4378
|
+
postcodeOrZip?: string | null | undefined;
|
3317
4379
|
} | {
|
3318
4380
|
type: string;
|
3319
4381
|
option: string;
|
@@ -3343,6 +4405,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
3343
4405
|
province: string;
|
3344
4406
|
urbanOrRural: "RURAL";
|
3345
4407
|
village?: string | null | undefined;
|
4408
|
+
} | {
|
4409
|
+
country: string;
|
4410
|
+
state: string;
|
4411
|
+
district2: string;
|
4412
|
+
cityOrTown?: string | null | undefined;
|
4413
|
+
addressLine1?: string | null | undefined;
|
4414
|
+
addressLine2?: string | null | undefined;
|
4415
|
+
addressLine3?: string | null | undefined;
|
4416
|
+
postcodeOrZip?: string | null | undefined;
|
3346
4417
|
} | {
|
3347
4418
|
type: string;
|
3348
4419
|
option: string;
|
@@ -3373,6 +4444,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
3373
4444
|
province: string;
|
3374
4445
|
urbanOrRural: "RURAL";
|
3375
4446
|
village?: string | null | undefined;
|
4447
|
+
} | {
|
4448
|
+
country: string;
|
4449
|
+
state: string;
|
4450
|
+
district2: string;
|
4451
|
+
cityOrTown?: string | null | undefined;
|
4452
|
+
addressLine1?: string | null | undefined;
|
4453
|
+
addressLine2?: string | null | undefined;
|
4454
|
+
addressLine3?: string | null | undefined;
|
4455
|
+
postcodeOrZip?: string | null | undefined;
|
3376
4456
|
} | {
|
3377
4457
|
type: string;
|
3378
4458
|
option: string;
|
@@ -3411,7 +4491,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3411
4491
|
filename: string;
|
3412
4492
|
originalFilename: string;
|
3413
4493
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3414
|
-
country: z.
|
4494
|
+
country: z.ZodLiteral<string>;
|
3415
4495
|
province: z.ZodString;
|
3416
4496
|
district: z.ZodString;
|
3417
4497
|
}, {
|
@@ -3442,7 +4522,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3442
4522
|
street?: string | null | undefined;
|
3443
4523
|
zipCode?: string | null | undefined;
|
3444
4524
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3445
|
-
country: z.
|
4525
|
+
country: z.ZodLiteral<string>;
|
3446
4526
|
province: z.ZodString;
|
3447
4527
|
district: z.ZodString;
|
3448
4528
|
}, {
|
@@ -3460,6 +4540,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
3460
4540
|
province: string;
|
3461
4541
|
urbanOrRural: "RURAL";
|
3462
4542
|
village?: string | null | undefined;
|
4543
|
+
}>, z.ZodObject<{
|
4544
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
4545
|
+
state: z.ZodString;
|
4546
|
+
district2: z.ZodString;
|
4547
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4548
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4549
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4550
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4551
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4552
|
+
}, "strip", z.ZodTypeAny, {
|
4553
|
+
country: string;
|
4554
|
+
state: string;
|
4555
|
+
district2: string;
|
4556
|
+
cityOrTown?: string | null | undefined;
|
4557
|
+
addressLine1?: string | null | undefined;
|
4558
|
+
addressLine2?: string | null | undefined;
|
4559
|
+
addressLine3?: string | null | undefined;
|
4560
|
+
postcodeOrZip?: string | null | undefined;
|
4561
|
+
}, {
|
4562
|
+
country: string;
|
4563
|
+
state: string;
|
4564
|
+
district2: string;
|
4565
|
+
cityOrTown?: string | null | undefined;
|
4566
|
+
addressLine1?: string | null | undefined;
|
4567
|
+
addressLine2?: string | null | undefined;
|
4568
|
+
addressLine3?: string | null | undefined;
|
4569
|
+
postcodeOrZip?: string | null | undefined;
|
3463
4570
|
}>]>>;
|
3464
4571
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3465
4572
|
filename: z.ZodString;
|
@@ -3489,7 +4596,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3489
4596
|
filename: string;
|
3490
4597
|
originalFilename: string;
|
3491
4598
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3492
|
-
country: z.
|
4599
|
+
country: z.ZodLiteral<string>;
|
3493
4600
|
province: z.ZodString;
|
3494
4601
|
district: z.ZodString;
|
3495
4602
|
}, {
|
@@ -3520,7 +4627,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3520
4627
|
street?: string | null | undefined;
|
3521
4628
|
zipCode?: string | null | undefined;
|
3522
4629
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3523
|
-
country: z.
|
4630
|
+
country: z.ZodLiteral<string>;
|
3524
4631
|
province: z.ZodString;
|
3525
4632
|
district: z.ZodString;
|
3526
4633
|
}, {
|
@@ -3538,6 +4645,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
3538
4645
|
province: string;
|
3539
4646
|
urbanOrRural: "RURAL";
|
3540
4647
|
village?: string | null | undefined;
|
4648
|
+
}>, z.ZodObject<{
|
4649
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
4650
|
+
state: z.ZodString;
|
4651
|
+
district2: z.ZodString;
|
4652
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4653
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4654
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4655
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4656
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4657
|
+
}, "strip", z.ZodTypeAny, {
|
4658
|
+
country: string;
|
4659
|
+
state: string;
|
4660
|
+
district2: string;
|
4661
|
+
cityOrTown?: string | null | undefined;
|
4662
|
+
addressLine1?: string | null | undefined;
|
4663
|
+
addressLine2?: string | null | undefined;
|
4664
|
+
addressLine3?: string | null | undefined;
|
4665
|
+
postcodeOrZip?: string | null | undefined;
|
4666
|
+
}, {
|
4667
|
+
country: string;
|
4668
|
+
state: string;
|
4669
|
+
district2: string;
|
4670
|
+
cityOrTown?: string | null | undefined;
|
4671
|
+
addressLine1?: string | null | undefined;
|
4672
|
+
addressLine2?: string | null | undefined;
|
4673
|
+
addressLine3?: string | null | undefined;
|
4674
|
+
postcodeOrZip?: string | null | undefined;
|
3541
4675
|
}>]>>>;
|
3542
4676
|
createdAtLocation: z.ZodString;
|
3543
4677
|
}, {
|
@@ -3565,6 +4699,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
3565
4699
|
province: string;
|
3566
4700
|
urbanOrRural: "RURAL";
|
3567
4701
|
village?: string | null | undefined;
|
4702
|
+
} | {
|
4703
|
+
country: string;
|
4704
|
+
state: string;
|
4705
|
+
district2: string;
|
4706
|
+
cityOrTown?: string | null | undefined;
|
4707
|
+
addressLine1?: string | null | undefined;
|
4708
|
+
addressLine2?: string | null | undefined;
|
4709
|
+
addressLine3?: string | null | undefined;
|
4710
|
+
postcodeOrZip?: string | null | undefined;
|
3568
4711
|
} | {
|
3569
4712
|
type: string;
|
3570
4713
|
option: string;
|
@@ -3594,6 +4737,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
3594
4737
|
province: string;
|
3595
4738
|
urbanOrRural: "RURAL";
|
3596
4739
|
village?: string | null | undefined;
|
4740
|
+
} | {
|
4741
|
+
country: string;
|
4742
|
+
state: string;
|
4743
|
+
district2: string;
|
4744
|
+
cityOrTown?: string | null | undefined;
|
4745
|
+
addressLine1?: string | null | undefined;
|
4746
|
+
addressLine2?: string | null | undefined;
|
4747
|
+
addressLine3?: string | null | undefined;
|
4748
|
+
postcodeOrZip?: string | null | undefined;
|
3597
4749
|
} | {
|
3598
4750
|
type: string;
|
3599
4751
|
option: string;
|
@@ -3623,6 +4775,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
3623
4775
|
province: string;
|
3624
4776
|
urbanOrRural: "RURAL";
|
3625
4777
|
village?: string | null | undefined;
|
4778
|
+
} | {
|
4779
|
+
country: string;
|
4780
|
+
state: string;
|
4781
|
+
district2: string;
|
4782
|
+
cityOrTown?: string | null | undefined;
|
4783
|
+
addressLine1?: string | null | undefined;
|
4784
|
+
addressLine2?: string | null | undefined;
|
4785
|
+
addressLine3?: string | null | undefined;
|
4786
|
+
postcodeOrZip?: string | null | undefined;
|
3626
4787
|
} | {
|
3627
4788
|
type: string;
|
3628
4789
|
option: string;
|
@@ -3652,6 +4813,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
3652
4813
|
province: string;
|
3653
4814
|
urbanOrRural: "RURAL";
|
3654
4815
|
village?: string | null | undefined;
|
4816
|
+
} | {
|
4817
|
+
country: string;
|
4818
|
+
state: string;
|
4819
|
+
district2: string;
|
4820
|
+
cityOrTown?: string | null | undefined;
|
4821
|
+
addressLine1?: string | null | undefined;
|
4822
|
+
addressLine2?: string | null | undefined;
|
4823
|
+
addressLine3?: string | null | undefined;
|
4824
|
+
postcodeOrZip?: string | null | undefined;
|
3655
4825
|
} | {
|
3656
4826
|
type: string;
|
3657
4827
|
option: string;
|
@@ -3690,7 +4860,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3690
4860
|
filename: string;
|
3691
4861
|
originalFilename: string;
|
3692
4862
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3693
|
-
country: z.
|
4863
|
+
country: z.ZodLiteral<string>;
|
3694
4864
|
province: z.ZodString;
|
3695
4865
|
district: z.ZodString;
|
3696
4866
|
}, {
|
@@ -3721,7 +4891,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3721
4891
|
street?: string | null | undefined;
|
3722
4892
|
zipCode?: string | null | undefined;
|
3723
4893
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3724
|
-
country: z.
|
4894
|
+
country: z.ZodLiteral<string>;
|
3725
4895
|
province: z.ZodString;
|
3726
4896
|
district: z.ZodString;
|
3727
4897
|
}, {
|
@@ -3739,6 +4909,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
3739
4909
|
province: string;
|
3740
4910
|
urbanOrRural: "RURAL";
|
3741
4911
|
village?: string | null | undefined;
|
4912
|
+
}>, z.ZodObject<{
|
4913
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
4914
|
+
state: z.ZodString;
|
4915
|
+
district2: z.ZodString;
|
4916
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4917
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4918
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4919
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4920
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4921
|
+
}, "strip", z.ZodTypeAny, {
|
4922
|
+
country: string;
|
4923
|
+
state: string;
|
4924
|
+
district2: string;
|
4925
|
+
cityOrTown?: string | null | undefined;
|
4926
|
+
addressLine1?: string | null | undefined;
|
4927
|
+
addressLine2?: string | null | undefined;
|
4928
|
+
addressLine3?: string | null | undefined;
|
4929
|
+
postcodeOrZip?: string | null | undefined;
|
4930
|
+
}, {
|
4931
|
+
country: string;
|
4932
|
+
state: string;
|
4933
|
+
district2: string;
|
4934
|
+
cityOrTown?: string | null | undefined;
|
4935
|
+
addressLine1?: string | null | undefined;
|
4936
|
+
addressLine2?: string | null | undefined;
|
4937
|
+
addressLine3?: string | null | undefined;
|
4938
|
+
postcodeOrZip?: string | null | undefined;
|
3742
4939
|
}>]>>;
|
3743
4940
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
3744
4941
|
filename: z.ZodString;
|
@@ -3768,7 +4965,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3768
4965
|
filename: string;
|
3769
4966
|
originalFilename: string;
|
3770
4967
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3771
|
-
country: z.
|
4968
|
+
country: z.ZodLiteral<string>;
|
3772
4969
|
province: z.ZodString;
|
3773
4970
|
district: z.ZodString;
|
3774
4971
|
}, {
|
@@ -3799,7 +4996,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3799
4996
|
street?: string | null | undefined;
|
3800
4997
|
zipCode?: string | null | undefined;
|
3801
4998
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3802
|
-
country: z.
|
4999
|
+
country: z.ZodLiteral<string>;
|
3803
5000
|
province: z.ZodString;
|
3804
5001
|
district: z.ZodString;
|
3805
5002
|
}, {
|
@@ -3817,6 +5014,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
3817
5014
|
province: string;
|
3818
5015
|
urbanOrRural: "RURAL";
|
3819
5016
|
village?: string | null | undefined;
|
5017
|
+
}>, z.ZodObject<{
|
5018
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
5019
|
+
state: z.ZodString;
|
5020
|
+
district2: z.ZodString;
|
5021
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5022
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5023
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5024
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5025
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5026
|
+
}, "strip", z.ZodTypeAny, {
|
5027
|
+
country: string;
|
5028
|
+
state: string;
|
5029
|
+
district2: string;
|
5030
|
+
cityOrTown?: string | null | undefined;
|
5031
|
+
addressLine1?: string | null | undefined;
|
5032
|
+
addressLine2?: string | null | undefined;
|
5033
|
+
addressLine3?: string | null | undefined;
|
5034
|
+
postcodeOrZip?: string | null | undefined;
|
5035
|
+
}, {
|
5036
|
+
country: string;
|
5037
|
+
state: string;
|
5038
|
+
district2: string;
|
5039
|
+
cityOrTown?: string | null | undefined;
|
5040
|
+
addressLine1?: string | null | undefined;
|
5041
|
+
addressLine2?: string | null | undefined;
|
5042
|
+
addressLine3?: string | null | undefined;
|
5043
|
+
postcodeOrZip?: string | null | undefined;
|
3820
5044
|
}>]>>>;
|
3821
5045
|
createdAtLocation: z.ZodString;
|
3822
5046
|
}, {
|
@@ -3844,6 +5068,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
3844
5068
|
province: string;
|
3845
5069
|
urbanOrRural: "RURAL";
|
3846
5070
|
village?: string | null | undefined;
|
5071
|
+
} | {
|
5072
|
+
country: string;
|
5073
|
+
state: string;
|
5074
|
+
district2: string;
|
5075
|
+
cityOrTown?: string | null | undefined;
|
5076
|
+
addressLine1?: string | null | undefined;
|
5077
|
+
addressLine2?: string | null | undefined;
|
5078
|
+
addressLine3?: string | null | undefined;
|
5079
|
+
postcodeOrZip?: string | null | undefined;
|
3847
5080
|
} | {
|
3848
5081
|
type: string;
|
3849
5082
|
option: string;
|
@@ -3873,6 +5106,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
3873
5106
|
province: string;
|
3874
5107
|
urbanOrRural: "RURAL";
|
3875
5108
|
village?: string | null | undefined;
|
5109
|
+
} | {
|
5110
|
+
country: string;
|
5111
|
+
state: string;
|
5112
|
+
district2: string;
|
5113
|
+
cityOrTown?: string | null | undefined;
|
5114
|
+
addressLine1?: string | null | undefined;
|
5115
|
+
addressLine2?: string | null | undefined;
|
5116
|
+
addressLine3?: string | null | undefined;
|
5117
|
+
postcodeOrZip?: string | null | undefined;
|
3876
5118
|
} | {
|
3877
5119
|
type: string;
|
3878
5120
|
option: string;
|
@@ -3902,6 +5144,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
3902
5144
|
province: string;
|
3903
5145
|
urbanOrRural: "RURAL";
|
3904
5146
|
village?: string | null | undefined;
|
5147
|
+
} | {
|
5148
|
+
country: string;
|
5149
|
+
state: string;
|
5150
|
+
district2: string;
|
5151
|
+
cityOrTown?: string | null | undefined;
|
5152
|
+
addressLine1?: string | null | undefined;
|
5153
|
+
addressLine2?: string | null | undefined;
|
5154
|
+
addressLine3?: string | null | undefined;
|
5155
|
+
postcodeOrZip?: string | null | undefined;
|
3905
5156
|
} | {
|
3906
5157
|
type: string;
|
3907
5158
|
option: string;
|
@@ -3931,6 +5182,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
3931
5182
|
province: string;
|
3932
5183
|
urbanOrRural: "RURAL";
|
3933
5184
|
village?: string | null | undefined;
|
5185
|
+
} | {
|
5186
|
+
country: string;
|
5187
|
+
state: string;
|
5188
|
+
district2: string;
|
5189
|
+
cityOrTown?: string | null | undefined;
|
5190
|
+
addressLine1?: string | null | undefined;
|
5191
|
+
addressLine2?: string | null | undefined;
|
5192
|
+
addressLine3?: string | null | undefined;
|
5193
|
+
postcodeOrZip?: string | null | undefined;
|
3934
5194
|
} | {
|
3935
5195
|
type: string;
|
3936
5196
|
option: string;
|
@@ -3969,7 +5229,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
3969
5229
|
filename: string;
|
3970
5230
|
originalFilename: string;
|
3971
5231
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
3972
|
-
country: z.
|
5232
|
+
country: z.ZodLiteral<string>;
|
3973
5233
|
province: z.ZodString;
|
3974
5234
|
district: z.ZodString;
|
3975
5235
|
}, {
|
@@ -4000,7 +5260,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4000
5260
|
street?: string | null | undefined;
|
4001
5261
|
zipCode?: string | null | undefined;
|
4002
5262
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4003
|
-
country: z.
|
5263
|
+
country: z.ZodLiteral<string>;
|
4004
5264
|
province: z.ZodString;
|
4005
5265
|
district: z.ZodString;
|
4006
5266
|
}, {
|
@@ -4018,6 +5278,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
4018
5278
|
province: string;
|
4019
5279
|
urbanOrRural: "RURAL";
|
4020
5280
|
village?: string | null | undefined;
|
5281
|
+
}>, z.ZodObject<{
|
5282
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
5283
|
+
state: z.ZodString;
|
5284
|
+
district2: z.ZodString;
|
5285
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5286
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5287
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5288
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5289
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5290
|
+
}, "strip", z.ZodTypeAny, {
|
5291
|
+
country: string;
|
5292
|
+
state: string;
|
5293
|
+
district2: string;
|
5294
|
+
cityOrTown?: string | null | undefined;
|
5295
|
+
addressLine1?: string | null | undefined;
|
5296
|
+
addressLine2?: string | null | undefined;
|
5297
|
+
addressLine3?: string | null | undefined;
|
5298
|
+
postcodeOrZip?: string | null | undefined;
|
5299
|
+
}, {
|
5300
|
+
country: string;
|
5301
|
+
state: string;
|
5302
|
+
district2: string;
|
5303
|
+
cityOrTown?: string | null | undefined;
|
5304
|
+
addressLine1?: string | null | undefined;
|
5305
|
+
addressLine2?: string | null | undefined;
|
5306
|
+
addressLine3?: string | null | undefined;
|
5307
|
+
postcodeOrZip?: string | null | undefined;
|
4021
5308
|
}>]>>;
|
4022
5309
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
4023
5310
|
filename: z.ZodString;
|
@@ -4047,7 +5334,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4047
5334
|
filename: string;
|
4048
5335
|
originalFilename: string;
|
4049
5336
|
}>, "many">, z.ZodObject<z.objectUtil.extendShape<{
|
4050
|
-
country: z.
|
5337
|
+
country: z.ZodLiteral<string>;
|
4051
5338
|
province: z.ZodString;
|
4052
5339
|
district: z.ZodString;
|
4053
5340
|
}, {
|
@@ -4078,7 +5365,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4078
5365
|
street?: string | null | undefined;
|
4079
5366
|
zipCode?: string | null | undefined;
|
4080
5367
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4081
|
-
country: z.
|
5368
|
+
country: z.ZodLiteral<string>;
|
4082
5369
|
province: z.ZodString;
|
4083
5370
|
district: z.ZodString;
|
4084
5371
|
}, {
|
@@ -4096,6 +5383,33 @@ export declare const EventDocument: z.ZodObject<{
|
|
4096
5383
|
province: string;
|
4097
5384
|
urbanOrRural: "RURAL";
|
4098
5385
|
village?: string | null | undefined;
|
5386
|
+
}>, z.ZodObject<{
|
5387
|
+
country: z.ZodEffects<z.ZodString, string, string>;
|
5388
|
+
state: z.ZodString;
|
5389
|
+
district2: z.ZodString;
|
5390
|
+
cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5391
|
+
addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5392
|
+
addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5393
|
+
addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5394
|
+
postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5395
|
+
}, "strip", z.ZodTypeAny, {
|
5396
|
+
country: string;
|
5397
|
+
state: string;
|
5398
|
+
district2: string;
|
5399
|
+
cityOrTown?: string | null | undefined;
|
5400
|
+
addressLine1?: string | null | undefined;
|
5401
|
+
addressLine2?: string | null | undefined;
|
5402
|
+
addressLine3?: string | null | undefined;
|
5403
|
+
postcodeOrZip?: string | null | undefined;
|
5404
|
+
}, {
|
5405
|
+
country: string;
|
5406
|
+
state: string;
|
5407
|
+
district2: string;
|
5408
|
+
cityOrTown?: string | null | undefined;
|
5409
|
+
addressLine1?: string | null | undefined;
|
5410
|
+
addressLine2?: string | null | undefined;
|
5411
|
+
addressLine3?: string | null | undefined;
|
5412
|
+
postcodeOrZip?: string | null | undefined;
|
4099
5413
|
}>]>>>;
|
4100
5414
|
createdAtLocation: z.ZodString;
|
4101
5415
|
}, {
|
@@ -4123,6 +5437,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4123
5437
|
province: string;
|
4124
5438
|
urbanOrRural: "RURAL";
|
4125
5439
|
village?: string | null | undefined;
|
5440
|
+
} | {
|
5441
|
+
country: string;
|
5442
|
+
state: string;
|
5443
|
+
district2: string;
|
5444
|
+
cityOrTown?: string | null | undefined;
|
5445
|
+
addressLine1?: string | null | undefined;
|
5446
|
+
addressLine2?: string | null | undefined;
|
5447
|
+
addressLine3?: string | null | undefined;
|
5448
|
+
postcodeOrZip?: string | null | undefined;
|
4126
5449
|
} | {
|
4127
5450
|
type: string;
|
4128
5451
|
option: string;
|
@@ -4152,6 +5475,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4152
5475
|
province: string;
|
4153
5476
|
urbanOrRural: "RURAL";
|
4154
5477
|
village?: string | null | undefined;
|
5478
|
+
} | {
|
5479
|
+
country: string;
|
5480
|
+
state: string;
|
5481
|
+
district2: string;
|
5482
|
+
cityOrTown?: string | null | undefined;
|
5483
|
+
addressLine1?: string | null | undefined;
|
5484
|
+
addressLine2?: string | null | undefined;
|
5485
|
+
addressLine3?: string | null | undefined;
|
5486
|
+
postcodeOrZip?: string | null | undefined;
|
4155
5487
|
} | {
|
4156
5488
|
type: string;
|
4157
5489
|
option: string;
|
@@ -4181,6 +5513,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4181
5513
|
province: string;
|
4182
5514
|
urbanOrRural: "RURAL";
|
4183
5515
|
village?: string | null | undefined;
|
5516
|
+
} | {
|
5517
|
+
country: string;
|
5518
|
+
state: string;
|
5519
|
+
district2: string;
|
5520
|
+
cityOrTown?: string | null | undefined;
|
5521
|
+
addressLine1?: string | null | undefined;
|
5522
|
+
addressLine2?: string | null | undefined;
|
5523
|
+
addressLine3?: string | null | undefined;
|
5524
|
+
postcodeOrZip?: string | null | undefined;
|
4184
5525
|
} | {
|
4185
5526
|
type: string;
|
4186
5527
|
option: string;
|
@@ -4210,6 +5551,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4210
5551
|
province: string;
|
4211
5552
|
urbanOrRural: "RURAL";
|
4212
5553
|
village?: string | null | undefined;
|
5554
|
+
} | {
|
5555
|
+
country: string;
|
5556
|
+
state: string;
|
5557
|
+
district2: string;
|
5558
|
+
cityOrTown?: string | null | undefined;
|
5559
|
+
addressLine1?: string | null | undefined;
|
5560
|
+
addressLine2?: string | null | undefined;
|
5561
|
+
addressLine3?: string | null | undefined;
|
5562
|
+
postcodeOrZip?: string | null | undefined;
|
4213
5563
|
} | {
|
4214
5564
|
type: string;
|
4215
5565
|
option: string;
|
@@ -4247,6 +5597,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4247
5597
|
province: string;
|
4248
5598
|
urbanOrRural: "RURAL";
|
4249
5599
|
village?: string | null | undefined;
|
5600
|
+
} | {
|
5601
|
+
country: string;
|
5602
|
+
state: string;
|
5603
|
+
district2: string;
|
5604
|
+
cityOrTown?: string | null | undefined;
|
5605
|
+
addressLine1?: string | null | undefined;
|
5606
|
+
addressLine2?: string | null | undefined;
|
5607
|
+
addressLine3?: string | null | undefined;
|
5608
|
+
postcodeOrZip?: string | null | undefined;
|
4250
5609
|
} | {
|
4251
5610
|
type: string;
|
4252
5611
|
option: string;
|
@@ -4277,6 +5636,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4277
5636
|
province: string;
|
4278
5637
|
urbanOrRural: "RURAL";
|
4279
5638
|
village?: string | null | undefined;
|
5639
|
+
} | {
|
5640
|
+
country: string;
|
5641
|
+
state: string;
|
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;
|
4280
5648
|
} | {
|
4281
5649
|
type: string;
|
4282
5650
|
option: string;
|
@@ -4306,6 +5674,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4306
5674
|
province: string;
|
4307
5675
|
urbanOrRural: "RURAL";
|
4308
5676
|
village?: string | null | undefined;
|
5677
|
+
} | {
|
5678
|
+
country: string;
|
5679
|
+
state: string;
|
5680
|
+
district2: string;
|
5681
|
+
cityOrTown?: string | null | undefined;
|
5682
|
+
addressLine1?: string | null | undefined;
|
5683
|
+
addressLine2?: string | null | undefined;
|
5684
|
+
addressLine3?: string | null | undefined;
|
5685
|
+
postcodeOrZip?: string | null | undefined;
|
4309
5686
|
} | {
|
4310
5687
|
type: string;
|
4311
5688
|
option: string;
|
@@ -4335,6 +5712,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4335
5712
|
province: string;
|
4336
5713
|
urbanOrRural: "RURAL";
|
4337
5714
|
village?: string | null | undefined;
|
5715
|
+
} | {
|
5716
|
+
country: string;
|
5717
|
+
state: string;
|
5718
|
+
district2: string;
|
5719
|
+
cityOrTown?: string | null | undefined;
|
5720
|
+
addressLine1?: string | null | undefined;
|
5721
|
+
addressLine2?: string | null | undefined;
|
5722
|
+
addressLine3?: string | null | undefined;
|
5723
|
+
postcodeOrZip?: string | null | undefined;
|
4338
5724
|
} | {
|
4339
5725
|
type: string;
|
4340
5726
|
option: string;
|
@@ -4364,6 +5750,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4364
5750
|
province: string;
|
4365
5751
|
urbanOrRural: "RURAL";
|
4366
5752
|
village?: string | null | undefined;
|
5753
|
+
} | {
|
5754
|
+
country: string;
|
5755
|
+
state: string;
|
5756
|
+
district2: string;
|
5757
|
+
cityOrTown?: string | null | undefined;
|
5758
|
+
addressLine1?: string | null | undefined;
|
5759
|
+
addressLine2?: string | null | undefined;
|
5760
|
+
addressLine3?: string | null | undefined;
|
5761
|
+
postcodeOrZip?: string | null | undefined;
|
4367
5762
|
} | {
|
4368
5763
|
type: string;
|
4369
5764
|
option: string;
|
@@ -4397,6 +5792,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4397
5792
|
province: string;
|
4398
5793
|
urbanOrRural: "RURAL";
|
4399
5794
|
village?: string | null | undefined;
|
5795
|
+
} | {
|
5796
|
+
country: string;
|
5797
|
+
state: string;
|
5798
|
+
district2: string;
|
5799
|
+
cityOrTown?: string | null | undefined;
|
5800
|
+
addressLine1?: string | null | undefined;
|
5801
|
+
addressLine2?: string | null | undefined;
|
5802
|
+
addressLine3?: string | null | undefined;
|
5803
|
+
postcodeOrZip?: string | null | undefined;
|
4400
5804
|
} | {
|
4401
5805
|
type: string;
|
4402
5806
|
option: string;
|
@@ -4426,6 +5830,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4426
5830
|
province: string;
|
4427
5831
|
urbanOrRural: "RURAL";
|
4428
5832
|
village?: string | null | undefined;
|
5833
|
+
} | {
|
5834
|
+
country: string;
|
5835
|
+
state: string;
|
5836
|
+
district2: string;
|
5837
|
+
cityOrTown?: string | null | undefined;
|
5838
|
+
addressLine1?: string | null | undefined;
|
5839
|
+
addressLine2?: string | null | undefined;
|
5840
|
+
addressLine3?: string | null | undefined;
|
5841
|
+
postcodeOrZip?: string | null | undefined;
|
4429
5842
|
} | {
|
4430
5843
|
type: string;
|
4431
5844
|
option: string;
|
@@ -4455,6 +5868,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4455
5868
|
province: string;
|
4456
5869
|
urbanOrRural: "RURAL";
|
4457
5870
|
village?: string | null | undefined;
|
5871
|
+
} | {
|
5872
|
+
country: string;
|
5873
|
+
state: string;
|
5874
|
+
district2: string;
|
5875
|
+
cityOrTown?: string | null | undefined;
|
5876
|
+
addressLine1?: string | null | undefined;
|
5877
|
+
addressLine2?: string | null | undefined;
|
5878
|
+
addressLine3?: string | null | undefined;
|
5879
|
+
postcodeOrZip?: string | null | undefined;
|
4458
5880
|
} | {
|
4459
5881
|
type: string;
|
4460
5882
|
option: string;
|
@@ -4484,6 +5906,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4484
5906
|
province: string;
|
4485
5907
|
urbanOrRural: "RURAL";
|
4486
5908
|
village?: string | null | undefined;
|
5909
|
+
} | {
|
5910
|
+
country: string;
|
5911
|
+
state: string;
|
5912
|
+
district2: string;
|
5913
|
+
cityOrTown?: string | null | undefined;
|
5914
|
+
addressLine1?: string | null | undefined;
|
5915
|
+
addressLine2?: string | null | undefined;
|
5916
|
+
addressLine3?: string | null | undefined;
|
5917
|
+
postcodeOrZip?: string | null | undefined;
|
4487
5918
|
} | {
|
4488
5919
|
type: string;
|
4489
5920
|
option: string;
|
@@ -4513,6 +5944,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4513
5944
|
province: string;
|
4514
5945
|
urbanOrRural: "RURAL";
|
4515
5946
|
village?: string | null | undefined;
|
5947
|
+
} | {
|
5948
|
+
country: string;
|
5949
|
+
state: string;
|
5950
|
+
district2: string;
|
5951
|
+
cityOrTown?: string | null | undefined;
|
5952
|
+
addressLine1?: string | null | undefined;
|
5953
|
+
addressLine2?: string | null | undefined;
|
5954
|
+
addressLine3?: string | null | undefined;
|
5955
|
+
postcodeOrZip?: string | null | undefined;
|
4516
5956
|
} | {
|
4517
5957
|
type: string;
|
4518
5958
|
option: string;
|
@@ -4542,6 +5982,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4542
5982
|
province: string;
|
4543
5983
|
urbanOrRural: "RURAL";
|
4544
5984
|
village?: string | null | undefined;
|
5985
|
+
} | {
|
5986
|
+
country: string;
|
5987
|
+
state: string;
|
5988
|
+
district2: string;
|
5989
|
+
cityOrTown?: string | null | undefined;
|
5990
|
+
addressLine1?: string | null | undefined;
|
5991
|
+
addressLine2?: string | null | undefined;
|
5992
|
+
addressLine3?: string | null | undefined;
|
5993
|
+
postcodeOrZip?: string | null | undefined;
|
4545
5994
|
} | {
|
4546
5995
|
type: string;
|
4547
5996
|
option: string;
|
@@ -4571,6 +6020,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4571
6020
|
province: string;
|
4572
6021
|
urbanOrRural: "RURAL";
|
4573
6022
|
village?: string | null | undefined;
|
6023
|
+
} | {
|
6024
|
+
country: string;
|
6025
|
+
state: string;
|
6026
|
+
district2: string;
|
6027
|
+
cityOrTown?: string | null | undefined;
|
6028
|
+
addressLine1?: string | null | undefined;
|
6029
|
+
addressLine2?: string | null | undefined;
|
6030
|
+
addressLine3?: string | null | undefined;
|
6031
|
+
postcodeOrZip?: string | null | undefined;
|
4574
6032
|
} | {
|
4575
6033
|
type: string;
|
4576
6034
|
option: string;
|
@@ -4600,6 +6058,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4600
6058
|
province: string;
|
4601
6059
|
urbanOrRural: "RURAL";
|
4602
6060
|
village?: string | null | undefined;
|
6061
|
+
} | {
|
6062
|
+
country: string;
|
6063
|
+
state: string;
|
6064
|
+
district2: string;
|
6065
|
+
cityOrTown?: string | null | undefined;
|
6066
|
+
addressLine1?: string | null | undefined;
|
6067
|
+
addressLine2?: string | null | undefined;
|
6068
|
+
addressLine3?: string | null | undefined;
|
6069
|
+
postcodeOrZip?: string | null | undefined;
|
4603
6070
|
} | {
|
4604
6071
|
type: string;
|
4605
6072
|
option: string;
|
@@ -4629,6 +6096,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4629
6096
|
province: string;
|
4630
6097
|
urbanOrRural: "RURAL";
|
4631
6098
|
village?: string | null | undefined;
|
6099
|
+
} | {
|
6100
|
+
country: string;
|
6101
|
+
state: string;
|
6102
|
+
district2: string;
|
6103
|
+
cityOrTown?: string | null | undefined;
|
6104
|
+
addressLine1?: string | null | undefined;
|
6105
|
+
addressLine2?: string | null | undefined;
|
6106
|
+
addressLine3?: string | null | undefined;
|
6107
|
+
postcodeOrZip?: string | null | undefined;
|
4632
6108
|
} | {
|
4633
6109
|
type: string;
|
4634
6110
|
option: string;
|
@@ -4636,7 +6112,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
4636
6112
|
originalFilename: string;
|
4637
6113
|
}[]> | undefined;
|
4638
6114
|
} | {
|
4639
|
-
type: "
|
6115
|
+
type: "ARCHIVE";
|
4640
6116
|
id: string;
|
4641
6117
|
data: Record<string, string | number | boolean | {
|
4642
6118
|
type: string;
|
@@ -4658,6 +6134,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4658
6134
|
province: string;
|
4659
6135
|
urbanOrRural: "RURAL";
|
4660
6136
|
village?: string | null | undefined;
|
6137
|
+
} | {
|
6138
|
+
country: string;
|
6139
|
+
state: string;
|
6140
|
+
district2: string;
|
6141
|
+
cityOrTown?: string | null | undefined;
|
6142
|
+
addressLine1?: string | null | undefined;
|
6143
|
+
addressLine2?: string | null | undefined;
|
6144
|
+
addressLine3?: string | null | undefined;
|
6145
|
+
postcodeOrZip?: string | null | undefined;
|
4661
6146
|
} | {
|
4662
6147
|
type: string;
|
4663
6148
|
option: string;
|
@@ -4687,6 +6172,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4687
6172
|
province: string;
|
4688
6173
|
urbanOrRural: "RURAL";
|
4689
6174
|
village?: string | null | undefined;
|
6175
|
+
} | {
|
6176
|
+
country: string;
|
6177
|
+
state: string;
|
6178
|
+
district2: string;
|
6179
|
+
cityOrTown?: string | null | undefined;
|
6180
|
+
addressLine1?: string | null | undefined;
|
6181
|
+
addressLine2?: string | null | undefined;
|
6182
|
+
addressLine3?: string | null | undefined;
|
6183
|
+
postcodeOrZip?: string | null | undefined;
|
4690
6184
|
} | {
|
4691
6185
|
type: string;
|
4692
6186
|
option: string;
|
@@ -4716,6 +6210,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4716
6210
|
province: string;
|
4717
6211
|
urbanOrRural: "RURAL";
|
4718
6212
|
village?: string | null | undefined;
|
6213
|
+
} | {
|
6214
|
+
country: string;
|
6215
|
+
state: string;
|
6216
|
+
district2: string;
|
6217
|
+
cityOrTown?: string | null | undefined;
|
6218
|
+
addressLine1?: string | null | undefined;
|
6219
|
+
addressLine2?: string | null | undefined;
|
6220
|
+
addressLine3?: string | null | undefined;
|
6221
|
+
postcodeOrZip?: string | null | undefined;
|
4719
6222
|
} | {
|
4720
6223
|
type: string;
|
4721
6224
|
option: string;
|
@@ -4745,6 +6248,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4745
6248
|
province: string;
|
4746
6249
|
urbanOrRural: "RURAL";
|
4747
6250
|
village?: string | null | undefined;
|
6251
|
+
} | {
|
6252
|
+
country: string;
|
6253
|
+
state: string;
|
6254
|
+
district2: string;
|
6255
|
+
cityOrTown?: string | null | undefined;
|
6256
|
+
addressLine1?: string | null | undefined;
|
6257
|
+
addressLine2?: string | null | undefined;
|
6258
|
+
addressLine3?: string | null | undefined;
|
6259
|
+
postcodeOrZip?: string | null | undefined;
|
4748
6260
|
} | {
|
4749
6261
|
type: string;
|
4750
6262
|
option: string;
|
@@ -4774,6 +6286,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4774
6286
|
province: string;
|
4775
6287
|
urbanOrRural: "RURAL";
|
4776
6288
|
village?: string | null | undefined;
|
6289
|
+
} | {
|
6290
|
+
country: string;
|
6291
|
+
state: string;
|
6292
|
+
district2: string;
|
6293
|
+
cityOrTown?: string | null | undefined;
|
6294
|
+
addressLine1?: string | null | undefined;
|
6295
|
+
addressLine2?: string | null | undefined;
|
6296
|
+
addressLine3?: string | null | undefined;
|
6297
|
+
postcodeOrZip?: string | null | undefined;
|
4777
6298
|
} | {
|
4778
6299
|
type: string;
|
4779
6300
|
option: string;
|
@@ -4803,6 +6324,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4803
6324
|
province: string;
|
4804
6325
|
urbanOrRural: "RURAL";
|
4805
6326
|
village?: string | null | undefined;
|
6327
|
+
} | {
|
6328
|
+
country: string;
|
6329
|
+
state: string;
|
6330
|
+
district2: string;
|
6331
|
+
cityOrTown?: string | null | undefined;
|
6332
|
+
addressLine1?: string | null | undefined;
|
6333
|
+
addressLine2?: string | null | undefined;
|
6334
|
+
addressLine3?: string | null | undefined;
|
6335
|
+
postcodeOrZip?: string | null | undefined;
|
4806
6336
|
} | {
|
4807
6337
|
type: string;
|
4808
6338
|
option: string;
|
@@ -4832,6 +6362,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4832
6362
|
province: string;
|
4833
6363
|
urbanOrRural: "RURAL";
|
4834
6364
|
village?: string | null | undefined;
|
6365
|
+
} | {
|
6366
|
+
country: string;
|
6367
|
+
state: string;
|
6368
|
+
district2: string;
|
6369
|
+
cityOrTown?: string | null | undefined;
|
6370
|
+
addressLine1?: string | null | undefined;
|
6371
|
+
addressLine2?: string | null | undefined;
|
6372
|
+
addressLine3?: string | null | undefined;
|
6373
|
+
postcodeOrZip?: string | null | undefined;
|
4835
6374
|
} | {
|
4836
6375
|
type: string;
|
4837
6376
|
option: string;
|
@@ -4861,6 +6400,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4861
6400
|
province: string;
|
4862
6401
|
urbanOrRural: "RURAL";
|
4863
6402
|
village?: string | null | undefined;
|
6403
|
+
} | {
|
6404
|
+
country: string;
|
6405
|
+
state: string;
|
6406
|
+
district2: string;
|
6407
|
+
cityOrTown?: string | null | undefined;
|
6408
|
+
addressLine1?: string | null | undefined;
|
6409
|
+
addressLine2?: string | null | undefined;
|
6410
|
+
addressLine3?: string | null | undefined;
|
6411
|
+
postcodeOrZip?: string | null | undefined;
|
4864
6412
|
} | {
|
4865
6413
|
type: string;
|
4866
6414
|
option: string;
|
@@ -4890,6 +6438,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4890
6438
|
province: string;
|
4891
6439
|
urbanOrRural: "RURAL";
|
4892
6440
|
village?: string | null | undefined;
|
6441
|
+
} | {
|
6442
|
+
country: string;
|
6443
|
+
state: string;
|
6444
|
+
district2: string;
|
6445
|
+
cityOrTown?: string | null | undefined;
|
6446
|
+
addressLine1?: string | null | undefined;
|
6447
|
+
addressLine2?: string | null | undefined;
|
6448
|
+
addressLine3?: string | null | undefined;
|
6449
|
+
postcodeOrZip?: string | null | undefined;
|
4893
6450
|
} | {
|
4894
6451
|
type: string;
|
4895
6452
|
option: string;
|
@@ -4919,6 +6476,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4919
6476
|
province: string;
|
4920
6477
|
urbanOrRural: "RURAL";
|
4921
6478
|
village?: string | null | undefined;
|
6479
|
+
} | {
|
6480
|
+
country: string;
|
6481
|
+
state: string;
|
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;
|
4922
6488
|
} | {
|
4923
6489
|
type: string;
|
4924
6490
|
option: string;
|
@@ -4948,6 +6514,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4948
6514
|
province: string;
|
4949
6515
|
urbanOrRural: "RURAL";
|
4950
6516
|
village?: string | null | undefined;
|
6517
|
+
} | {
|
6518
|
+
country: string;
|
6519
|
+
state: string;
|
6520
|
+
district2: string;
|
6521
|
+
cityOrTown?: string | null | undefined;
|
6522
|
+
addressLine1?: string | null | undefined;
|
6523
|
+
addressLine2?: string | null | undefined;
|
6524
|
+
addressLine3?: string | null | undefined;
|
6525
|
+
postcodeOrZip?: string | null | undefined;
|
4951
6526
|
} | {
|
4952
6527
|
type: string;
|
4953
6528
|
option: string;
|
@@ -4978,6 +6553,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
4978
6553
|
province: string;
|
4979
6554
|
urbanOrRural: "RURAL";
|
4980
6555
|
village?: string | null | undefined;
|
6556
|
+
} | {
|
6557
|
+
country: string;
|
6558
|
+
state: string;
|
6559
|
+
district2: string;
|
6560
|
+
cityOrTown?: string | null | undefined;
|
6561
|
+
addressLine1?: string | null | undefined;
|
6562
|
+
addressLine2?: string | null | undefined;
|
6563
|
+
addressLine3?: string | null | undefined;
|
6564
|
+
postcodeOrZip?: string | null | undefined;
|
4981
6565
|
} | {
|
4982
6566
|
type: string;
|
4983
6567
|
option: string;
|
@@ -5007,6 +6591,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5007
6591
|
province: string;
|
5008
6592
|
urbanOrRural: "RURAL";
|
5009
6593
|
village?: string | null | undefined;
|
6594
|
+
} | {
|
6595
|
+
country: string;
|
6596
|
+
state: string;
|
6597
|
+
district2: string;
|
6598
|
+
cityOrTown?: string | null | undefined;
|
6599
|
+
addressLine1?: string | null | undefined;
|
6600
|
+
addressLine2?: string | null | undefined;
|
6601
|
+
addressLine3?: string | null | undefined;
|
6602
|
+
postcodeOrZip?: string | null | undefined;
|
5010
6603
|
} | {
|
5011
6604
|
type: string;
|
5012
6605
|
option: string;
|
@@ -5037,6 +6630,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5037
6630
|
province: string;
|
5038
6631
|
urbanOrRural: "RURAL";
|
5039
6632
|
village?: string | null | undefined;
|
6633
|
+
} | {
|
6634
|
+
country: string;
|
6635
|
+
state: string;
|
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;
|
5040
6642
|
} | {
|
5041
6643
|
type: string;
|
5042
6644
|
option: string;
|
@@ -5066,6 +6668,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5066
6668
|
province: string;
|
5067
6669
|
urbanOrRural: "RURAL";
|
5068
6670
|
village?: string | null | undefined;
|
6671
|
+
} | {
|
6672
|
+
country: string;
|
6673
|
+
state: string;
|
6674
|
+
district2: string;
|
6675
|
+
cityOrTown?: string | null | undefined;
|
6676
|
+
addressLine1?: string | null | undefined;
|
6677
|
+
addressLine2?: string | null | undefined;
|
6678
|
+
addressLine3?: string | null | undefined;
|
6679
|
+
postcodeOrZip?: string | null | undefined;
|
5069
6680
|
} | {
|
5070
6681
|
type: string;
|
5071
6682
|
option: string;
|
@@ -5095,6 +6706,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5095
6706
|
province: string;
|
5096
6707
|
urbanOrRural: "RURAL";
|
5097
6708
|
village?: string | null | undefined;
|
6709
|
+
} | {
|
6710
|
+
country: string;
|
6711
|
+
state: string;
|
6712
|
+
district2: string;
|
6713
|
+
cityOrTown?: string | null | undefined;
|
6714
|
+
addressLine1?: string | null | undefined;
|
6715
|
+
addressLine2?: string | null | undefined;
|
6716
|
+
addressLine3?: string | null | undefined;
|
6717
|
+
postcodeOrZip?: string | null | undefined;
|
5098
6718
|
} | {
|
5099
6719
|
type: string;
|
5100
6720
|
option: string;
|
@@ -5131,6 +6751,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5131
6751
|
province: string;
|
5132
6752
|
urbanOrRural: "RURAL";
|
5133
6753
|
village?: string | null | undefined;
|
6754
|
+
} | {
|
6755
|
+
country: string;
|
6756
|
+
state: string;
|
6757
|
+
district2: string;
|
6758
|
+
cityOrTown?: string | null | undefined;
|
6759
|
+
addressLine1?: string | null | undefined;
|
6760
|
+
addressLine2?: string | null | undefined;
|
6761
|
+
addressLine3?: string | null | undefined;
|
6762
|
+
postcodeOrZip?: string | null | undefined;
|
5134
6763
|
} | {
|
5135
6764
|
type: string;
|
5136
6765
|
option: string;
|
@@ -5161,6 +6790,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5161
6790
|
province: string;
|
5162
6791
|
urbanOrRural: "RURAL";
|
5163
6792
|
village?: string | null | undefined;
|
6793
|
+
} | {
|
6794
|
+
country: string;
|
6795
|
+
state: string;
|
6796
|
+
district2: string;
|
6797
|
+
cityOrTown?: string | null | undefined;
|
6798
|
+
addressLine1?: string | null | undefined;
|
6799
|
+
addressLine2?: string | null | undefined;
|
6800
|
+
addressLine3?: string | null | undefined;
|
6801
|
+
postcodeOrZip?: string | null | undefined;
|
5164
6802
|
} | {
|
5165
6803
|
type: string;
|
5166
6804
|
option: string;
|
@@ -5190,6 +6828,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5190
6828
|
province: string;
|
5191
6829
|
urbanOrRural: "RURAL";
|
5192
6830
|
village?: string | null | undefined;
|
6831
|
+
} | {
|
6832
|
+
country: string;
|
6833
|
+
state: string;
|
6834
|
+
district2: string;
|
6835
|
+
cityOrTown?: string | null | undefined;
|
6836
|
+
addressLine1?: string | null | undefined;
|
6837
|
+
addressLine2?: string | null | undefined;
|
6838
|
+
addressLine3?: string | null | undefined;
|
6839
|
+
postcodeOrZip?: string | null | undefined;
|
5193
6840
|
} | {
|
5194
6841
|
type: string;
|
5195
6842
|
option: string;
|
@@ -5219,6 +6866,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5219
6866
|
province: string;
|
5220
6867
|
urbanOrRural: "RURAL";
|
5221
6868
|
village?: string | null | undefined;
|
6869
|
+
} | {
|
6870
|
+
country: string;
|
6871
|
+
state: string;
|
6872
|
+
district2: string;
|
6873
|
+
cityOrTown?: string | null | undefined;
|
6874
|
+
addressLine1?: string | null | undefined;
|
6875
|
+
addressLine2?: string | null | undefined;
|
6876
|
+
addressLine3?: string | null | undefined;
|
6877
|
+
postcodeOrZip?: string | null | undefined;
|
5222
6878
|
} | {
|
5223
6879
|
type: string;
|
5224
6880
|
option: string;
|
@@ -5248,6 +6904,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5248
6904
|
province: string;
|
5249
6905
|
urbanOrRural: "RURAL";
|
5250
6906
|
village?: string | null | undefined;
|
6907
|
+
} | {
|
6908
|
+
country: string;
|
6909
|
+
state: string;
|
6910
|
+
district2: string;
|
6911
|
+
cityOrTown?: string | null | undefined;
|
6912
|
+
addressLine1?: string | null | undefined;
|
6913
|
+
addressLine2?: string | null | undefined;
|
6914
|
+
addressLine3?: string | null | undefined;
|
6915
|
+
postcodeOrZip?: string | null | undefined;
|
5251
6916
|
} | {
|
5252
6917
|
type: string;
|
5253
6918
|
option: string;
|
@@ -5281,6 +6946,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5281
6946
|
province: string;
|
5282
6947
|
urbanOrRural: "RURAL";
|
5283
6948
|
village?: string | null | undefined;
|
6949
|
+
} | {
|
6950
|
+
country: string;
|
6951
|
+
state: string;
|
6952
|
+
district2: string;
|
6953
|
+
cityOrTown?: string | null | undefined;
|
6954
|
+
addressLine1?: string | null | undefined;
|
6955
|
+
addressLine2?: string | null | undefined;
|
6956
|
+
addressLine3?: string | null | undefined;
|
6957
|
+
postcodeOrZip?: string | null | undefined;
|
5284
6958
|
} | {
|
5285
6959
|
type: string;
|
5286
6960
|
option: string;
|
@@ -5310,6 +6984,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5310
6984
|
province: string;
|
5311
6985
|
urbanOrRural: "RURAL";
|
5312
6986
|
village?: string | null | undefined;
|
6987
|
+
} | {
|
6988
|
+
country: string;
|
6989
|
+
state: string;
|
6990
|
+
district2: string;
|
6991
|
+
cityOrTown?: string | null | undefined;
|
6992
|
+
addressLine1?: string | null | undefined;
|
6993
|
+
addressLine2?: string | null | undefined;
|
6994
|
+
addressLine3?: string | null | undefined;
|
6995
|
+
postcodeOrZip?: string | null | undefined;
|
5313
6996
|
} | {
|
5314
6997
|
type: string;
|
5315
6998
|
option: string;
|
@@ -5339,6 +7022,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5339
7022
|
province: string;
|
5340
7023
|
urbanOrRural: "RURAL";
|
5341
7024
|
village?: string | null | undefined;
|
7025
|
+
} | {
|
7026
|
+
country: string;
|
7027
|
+
state: string;
|
7028
|
+
district2: string;
|
7029
|
+
cityOrTown?: string | null | undefined;
|
7030
|
+
addressLine1?: string | null | undefined;
|
7031
|
+
addressLine2?: string | null | undefined;
|
7032
|
+
addressLine3?: string | null | undefined;
|
7033
|
+
postcodeOrZip?: string | null | undefined;
|
5342
7034
|
} | {
|
5343
7035
|
type: string;
|
5344
7036
|
option: string;
|
@@ -5368,6 +7060,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5368
7060
|
province: string;
|
5369
7061
|
urbanOrRural: "RURAL";
|
5370
7062
|
village?: string | null | undefined;
|
7063
|
+
} | {
|
7064
|
+
country: string;
|
7065
|
+
state: string;
|
7066
|
+
district2: string;
|
7067
|
+
cityOrTown?: string | null | undefined;
|
7068
|
+
addressLine1?: string | null | undefined;
|
7069
|
+
addressLine2?: string | null | undefined;
|
7070
|
+
addressLine3?: string | null | undefined;
|
7071
|
+
postcodeOrZip?: string | null | undefined;
|
5371
7072
|
} | {
|
5372
7073
|
type: string;
|
5373
7074
|
option: string;
|
@@ -5397,6 +7098,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5397
7098
|
province: string;
|
5398
7099
|
urbanOrRural: "RURAL";
|
5399
7100
|
village?: string | null | undefined;
|
7101
|
+
} | {
|
7102
|
+
country: string;
|
7103
|
+
state: string;
|
7104
|
+
district2: string;
|
7105
|
+
cityOrTown?: string | null | undefined;
|
7106
|
+
addressLine1?: string | null | undefined;
|
7107
|
+
addressLine2?: string | null | undefined;
|
7108
|
+
addressLine3?: string | null | undefined;
|
7109
|
+
postcodeOrZip?: string | null | undefined;
|
5400
7110
|
} | {
|
5401
7111
|
type: string;
|
5402
7112
|
option: string;
|
@@ -5426,6 +7136,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5426
7136
|
province: string;
|
5427
7137
|
urbanOrRural: "RURAL";
|
5428
7138
|
village?: string | null | undefined;
|
7139
|
+
} | {
|
7140
|
+
country: string;
|
7141
|
+
state: string;
|
7142
|
+
district2: string;
|
7143
|
+
cityOrTown?: string | null | undefined;
|
7144
|
+
addressLine1?: string | null | undefined;
|
7145
|
+
addressLine2?: string | null | undefined;
|
7146
|
+
addressLine3?: string | null | undefined;
|
7147
|
+
postcodeOrZip?: string | null | undefined;
|
5429
7148
|
} | {
|
5430
7149
|
type: string;
|
5431
7150
|
option: string;
|
@@ -5455,6 +7174,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5455
7174
|
province: string;
|
5456
7175
|
urbanOrRural: "RURAL";
|
5457
7176
|
village?: string | null | undefined;
|
7177
|
+
} | {
|
7178
|
+
country: string;
|
7179
|
+
state: string;
|
7180
|
+
district2: string;
|
7181
|
+
cityOrTown?: string | null | undefined;
|
7182
|
+
addressLine1?: string | null | undefined;
|
7183
|
+
addressLine2?: string | null | undefined;
|
7184
|
+
addressLine3?: string | null | undefined;
|
7185
|
+
postcodeOrZip?: string | null | undefined;
|
5458
7186
|
} | {
|
5459
7187
|
type: string;
|
5460
7188
|
option: string;
|
@@ -5484,6 +7212,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5484
7212
|
province: string;
|
5485
7213
|
urbanOrRural: "RURAL";
|
5486
7214
|
village?: string | null | undefined;
|
7215
|
+
} | {
|
7216
|
+
country: string;
|
7217
|
+
state: string;
|
7218
|
+
district2: string;
|
7219
|
+
cityOrTown?: string | null | undefined;
|
7220
|
+
addressLine1?: string | null | undefined;
|
7221
|
+
addressLine2?: string | null | undefined;
|
7222
|
+
addressLine3?: string | null | undefined;
|
7223
|
+
postcodeOrZip?: string | null | undefined;
|
5487
7224
|
} | {
|
5488
7225
|
type: string;
|
5489
7226
|
option: string;
|
@@ -5513,6 +7250,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5513
7250
|
province: string;
|
5514
7251
|
urbanOrRural: "RURAL";
|
5515
7252
|
village?: string | null | undefined;
|
7253
|
+
} | {
|
7254
|
+
country: string;
|
7255
|
+
state: string;
|
7256
|
+
district2: string;
|
7257
|
+
cityOrTown?: string | null | undefined;
|
7258
|
+
addressLine1?: string | null | undefined;
|
7259
|
+
addressLine2?: string | null | undefined;
|
7260
|
+
addressLine3?: string | null | undefined;
|
7261
|
+
postcodeOrZip?: string | null | undefined;
|
5516
7262
|
} | {
|
5517
7263
|
type: string;
|
5518
7264
|
option: string;
|
@@ -5520,7 +7266,7 @@ export declare const EventDocument: z.ZodObject<{
|
|
5520
7266
|
originalFilename: string;
|
5521
7267
|
}[]> | undefined;
|
5522
7268
|
} | {
|
5523
|
-
type: "
|
7269
|
+
type: "ARCHIVE";
|
5524
7270
|
id: string;
|
5525
7271
|
data: Record<string, string | number | boolean | {
|
5526
7272
|
type: string;
|
@@ -5542,6 +7288,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5542
7288
|
province: string;
|
5543
7289
|
urbanOrRural: "RURAL";
|
5544
7290
|
village?: string | null | undefined;
|
7291
|
+
} | {
|
7292
|
+
country: string;
|
7293
|
+
state: string;
|
7294
|
+
district2: string;
|
7295
|
+
cityOrTown?: string | null | undefined;
|
7296
|
+
addressLine1?: string | null | undefined;
|
7297
|
+
addressLine2?: string | null | undefined;
|
7298
|
+
addressLine3?: string | null | undefined;
|
7299
|
+
postcodeOrZip?: string | null | undefined;
|
5545
7300
|
} | {
|
5546
7301
|
type: string;
|
5547
7302
|
option: string;
|
@@ -5571,6 +7326,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5571
7326
|
province: string;
|
5572
7327
|
urbanOrRural: "RURAL";
|
5573
7328
|
village?: string | null | undefined;
|
7329
|
+
} | {
|
7330
|
+
country: string;
|
7331
|
+
state: string;
|
7332
|
+
district2: string;
|
7333
|
+
cityOrTown?: string | null | undefined;
|
7334
|
+
addressLine1?: string | null | undefined;
|
7335
|
+
addressLine2?: string | null | undefined;
|
7336
|
+
addressLine3?: string | null | undefined;
|
7337
|
+
postcodeOrZip?: string | null | undefined;
|
5574
7338
|
} | {
|
5575
7339
|
type: string;
|
5576
7340
|
option: string;
|
@@ -5600,6 +7364,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5600
7364
|
province: string;
|
5601
7365
|
urbanOrRural: "RURAL";
|
5602
7366
|
village?: string | null | undefined;
|
7367
|
+
} | {
|
7368
|
+
country: string;
|
7369
|
+
state: string;
|
7370
|
+
district2: string;
|
7371
|
+
cityOrTown?: string | null | undefined;
|
7372
|
+
addressLine1?: string | null | undefined;
|
7373
|
+
addressLine2?: string | null | undefined;
|
7374
|
+
addressLine3?: string | null | undefined;
|
7375
|
+
postcodeOrZip?: string | null | undefined;
|
5603
7376
|
} | {
|
5604
7377
|
type: string;
|
5605
7378
|
option: string;
|
@@ -5629,6 +7402,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5629
7402
|
province: string;
|
5630
7403
|
urbanOrRural: "RURAL";
|
5631
7404
|
village?: string | null | undefined;
|
7405
|
+
} | {
|
7406
|
+
country: string;
|
7407
|
+
state: string;
|
7408
|
+
district2: string;
|
7409
|
+
cityOrTown?: string | null | undefined;
|
7410
|
+
addressLine1?: string | null | undefined;
|
7411
|
+
addressLine2?: string | null | undefined;
|
7412
|
+
addressLine3?: string | null | undefined;
|
7413
|
+
postcodeOrZip?: string | null | undefined;
|
5632
7414
|
} | {
|
5633
7415
|
type: string;
|
5634
7416
|
option: string;
|
@@ -5658,6 +7440,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5658
7440
|
province: string;
|
5659
7441
|
urbanOrRural: "RURAL";
|
5660
7442
|
village?: string | null | undefined;
|
7443
|
+
} | {
|
7444
|
+
country: string;
|
7445
|
+
state: string;
|
7446
|
+
district2: string;
|
7447
|
+
cityOrTown?: string | null | undefined;
|
7448
|
+
addressLine1?: string | null | undefined;
|
7449
|
+
addressLine2?: string | null | undefined;
|
7450
|
+
addressLine3?: string | null | undefined;
|
7451
|
+
postcodeOrZip?: string | null | undefined;
|
5661
7452
|
} | {
|
5662
7453
|
type: string;
|
5663
7454
|
option: string;
|
@@ -5687,6 +7478,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5687
7478
|
province: string;
|
5688
7479
|
urbanOrRural: "RURAL";
|
5689
7480
|
village?: string | null | undefined;
|
7481
|
+
} | {
|
7482
|
+
country: string;
|
7483
|
+
state: string;
|
7484
|
+
district2: string;
|
7485
|
+
cityOrTown?: string | null | undefined;
|
7486
|
+
addressLine1?: string | null | undefined;
|
7487
|
+
addressLine2?: string | null | undefined;
|
7488
|
+
addressLine3?: string | null | undefined;
|
7489
|
+
postcodeOrZip?: string | null | undefined;
|
5690
7490
|
} | {
|
5691
7491
|
type: string;
|
5692
7492
|
option: string;
|
@@ -5716,6 +7516,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5716
7516
|
province: string;
|
5717
7517
|
urbanOrRural: "RURAL";
|
5718
7518
|
village?: string | null | undefined;
|
7519
|
+
} | {
|
7520
|
+
country: string;
|
7521
|
+
state: string;
|
7522
|
+
district2: string;
|
7523
|
+
cityOrTown?: string | null | undefined;
|
7524
|
+
addressLine1?: string | null | undefined;
|
7525
|
+
addressLine2?: string | null | undefined;
|
7526
|
+
addressLine3?: string | null | undefined;
|
7527
|
+
postcodeOrZip?: string | null | undefined;
|
5719
7528
|
} | {
|
5720
7529
|
type: string;
|
5721
7530
|
option: string;
|
@@ -5745,6 +7554,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5745
7554
|
province: string;
|
5746
7555
|
urbanOrRural: "RURAL";
|
5747
7556
|
village?: string | null | undefined;
|
7557
|
+
} | {
|
7558
|
+
country: string;
|
7559
|
+
state: string;
|
7560
|
+
district2: string;
|
7561
|
+
cityOrTown?: string | null | undefined;
|
7562
|
+
addressLine1?: string | null | undefined;
|
7563
|
+
addressLine2?: string | null | undefined;
|
7564
|
+
addressLine3?: string | null | undefined;
|
7565
|
+
postcodeOrZip?: string | null | undefined;
|
5748
7566
|
} | {
|
5749
7567
|
type: string;
|
5750
7568
|
option: string;
|
@@ -5774,6 +7592,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5774
7592
|
province: string;
|
5775
7593
|
urbanOrRural: "RURAL";
|
5776
7594
|
village?: string | null | undefined;
|
7595
|
+
} | {
|
7596
|
+
country: string;
|
7597
|
+
state: string;
|
7598
|
+
district2: string;
|
7599
|
+
cityOrTown?: string | null | undefined;
|
7600
|
+
addressLine1?: string | null | undefined;
|
7601
|
+
addressLine2?: string | null | undefined;
|
7602
|
+
addressLine3?: string | null | undefined;
|
7603
|
+
postcodeOrZip?: string | null | undefined;
|
5777
7604
|
} | {
|
5778
7605
|
type: string;
|
5779
7606
|
option: string;
|
@@ -5803,6 +7630,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5803
7630
|
province: string;
|
5804
7631
|
urbanOrRural: "RURAL";
|
5805
7632
|
village?: string | null | undefined;
|
7633
|
+
} | {
|
7634
|
+
country: string;
|
7635
|
+
state: string;
|
7636
|
+
district2: string;
|
7637
|
+
cityOrTown?: string | null | undefined;
|
7638
|
+
addressLine1?: string | null | undefined;
|
7639
|
+
addressLine2?: string | null | undefined;
|
7640
|
+
addressLine3?: string | null | undefined;
|
7641
|
+
postcodeOrZip?: string | null | undefined;
|
5806
7642
|
} | {
|
5807
7643
|
type: string;
|
5808
7644
|
option: string;
|
@@ -5832,6 +7668,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5832
7668
|
province: string;
|
5833
7669
|
urbanOrRural: "RURAL";
|
5834
7670
|
village?: string | null | undefined;
|
7671
|
+
} | {
|
7672
|
+
country: string;
|
7673
|
+
state: string;
|
7674
|
+
district2: string;
|
7675
|
+
cityOrTown?: string | null | undefined;
|
7676
|
+
addressLine1?: string | null | undefined;
|
7677
|
+
addressLine2?: string | null | undefined;
|
7678
|
+
addressLine3?: string | null | undefined;
|
7679
|
+
postcodeOrZip?: string | null | undefined;
|
5835
7680
|
} | {
|
5836
7681
|
type: string;
|
5837
7682
|
option: string;
|
@@ -5862,6 +7707,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5862
7707
|
province: string;
|
5863
7708
|
urbanOrRural: "RURAL";
|
5864
7709
|
village?: string | null | undefined;
|
7710
|
+
} | {
|
7711
|
+
country: string;
|
7712
|
+
state: string;
|
7713
|
+
district2: string;
|
7714
|
+
cityOrTown?: string | null | undefined;
|
7715
|
+
addressLine1?: string | null | undefined;
|
7716
|
+
addressLine2?: string | null | undefined;
|
7717
|
+
addressLine3?: string | null | undefined;
|
7718
|
+
postcodeOrZip?: string | null | undefined;
|
5865
7719
|
} | {
|
5866
7720
|
type: string;
|
5867
7721
|
option: string;
|
@@ -5891,6 +7745,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5891
7745
|
province: string;
|
5892
7746
|
urbanOrRural: "RURAL";
|
5893
7747
|
village?: string | null | undefined;
|
7748
|
+
} | {
|
7749
|
+
country: string;
|
7750
|
+
state: string;
|
7751
|
+
district2: string;
|
7752
|
+
cityOrTown?: string | null | undefined;
|
7753
|
+
addressLine1?: string | null | undefined;
|
7754
|
+
addressLine2?: string | null | undefined;
|
7755
|
+
addressLine3?: string | null | undefined;
|
7756
|
+
postcodeOrZip?: string | null | undefined;
|
5894
7757
|
} | {
|
5895
7758
|
type: string;
|
5896
7759
|
option: string;
|
@@ -5921,6 +7784,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5921
7784
|
province: string;
|
5922
7785
|
urbanOrRural: "RURAL";
|
5923
7786
|
village?: string | null | undefined;
|
7787
|
+
} | {
|
7788
|
+
country: string;
|
7789
|
+
state: string;
|
7790
|
+
district2: string;
|
7791
|
+
cityOrTown?: string | null | undefined;
|
7792
|
+
addressLine1?: string | null | undefined;
|
7793
|
+
addressLine2?: string | null | undefined;
|
7794
|
+
addressLine3?: string | null | undefined;
|
7795
|
+
postcodeOrZip?: string | null | undefined;
|
5924
7796
|
} | {
|
5925
7797
|
type: string;
|
5926
7798
|
option: string;
|
@@ -5950,6 +7822,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5950
7822
|
province: string;
|
5951
7823
|
urbanOrRural: "RURAL";
|
5952
7824
|
village?: string | null | undefined;
|
7825
|
+
} | {
|
7826
|
+
country: string;
|
7827
|
+
state: string;
|
7828
|
+
district2: string;
|
7829
|
+
cityOrTown?: string | null | undefined;
|
7830
|
+
addressLine1?: string | null | undefined;
|
7831
|
+
addressLine2?: string | null | undefined;
|
7832
|
+
addressLine3?: string | null | undefined;
|
7833
|
+
postcodeOrZip?: string | null | undefined;
|
5953
7834
|
} | {
|
5954
7835
|
type: string;
|
5955
7836
|
option: string;
|
@@ -5979,6 +7860,15 @@ export declare const EventDocument: z.ZodObject<{
|
|
5979
7860
|
province: string;
|
5980
7861
|
urbanOrRural: "RURAL";
|
5981
7862
|
village?: string | null | undefined;
|
7863
|
+
} | {
|
7864
|
+
country: string;
|
7865
|
+
state: string;
|
7866
|
+
district2: string;
|
7867
|
+
cityOrTown?: string | null | undefined;
|
7868
|
+
addressLine1?: string | null | undefined;
|
7869
|
+
addressLine2?: string | null | undefined;
|
7870
|
+
addressLine3?: string | null | undefined;
|
7871
|
+
postcodeOrZip?: string | null | undefined;
|
5982
7872
|
} | {
|
5983
7873
|
type: string;
|
5984
7874
|
option: string;
|