@opencrvs/toolkit 1.8.1-rc.c39f8f6 → 1.8.1-rc.c7fcaa3
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 +394 -393
- package/dist/commons/conditionals/validate.d.ts +11 -2
- package/dist/commons/events/ActionConfig.d.ts +3924 -642
- package/dist/commons/events/ActionDocument.d.ts +736 -736
- package/dist/commons/events/ActionInput.d.ts +600 -600
- package/dist/commons/events/AdvancedSearchConfig.d.ts +49 -31
- package/dist/commons/events/CompositeFieldValue.d.ts +6 -6
- package/dist/commons/events/CountryConfigQueryInput.d.ts +88 -88
- package/dist/commons/events/Draft.d.ts +56 -56
- package/dist/commons/events/EventConfig.d.ts +1259 -240
- package/dist/commons/events/EventDocument.d.ts +432 -432
- package/dist/commons/events/EventIndex.d.ts +62 -62
- package/dist/commons/events/EventMetadata.d.ts +9 -9
- package/dist/commons/events/FieldConfig.d.ts +1064 -71
- package/dist/commons/events/FieldType.d.ts +5 -0
- package/dist/commons/events/FieldTypeMapping.d.ts +16 -16
- package/dist/commons/events/FieldValue.d.ts +12 -12
- package/dist/commons/events/FormConfig.d.ts +1956 -378
- package/dist/commons/events/PageConfig.d.ts +524 -82
- package/dist/commons/events/WorkqueueConfig.d.ts +199 -164
- package/dist/commons/events/defineConfig.d.ts +181 -46
- package/dist/commons/events/event.d.ts +61 -7
- package/dist/commons/events/test.utils.d.ts +14 -13
- package/dist/commons/events/utils.d.ts +341 -195
- package/dist/conditionals/index.js +3 -2
- package/dist/events/index.js +1071 -860
- package/package.json +1 -1
- package/tsconfig.json +1 -1
- package/dist/commons/conditionals/conditionals.test.d.ts +0 -2
- package/dist/commons/conditionals/validate-address.test.d.ts +0 -2
- package/dist/commons/conditionals/validate.test.d.ts +0 -2
- package/dist/commons/events/utils.test.d.ts +0 -2
@@ -136,16 +136,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
136
136
|
addressLine3?: string | null | undefined;
|
137
137
|
postcodeOrZip?: string | null | undefined;
|
138
138
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
139
|
-
firstname: z.
|
140
|
-
surname: z.
|
139
|
+
firstname: z.ZodString;
|
140
|
+
surname: z.ZodString;
|
141
141
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
142
142
|
}, "strip", z.ZodTypeAny, {
|
143
|
-
firstname
|
144
|
-
surname
|
143
|
+
firstname: string;
|
144
|
+
surname: string;
|
145
145
|
middlename?: string | null | undefined;
|
146
146
|
}, {
|
147
|
-
firstname
|
148
|
-
surname
|
147
|
+
firstname: string;
|
148
|
+
surname: string;
|
149
149
|
middlename?: string | null | undefined;
|
150
150
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
151
151
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -271,16 +271,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
271
271
|
addressLine3?: string | null | undefined;
|
272
272
|
postcodeOrZip?: string | null | undefined;
|
273
273
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
274
|
-
firstname: z.
|
275
|
-
surname: z.
|
274
|
+
firstname: z.ZodString;
|
275
|
+
surname: z.ZodString;
|
276
276
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
277
277
|
}, "strip", z.ZodTypeAny, {
|
278
|
-
firstname
|
279
|
-
surname
|
278
|
+
firstname: string;
|
279
|
+
surname: string;
|
280
280
|
middlename?: string | null | undefined;
|
281
281
|
}, {
|
282
|
-
firstname
|
283
|
-
surname
|
282
|
+
firstname: string;
|
283
|
+
surname: string;
|
284
284
|
middlename?: string | null | undefined;
|
285
285
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
286
286
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -312,8 +312,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
312
312
|
street?: string | null | undefined;
|
313
313
|
zipCode?: string | null | undefined;
|
314
314
|
} | {
|
315
|
-
firstname
|
316
|
-
surname
|
315
|
+
firstname: string;
|
316
|
+
surname: string;
|
317
317
|
middlename?: string | null | undefined;
|
318
318
|
} | {
|
319
319
|
country: string;
|
@@ -359,8 +359,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
359
359
|
street?: string | null | undefined;
|
360
360
|
zipCode?: string | null | undefined;
|
361
361
|
} | {
|
362
|
-
firstname
|
363
|
-
surname
|
362
|
+
firstname: string;
|
363
|
+
surname: string;
|
364
364
|
middlename?: string | null | undefined;
|
365
365
|
} | {
|
366
366
|
country: string;
|
@@ -414,8 +414,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
414
414
|
street?: string | null | undefined;
|
415
415
|
zipCode?: string | null | undefined;
|
416
416
|
} | {
|
417
|
-
firstname
|
418
|
-
surname
|
417
|
+
firstname: string;
|
418
|
+
surname: string;
|
419
419
|
middlename?: string | null | undefined;
|
420
420
|
} | {
|
421
421
|
country: string;
|
@@ -461,8 +461,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
461
461
|
street?: string | null | undefined;
|
462
462
|
zipCode?: string | null | undefined;
|
463
463
|
} | {
|
464
|
-
firstname
|
465
|
-
surname
|
464
|
+
firstname: string;
|
465
|
+
surname: string;
|
466
466
|
middlename?: string | null | undefined;
|
467
467
|
} | {
|
468
468
|
country: string;
|
@@ -623,16 +623,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
623
623
|
addressLine3?: string | null | undefined;
|
624
624
|
postcodeOrZip?: string | null | undefined;
|
625
625
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
626
|
-
firstname: z.
|
627
|
-
surname: z.
|
626
|
+
firstname: z.ZodString;
|
627
|
+
surname: z.ZodString;
|
628
628
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
629
629
|
}, "strip", z.ZodTypeAny, {
|
630
|
-
firstname
|
631
|
-
surname
|
630
|
+
firstname: string;
|
631
|
+
surname: string;
|
632
632
|
middlename?: string | null | undefined;
|
633
633
|
}, {
|
634
|
-
firstname
|
635
|
-
surname
|
634
|
+
firstname: string;
|
635
|
+
surname: string;
|
636
636
|
middlename?: string | null | undefined;
|
637
637
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
638
638
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -758,16 +758,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
758
758
|
addressLine3?: string | null | undefined;
|
759
759
|
postcodeOrZip?: string | null | undefined;
|
760
760
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
761
|
-
firstname: z.
|
762
|
-
surname: z.
|
761
|
+
firstname: z.ZodString;
|
762
|
+
surname: z.ZodString;
|
763
763
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
764
764
|
}, "strip", z.ZodTypeAny, {
|
765
|
-
firstname
|
766
|
-
surname
|
765
|
+
firstname: string;
|
766
|
+
surname: string;
|
767
767
|
middlename?: string | null | undefined;
|
768
768
|
}, {
|
769
|
-
firstname
|
770
|
-
surname
|
769
|
+
firstname: string;
|
770
|
+
surname: string;
|
771
771
|
middlename?: string | null | undefined;
|
772
772
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
773
773
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -799,8 +799,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
799
799
|
street?: string | null | undefined;
|
800
800
|
zipCode?: string | null | undefined;
|
801
801
|
} | {
|
802
|
-
firstname
|
803
|
-
surname
|
802
|
+
firstname: string;
|
803
|
+
surname: string;
|
804
804
|
middlename?: string | null | undefined;
|
805
805
|
} | {
|
806
806
|
country: string;
|
@@ -846,8 +846,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
846
846
|
street?: string | null | undefined;
|
847
847
|
zipCode?: string | null | undefined;
|
848
848
|
} | {
|
849
|
-
firstname
|
850
|
-
surname
|
849
|
+
firstname: string;
|
850
|
+
surname: string;
|
851
851
|
middlename?: string | null | undefined;
|
852
852
|
} | {
|
853
853
|
country: string;
|
@@ -901,8 +901,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
901
901
|
street?: string | null | undefined;
|
902
902
|
zipCode?: string | null | undefined;
|
903
903
|
} | {
|
904
|
-
firstname
|
905
|
-
surname
|
904
|
+
firstname: string;
|
905
|
+
surname: string;
|
906
906
|
middlename?: string | null | undefined;
|
907
907
|
} | {
|
908
908
|
country: string;
|
@@ -948,8 +948,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
948
948
|
street?: string | null | undefined;
|
949
949
|
zipCode?: string | null | undefined;
|
950
950
|
} | {
|
951
|
-
firstname
|
952
|
-
surname
|
951
|
+
firstname: string;
|
952
|
+
surname: string;
|
953
953
|
middlename?: string | null | undefined;
|
954
954
|
} | {
|
955
955
|
country: string;
|
@@ -1110,16 +1110,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
1110
1110
|
addressLine3?: string | null | undefined;
|
1111
1111
|
postcodeOrZip?: string | null | undefined;
|
1112
1112
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1113
|
-
firstname: z.
|
1114
|
-
surname: z.
|
1113
|
+
firstname: z.ZodString;
|
1114
|
+
surname: z.ZodString;
|
1115
1115
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1116
1116
|
}, "strip", z.ZodTypeAny, {
|
1117
|
-
firstname
|
1118
|
-
surname
|
1117
|
+
firstname: string;
|
1118
|
+
surname: string;
|
1119
1119
|
middlename?: string | null | undefined;
|
1120
1120
|
}, {
|
1121
|
-
firstname
|
1122
|
-
surname
|
1121
|
+
firstname: string;
|
1122
|
+
surname: string;
|
1123
1123
|
middlename?: string | null | undefined;
|
1124
1124
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
1125
1125
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -1245,16 +1245,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
1245
1245
|
addressLine3?: string | null | undefined;
|
1246
1246
|
postcodeOrZip?: string | null | undefined;
|
1247
1247
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1248
|
-
firstname: z.
|
1249
|
-
surname: z.
|
1248
|
+
firstname: z.ZodString;
|
1249
|
+
surname: z.ZodString;
|
1250
1250
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1251
1251
|
}, "strip", z.ZodTypeAny, {
|
1252
|
-
firstname
|
1253
|
-
surname
|
1252
|
+
firstname: string;
|
1253
|
+
surname: string;
|
1254
1254
|
middlename?: string | null | undefined;
|
1255
1255
|
}, {
|
1256
|
-
firstname
|
1257
|
-
surname
|
1256
|
+
firstname: string;
|
1257
|
+
surname: string;
|
1258
1258
|
middlename?: string | null | undefined;
|
1259
1259
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
1260
1260
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -1300,8 +1300,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1300
1300
|
street?: string | null | undefined;
|
1301
1301
|
zipCode?: string | null | undefined;
|
1302
1302
|
} | {
|
1303
|
-
firstname
|
1304
|
-
surname
|
1303
|
+
firstname: string;
|
1304
|
+
surname: string;
|
1305
1305
|
middlename?: string | null | undefined;
|
1306
1306
|
} | {
|
1307
1307
|
country: string;
|
@@ -1347,8 +1347,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1347
1347
|
street?: string | null | undefined;
|
1348
1348
|
zipCode?: string | null | undefined;
|
1349
1349
|
} | {
|
1350
|
-
firstname
|
1351
|
-
surname
|
1350
|
+
firstname: string;
|
1351
|
+
surname: string;
|
1352
1352
|
middlename?: string | null | undefined;
|
1353
1353
|
} | {
|
1354
1354
|
country: string;
|
@@ -1406,8 +1406,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1406
1406
|
street?: string | null | undefined;
|
1407
1407
|
zipCode?: string | null | undefined;
|
1408
1408
|
} | {
|
1409
|
-
firstname
|
1410
|
-
surname
|
1409
|
+
firstname: string;
|
1410
|
+
surname: string;
|
1411
1411
|
middlename?: string | null | undefined;
|
1412
1412
|
} | {
|
1413
1413
|
country: string;
|
@@ -1453,8 +1453,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1453
1453
|
street?: string | null | undefined;
|
1454
1454
|
zipCode?: string | null | undefined;
|
1455
1455
|
} | {
|
1456
|
-
firstname
|
1457
|
-
surname
|
1456
|
+
firstname: string;
|
1457
|
+
surname: string;
|
1458
1458
|
middlename?: string | null | undefined;
|
1459
1459
|
} | {
|
1460
1460
|
country: string;
|
@@ -1615,16 +1615,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
1615
1615
|
addressLine3?: string | null | undefined;
|
1616
1616
|
postcodeOrZip?: string | null | undefined;
|
1617
1617
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1618
|
-
firstname: z.
|
1619
|
-
surname: z.
|
1618
|
+
firstname: z.ZodString;
|
1619
|
+
surname: z.ZodString;
|
1620
1620
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1621
1621
|
}, "strip", z.ZodTypeAny, {
|
1622
|
-
firstname
|
1623
|
-
surname
|
1622
|
+
firstname: string;
|
1623
|
+
surname: string;
|
1624
1624
|
middlename?: string | null | undefined;
|
1625
1625
|
}, {
|
1626
|
-
firstname
|
1627
|
-
surname
|
1626
|
+
firstname: string;
|
1627
|
+
surname: string;
|
1628
1628
|
middlename?: string | null | undefined;
|
1629
1629
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
1630
1630
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -1750,16 +1750,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
1750
1750
|
addressLine3?: string | null | undefined;
|
1751
1751
|
postcodeOrZip?: string | null | undefined;
|
1752
1752
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1753
|
-
firstname: z.
|
1754
|
-
surname: z.
|
1753
|
+
firstname: z.ZodString;
|
1754
|
+
surname: z.ZodString;
|
1755
1755
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1756
1756
|
}, "strip", z.ZodTypeAny, {
|
1757
|
-
firstname
|
1758
|
-
surname
|
1757
|
+
firstname: string;
|
1758
|
+
surname: string;
|
1759
1759
|
middlename?: string | null | undefined;
|
1760
1760
|
}, {
|
1761
|
-
firstname
|
1762
|
-
surname
|
1761
|
+
firstname: string;
|
1762
|
+
surname: string;
|
1763
1763
|
middlename?: string | null | undefined;
|
1764
1764
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
1765
1765
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -1791,8 +1791,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1791
1791
|
street?: string | null | undefined;
|
1792
1792
|
zipCode?: string | null | undefined;
|
1793
1793
|
} | {
|
1794
|
-
firstname
|
1795
|
-
surname
|
1794
|
+
firstname: string;
|
1795
|
+
surname: string;
|
1796
1796
|
middlename?: string | null | undefined;
|
1797
1797
|
} | {
|
1798
1798
|
country: string;
|
@@ -1838,8 +1838,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1838
1838
|
street?: string | null | undefined;
|
1839
1839
|
zipCode?: string | null | undefined;
|
1840
1840
|
} | {
|
1841
|
-
firstname
|
1842
|
-
surname
|
1841
|
+
firstname: string;
|
1842
|
+
surname: string;
|
1843
1843
|
middlename?: string | null | undefined;
|
1844
1844
|
} | {
|
1845
1845
|
country: string;
|
@@ -1893,8 +1893,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1893
1893
|
street?: string | null | undefined;
|
1894
1894
|
zipCode?: string | null | undefined;
|
1895
1895
|
} | {
|
1896
|
-
firstname
|
1897
|
-
surname
|
1896
|
+
firstname: string;
|
1897
|
+
surname: string;
|
1898
1898
|
middlename?: string | null | undefined;
|
1899
1899
|
} | {
|
1900
1900
|
country: string;
|
@@ -1940,8 +1940,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1940
1940
|
street?: string | null | undefined;
|
1941
1941
|
zipCode?: string | null | undefined;
|
1942
1942
|
} | {
|
1943
|
-
firstname
|
1944
|
-
surname
|
1943
|
+
firstname: string;
|
1944
|
+
surname: string;
|
1945
1945
|
middlename?: string | null | undefined;
|
1946
1946
|
} | {
|
1947
1947
|
country: string;
|
@@ -2102,16 +2102,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
2102
2102
|
addressLine3?: string | null | undefined;
|
2103
2103
|
postcodeOrZip?: string | null | undefined;
|
2104
2104
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2105
|
-
firstname: z.
|
2106
|
-
surname: z.
|
2105
|
+
firstname: z.ZodString;
|
2106
|
+
surname: z.ZodString;
|
2107
2107
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2108
2108
|
}, "strip", z.ZodTypeAny, {
|
2109
|
-
firstname
|
2110
|
-
surname
|
2109
|
+
firstname: string;
|
2110
|
+
surname: string;
|
2111
2111
|
middlename?: string | null | undefined;
|
2112
2112
|
}, {
|
2113
|
-
firstname
|
2114
|
-
surname
|
2113
|
+
firstname: string;
|
2114
|
+
surname: string;
|
2115
2115
|
middlename?: string | null | undefined;
|
2116
2116
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
2117
2117
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -2237,16 +2237,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
2237
2237
|
addressLine3?: string | null | undefined;
|
2238
2238
|
postcodeOrZip?: string | null | undefined;
|
2239
2239
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2240
|
-
firstname: z.
|
2241
|
-
surname: z.
|
2240
|
+
firstname: z.ZodString;
|
2241
|
+
surname: z.ZodString;
|
2242
2242
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2243
2243
|
}, "strip", z.ZodTypeAny, {
|
2244
|
-
firstname
|
2245
|
-
surname
|
2244
|
+
firstname: string;
|
2245
|
+
surname: string;
|
2246
2246
|
middlename?: string | null | undefined;
|
2247
2247
|
}, {
|
2248
|
-
firstname
|
2249
|
-
surname
|
2248
|
+
firstname: string;
|
2249
|
+
surname: string;
|
2250
2250
|
middlename?: string | null | undefined;
|
2251
2251
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
2252
2252
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -2292,8 +2292,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2292
2292
|
street?: string | null | undefined;
|
2293
2293
|
zipCode?: string | null | undefined;
|
2294
2294
|
} | {
|
2295
|
-
firstname
|
2296
|
-
surname
|
2295
|
+
firstname: string;
|
2296
|
+
surname: string;
|
2297
2297
|
middlename?: string | null | undefined;
|
2298
2298
|
} | {
|
2299
2299
|
country: string;
|
@@ -2339,8 +2339,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2339
2339
|
street?: string | null | undefined;
|
2340
2340
|
zipCode?: string | null | undefined;
|
2341
2341
|
} | {
|
2342
|
-
firstname
|
2343
|
-
surname
|
2342
|
+
firstname: string;
|
2343
|
+
surname: string;
|
2344
2344
|
middlename?: string | null | undefined;
|
2345
2345
|
} | {
|
2346
2346
|
country: string;
|
@@ -2398,8 +2398,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2398
2398
|
street?: string | null | undefined;
|
2399
2399
|
zipCode?: string | null | undefined;
|
2400
2400
|
} | {
|
2401
|
-
firstname
|
2402
|
-
surname
|
2401
|
+
firstname: string;
|
2402
|
+
surname: string;
|
2403
2403
|
middlename?: string | null | undefined;
|
2404
2404
|
} | {
|
2405
2405
|
country: string;
|
@@ -2445,8 +2445,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2445
2445
|
street?: string | null | undefined;
|
2446
2446
|
zipCode?: string | null | undefined;
|
2447
2447
|
} | {
|
2448
|
-
firstname
|
2449
|
-
surname
|
2448
|
+
firstname: string;
|
2449
|
+
surname: string;
|
2450
2450
|
middlename?: string | null | undefined;
|
2451
2451
|
} | {
|
2452
2452
|
country: string;
|
@@ -2607,16 +2607,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
2607
2607
|
addressLine3?: string | null | undefined;
|
2608
2608
|
postcodeOrZip?: string | null | undefined;
|
2609
2609
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2610
|
-
firstname: z.
|
2611
|
-
surname: z.
|
2610
|
+
firstname: z.ZodString;
|
2611
|
+
surname: z.ZodString;
|
2612
2612
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2613
2613
|
}, "strip", z.ZodTypeAny, {
|
2614
|
-
firstname
|
2615
|
-
surname
|
2614
|
+
firstname: string;
|
2615
|
+
surname: string;
|
2616
2616
|
middlename?: string | null | undefined;
|
2617
2617
|
}, {
|
2618
|
-
firstname
|
2619
|
-
surname
|
2618
|
+
firstname: string;
|
2619
|
+
surname: string;
|
2620
2620
|
middlename?: string | null | undefined;
|
2621
2621
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
2622
2622
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -2742,16 +2742,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
2742
2742
|
addressLine3?: string | null | undefined;
|
2743
2743
|
postcodeOrZip?: string | null | undefined;
|
2744
2744
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2745
|
-
firstname: z.
|
2746
|
-
surname: z.
|
2745
|
+
firstname: z.ZodString;
|
2746
|
+
surname: z.ZodString;
|
2747
2747
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2748
2748
|
}, "strip", z.ZodTypeAny, {
|
2749
|
-
firstname
|
2750
|
-
surname
|
2749
|
+
firstname: string;
|
2750
|
+
surname: string;
|
2751
2751
|
middlename?: string | null | undefined;
|
2752
2752
|
}, {
|
2753
|
-
firstname
|
2754
|
-
surname
|
2753
|
+
firstname: string;
|
2754
|
+
surname: string;
|
2755
2755
|
middlename?: string | null | undefined;
|
2756
2756
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
2757
2757
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -2783,8 +2783,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2783
2783
|
street?: string | null | undefined;
|
2784
2784
|
zipCode?: string | null | undefined;
|
2785
2785
|
} | {
|
2786
|
-
firstname
|
2787
|
-
surname
|
2786
|
+
firstname: string;
|
2787
|
+
surname: string;
|
2788
2788
|
middlename?: string | null | undefined;
|
2789
2789
|
} | {
|
2790
2790
|
country: string;
|
@@ -2830,8 +2830,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2830
2830
|
street?: string | null | undefined;
|
2831
2831
|
zipCode?: string | null | undefined;
|
2832
2832
|
} | {
|
2833
|
-
firstname
|
2834
|
-
surname
|
2833
|
+
firstname: string;
|
2834
|
+
surname: string;
|
2835
2835
|
middlename?: string | null | undefined;
|
2836
2836
|
} | {
|
2837
2837
|
country: string;
|
@@ -2885,8 +2885,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2885
2885
|
street?: string | null | undefined;
|
2886
2886
|
zipCode?: string | null | undefined;
|
2887
2887
|
} | {
|
2888
|
-
firstname
|
2889
|
-
surname
|
2888
|
+
firstname: string;
|
2889
|
+
surname: string;
|
2890
2890
|
middlename?: string | null | undefined;
|
2891
2891
|
} | {
|
2892
2892
|
country: string;
|
@@ -2932,8 +2932,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2932
2932
|
street?: string | null | undefined;
|
2933
2933
|
zipCode?: string | null | undefined;
|
2934
2934
|
} | {
|
2935
|
-
firstname
|
2936
|
-
surname
|
2935
|
+
firstname: string;
|
2936
|
+
surname: string;
|
2937
2937
|
middlename?: string | null | undefined;
|
2938
2938
|
} | {
|
2939
2939
|
country: string;
|
@@ -3094,16 +3094,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
3094
3094
|
addressLine3?: string | null | undefined;
|
3095
3095
|
postcodeOrZip?: string | null | undefined;
|
3096
3096
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3097
|
-
firstname: z.
|
3098
|
-
surname: z.
|
3097
|
+
firstname: z.ZodString;
|
3098
|
+
surname: z.ZodString;
|
3099
3099
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3100
3100
|
}, "strip", z.ZodTypeAny, {
|
3101
|
-
firstname
|
3102
|
-
surname
|
3101
|
+
firstname: string;
|
3102
|
+
surname: string;
|
3103
3103
|
middlename?: string | null | undefined;
|
3104
3104
|
}, {
|
3105
|
-
firstname
|
3106
|
-
surname
|
3105
|
+
firstname: string;
|
3106
|
+
surname: string;
|
3107
3107
|
middlename?: string | null | undefined;
|
3108
3108
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
3109
3109
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -3229,16 +3229,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
3229
3229
|
addressLine3?: string | null | undefined;
|
3230
3230
|
postcodeOrZip?: string | null | undefined;
|
3231
3231
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3232
|
-
firstname: z.
|
3233
|
-
surname: z.
|
3232
|
+
firstname: z.ZodString;
|
3233
|
+
surname: z.ZodString;
|
3234
3234
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3235
3235
|
}, "strip", z.ZodTypeAny, {
|
3236
|
-
firstname
|
3237
|
-
surname
|
3236
|
+
firstname: string;
|
3237
|
+
surname: string;
|
3238
3238
|
middlename?: string | null | undefined;
|
3239
3239
|
}, {
|
3240
|
-
firstname
|
3241
|
-
surname
|
3240
|
+
firstname: string;
|
3241
|
+
surname: string;
|
3242
3242
|
middlename?: string | null | undefined;
|
3243
3243
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
3244
3244
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -3271,8 +3271,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3271
3271
|
street?: string | null | undefined;
|
3272
3272
|
zipCode?: string | null | undefined;
|
3273
3273
|
} | {
|
3274
|
-
firstname
|
3275
|
-
surname
|
3274
|
+
firstname: string;
|
3275
|
+
surname: string;
|
3276
3276
|
middlename?: string | null | undefined;
|
3277
3277
|
} | {
|
3278
3278
|
country: string;
|
@@ -3318,8 +3318,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3318
3318
|
street?: string | null | undefined;
|
3319
3319
|
zipCode?: string | null | undefined;
|
3320
3320
|
} | {
|
3321
|
-
firstname
|
3322
|
-
surname
|
3321
|
+
firstname: string;
|
3322
|
+
surname: string;
|
3323
3323
|
middlename?: string | null | undefined;
|
3324
3324
|
} | {
|
3325
3325
|
country: string;
|
@@ -3374,8 +3374,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3374
3374
|
street?: string | null | undefined;
|
3375
3375
|
zipCode?: string | null | undefined;
|
3376
3376
|
} | {
|
3377
|
-
firstname
|
3378
|
-
surname
|
3377
|
+
firstname: string;
|
3378
|
+
surname: string;
|
3379
3379
|
middlename?: string | null | undefined;
|
3380
3380
|
} | {
|
3381
3381
|
country: string;
|
@@ -3421,8 +3421,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3421
3421
|
street?: string | null | undefined;
|
3422
3422
|
zipCode?: string | null | undefined;
|
3423
3423
|
} | {
|
3424
|
-
firstname
|
3425
|
-
surname
|
3424
|
+
firstname: string;
|
3425
|
+
surname: string;
|
3426
3426
|
middlename?: string | null | undefined;
|
3427
3427
|
} | {
|
3428
3428
|
country: string;
|
@@ -3584,16 +3584,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
3584
3584
|
addressLine3?: string | null | undefined;
|
3585
3585
|
postcodeOrZip?: string | null | undefined;
|
3586
3586
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3587
|
-
firstname: z.
|
3588
|
-
surname: z.
|
3587
|
+
firstname: z.ZodString;
|
3588
|
+
surname: z.ZodString;
|
3589
3589
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3590
3590
|
}, "strip", z.ZodTypeAny, {
|
3591
|
-
firstname
|
3592
|
-
surname
|
3591
|
+
firstname: string;
|
3592
|
+
surname: string;
|
3593
3593
|
middlename?: string | null | undefined;
|
3594
3594
|
}, {
|
3595
|
-
firstname
|
3596
|
-
surname
|
3595
|
+
firstname: string;
|
3596
|
+
surname: string;
|
3597
3597
|
middlename?: string | null | undefined;
|
3598
3598
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
3599
3599
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -3719,16 +3719,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
3719
3719
|
addressLine3?: string | null | undefined;
|
3720
3720
|
postcodeOrZip?: string | null | undefined;
|
3721
3721
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3722
|
-
firstname: z.
|
3723
|
-
surname: z.
|
3722
|
+
firstname: z.ZodString;
|
3723
|
+
surname: z.ZodString;
|
3724
3724
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3725
3725
|
}, "strip", z.ZodTypeAny, {
|
3726
|
-
firstname
|
3727
|
-
surname
|
3726
|
+
firstname: string;
|
3727
|
+
surname: string;
|
3728
3728
|
middlename?: string | null | undefined;
|
3729
3729
|
}, {
|
3730
|
-
firstname
|
3731
|
-
surname
|
3730
|
+
firstname: string;
|
3731
|
+
surname: string;
|
3732
3732
|
middlename?: string | null | undefined;
|
3733
3733
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
3734
3734
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -3760,8 +3760,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3760
3760
|
street?: string | null | undefined;
|
3761
3761
|
zipCode?: string | null | undefined;
|
3762
3762
|
} | {
|
3763
|
-
firstname
|
3764
|
-
surname
|
3763
|
+
firstname: string;
|
3764
|
+
surname: string;
|
3765
3765
|
middlename?: string | null | undefined;
|
3766
3766
|
} | {
|
3767
3767
|
country: string;
|
@@ -3807,8 +3807,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3807
3807
|
street?: string | null | undefined;
|
3808
3808
|
zipCode?: string | null | undefined;
|
3809
3809
|
} | {
|
3810
|
-
firstname
|
3811
|
-
surname
|
3810
|
+
firstname: string;
|
3811
|
+
surname: string;
|
3812
3812
|
middlename?: string | null | undefined;
|
3813
3813
|
} | {
|
3814
3814
|
country: string;
|
@@ -3862,8 +3862,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3862
3862
|
street?: string | null | undefined;
|
3863
3863
|
zipCode?: string | null | undefined;
|
3864
3864
|
} | {
|
3865
|
-
firstname
|
3866
|
-
surname
|
3865
|
+
firstname: string;
|
3866
|
+
surname: string;
|
3867
3867
|
middlename?: string | null | undefined;
|
3868
3868
|
} | {
|
3869
3869
|
country: string;
|
@@ -3909,8 +3909,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3909
3909
|
street?: string | null | undefined;
|
3910
3910
|
zipCode?: string | null | undefined;
|
3911
3911
|
} | {
|
3912
|
-
firstname
|
3913
|
-
surname
|
3912
|
+
firstname: string;
|
3913
|
+
surname: string;
|
3914
3914
|
middlename?: string | null | undefined;
|
3915
3915
|
} | {
|
3916
3916
|
country: string;
|
@@ -4071,16 +4071,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
4071
4071
|
addressLine3?: string | null | undefined;
|
4072
4072
|
postcodeOrZip?: string | null | undefined;
|
4073
4073
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4074
|
-
firstname: z.
|
4075
|
-
surname: z.
|
4074
|
+
firstname: z.ZodString;
|
4075
|
+
surname: z.ZodString;
|
4076
4076
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4077
4077
|
}, "strip", z.ZodTypeAny, {
|
4078
|
-
firstname
|
4079
|
-
surname
|
4078
|
+
firstname: string;
|
4079
|
+
surname: string;
|
4080
4080
|
middlename?: string | null | undefined;
|
4081
4081
|
}, {
|
4082
|
-
firstname
|
4083
|
-
surname
|
4082
|
+
firstname: string;
|
4083
|
+
surname: string;
|
4084
4084
|
middlename?: string | null | undefined;
|
4085
4085
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
4086
4086
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -4206,16 +4206,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
4206
4206
|
addressLine3?: string | null | undefined;
|
4207
4207
|
postcodeOrZip?: string | null | undefined;
|
4208
4208
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4209
|
-
firstname: z.
|
4210
|
-
surname: z.
|
4209
|
+
firstname: z.ZodString;
|
4210
|
+
surname: z.ZodString;
|
4211
4211
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4212
4212
|
}, "strip", z.ZodTypeAny, {
|
4213
|
-
firstname
|
4214
|
-
surname
|
4213
|
+
firstname: string;
|
4214
|
+
surname: string;
|
4215
4215
|
middlename?: string | null | undefined;
|
4216
4216
|
}, {
|
4217
|
-
firstname
|
4218
|
-
surname
|
4217
|
+
firstname: string;
|
4218
|
+
surname: string;
|
4219
4219
|
middlename?: string | null | undefined;
|
4220
4220
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
4221
4221
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -4248,8 +4248,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4248
4248
|
street?: string | null | undefined;
|
4249
4249
|
zipCode?: string | null | undefined;
|
4250
4250
|
} | {
|
4251
|
-
firstname
|
4252
|
-
surname
|
4251
|
+
firstname: string;
|
4252
|
+
surname: string;
|
4253
4253
|
middlename?: string | null | undefined;
|
4254
4254
|
} | {
|
4255
4255
|
country: string;
|
@@ -4296,8 +4296,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4296
4296
|
street?: string | null | undefined;
|
4297
4297
|
zipCode?: string | null | undefined;
|
4298
4298
|
} | {
|
4299
|
-
firstname
|
4300
|
-
surname
|
4299
|
+
firstname: string;
|
4300
|
+
surname: string;
|
4301
4301
|
middlename?: string | null | undefined;
|
4302
4302
|
} | {
|
4303
4303
|
country: string;
|
@@ -4351,8 +4351,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4351
4351
|
street?: string | null | undefined;
|
4352
4352
|
zipCode?: string | null | undefined;
|
4353
4353
|
} | {
|
4354
|
-
firstname
|
4355
|
-
surname
|
4354
|
+
firstname: string;
|
4355
|
+
surname: string;
|
4356
4356
|
middlename?: string | null | undefined;
|
4357
4357
|
} | {
|
4358
4358
|
country: string;
|
@@ -4399,8 +4399,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4399
4399
|
street?: string | null | undefined;
|
4400
4400
|
zipCode?: string | null | undefined;
|
4401
4401
|
} | {
|
4402
|
-
firstname
|
4403
|
-
surname
|
4402
|
+
firstname: string;
|
4403
|
+
surname: string;
|
4404
4404
|
middlename?: string | null | undefined;
|
4405
4405
|
} | {
|
4406
4406
|
country: string;
|
@@ -4561,16 +4561,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
4561
4561
|
addressLine3?: string | null | undefined;
|
4562
4562
|
postcodeOrZip?: string | null | undefined;
|
4563
4563
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4564
|
-
firstname: z.
|
4565
|
-
surname: z.
|
4564
|
+
firstname: z.ZodString;
|
4565
|
+
surname: z.ZodString;
|
4566
4566
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4567
4567
|
}, "strip", z.ZodTypeAny, {
|
4568
|
-
firstname
|
4569
|
-
surname
|
4568
|
+
firstname: string;
|
4569
|
+
surname: string;
|
4570
4570
|
middlename?: string | null | undefined;
|
4571
4571
|
}, {
|
4572
|
-
firstname
|
4573
|
-
surname
|
4572
|
+
firstname: string;
|
4573
|
+
surname: string;
|
4574
4574
|
middlename?: string | null | undefined;
|
4575
4575
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
4576
4576
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -4696,16 +4696,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
4696
4696
|
addressLine3?: string | null | undefined;
|
4697
4697
|
postcodeOrZip?: string | null | undefined;
|
4698
4698
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4699
|
-
firstname: z.
|
4700
|
-
surname: z.
|
4699
|
+
firstname: z.ZodString;
|
4700
|
+
surname: z.ZodString;
|
4701
4701
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4702
4702
|
}, "strip", z.ZodTypeAny, {
|
4703
|
-
firstname
|
4704
|
-
surname
|
4703
|
+
firstname: string;
|
4704
|
+
surname: string;
|
4705
4705
|
middlename?: string | null | undefined;
|
4706
4706
|
}, {
|
4707
|
-
firstname
|
4708
|
-
surname
|
4707
|
+
firstname: string;
|
4708
|
+
surname: string;
|
4709
4709
|
middlename?: string | null | undefined;
|
4710
4710
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
4711
4711
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -4737,8 +4737,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4737
4737
|
street?: string | null | undefined;
|
4738
4738
|
zipCode?: string | null | undefined;
|
4739
4739
|
} | {
|
4740
|
-
firstname
|
4741
|
-
surname
|
4740
|
+
firstname: string;
|
4741
|
+
surname: string;
|
4742
4742
|
middlename?: string | null | undefined;
|
4743
4743
|
} | {
|
4744
4744
|
country: string;
|
@@ -4784,8 +4784,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4784
4784
|
street?: string | null | undefined;
|
4785
4785
|
zipCode?: string | null | undefined;
|
4786
4786
|
} | {
|
4787
|
-
firstname
|
4788
|
-
surname
|
4787
|
+
firstname: string;
|
4788
|
+
surname: string;
|
4789
4789
|
middlename?: string | null | undefined;
|
4790
4790
|
} | {
|
4791
4791
|
country: string;
|
@@ -4839,8 +4839,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4839
4839
|
street?: string | null | undefined;
|
4840
4840
|
zipCode?: string | null | undefined;
|
4841
4841
|
} | {
|
4842
|
-
firstname
|
4843
|
-
surname
|
4842
|
+
firstname: string;
|
4843
|
+
surname: string;
|
4844
4844
|
middlename?: string | null | undefined;
|
4845
4845
|
} | {
|
4846
4846
|
country: string;
|
@@ -4886,8 +4886,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4886
4886
|
street?: string | null | undefined;
|
4887
4887
|
zipCode?: string | null | undefined;
|
4888
4888
|
} | {
|
4889
|
-
firstname
|
4890
|
-
surname
|
4889
|
+
firstname: string;
|
4890
|
+
surname: string;
|
4891
4891
|
middlename?: string | null | undefined;
|
4892
4892
|
} | {
|
4893
4893
|
country: string;
|
@@ -5048,16 +5048,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
5048
5048
|
addressLine3?: string | null | undefined;
|
5049
5049
|
postcodeOrZip?: string | null | undefined;
|
5050
5050
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5051
|
-
firstname: z.
|
5052
|
-
surname: z.
|
5051
|
+
firstname: z.ZodString;
|
5052
|
+
surname: z.ZodString;
|
5053
5053
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5054
5054
|
}, "strip", z.ZodTypeAny, {
|
5055
|
-
firstname
|
5056
|
-
surname
|
5055
|
+
firstname: string;
|
5056
|
+
surname: string;
|
5057
5057
|
middlename?: string | null | undefined;
|
5058
5058
|
}, {
|
5059
|
-
firstname
|
5060
|
-
surname
|
5059
|
+
firstname: string;
|
5060
|
+
surname: string;
|
5061
5061
|
middlename?: string | null | undefined;
|
5062
5062
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
5063
5063
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -5183,16 +5183,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
5183
5183
|
addressLine3?: string | null | undefined;
|
5184
5184
|
postcodeOrZip?: string | null | undefined;
|
5185
5185
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5186
|
-
firstname: z.
|
5187
|
-
surname: z.
|
5186
|
+
firstname: z.ZodString;
|
5187
|
+
surname: z.ZodString;
|
5188
5188
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5189
5189
|
}, "strip", z.ZodTypeAny, {
|
5190
|
-
firstname
|
5191
|
-
surname
|
5190
|
+
firstname: string;
|
5191
|
+
surname: string;
|
5192
5192
|
middlename?: string | null | undefined;
|
5193
5193
|
}, {
|
5194
|
-
firstname
|
5195
|
-
surname
|
5194
|
+
firstname: string;
|
5195
|
+
surname: string;
|
5196
5196
|
middlename?: string | null | undefined;
|
5197
5197
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
5198
5198
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -5225,8 +5225,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5225
5225
|
street?: string | null | undefined;
|
5226
5226
|
zipCode?: string | null | undefined;
|
5227
5227
|
} | {
|
5228
|
-
firstname
|
5229
|
-
surname
|
5228
|
+
firstname: string;
|
5229
|
+
surname: string;
|
5230
5230
|
middlename?: string | null | undefined;
|
5231
5231
|
} | {
|
5232
5232
|
country: string;
|
@@ -5273,8 +5273,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5273
5273
|
street?: string | null | undefined;
|
5274
5274
|
zipCode?: string | null | undefined;
|
5275
5275
|
} | {
|
5276
|
-
firstname
|
5277
|
-
surname
|
5276
|
+
firstname: string;
|
5277
|
+
surname: string;
|
5278
5278
|
middlename?: string | null | undefined;
|
5279
5279
|
} | {
|
5280
5280
|
country: string;
|
@@ -5328,8 +5328,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5328
5328
|
street?: string | null | undefined;
|
5329
5329
|
zipCode?: string | null | undefined;
|
5330
5330
|
} | {
|
5331
|
-
firstname
|
5332
|
-
surname
|
5331
|
+
firstname: string;
|
5332
|
+
surname: string;
|
5333
5333
|
middlename?: string | null | undefined;
|
5334
5334
|
} | {
|
5335
5335
|
country: string;
|
@@ -5376,8 +5376,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5376
5376
|
street?: string | null | undefined;
|
5377
5377
|
zipCode?: string | null | undefined;
|
5378
5378
|
} | {
|
5379
|
-
firstname
|
5380
|
-
surname
|
5379
|
+
firstname: string;
|
5380
|
+
surname: string;
|
5381
5381
|
middlename?: string | null | undefined;
|
5382
5382
|
} | {
|
5383
5383
|
country: string;
|
@@ -5538,16 +5538,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
5538
5538
|
addressLine3?: string | null | undefined;
|
5539
5539
|
postcodeOrZip?: string | null | undefined;
|
5540
5540
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5541
|
-
firstname: z.
|
5542
|
-
surname: z.
|
5541
|
+
firstname: z.ZodString;
|
5542
|
+
surname: z.ZodString;
|
5543
5543
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5544
5544
|
}, "strip", z.ZodTypeAny, {
|
5545
|
-
firstname
|
5546
|
-
surname
|
5545
|
+
firstname: string;
|
5546
|
+
surname: string;
|
5547
5547
|
middlename?: string | null | undefined;
|
5548
5548
|
}, {
|
5549
|
-
firstname
|
5550
|
-
surname
|
5549
|
+
firstname: string;
|
5550
|
+
surname: string;
|
5551
5551
|
middlename?: string | null | undefined;
|
5552
5552
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
5553
5553
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -5673,16 +5673,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
5673
5673
|
addressLine3?: string | null | undefined;
|
5674
5674
|
postcodeOrZip?: string | null | undefined;
|
5675
5675
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5676
|
-
firstname: z.
|
5677
|
-
surname: z.
|
5676
|
+
firstname: z.ZodString;
|
5677
|
+
surname: z.ZodString;
|
5678
5678
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5679
5679
|
}, "strip", z.ZodTypeAny, {
|
5680
|
-
firstname
|
5681
|
-
surname
|
5680
|
+
firstname: string;
|
5681
|
+
surname: string;
|
5682
5682
|
middlename?: string | null | undefined;
|
5683
5683
|
}, {
|
5684
|
-
firstname
|
5685
|
-
surname
|
5684
|
+
firstname: string;
|
5685
|
+
surname: string;
|
5686
5686
|
middlename?: string | null | undefined;
|
5687
5687
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
5688
5688
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -5729,8 +5729,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5729
5729
|
street?: string | null | undefined;
|
5730
5730
|
zipCode?: string | null | undefined;
|
5731
5731
|
} | {
|
5732
|
-
firstname
|
5733
|
-
surname
|
5732
|
+
firstname: string;
|
5733
|
+
surname: string;
|
5734
5734
|
middlename?: string | null | undefined;
|
5735
5735
|
} | {
|
5736
5736
|
country: string;
|
@@ -5777,8 +5777,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5777
5777
|
street?: string | null | undefined;
|
5778
5778
|
zipCode?: string | null | undefined;
|
5779
5779
|
} | {
|
5780
|
-
firstname
|
5781
|
-
surname
|
5780
|
+
firstname: string;
|
5781
|
+
surname: string;
|
5782
5782
|
middlename?: string | null | undefined;
|
5783
5783
|
} | {
|
5784
5784
|
country: string;
|
@@ -5836,8 +5836,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5836
5836
|
street?: string | null | undefined;
|
5837
5837
|
zipCode?: string | null | undefined;
|
5838
5838
|
} | {
|
5839
|
-
firstname
|
5840
|
-
surname
|
5839
|
+
firstname: string;
|
5840
|
+
surname: string;
|
5841
5841
|
middlename?: string | null | undefined;
|
5842
5842
|
} | {
|
5843
5843
|
country: string;
|
@@ -5884,8 +5884,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5884
5884
|
street?: string | null | undefined;
|
5885
5885
|
zipCode?: string | null | undefined;
|
5886
5886
|
} | {
|
5887
|
-
firstname
|
5888
|
-
surname
|
5887
|
+
firstname: string;
|
5888
|
+
surname: string;
|
5889
5889
|
middlename?: string | null | undefined;
|
5890
5890
|
} | {
|
5891
5891
|
country: string;
|
@@ -6046,16 +6046,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
6046
6046
|
addressLine3?: string | null | undefined;
|
6047
6047
|
postcodeOrZip?: string | null | undefined;
|
6048
6048
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6049
|
-
firstname: z.
|
6050
|
-
surname: z.
|
6049
|
+
firstname: z.ZodString;
|
6050
|
+
surname: z.ZodString;
|
6051
6051
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6052
6052
|
}, "strip", z.ZodTypeAny, {
|
6053
|
-
firstname
|
6054
|
-
surname
|
6053
|
+
firstname: string;
|
6054
|
+
surname: string;
|
6055
6055
|
middlename?: string | null | undefined;
|
6056
6056
|
}, {
|
6057
|
-
firstname
|
6058
|
-
surname
|
6057
|
+
firstname: string;
|
6058
|
+
surname: string;
|
6059
6059
|
middlename?: string | null | undefined;
|
6060
6060
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
6061
6061
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -6181,16 +6181,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
6181
6181
|
addressLine3?: string | null | undefined;
|
6182
6182
|
postcodeOrZip?: string | null | undefined;
|
6183
6183
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6184
|
-
firstname: z.
|
6185
|
-
surname: z.
|
6184
|
+
firstname: z.ZodString;
|
6185
|
+
surname: z.ZodString;
|
6186
6186
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6187
6187
|
}, "strip", z.ZodTypeAny, {
|
6188
|
-
firstname
|
6189
|
-
surname
|
6188
|
+
firstname: string;
|
6189
|
+
surname: string;
|
6190
6190
|
middlename?: string | null | undefined;
|
6191
6191
|
}, {
|
6192
|
-
firstname
|
6193
|
-
surname
|
6192
|
+
firstname: string;
|
6193
|
+
surname: string;
|
6194
6194
|
middlename?: string | null | undefined;
|
6195
6195
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
6196
6196
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -6222,8 +6222,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6222
6222
|
street?: string | null | undefined;
|
6223
6223
|
zipCode?: string | null | undefined;
|
6224
6224
|
} | {
|
6225
|
-
firstname
|
6226
|
-
surname
|
6225
|
+
firstname: string;
|
6226
|
+
surname: string;
|
6227
6227
|
middlename?: string | null | undefined;
|
6228
6228
|
} | {
|
6229
6229
|
country: string;
|
@@ -6269,8 +6269,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6269
6269
|
street?: string | null | undefined;
|
6270
6270
|
zipCode?: string | null | undefined;
|
6271
6271
|
} | {
|
6272
|
-
firstname
|
6273
|
-
surname
|
6272
|
+
firstname: string;
|
6273
|
+
surname: string;
|
6274
6274
|
middlename?: string | null | undefined;
|
6275
6275
|
} | {
|
6276
6276
|
country: string;
|
@@ -6324,8 +6324,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6324
6324
|
street?: string | null | undefined;
|
6325
6325
|
zipCode?: string | null | undefined;
|
6326
6326
|
} | {
|
6327
|
-
firstname
|
6328
|
-
surname
|
6327
|
+
firstname: string;
|
6328
|
+
surname: string;
|
6329
6329
|
middlename?: string | null | undefined;
|
6330
6330
|
} | {
|
6331
6331
|
country: string;
|
@@ -6371,8 +6371,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6371
6371
|
street?: string | null | undefined;
|
6372
6372
|
zipCode?: string | null | undefined;
|
6373
6373
|
} | {
|
6374
|
-
firstname
|
6375
|
-
surname
|
6374
|
+
firstname: string;
|
6375
|
+
surname: string;
|
6376
6376
|
middlename?: string | null | undefined;
|
6377
6377
|
} | {
|
6378
6378
|
country: string;
|
@@ -6533,16 +6533,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
6533
6533
|
addressLine3?: string | null | undefined;
|
6534
6534
|
postcodeOrZip?: string | null | undefined;
|
6535
6535
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6536
|
-
firstname: z.
|
6537
|
-
surname: z.
|
6536
|
+
firstname: z.ZodString;
|
6537
|
+
surname: z.ZodString;
|
6538
6538
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6539
6539
|
}, "strip", z.ZodTypeAny, {
|
6540
|
-
firstname
|
6541
|
-
surname
|
6540
|
+
firstname: string;
|
6541
|
+
surname: string;
|
6542
6542
|
middlename?: string | null | undefined;
|
6543
6543
|
}, {
|
6544
|
-
firstname
|
6545
|
-
surname
|
6544
|
+
firstname: string;
|
6545
|
+
surname: string;
|
6546
6546
|
middlename?: string | null | undefined;
|
6547
6547
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
6548
6548
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -6668,16 +6668,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
6668
6668
|
addressLine3?: string | null | undefined;
|
6669
6669
|
postcodeOrZip?: string | null | undefined;
|
6670
6670
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6671
|
-
firstname: z.
|
6672
|
-
surname: z.
|
6671
|
+
firstname: z.ZodString;
|
6672
|
+
surname: z.ZodString;
|
6673
6673
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6674
6674
|
}, "strip", z.ZodTypeAny, {
|
6675
|
-
firstname
|
6676
|
-
surname
|
6675
|
+
firstname: string;
|
6676
|
+
surname: string;
|
6677
6677
|
middlename?: string | null | undefined;
|
6678
6678
|
}, {
|
6679
|
-
firstname
|
6680
|
-
surname
|
6679
|
+
firstname: string;
|
6680
|
+
surname: string;
|
6681
6681
|
middlename?: string | null | undefined;
|
6682
6682
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
6683
6683
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -6716,8 +6716,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6716
6716
|
street?: string | null | undefined;
|
6717
6717
|
zipCode?: string | null | undefined;
|
6718
6718
|
} | {
|
6719
|
-
firstname
|
6720
|
-
surname
|
6719
|
+
firstname: string;
|
6720
|
+
surname: string;
|
6721
6721
|
middlename?: string | null | undefined;
|
6722
6722
|
} | {
|
6723
6723
|
country: string;
|
@@ -6766,8 +6766,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6766
6766
|
street?: string | null | undefined;
|
6767
6767
|
zipCode?: string | null | undefined;
|
6768
6768
|
} | {
|
6769
|
-
firstname
|
6770
|
-
surname
|
6769
|
+
firstname: string;
|
6770
|
+
surname: string;
|
6771
6771
|
middlename?: string | null | undefined;
|
6772
6772
|
} | {
|
6773
6773
|
country: string;
|
@@ -6821,8 +6821,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6821
6821
|
street?: string | null | undefined;
|
6822
6822
|
zipCode?: string | null | undefined;
|
6823
6823
|
} | {
|
6824
|
-
firstname
|
6825
|
-
surname
|
6824
|
+
firstname: string;
|
6825
|
+
surname: string;
|
6826
6826
|
middlename?: string | null | undefined;
|
6827
6827
|
} | {
|
6828
6828
|
country: string;
|
@@ -6871,8 +6871,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6871
6871
|
street?: string | null | undefined;
|
6872
6872
|
zipCode?: string | null | undefined;
|
6873
6873
|
} | {
|
6874
|
-
firstname
|
6875
|
-
surname
|
6874
|
+
firstname: string;
|
6875
|
+
surname: string;
|
6876
6876
|
middlename?: string | null | undefined;
|
6877
6877
|
} | {
|
6878
6878
|
country: string;
|
@@ -7033,16 +7033,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
7033
7033
|
addressLine3?: string | null | undefined;
|
7034
7034
|
postcodeOrZip?: string | null | undefined;
|
7035
7035
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7036
|
-
firstname: z.
|
7037
|
-
surname: z.
|
7036
|
+
firstname: z.ZodString;
|
7037
|
+
surname: z.ZodString;
|
7038
7038
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7039
7039
|
}, "strip", z.ZodTypeAny, {
|
7040
|
-
firstname
|
7041
|
-
surname
|
7040
|
+
firstname: string;
|
7041
|
+
surname: string;
|
7042
7042
|
middlename?: string | null | undefined;
|
7043
7043
|
}, {
|
7044
|
-
firstname
|
7045
|
-
surname
|
7044
|
+
firstname: string;
|
7045
|
+
surname: string;
|
7046
7046
|
middlename?: string | null | undefined;
|
7047
7047
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
7048
7048
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -7168,16 +7168,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
7168
7168
|
addressLine3?: string | null | undefined;
|
7169
7169
|
postcodeOrZip?: string | null | undefined;
|
7170
7170
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7171
|
-
firstname: z.
|
7172
|
-
surname: z.
|
7171
|
+
firstname: z.ZodString;
|
7172
|
+
surname: z.ZodString;
|
7173
7173
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7174
7174
|
}, "strip", z.ZodTypeAny, {
|
7175
|
-
firstname
|
7176
|
-
surname
|
7175
|
+
firstname: string;
|
7176
|
+
surname: string;
|
7177
7177
|
middlename?: string | null | undefined;
|
7178
7178
|
}, {
|
7179
|
-
firstname
|
7180
|
-
surname
|
7179
|
+
firstname: string;
|
7180
|
+
surname: string;
|
7181
7181
|
middlename?: string | null | undefined;
|
7182
7182
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
7183
7183
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -7209,8 +7209,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7209
7209
|
street?: string | null | undefined;
|
7210
7210
|
zipCode?: string | null | undefined;
|
7211
7211
|
} | {
|
7212
|
-
firstname
|
7213
|
-
surname
|
7212
|
+
firstname: string;
|
7213
|
+
surname: string;
|
7214
7214
|
middlename?: string | null | undefined;
|
7215
7215
|
} | {
|
7216
7216
|
country: string;
|
@@ -7256,8 +7256,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7256
7256
|
street?: string | null | undefined;
|
7257
7257
|
zipCode?: string | null | undefined;
|
7258
7258
|
} | {
|
7259
|
-
firstname
|
7260
|
-
surname
|
7259
|
+
firstname: string;
|
7260
|
+
surname: string;
|
7261
7261
|
middlename?: string | null | undefined;
|
7262
7262
|
} | {
|
7263
7263
|
country: string;
|
@@ -7311,8 +7311,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7311
7311
|
street?: string | null | undefined;
|
7312
7312
|
zipCode?: string | null | undefined;
|
7313
7313
|
} | {
|
7314
|
-
firstname
|
7315
|
-
surname
|
7314
|
+
firstname: string;
|
7315
|
+
surname: string;
|
7316
7316
|
middlename?: string | null | undefined;
|
7317
7317
|
} | {
|
7318
7318
|
country: string;
|
@@ -7358,8 +7358,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7358
7358
|
street?: string | null | undefined;
|
7359
7359
|
zipCode?: string | null | undefined;
|
7360
7360
|
} | {
|
7361
|
-
firstname
|
7362
|
-
surname
|
7361
|
+
firstname: string;
|
7362
|
+
surname: string;
|
7363
7363
|
middlename?: string | null | undefined;
|
7364
7364
|
} | {
|
7365
7365
|
country: string;
|
@@ -7520,16 +7520,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
7520
7520
|
addressLine3?: string | null | undefined;
|
7521
7521
|
postcodeOrZip?: string | null | undefined;
|
7522
7522
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7523
|
-
firstname: z.
|
7524
|
-
surname: z.
|
7523
|
+
firstname: z.ZodString;
|
7524
|
+
surname: z.ZodString;
|
7525
7525
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7526
7526
|
}, "strip", z.ZodTypeAny, {
|
7527
|
-
firstname
|
7528
|
-
surname
|
7527
|
+
firstname: string;
|
7528
|
+
surname: string;
|
7529
7529
|
middlename?: string | null | undefined;
|
7530
7530
|
}, {
|
7531
|
-
firstname
|
7532
|
-
surname
|
7531
|
+
firstname: string;
|
7532
|
+
surname: string;
|
7533
7533
|
middlename?: string | null | undefined;
|
7534
7534
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
7535
7535
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -7655,16 +7655,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
7655
7655
|
addressLine3?: string | null | undefined;
|
7656
7656
|
postcodeOrZip?: string | null | undefined;
|
7657
7657
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7658
|
-
firstname: z.
|
7659
|
-
surname: z.
|
7658
|
+
firstname: z.ZodString;
|
7659
|
+
surname: z.ZodString;
|
7660
7660
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7661
7661
|
}, "strip", z.ZodTypeAny, {
|
7662
|
-
firstname
|
7663
|
-
surname
|
7662
|
+
firstname: string;
|
7663
|
+
surname: string;
|
7664
7664
|
middlename?: string | null | undefined;
|
7665
7665
|
}, {
|
7666
|
-
firstname
|
7667
|
-
surname
|
7666
|
+
firstname: string;
|
7667
|
+
surname: string;
|
7668
7668
|
middlename?: string | null | undefined;
|
7669
7669
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
7670
7670
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -7728,8 +7728,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7728
7728
|
street?: string | null | undefined;
|
7729
7729
|
zipCode?: string | null | undefined;
|
7730
7730
|
} | {
|
7731
|
-
firstname
|
7732
|
-
surname
|
7731
|
+
firstname: string;
|
7732
|
+
surname: string;
|
7733
7733
|
middlename?: string | null | undefined;
|
7734
7734
|
} | {
|
7735
7735
|
country: string;
|
@@ -7776,8 +7776,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7776
7776
|
street?: string | null | undefined;
|
7777
7777
|
zipCode?: string | null | undefined;
|
7778
7778
|
} | {
|
7779
|
-
firstname
|
7780
|
-
surname
|
7779
|
+
firstname: string;
|
7780
|
+
surname: string;
|
7781
7781
|
middlename?: string | null | undefined;
|
7782
7782
|
} | {
|
7783
7783
|
country: string;
|
@@ -7831,8 +7831,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7831
7831
|
street?: string | null | undefined;
|
7832
7832
|
zipCode?: string | null | undefined;
|
7833
7833
|
} | {
|
7834
|
-
firstname
|
7835
|
-
surname
|
7834
|
+
firstname: string;
|
7835
|
+
surname: string;
|
7836
7836
|
middlename?: string | null | undefined;
|
7837
7837
|
} | {
|
7838
7838
|
country: string;
|
@@ -7878,8 +7878,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7878
7878
|
street?: string | null | undefined;
|
7879
7879
|
zipCode?: string | null | undefined;
|
7880
7880
|
} | {
|
7881
|
-
firstname
|
7882
|
-
surname
|
7881
|
+
firstname: string;
|
7882
|
+
surname: string;
|
7883
7883
|
middlename?: string | null | undefined;
|
7884
7884
|
} | {
|
7885
7885
|
country: string;
|
@@ -7933,8 +7933,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7933
7933
|
street?: string | null | undefined;
|
7934
7934
|
zipCode?: string | null | undefined;
|
7935
7935
|
} | {
|
7936
|
-
firstname
|
7937
|
-
surname
|
7936
|
+
firstname: string;
|
7937
|
+
surname: string;
|
7938
7938
|
middlename?: string | null | undefined;
|
7939
7939
|
} | {
|
7940
7940
|
country: string;
|
@@ -7980,8 +7980,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7980
7980
|
street?: string | null | undefined;
|
7981
7981
|
zipCode?: string | null | undefined;
|
7982
7982
|
} | {
|
7983
|
-
firstname
|
7984
|
-
surname
|
7983
|
+
firstname: string;
|
7984
|
+
surname: string;
|
7985
7985
|
middlename?: string | null | undefined;
|
7986
7986
|
} | {
|
7987
7987
|
country: string;
|
@@ -8036,8 +8036,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8036
8036
|
street?: string | null | undefined;
|
8037
8037
|
zipCode?: string | null | undefined;
|
8038
8038
|
} | {
|
8039
|
-
firstname
|
8040
|
-
surname
|
8039
|
+
firstname: string;
|
8040
|
+
surname: string;
|
8041
8041
|
middlename?: string | null | undefined;
|
8042
8042
|
} | {
|
8043
8043
|
country: string;
|
@@ -8083,8 +8083,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8083
8083
|
street?: string | null | undefined;
|
8084
8084
|
zipCode?: string | null | undefined;
|
8085
8085
|
} | {
|
8086
|
-
firstname
|
8087
|
-
surname
|
8086
|
+
firstname: string;
|
8087
|
+
surname: string;
|
8088
8088
|
middlename?: string | null | undefined;
|
8089
8089
|
} | {
|
8090
8090
|
country: string;
|
@@ -8138,8 +8138,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8138
8138
|
street?: string | null | undefined;
|
8139
8139
|
zipCode?: string | null | undefined;
|
8140
8140
|
} | {
|
8141
|
-
firstname
|
8142
|
-
surname
|
8141
|
+
firstname: string;
|
8142
|
+
surname: string;
|
8143
8143
|
middlename?: string | null | undefined;
|
8144
8144
|
} | {
|
8145
8145
|
country: string;
|
@@ -8185,8 +8185,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8185
8185
|
street?: string | null | undefined;
|
8186
8186
|
zipCode?: string | null | undefined;
|
8187
8187
|
} | {
|
8188
|
-
firstname
|
8189
|
-
surname
|
8188
|
+
firstname: string;
|
8189
|
+
surname: string;
|
8190
8190
|
middlename?: string | null | undefined;
|
8191
8191
|
} | {
|
8192
8192
|
country: string;
|
@@ -8244,8 +8244,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8244
8244
|
street?: string | null | undefined;
|
8245
8245
|
zipCode?: string | null | undefined;
|
8246
8246
|
} | {
|
8247
|
-
firstname
|
8248
|
-
surname
|
8247
|
+
firstname: string;
|
8248
|
+
surname: string;
|
8249
8249
|
middlename?: string | null | undefined;
|
8250
8250
|
} | {
|
8251
8251
|
country: string;
|
@@ -8291,8 +8291,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8291
8291
|
street?: string | null | undefined;
|
8292
8292
|
zipCode?: string | null | undefined;
|
8293
8293
|
} | {
|
8294
|
-
firstname
|
8295
|
-
surname
|
8294
|
+
firstname: string;
|
8295
|
+
surname: string;
|
8296
8296
|
middlename?: string | null | undefined;
|
8297
8297
|
} | {
|
8298
8298
|
country: string;
|
@@ -8346,8 +8346,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8346
8346
|
street?: string | null | undefined;
|
8347
8347
|
zipCode?: string | null | undefined;
|
8348
8348
|
} | {
|
8349
|
-
firstname
|
8350
|
-
surname
|
8349
|
+
firstname: string;
|
8350
|
+
surname: string;
|
8351
8351
|
middlename?: string | null | undefined;
|
8352
8352
|
} | {
|
8353
8353
|
country: string;
|
@@ -8393,8 +8393,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8393
8393
|
street?: string | null | undefined;
|
8394
8394
|
zipCode?: string | null | undefined;
|
8395
8395
|
} | {
|
8396
|
-
firstname
|
8397
|
-
surname
|
8396
|
+
firstname: string;
|
8397
|
+
surname: string;
|
8398
8398
|
middlename?: string | null | undefined;
|
8399
8399
|
} | {
|
8400
8400
|
country: string;
|
@@ -8452,8 +8452,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8452
8452
|
street?: string | null | undefined;
|
8453
8453
|
zipCode?: string | null | undefined;
|
8454
8454
|
} | {
|
8455
|
-
firstname
|
8456
|
-
surname
|
8455
|
+
firstname: string;
|
8456
|
+
surname: string;
|
8457
8457
|
middlename?: string | null | undefined;
|
8458
8458
|
} | {
|
8459
8459
|
country: string;
|
@@ -8499,8 +8499,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8499
8499
|
street?: string | null | undefined;
|
8500
8500
|
zipCode?: string | null | undefined;
|
8501
8501
|
} | {
|
8502
|
-
firstname
|
8503
|
-
surname
|
8502
|
+
firstname: string;
|
8503
|
+
surname: string;
|
8504
8504
|
middlename?: string | null | undefined;
|
8505
8505
|
} | {
|
8506
8506
|
country: string;
|
@@ -8554,8 +8554,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8554
8554
|
street?: string | null | undefined;
|
8555
8555
|
zipCode?: string | null | undefined;
|
8556
8556
|
} | {
|
8557
|
-
firstname
|
8558
|
-
surname
|
8557
|
+
firstname: string;
|
8558
|
+
surname: string;
|
8559
8559
|
middlename?: string | null | undefined;
|
8560
8560
|
} | {
|
8561
8561
|
country: string;
|
@@ -8601,8 +8601,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8601
8601
|
street?: string | null | undefined;
|
8602
8602
|
zipCode?: string | null | undefined;
|
8603
8603
|
} | {
|
8604
|
-
firstname
|
8605
|
-
surname
|
8604
|
+
firstname: string;
|
8605
|
+
surname: string;
|
8606
8606
|
middlename?: string | null | undefined;
|
8607
8607
|
} | {
|
8608
8608
|
country: string;
|
@@ -8656,8 +8656,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8656
8656
|
street?: string | null | undefined;
|
8657
8657
|
zipCode?: string | null | undefined;
|
8658
8658
|
} | {
|
8659
|
-
firstname
|
8660
|
-
surname
|
8659
|
+
firstname: string;
|
8660
|
+
surname: string;
|
8661
8661
|
middlename?: string | null | undefined;
|
8662
8662
|
} | {
|
8663
8663
|
country: string;
|
@@ -8703,8 +8703,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8703
8703
|
street?: string | null | undefined;
|
8704
8704
|
zipCode?: string | null | undefined;
|
8705
8705
|
} | {
|
8706
|
-
firstname
|
8707
|
-
surname
|
8706
|
+
firstname: string;
|
8707
|
+
surname: string;
|
8708
8708
|
middlename?: string | null | undefined;
|
8709
8709
|
} | {
|
8710
8710
|
country: string;
|
@@ -8758,8 +8758,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8758
8758
|
street?: string | null | undefined;
|
8759
8759
|
zipCode?: string | null | undefined;
|
8760
8760
|
} | {
|
8761
|
-
firstname
|
8762
|
-
surname
|
8761
|
+
firstname: string;
|
8762
|
+
surname: string;
|
8763
8763
|
middlename?: string | null | undefined;
|
8764
8764
|
} | {
|
8765
8765
|
country: string;
|
@@ -8808,8 +8808,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8808
8808
|
street?: string | null | undefined;
|
8809
8809
|
zipCode?: string | null | undefined;
|
8810
8810
|
} | {
|
8811
|
-
firstname
|
8812
|
-
surname
|
8811
|
+
firstname: string;
|
8812
|
+
surname: string;
|
8813
8813
|
middlename?: string | null | undefined;
|
8814
8814
|
} | {
|
8815
8815
|
country: string;
|
@@ -8863,8 +8863,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8863
8863
|
street?: string | null | undefined;
|
8864
8864
|
zipCode?: string | null | undefined;
|
8865
8865
|
} | {
|
8866
|
-
firstname
|
8867
|
-
surname
|
8866
|
+
firstname: string;
|
8867
|
+
surname: string;
|
8868
8868
|
middlename?: string | null | undefined;
|
8869
8869
|
} | {
|
8870
8870
|
country: string;
|
@@ -8910,8 +8910,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8910
8910
|
street?: string | null | undefined;
|
8911
8911
|
zipCode?: string | null | undefined;
|
8912
8912
|
} | {
|
8913
|
-
firstname
|
8914
|
-
surname
|
8913
|
+
firstname: string;
|
8914
|
+
surname: string;
|
8915
8915
|
middlename?: string | null | undefined;
|
8916
8916
|
} | {
|
8917
8917
|
country: string;
|
@@ -8965,8 +8965,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8965
8965
|
street?: string | null | undefined;
|
8966
8966
|
zipCode?: string | null | undefined;
|
8967
8967
|
} | {
|
8968
|
-
firstname
|
8969
|
-
surname
|
8968
|
+
firstname: string;
|
8969
|
+
surname: string;
|
8970
8970
|
middlename?: string | null | undefined;
|
8971
8971
|
} | {
|
8972
8972
|
country: string;
|
@@ -9013,8 +9013,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9013
9013
|
street?: string | null | undefined;
|
9014
9014
|
zipCode?: string | null | undefined;
|
9015
9015
|
} | {
|
9016
|
-
firstname
|
9017
|
-
surname
|
9016
|
+
firstname: string;
|
9017
|
+
surname: string;
|
9018
9018
|
middlename?: string | null | undefined;
|
9019
9019
|
} | {
|
9020
9020
|
country: string;
|
@@ -9072,8 +9072,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9072
9072
|
street?: string | null | undefined;
|
9073
9073
|
zipCode?: string | null | undefined;
|
9074
9074
|
} | {
|
9075
|
-
firstname
|
9076
|
-
surname
|
9075
|
+
firstname: string;
|
9076
|
+
surname: string;
|
9077
9077
|
middlename?: string | null | undefined;
|
9078
9078
|
} | {
|
9079
9079
|
country: string;
|
@@ -9120,8 +9120,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9120
9120
|
street?: string | null | undefined;
|
9121
9121
|
zipCode?: string | null | undefined;
|
9122
9122
|
} | {
|
9123
|
-
firstname
|
9124
|
-
surname
|
9123
|
+
firstname: string;
|
9124
|
+
surname: string;
|
9125
9125
|
middlename?: string | null | undefined;
|
9126
9126
|
} | {
|
9127
9127
|
country: string;
|
@@ -9175,8 +9175,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9175
9175
|
street?: string | null | undefined;
|
9176
9176
|
zipCode?: string | null | undefined;
|
9177
9177
|
} | {
|
9178
|
-
firstname
|
9179
|
-
surname
|
9178
|
+
firstname: string;
|
9179
|
+
surname: string;
|
9180
9180
|
middlename?: string | null | undefined;
|
9181
9181
|
} | {
|
9182
9182
|
country: string;
|
@@ -9222,8 +9222,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9222
9222
|
street?: string | null | undefined;
|
9223
9223
|
zipCode?: string | null | undefined;
|
9224
9224
|
} | {
|
9225
|
-
firstname
|
9226
|
-
surname
|
9225
|
+
firstname: string;
|
9226
|
+
surname: string;
|
9227
9227
|
middlename?: string | null | undefined;
|
9228
9228
|
} | {
|
9229
9229
|
country: string;
|
@@ -9296,8 +9296,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9296
9296
|
street?: string | null | undefined;
|
9297
9297
|
zipCode?: string | null | undefined;
|
9298
9298
|
} | {
|
9299
|
-
firstname
|
9300
|
-
surname
|
9299
|
+
firstname: string;
|
9300
|
+
surname: string;
|
9301
9301
|
middlename?: string | null | undefined;
|
9302
9302
|
} | {
|
9303
9303
|
country: string;
|
@@ -9344,8 +9344,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9344
9344
|
street?: string | null | undefined;
|
9345
9345
|
zipCode?: string | null | undefined;
|
9346
9346
|
} | {
|
9347
|
-
firstname
|
9348
|
-
surname
|
9347
|
+
firstname: string;
|
9348
|
+
surname: string;
|
9349
9349
|
middlename?: string | null | undefined;
|
9350
9350
|
} | {
|
9351
9351
|
country: string;
|
@@ -9399,8 +9399,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9399
9399
|
street?: string | null | undefined;
|
9400
9400
|
zipCode?: string | null | undefined;
|
9401
9401
|
} | {
|
9402
|
-
firstname
|
9403
|
-
surname
|
9402
|
+
firstname: string;
|
9403
|
+
surname: string;
|
9404
9404
|
middlename?: string | null | undefined;
|
9405
9405
|
} | {
|
9406
9406
|
country: string;
|
@@ -9446,8 +9446,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9446
9446
|
street?: string | null | undefined;
|
9447
9447
|
zipCode?: string | null | undefined;
|
9448
9448
|
} | {
|
9449
|
-
firstname
|
9450
|
-
surname
|
9449
|
+
firstname: string;
|
9450
|
+
surname: string;
|
9451
9451
|
middlename?: string | null | undefined;
|
9452
9452
|
} | {
|
9453
9453
|
country: string;
|
@@ -9501,8 +9501,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9501
9501
|
street?: string | null | undefined;
|
9502
9502
|
zipCode?: string | null | undefined;
|
9503
9503
|
} | {
|
9504
|
-
firstname
|
9505
|
-
surname
|
9504
|
+
firstname: string;
|
9505
|
+
surname: string;
|
9506
9506
|
middlename?: string | null | undefined;
|
9507
9507
|
} | {
|
9508
9508
|
country: string;
|
@@ -9548,8 +9548,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9548
9548
|
street?: string | null | undefined;
|
9549
9549
|
zipCode?: string | null | undefined;
|
9550
9550
|
} | {
|
9551
|
-
firstname
|
9552
|
-
surname
|
9551
|
+
firstname: string;
|
9552
|
+
surname: string;
|
9553
9553
|
middlename?: string | null | undefined;
|
9554
9554
|
} | {
|
9555
9555
|
country: string;
|
@@ -9604,8 +9604,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9604
9604
|
street?: string | null | undefined;
|
9605
9605
|
zipCode?: string | null | undefined;
|
9606
9606
|
} | {
|
9607
|
-
firstname
|
9608
|
-
surname
|
9607
|
+
firstname: string;
|
9608
|
+
surname: string;
|
9609
9609
|
middlename?: string | null | undefined;
|
9610
9610
|
} | {
|
9611
9611
|
country: string;
|
@@ -9651,8 +9651,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9651
9651
|
street?: string | null | undefined;
|
9652
9652
|
zipCode?: string | null | undefined;
|
9653
9653
|
} | {
|
9654
|
-
firstname
|
9655
|
-
surname
|
9654
|
+
firstname: string;
|
9655
|
+
surname: string;
|
9656
9656
|
middlename?: string | null | undefined;
|
9657
9657
|
} | {
|
9658
9658
|
country: string;
|
@@ -9706,8 +9706,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9706
9706
|
street?: string | null | undefined;
|
9707
9707
|
zipCode?: string | null | undefined;
|
9708
9708
|
} | {
|
9709
|
-
firstname
|
9710
|
-
surname
|
9709
|
+
firstname: string;
|
9710
|
+
surname: string;
|
9711
9711
|
middlename?: string | null | undefined;
|
9712
9712
|
} | {
|
9713
9713
|
country: string;
|
@@ -9753,8 +9753,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9753
9753
|
street?: string | null | undefined;
|
9754
9754
|
zipCode?: string | null | undefined;
|
9755
9755
|
} | {
|
9756
|
-
firstname
|
9757
|
-
surname
|
9756
|
+
firstname: string;
|
9757
|
+
surname: string;
|
9758
9758
|
middlename?: string | null | undefined;
|
9759
9759
|
} | {
|
9760
9760
|
country: string;
|
@@ -9812,8 +9812,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9812
9812
|
street?: string | null | undefined;
|
9813
9813
|
zipCode?: string | null | undefined;
|
9814
9814
|
} | {
|
9815
|
-
firstname
|
9816
|
-
surname
|
9815
|
+
firstname: string;
|
9816
|
+
surname: string;
|
9817
9817
|
middlename?: string | null | undefined;
|
9818
9818
|
} | {
|
9819
9819
|
country: string;
|
@@ -9859,8 +9859,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9859
9859
|
street?: string | null | undefined;
|
9860
9860
|
zipCode?: string | null | undefined;
|
9861
9861
|
} | {
|
9862
|
-
firstname
|
9863
|
-
surname
|
9862
|
+
firstname: string;
|
9863
|
+
surname: string;
|
9864
9864
|
middlename?: string | null | undefined;
|
9865
9865
|
} | {
|
9866
9866
|
country: string;
|
@@ -9914,8 +9914,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9914
9914
|
street?: string | null | undefined;
|
9915
9915
|
zipCode?: string | null | undefined;
|
9916
9916
|
} | {
|
9917
|
-
firstname
|
9918
|
-
surname
|
9917
|
+
firstname: string;
|
9918
|
+
surname: string;
|
9919
9919
|
middlename?: string | null | undefined;
|
9920
9920
|
} | {
|
9921
9921
|
country: string;
|
@@ -9961,8 +9961,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9961
9961
|
street?: string | null | undefined;
|
9962
9962
|
zipCode?: string | null | undefined;
|
9963
9963
|
} | {
|
9964
|
-
firstname
|
9965
|
-
surname
|
9964
|
+
firstname: string;
|
9965
|
+
surname: string;
|
9966
9966
|
middlename?: string | null | undefined;
|
9967
9967
|
} | {
|
9968
9968
|
country: string;
|
@@ -10020,8 +10020,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10020
10020
|
street?: string | null | undefined;
|
10021
10021
|
zipCode?: string | null | undefined;
|
10022
10022
|
} | {
|
10023
|
-
firstname
|
10024
|
-
surname
|
10023
|
+
firstname: string;
|
10024
|
+
surname: string;
|
10025
10025
|
middlename?: string | null | undefined;
|
10026
10026
|
} | {
|
10027
10027
|
country: string;
|
@@ -10067,8 +10067,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10067
10067
|
street?: string | null | undefined;
|
10068
10068
|
zipCode?: string | null | undefined;
|
10069
10069
|
} | {
|
10070
|
-
firstname
|
10071
|
-
surname
|
10070
|
+
firstname: string;
|
10071
|
+
surname: string;
|
10072
10072
|
middlename?: string | null | undefined;
|
10073
10073
|
} | {
|
10074
10074
|
country: string;
|
@@ -10122,8 +10122,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10122
10122
|
street?: string | null | undefined;
|
10123
10123
|
zipCode?: string | null | undefined;
|
10124
10124
|
} | {
|
10125
|
-
firstname
|
10126
|
-
surname
|
10125
|
+
firstname: string;
|
10126
|
+
surname: string;
|
10127
10127
|
middlename?: string | null | undefined;
|
10128
10128
|
} | {
|
10129
10129
|
country: string;
|
@@ -10169,8 +10169,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10169
10169
|
street?: string | null | undefined;
|
10170
10170
|
zipCode?: string | null | undefined;
|
10171
10171
|
} | {
|
10172
|
-
firstname
|
10173
|
-
surname
|
10172
|
+
firstname: string;
|
10173
|
+
surname: string;
|
10174
10174
|
middlename?: string | null | undefined;
|
10175
10175
|
} | {
|
10176
10176
|
country: string;
|
@@ -10224,8 +10224,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10224
10224
|
street?: string | null | undefined;
|
10225
10225
|
zipCode?: string | null | undefined;
|
10226
10226
|
} | {
|
10227
|
-
firstname
|
10228
|
-
surname
|
10227
|
+
firstname: string;
|
10228
|
+
surname: string;
|
10229
10229
|
middlename?: string | null | undefined;
|
10230
10230
|
} | {
|
10231
10231
|
country: string;
|
@@ -10271,8 +10271,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10271
10271
|
street?: string | null | undefined;
|
10272
10272
|
zipCode?: string | null | undefined;
|
10273
10273
|
} | {
|
10274
|
-
firstname
|
10275
|
-
surname
|
10274
|
+
firstname: string;
|
10275
|
+
surname: string;
|
10276
10276
|
middlename?: string | null | undefined;
|
10277
10277
|
} | {
|
10278
10278
|
country: string;
|
@@ -10326,8 +10326,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10326
10326
|
street?: string | null | undefined;
|
10327
10327
|
zipCode?: string | null | undefined;
|
10328
10328
|
} | {
|
10329
|
-
firstname
|
10330
|
-
surname
|
10329
|
+
firstname: string;
|
10330
|
+
surname: string;
|
10331
10331
|
middlename?: string | null | undefined;
|
10332
10332
|
} | {
|
10333
10333
|
country: string;
|
@@ -10376,8 +10376,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10376
10376
|
street?: string | null | undefined;
|
10377
10377
|
zipCode?: string | null | undefined;
|
10378
10378
|
} | {
|
10379
|
-
firstname
|
10380
|
-
surname
|
10379
|
+
firstname: string;
|
10380
|
+
surname: string;
|
10381
10381
|
middlename?: string | null | undefined;
|
10382
10382
|
} | {
|
10383
10383
|
country: string;
|
@@ -10431,8 +10431,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10431
10431
|
street?: string | null | undefined;
|
10432
10432
|
zipCode?: string | null | undefined;
|
10433
10433
|
} | {
|
10434
|
-
firstname
|
10435
|
-
surname
|
10434
|
+
firstname: string;
|
10435
|
+
surname: string;
|
10436
10436
|
middlename?: string | null | undefined;
|
10437
10437
|
} | {
|
10438
10438
|
country: string;
|
@@ -10478,8 +10478,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10478
10478
|
street?: string | null | undefined;
|
10479
10479
|
zipCode?: string | null | undefined;
|
10480
10480
|
} | {
|
10481
|
-
firstname
|
10482
|
-
surname
|
10481
|
+
firstname: string;
|
10482
|
+
surname: string;
|
10483
10483
|
middlename?: string | null | undefined;
|
10484
10484
|
} | {
|
10485
10485
|
country: string;
|
@@ -10533,8 +10533,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10533
10533
|
street?: string | null | undefined;
|
10534
10534
|
zipCode?: string | null | undefined;
|
10535
10535
|
} | {
|
10536
|
-
firstname
|
10537
|
-
surname
|
10536
|
+
firstname: string;
|
10537
|
+
surname: string;
|
10538
10538
|
middlename?: string | null | undefined;
|
10539
10539
|
} | {
|
10540
10540
|
country: string;
|
@@ -10581,8 +10581,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10581
10581
|
street?: string | null | undefined;
|
10582
10582
|
zipCode?: string | null | undefined;
|
10583
10583
|
} | {
|
10584
|
-
firstname
|
10585
|
-
surname
|
10584
|
+
firstname: string;
|
10585
|
+
surname: string;
|
10586
10586
|
middlename?: string | null | undefined;
|
10587
10587
|
} | {
|
10588
10588
|
country: string;
|
@@ -10640,8 +10640,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10640
10640
|
street?: string | null | undefined;
|
10641
10641
|
zipCode?: string | null | undefined;
|
10642
10642
|
} | {
|
10643
|
-
firstname
|
10644
|
-
surname
|
10643
|
+
firstname: string;
|
10644
|
+
surname: string;
|
10645
10645
|
middlename?: string | null | undefined;
|
10646
10646
|
} | {
|
10647
10647
|
country: string;
|
@@ -10688,8 +10688,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10688
10688
|
street?: string | null | undefined;
|
10689
10689
|
zipCode?: string | null | undefined;
|
10690
10690
|
} | {
|
10691
|
-
firstname
|
10692
|
-
surname
|
10691
|
+
firstname: string;
|
10692
|
+
surname: string;
|
10693
10693
|
middlename?: string | null | undefined;
|
10694
10694
|
} | {
|
10695
10695
|
country: string;
|
@@ -10743,8 +10743,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10743
10743
|
street?: string | null | undefined;
|
10744
10744
|
zipCode?: string | null | undefined;
|
10745
10745
|
} | {
|
10746
|
-
firstname
|
10747
|
-
surname
|
10746
|
+
firstname: string;
|
10747
|
+
surname: string;
|
10748
10748
|
middlename?: string | null | undefined;
|
10749
10749
|
} | {
|
10750
10750
|
country: string;
|
@@ -10790,8 +10790,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10790
10790
|
street?: string | null | undefined;
|
10791
10791
|
zipCode?: string | null | undefined;
|
10792
10792
|
} | {
|
10793
|
-
firstname
|
10794
|
-
surname
|
10793
|
+
firstname: string;
|
10794
|
+
surname: string;
|
10795
10795
|
middlename?: string | null | undefined;
|
10796
10796
|
} | {
|
10797
10797
|
country: string;
|