@opencrvs/toolkit 1.8.1-rc.4f4b65a → 1.8.1-rc.5130256
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 +392 -409
- package/dist/commons/conditionals/conditionals.test.d.ts +2 -0
- package/dist/commons/conditionals/validate-address.test.d.ts +2 -0
- package/dist/commons/conditionals/validate.d.ts +2 -11
- package/dist/commons/conditionals/validate.test.d.ts +2 -0
- package/dist/commons/events/ActionConfig.d.ts +5805 -3441
- package/dist/commons/events/ActionDocument.d.ts +716 -1252
- package/dist/commons/events/ActionInput.d.ts +600 -626
- package/dist/commons/events/AdvancedSearchConfig.d.ts +65 -83
- 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 +48 -48
- package/dist/commons/events/EventConfig.d.ts +2663 -1401
- package/dist/commons/events/EventDocument.d.ts +432 -451
- package/dist/commons/events/EventIndex.d.ts +62 -184
- package/dist/commons/events/EventMetadata.d.ts +9 -9
- package/dist/commons/events/FieldConfig.d.ts +343 -254
- package/dist/commons/events/FieldType.d.ts +2 -1
- package/dist/commons/events/FieldTypeMapping.d.ts +25 -18
- package/dist/commons/events/FieldValue.d.ts +12 -12
- package/dist/commons/events/FormConfig.d.ts +2388 -1296
- package/dist/commons/events/PageConfig.d.ts +508 -264
- package/dist/commons/events/WorkqueueConfig.d.ts +164 -288
- package/dist/commons/events/defineConfig.d.ts +309 -129
- package/dist/commons/events/event.d.ts +6 -68
- package/dist/commons/events/field.d.ts +0 -14
- package/dist/commons/events/test.utils.d.ts +12 -12
- package/dist/commons/events/utils.d.ts +564 -244
- package/dist/commons/events/utils.test.d.ts +2 -0
- package/dist/conditionals/index.js +2 -3
- package/dist/events/index.js +115 -259
- package/package.json +1 -1
- package/tsconfig.json +1 -1
@@ -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.ZodString
|
140
|
-
surname: z.ZodString
|
139
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
140
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
141
141
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
142
142
|
}, "strip", z.ZodTypeAny, {
|
143
|
-
firstname
|
144
|
-
surname
|
143
|
+
firstname?: string | null | undefined;
|
144
|
+
surname?: string | null | undefined;
|
145
145
|
middlename?: string | null | undefined;
|
146
146
|
}, {
|
147
|
-
firstname
|
148
|
-
surname
|
147
|
+
firstname?: string | null | undefined;
|
148
|
+
surname?: string | null | undefined;
|
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.ZodString
|
275
|
-
surname: z.ZodString
|
274
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
275
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
276
276
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
277
277
|
}, "strip", z.ZodTypeAny, {
|
278
|
-
firstname
|
279
|
-
surname
|
278
|
+
firstname?: string | null | undefined;
|
279
|
+
surname?: string | null | undefined;
|
280
280
|
middlename?: string | null | undefined;
|
281
281
|
}, {
|
282
|
-
firstname
|
283
|
-
surname
|
282
|
+
firstname?: string | null | undefined;
|
283
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
316
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
363
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
418
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
465
|
+
surname?: string | null | undefined;
|
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.ZodString
|
627
|
-
surname: z.ZodString
|
626
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
627
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
628
628
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
629
629
|
}, "strip", z.ZodTypeAny, {
|
630
|
-
firstname
|
631
|
-
surname
|
630
|
+
firstname?: string | null | undefined;
|
631
|
+
surname?: string | null | undefined;
|
632
632
|
middlename?: string | null | undefined;
|
633
633
|
}, {
|
634
|
-
firstname
|
635
|
-
surname
|
634
|
+
firstname?: string | null | undefined;
|
635
|
+
surname?: string | null | undefined;
|
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.ZodString
|
762
|
-
surname: z.ZodString
|
761
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
762
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
763
763
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
764
764
|
}, "strip", z.ZodTypeAny, {
|
765
|
-
firstname
|
766
|
-
surname
|
765
|
+
firstname?: string | null | undefined;
|
766
|
+
surname?: string | null | undefined;
|
767
767
|
middlename?: string | null | undefined;
|
768
768
|
}, {
|
769
|
-
firstname
|
770
|
-
surname
|
769
|
+
firstname?: string | null | undefined;
|
770
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
803
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
850
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
905
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
952
|
+
surname?: string | null | undefined;
|
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.ZodString
|
1114
|
-
surname: z.ZodString
|
1113
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1114
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1115
1115
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1116
1116
|
}, "strip", z.ZodTypeAny, {
|
1117
|
-
firstname
|
1118
|
-
surname
|
1117
|
+
firstname?: string | null | undefined;
|
1118
|
+
surname?: string | null | undefined;
|
1119
1119
|
middlename?: string | null | undefined;
|
1120
1120
|
}, {
|
1121
|
-
firstname
|
1122
|
-
surname
|
1121
|
+
firstname?: string | null | undefined;
|
1122
|
+
surname?: string | null | undefined;
|
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.ZodString
|
1249
|
-
surname: z.ZodString
|
1248
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1249
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1250
1250
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1251
1251
|
}, "strip", z.ZodTypeAny, {
|
1252
|
-
firstname
|
1253
|
-
surname
|
1252
|
+
firstname?: string | null | undefined;
|
1253
|
+
surname?: string | null | undefined;
|
1254
1254
|
middlename?: string | null | undefined;
|
1255
1255
|
}, {
|
1256
|
-
firstname
|
1257
|
-
surname
|
1256
|
+
firstname?: string | null | undefined;
|
1257
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
1304
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
1351
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
1410
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
1457
|
+
surname?: string | null | undefined;
|
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.ZodString
|
1619
|
-
surname: z.ZodString
|
1618
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1619
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1620
1620
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1621
1621
|
}, "strip", z.ZodTypeAny, {
|
1622
|
-
firstname
|
1623
|
-
surname
|
1622
|
+
firstname?: string | null | undefined;
|
1623
|
+
surname?: string | null | undefined;
|
1624
1624
|
middlename?: string | null | undefined;
|
1625
1625
|
}, {
|
1626
|
-
firstname
|
1627
|
-
surname
|
1626
|
+
firstname?: string | null | undefined;
|
1627
|
+
surname?: string | null | undefined;
|
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.ZodString
|
1754
|
-
surname: z.ZodString
|
1753
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1754
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1755
1755
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1756
1756
|
}, "strip", z.ZodTypeAny, {
|
1757
|
-
firstname
|
1758
|
-
surname
|
1757
|
+
firstname?: string | null | undefined;
|
1758
|
+
surname?: string | null | undefined;
|
1759
1759
|
middlename?: string | null | undefined;
|
1760
1760
|
}, {
|
1761
|
-
firstname
|
1762
|
-
surname
|
1761
|
+
firstname?: string | null | undefined;
|
1762
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
1795
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
1842
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
1897
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
1944
|
+
surname?: string | null | undefined;
|
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.ZodString
|
2106
|
-
surname: z.ZodString
|
2105
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2106
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2107
2107
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2108
2108
|
}, "strip", z.ZodTypeAny, {
|
2109
|
-
firstname
|
2110
|
-
surname
|
2109
|
+
firstname?: string | null | undefined;
|
2110
|
+
surname?: string | null | undefined;
|
2111
2111
|
middlename?: string | null | undefined;
|
2112
2112
|
}, {
|
2113
|
-
firstname
|
2114
|
-
surname
|
2113
|
+
firstname?: string | null | undefined;
|
2114
|
+
surname?: string | null | undefined;
|
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.ZodString
|
2241
|
-
surname: z.ZodString
|
2240
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2241
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2242
2242
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2243
2243
|
}, "strip", z.ZodTypeAny, {
|
2244
|
-
firstname
|
2245
|
-
surname
|
2244
|
+
firstname?: string | null | undefined;
|
2245
|
+
surname?: string | null | undefined;
|
2246
2246
|
middlename?: string | null | undefined;
|
2247
2247
|
}, {
|
2248
|
-
firstname
|
2249
|
-
surname
|
2248
|
+
firstname?: string | null | undefined;
|
2249
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
2296
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
2343
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
2402
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
2449
|
+
surname?: string | null | undefined;
|
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.ZodString
|
2611
|
-
surname: z.ZodString
|
2610
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2611
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2612
2612
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2613
2613
|
}, "strip", z.ZodTypeAny, {
|
2614
|
-
firstname
|
2615
|
-
surname
|
2614
|
+
firstname?: string | null | undefined;
|
2615
|
+
surname?: string | null | undefined;
|
2616
2616
|
middlename?: string | null | undefined;
|
2617
2617
|
}, {
|
2618
|
-
firstname
|
2619
|
-
surname
|
2618
|
+
firstname?: string | null | undefined;
|
2619
|
+
surname?: string | null | undefined;
|
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.ZodString
|
2746
|
-
surname: z.ZodString
|
2745
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2746
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2747
2747
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2748
2748
|
}, "strip", z.ZodTypeAny, {
|
2749
|
-
firstname
|
2750
|
-
surname
|
2749
|
+
firstname?: string | null | undefined;
|
2750
|
+
surname?: string | null | undefined;
|
2751
2751
|
middlename?: string | null | undefined;
|
2752
2752
|
}, {
|
2753
|
-
firstname
|
2754
|
-
surname
|
2753
|
+
firstname?: string | null | undefined;
|
2754
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
2787
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
2834
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
2889
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
2936
|
+
surname?: string | null | undefined;
|
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.ZodString
|
3098
|
-
surname: z.ZodString
|
3097
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3098
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3099
3099
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3100
3100
|
}, "strip", z.ZodTypeAny, {
|
3101
|
-
firstname
|
3102
|
-
surname
|
3101
|
+
firstname?: string | null | undefined;
|
3102
|
+
surname?: string | null | undefined;
|
3103
3103
|
middlename?: string | null | undefined;
|
3104
3104
|
}, {
|
3105
|
-
firstname
|
3106
|
-
surname
|
3105
|
+
firstname?: string | null | undefined;
|
3106
|
+
surname?: string | null | undefined;
|
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.ZodString
|
3233
|
-
surname: z.ZodString
|
3232
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3233
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3234
3234
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3235
3235
|
}, "strip", z.ZodTypeAny, {
|
3236
|
-
firstname
|
3237
|
-
surname
|
3236
|
+
firstname?: string | null | undefined;
|
3237
|
+
surname?: string | null | undefined;
|
3238
3238
|
middlename?: string | null | undefined;
|
3239
3239
|
}, {
|
3240
|
-
firstname
|
3241
|
-
surname
|
3240
|
+
firstname?: string | null | undefined;
|
3241
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
3275
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
3322
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
3378
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
3425
|
+
surname?: string | null | undefined;
|
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.ZodString
|
3588
|
-
surname: z.ZodString
|
3587
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3588
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3589
3589
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3590
3590
|
}, "strip", z.ZodTypeAny, {
|
3591
|
-
firstname
|
3592
|
-
surname
|
3591
|
+
firstname?: string | null | undefined;
|
3592
|
+
surname?: string | null | undefined;
|
3593
3593
|
middlename?: string | null | undefined;
|
3594
3594
|
}, {
|
3595
|
-
firstname
|
3596
|
-
surname
|
3595
|
+
firstname?: string | null | undefined;
|
3596
|
+
surname?: string | null | undefined;
|
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.ZodString
|
3723
|
-
surname: z.ZodString
|
3722
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3723
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3724
3724
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3725
3725
|
}, "strip", z.ZodTypeAny, {
|
3726
|
-
firstname
|
3727
|
-
surname
|
3726
|
+
firstname?: string | null | undefined;
|
3727
|
+
surname?: string | null | undefined;
|
3728
3728
|
middlename?: string | null | undefined;
|
3729
3729
|
}, {
|
3730
|
-
firstname
|
3731
|
-
surname
|
3730
|
+
firstname?: string | null | undefined;
|
3731
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
3764
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
3811
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
3866
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
3913
|
+
surname?: string | null | undefined;
|
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.ZodString
|
4075
|
-
surname: z.ZodString
|
4074
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4075
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4076
4076
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4077
4077
|
}, "strip", z.ZodTypeAny, {
|
4078
|
-
firstname
|
4079
|
-
surname
|
4078
|
+
firstname?: string | null | undefined;
|
4079
|
+
surname?: string | null | undefined;
|
4080
4080
|
middlename?: string | null | undefined;
|
4081
4081
|
}, {
|
4082
|
-
firstname
|
4083
|
-
surname
|
4082
|
+
firstname?: string | null | undefined;
|
4083
|
+
surname?: string | null | undefined;
|
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.ZodString
|
4210
|
-
surname: z.ZodString
|
4209
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4210
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4211
4211
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4212
4212
|
}, "strip", z.ZodTypeAny, {
|
4213
|
-
firstname
|
4214
|
-
surname
|
4213
|
+
firstname?: string | null | undefined;
|
4214
|
+
surname?: string | null | undefined;
|
4215
4215
|
middlename?: string | null | undefined;
|
4216
4216
|
}, {
|
4217
|
-
firstname
|
4218
|
-
surname
|
4217
|
+
firstname?: string | null | undefined;
|
4218
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
4252
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
4300
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
4355
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
4403
|
+
surname?: string | null | undefined;
|
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.ZodString
|
4565
|
-
surname: z.ZodString
|
4564
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4565
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4566
4566
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4567
4567
|
}, "strip", z.ZodTypeAny, {
|
4568
|
-
firstname
|
4569
|
-
surname
|
4568
|
+
firstname?: string | null | undefined;
|
4569
|
+
surname?: string | null | undefined;
|
4570
4570
|
middlename?: string | null | undefined;
|
4571
4571
|
}, {
|
4572
|
-
firstname
|
4573
|
-
surname
|
4572
|
+
firstname?: string | null | undefined;
|
4573
|
+
surname?: string | null | undefined;
|
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.ZodString
|
4700
|
-
surname: z.ZodString
|
4699
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4700
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4701
4701
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4702
4702
|
}, "strip", z.ZodTypeAny, {
|
4703
|
-
firstname
|
4704
|
-
surname
|
4703
|
+
firstname?: string | null | undefined;
|
4704
|
+
surname?: string | null | undefined;
|
4705
4705
|
middlename?: string | null | undefined;
|
4706
4706
|
}, {
|
4707
|
-
firstname
|
4708
|
-
surname
|
4707
|
+
firstname?: string | null | undefined;
|
4708
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
4741
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
4788
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
4843
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
4890
|
+
surname?: string | null | undefined;
|
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.ZodString
|
5052
|
-
surname: z.ZodString
|
5051
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5052
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5053
5053
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5054
5054
|
}, "strip", z.ZodTypeAny, {
|
5055
|
-
firstname
|
5056
|
-
surname
|
5055
|
+
firstname?: string | null | undefined;
|
5056
|
+
surname?: string | null | undefined;
|
5057
5057
|
middlename?: string | null | undefined;
|
5058
5058
|
}, {
|
5059
|
-
firstname
|
5060
|
-
surname
|
5059
|
+
firstname?: string | null | undefined;
|
5060
|
+
surname?: string | null | undefined;
|
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.ZodString
|
5187
|
-
surname: z.ZodString
|
5186
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5187
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5188
5188
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5189
5189
|
}, "strip", z.ZodTypeAny, {
|
5190
|
-
firstname
|
5191
|
-
surname
|
5190
|
+
firstname?: string | null | undefined;
|
5191
|
+
surname?: string | null | undefined;
|
5192
5192
|
middlename?: string | null | undefined;
|
5193
5193
|
}, {
|
5194
|
-
firstname
|
5195
|
-
surname
|
5194
|
+
firstname?: string | null | undefined;
|
5195
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
5229
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
5277
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
5332
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
5380
|
+
surname?: string | null | undefined;
|
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.ZodString
|
5542
|
-
surname: z.ZodString
|
5541
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5542
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5543
5543
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5544
5544
|
}, "strip", z.ZodTypeAny, {
|
5545
|
-
firstname
|
5546
|
-
surname
|
5545
|
+
firstname?: string | null | undefined;
|
5546
|
+
surname?: string | null | undefined;
|
5547
5547
|
middlename?: string | null | undefined;
|
5548
5548
|
}, {
|
5549
|
-
firstname
|
5550
|
-
surname
|
5549
|
+
firstname?: string | null | undefined;
|
5550
|
+
surname?: string | null | undefined;
|
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.ZodString
|
5677
|
-
surname: z.ZodString
|
5676
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5677
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5678
5678
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5679
5679
|
}, "strip", z.ZodTypeAny, {
|
5680
|
-
firstname
|
5681
|
-
surname
|
5680
|
+
firstname?: string | null | undefined;
|
5681
|
+
surname?: string | null | undefined;
|
5682
5682
|
middlename?: string | null | undefined;
|
5683
5683
|
}, {
|
5684
|
-
firstname
|
5685
|
-
surname
|
5684
|
+
firstname?: string | null | undefined;
|
5685
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
5733
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
5781
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
5840
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
5888
|
+
surname?: string | null | undefined;
|
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.ZodString
|
6050
|
-
surname: z.ZodString
|
6049
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6050
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6051
6051
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6052
6052
|
}, "strip", z.ZodTypeAny, {
|
6053
|
-
firstname
|
6054
|
-
surname
|
6053
|
+
firstname?: string | null | undefined;
|
6054
|
+
surname?: string | null | undefined;
|
6055
6055
|
middlename?: string | null | undefined;
|
6056
6056
|
}, {
|
6057
|
-
firstname
|
6058
|
-
surname
|
6057
|
+
firstname?: string | null | undefined;
|
6058
|
+
surname?: string | null | undefined;
|
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.ZodString
|
6185
|
-
surname: z.ZodString
|
6184
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6185
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6186
6186
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6187
6187
|
}, "strip", z.ZodTypeAny, {
|
6188
|
-
firstname
|
6189
|
-
surname
|
6188
|
+
firstname?: string | null | undefined;
|
6189
|
+
surname?: string | null | undefined;
|
6190
6190
|
middlename?: string | null | undefined;
|
6191
6191
|
}, {
|
6192
|
-
firstname
|
6193
|
-
surname
|
6192
|
+
firstname?: string | null | undefined;
|
6193
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
6226
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
6273
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
6328
|
+
surname?: string | null | undefined;
|
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 | null | undefined;
|
6375
|
+
surname?: string | null | undefined;
|
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.ZodString
|
6537
|
-
surname: z.ZodString
|
6536
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6537
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6538
6538
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6539
6539
|
}, "strip", z.ZodTypeAny, {
|
6540
|
-
firstname
|
6541
|
-
surname
|
6540
|
+
firstname?: string | null | undefined;
|
6541
|
+
surname?: string | null | undefined;
|
6542
6542
|
middlename?: string | null | undefined;
|
6543
6543
|
}, {
|
6544
|
-
firstname
|
6545
|
-
surname
|
6544
|
+
firstname?: string | null | undefined;
|
6545
|
+
surname?: string | null | undefined;
|
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,29 +6668,22 @@ 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.ZodString
|
6672
|
-
surname: z.ZodString
|
6671
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6672
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6673
6673
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6674
6674
|
}, "strip", z.ZodTypeAny, {
|
6675
|
-
firstname
|
6676
|
-
surname
|
6675
|
+
firstname?: string | null | undefined;
|
6676
|
+
surname?: string | null | undefined;
|
6677
6677
|
middlename?: string | null | undefined;
|
6678
6678
|
}, {
|
6679
|
-
firstname
|
6680
|
-
surname
|
6679
|
+
firstname?: string | null | undefined;
|
6680
|
+
surname?: string | null | undefined;
|
6681
6681
|
middlename?: string | null | undefined;
|
6682
6682
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
6683
6683
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
6684
6684
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
6685
6685
|
}, {
|
6686
6686
|
type: z.ZodLiteral<"PRINT_CERTIFICATE">;
|
6687
|
-
content: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
6688
|
-
templateId: z.ZodOptional<z.ZodString>;
|
6689
|
-
}, "strip", z.ZodTypeAny, {
|
6690
|
-
templateId?: string | undefined;
|
6691
|
-
}, {
|
6692
|
-
templateId?: string | undefined;
|
6693
|
-
}>>>;
|
6694
6687
|
}>, "strip", z.ZodTypeAny, {
|
6695
6688
|
type: "PRINT_CERTIFICATE";
|
6696
6689
|
id: string & z.BRAND<"UUID">;
|
@@ -6716,8 +6709,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6716
6709
|
street?: string | null | undefined;
|
6717
6710
|
zipCode?: string | null | undefined;
|
6718
6711
|
} | {
|
6719
|
-
firstname
|
6720
|
-
surname
|
6712
|
+
firstname?: string | null | undefined;
|
6713
|
+
surname?: string | null | undefined;
|
6721
6714
|
middlename?: string | null | undefined;
|
6722
6715
|
} | {
|
6723
6716
|
country: string;
|
@@ -6745,9 +6738,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6745
6738
|
start: string;
|
6746
6739
|
end: string;
|
6747
6740
|
} | null | undefined>;
|
6748
|
-
content?: {
|
6749
|
-
templateId?: string | undefined;
|
6750
|
-
} | null | undefined;
|
6751
6741
|
createdBySignature?: string | null | undefined;
|
6752
6742
|
createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
|
6753
6743
|
annotation?: Record<string, string | number | boolean | {
|
@@ -6766,8 +6756,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6766
6756
|
street?: string | null | undefined;
|
6767
6757
|
zipCode?: string | null | undefined;
|
6768
6758
|
} | {
|
6769
|
-
firstname
|
6770
|
-
surname
|
6759
|
+
firstname?: string | null | undefined;
|
6760
|
+
surname?: string | null | undefined;
|
6771
6761
|
middlename?: string | null | undefined;
|
6772
6762
|
} | {
|
6773
6763
|
country: string;
|
@@ -6821,8 +6811,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6821
6811
|
street?: string | null | undefined;
|
6822
6812
|
zipCode?: string | null | undefined;
|
6823
6813
|
} | {
|
6824
|
-
firstname
|
6825
|
-
surname
|
6814
|
+
firstname?: string | null | undefined;
|
6815
|
+
surname?: string | null | undefined;
|
6826
6816
|
middlename?: string | null | undefined;
|
6827
6817
|
} | {
|
6828
6818
|
country: string;
|
@@ -6850,9 +6840,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
6850
6840
|
start: string;
|
6851
6841
|
end: string;
|
6852
6842
|
} | null | undefined>;
|
6853
|
-
content?: {
|
6854
|
-
templateId?: string | undefined;
|
6855
|
-
} | null | undefined;
|
6856
6843
|
createdBySignature?: string | null | undefined;
|
6857
6844
|
createdAtLocation?: string | null | undefined;
|
6858
6845
|
annotation?: Record<string, string | number | boolean | {
|
@@ -6871,8 +6858,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6871
6858
|
street?: string | null | undefined;
|
6872
6859
|
zipCode?: string | null | undefined;
|
6873
6860
|
} | {
|
6874
|
-
firstname
|
6875
|
-
surname
|
6861
|
+
firstname?: string | null | undefined;
|
6862
|
+
surname?: string | null | undefined;
|
6876
6863
|
middlename?: string | null | undefined;
|
6877
6864
|
} | {
|
6878
6865
|
country: string;
|
@@ -7033,16 +7020,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
7033
7020
|
addressLine3?: string | null | undefined;
|
7034
7021
|
postcodeOrZip?: string | null | undefined;
|
7035
7022
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7036
|
-
firstname: z.ZodString
|
7037
|
-
surname: z.ZodString
|
7023
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7024
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7038
7025
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7039
7026
|
}, "strip", z.ZodTypeAny, {
|
7040
|
-
firstname
|
7041
|
-
surname
|
7027
|
+
firstname?: string | null | undefined;
|
7028
|
+
surname?: string | null | undefined;
|
7042
7029
|
middlename?: string | null | undefined;
|
7043
7030
|
}, {
|
7044
|
-
firstname
|
7045
|
-
surname
|
7031
|
+
firstname?: string | null | undefined;
|
7032
|
+
surname?: string | null | undefined;
|
7046
7033
|
middlename?: string | null | undefined;
|
7047
7034
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
7048
7035
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -7168,16 +7155,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
7168
7155
|
addressLine3?: string | null | undefined;
|
7169
7156
|
postcodeOrZip?: string | null | undefined;
|
7170
7157
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7171
|
-
firstname: z.ZodString
|
7172
|
-
surname: z.ZodString
|
7158
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7159
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7173
7160
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7174
7161
|
}, "strip", z.ZodTypeAny, {
|
7175
|
-
firstname
|
7176
|
-
surname
|
7162
|
+
firstname?: string | null | undefined;
|
7163
|
+
surname?: string | null | undefined;
|
7177
7164
|
middlename?: string | null | undefined;
|
7178
7165
|
}, {
|
7179
|
-
firstname
|
7180
|
-
surname
|
7166
|
+
firstname?: string | null | undefined;
|
7167
|
+
surname?: string | null | undefined;
|
7181
7168
|
middlename?: string | null | undefined;
|
7182
7169
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
7183
7170
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -7209,8 +7196,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7209
7196
|
street?: string | null | undefined;
|
7210
7197
|
zipCode?: string | null | undefined;
|
7211
7198
|
} | {
|
7212
|
-
firstname
|
7213
|
-
surname
|
7199
|
+
firstname?: string | null | undefined;
|
7200
|
+
surname?: string | null | undefined;
|
7214
7201
|
middlename?: string | null | undefined;
|
7215
7202
|
} | {
|
7216
7203
|
country: string;
|
@@ -7256,8 +7243,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7256
7243
|
street?: string | null | undefined;
|
7257
7244
|
zipCode?: string | null | undefined;
|
7258
7245
|
} | {
|
7259
|
-
firstname
|
7260
|
-
surname
|
7246
|
+
firstname?: string | null | undefined;
|
7247
|
+
surname?: string | null | undefined;
|
7261
7248
|
middlename?: string | null | undefined;
|
7262
7249
|
} | {
|
7263
7250
|
country: string;
|
@@ -7311,8 +7298,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7311
7298
|
street?: string | null | undefined;
|
7312
7299
|
zipCode?: string | null | undefined;
|
7313
7300
|
} | {
|
7314
|
-
firstname
|
7315
|
-
surname
|
7301
|
+
firstname?: string | null | undefined;
|
7302
|
+
surname?: string | null | undefined;
|
7316
7303
|
middlename?: string | null | undefined;
|
7317
7304
|
} | {
|
7318
7305
|
country: string;
|
@@ -7358,8 +7345,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7358
7345
|
street?: string | null | undefined;
|
7359
7346
|
zipCode?: string | null | undefined;
|
7360
7347
|
} | {
|
7361
|
-
firstname
|
7362
|
-
surname
|
7348
|
+
firstname?: string | null | undefined;
|
7349
|
+
surname?: string | null | undefined;
|
7363
7350
|
middlename?: string | null | undefined;
|
7364
7351
|
} | {
|
7365
7352
|
country: string;
|
@@ -7520,16 +7507,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
7520
7507
|
addressLine3?: string | null | undefined;
|
7521
7508
|
postcodeOrZip?: string | null | undefined;
|
7522
7509
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7523
|
-
firstname: z.ZodString
|
7524
|
-
surname: z.ZodString
|
7510
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7511
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7525
7512
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7526
7513
|
}, "strip", z.ZodTypeAny, {
|
7527
|
-
firstname
|
7528
|
-
surname
|
7514
|
+
firstname?: string | null | undefined;
|
7515
|
+
surname?: string | null | undefined;
|
7529
7516
|
middlename?: string | null | undefined;
|
7530
7517
|
}, {
|
7531
|
-
firstname
|
7532
|
-
surname
|
7518
|
+
firstname?: string | null | undefined;
|
7519
|
+
surname?: string | null | undefined;
|
7533
7520
|
middlename?: string | null | undefined;
|
7534
7521
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
7535
7522
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -7655,16 +7642,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
7655
7642
|
addressLine3?: string | null | undefined;
|
7656
7643
|
postcodeOrZip?: string | null | undefined;
|
7657
7644
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7658
|
-
firstname: z.ZodString
|
7659
|
-
surname: z.ZodString
|
7645
|
+
firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7646
|
+
surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7660
7647
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7661
7648
|
}, "strip", z.ZodTypeAny, {
|
7662
|
-
firstname
|
7663
|
-
surname
|
7649
|
+
firstname?: string | null | undefined;
|
7650
|
+
surname?: string | null | undefined;
|
7664
7651
|
middlename?: string | null | undefined;
|
7665
7652
|
}, {
|
7666
|
-
firstname
|
7667
|
-
surname
|
7653
|
+
firstname?: string | null | undefined;
|
7654
|
+
surname?: string | null | undefined;
|
7668
7655
|
middlename?: string | null | undefined;
|
7669
7656
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
7670
7657
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -7728,8 +7715,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7728
7715
|
street?: string | null | undefined;
|
7729
7716
|
zipCode?: string | null | undefined;
|
7730
7717
|
} | {
|
7731
|
-
firstname
|
7732
|
-
surname
|
7718
|
+
firstname?: string | null | undefined;
|
7719
|
+
surname?: string | null | undefined;
|
7733
7720
|
middlename?: string | null | undefined;
|
7734
7721
|
} | {
|
7735
7722
|
country: string;
|
@@ -7776,8 +7763,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7776
7763
|
street?: string | null | undefined;
|
7777
7764
|
zipCode?: string | null | undefined;
|
7778
7765
|
} | {
|
7779
|
-
firstname
|
7780
|
-
surname
|
7766
|
+
firstname?: string | null | undefined;
|
7767
|
+
surname?: string | null | undefined;
|
7781
7768
|
middlename?: string | null | undefined;
|
7782
7769
|
} | {
|
7783
7770
|
country: string;
|
@@ -7831,8 +7818,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7831
7818
|
street?: string | null | undefined;
|
7832
7819
|
zipCode?: string | null | undefined;
|
7833
7820
|
} | {
|
7834
|
-
firstname
|
7835
|
-
surname
|
7821
|
+
firstname?: string | null | undefined;
|
7822
|
+
surname?: string | null | undefined;
|
7836
7823
|
middlename?: string | null | undefined;
|
7837
7824
|
} | {
|
7838
7825
|
country: string;
|
@@ -7878,8 +7865,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7878
7865
|
street?: string | null | undefined;
|
7879
7866
|
zipCode?: string | null | undefined;
|
7880
7867
|
} | {
|
7881
|
-
firstname
|
7882
|
-
surname
|
7868
|
+
firstname?: string | null | undefined;
|
7869
|
+
surname?: string | null | undefined;
|
7883
7870
|
middlename?: string | null | undefined;
|
7884
7871
|
} | {
|
7885
7872
|
country: string;
|
@@ -7933,8 +7920,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7933
7920
|
street?: string | null | undefined;
|
7934
7921
|
zipCode?: string | null | undefined;
|
7935
7922
|
} | {
|
7936
|
-
firstname
|
7937
|
-
surname
|
7923
|
+
firstname?: string | null | undefined;
|
7924
|
+
surname?: string | null | undefined;
|
7938
7925
|
middlename?: string | null | undefined;
|
7939
7926
|
} | {
|
7940
7927
|
country: string;
|
@@ -7980,8 +7967,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7980
7967
|
street?: string | null | undefined;
|
7981
7968
|
zipCode?: string | null | undefined;
|
7982
7969
|
} | {
|
7983
|
-
firstname
|
7984
|
-
surname
|
7970
|
+
firstname?: string | null | undefined;
|
7971
|
+
surname?: string | null | undefined;
|
7985
7972
|
middlename?: string | null | undefined;
|
7986
7973
|
} | {
|
7987
7974
|
country: string;
|
@@ -8036,8 +8023,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8036
8023
|
street?: string | null | undefined;
|
8037
8024
|
zipCode?: string | null | undefined;
|
8038
8025
|
} | {
|
8039
|
-
firstname
|
8040
|
-
surname
|
8026
|
+
firstname?: string | null | undefined;
|
8027
|
+
surname?: string | null | undefined;
|
8041
8028
|
middlename?: string | null | undefined;
|
8042
8029
|
} | {
|
8043
8030
|
country: string;
|
@@ -8083,8 +8070,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8083
8070
|
street?: string | null | undefined;
|
8084
8071
|
zipCode?: string | null | undefined;
|
8085
8072
|
} | {
|
8086
|
-
firstname
|
8087
|
-
surname
|
8073
|
+
firstname?: string | null | undefined;
|
8074
|
+
surname?: string | null | undefined;
|
8088
8075
|
middlename?: string | null | undefined;
|
8089
8076
|
} | {
|
8090
8077
|
country: string;
|
@@ -8138,8 +8125,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8138
8125
|
street?: string | null | undefined;
|
8139
8126
|
zipCode?: string | null | undefined;
|
8140
8127
|
} | {
|
8141
|
-
firstname
|
8142
|
-
surname
|
8128
|
+
firstname?: string | null | undefined;
|
8129
|
+
surname?: string | null | undefined;
|
8143
8130
|
middlename?: string | null | undefined;
|
8144
8131
|
} | {
|
8145
8132
|
country: string;
|
@@ -8185,8 +8172,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8185
8172
|
street?: string | null | undefined;
|
8186
8173
|
zipCode?: string | null | undefined;
|
8187
8174
|
} | {
|
8188
|
-
firstname
|
8189
|
-
surname
|
8175
|
+
firstname?: string | null | undefined;
|
8176
|
+
surname?: string | null | undefined;
|
8190
8177
|
middlename?: string | null | undefined;
|
8191
8178
|
} | {
|
8192
8179
|
country: string;
|
@@ -8244,8 +8231,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8244
8231
|
street?: string | null | undefined;
|
8245
8232
|
zipCode?: string | null | undefined;
|
8246
8233
|
} | {
|
8247
|
-
firstname
|
8248
|
-
surname
|
8234
|
+
firstname?: string | null | undefined;
|
8235
|
+
surname?: string | null | undefined;
|
8249
8236
|
middlename?: string | null | undefined;
|
8250
8237
|
} | {
|
8251
8238
|
country: string;
|
@@ -8291,8 +8278,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8291
8278
|
street?: string | null | undefined;
|
8292
8279
|
zipCode?: string | null | undefined;
|
8293
8280
|
} | {
|
8294
|
-
firstname
|
8295
|
-
surname
|
8281
|
+
firstname?: string | null | undefined;
|
8282
|
+
surname?: string | null | undefined;
|
8296
8283
|
middlename?: string | null | undefined;
|
8297
8284
|
} | {
|
8298
8285
|
country: string;
|
@@ -8346,8 +8333,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8346
8333
|
street?: string | null | undefined;
|
8347
8334
|
zipCode?: string | null | undefined;
|
8348
8335
|
} | {
|
8349
|
-
firstname
|
8350
|
-
surname
|
8336
|
+
firstname?: string | null | undefined;
|
8337
|
+
surname?: string | null | undefined;
|
8351
8338
|
middlename?: string | null | undefined;
|
8352
8339
|
} | {
|
8353
8340
|
country: string;
|
@@ -8393,8 +8380,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8393
8380
|
street?: string | null | undefined;
|
8394
8381
|
zipCode?: string | null | undefined;
|
8395
8382
|
} | {
|
8396
|
-
firstname
|
8397
|
-
surname
|
8383
|
+
firstname?: string | null | undefined;
|
8384
|
+
surname?: string | null | undefined;
|
8398
8385
|
middlename?: string | null | undefined;
|
8399
8386
|
} | {
|
8400
8387
|
country: string;
|
@@ -8452,8 +8439,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8452
8439
|
street?: string | null | undefined;
|
8453
8440
|
zipCode?: string | null | undefined;
|
8454
8441
|
} | {
|
8455
|
-
firstname
|
8456
|
-
surname
|
8442
|
+
firstname?: string | null | undefined;
|
8443
|
+
surname?: string | null | undefined;
|
8457
8444
|
middlename?: string | null | undefined;
|
8458
8445
|
} | {
|
8459
8446
|
country: string;
|
@@ -8499,8 +8486,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8499
8486
|
street?: string | null | undefined;
|
8500
8487
|
zipCode?: string | null | undefined;
|
8501
8488
|
} | {
|
8502
|
-
firstname
|
8503
|
-
surname
|
8489
|
+
firstname?: string | null | undefined;
|
8490
|
+
surname?: string | null | undefined;
|
8504
8491
|
middlename?: string | null | undefined;
|
8505
8492
|
} | {
|
8506
8493
|
country: string;
|
@@ -8554,8 +8541,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8554
8541
|
street?: string | null | undefined;
|
8555
8542
|
zipCode?: string | null | undefined;
|
8556
8543
|
} | {
|
8557
|
-
firstname
|
8558
|
-
surname
|
8544
|
+
firstname?: string | null | undefined;
|
8545
|
+
surname?: string | null | undefined;
|
8559
8546
|
middlename?: string | null | undefined;
|
8560
8547
|
} | {
|
8561
8548
|
country: string;
|
@@ -8601,8 +8588,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8601
8588
|
street?: string | null | undefined;
|
8602
8589
|
zipCode?: string | null | undefined;
|
8603
8590
|
} | {
|
8604
|
-
firstname
|
8605
|
-
surname
|
8591
|
+
firstname?: string | null | undefined;
|
8592
|
+
surname?: string | null | undefined;
|
8606
8593
|
middlename?: string | null | undefined;
|
8607
8594
|
} | {
|
8608
8595
|
country: string;
|
@@ -8656,8 +8643,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8656
8643
|
street?: string | null | undefined;
|
8657
8644
|
zipCode?: string | null | undefined;
|
8658
8645
|
} | {
|
8659
|
-
firstname
|
8660
|
-
surname
|
8646
|
+
firstname?: string | null | undefined;
|
8647
|
+
surname?: string | null | undefined;
|
8661
8648
|
middlename?: string | null | undefined;
|
8662
8649
|
} | {
|
8663
8650
|
country: string;
|
@@ -8703,8 +8690,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8703
8690
|
street?: string | null | undefined;
|
8704
8691
|
zipCode?: string | null | undefined;
|
8705
8692
|
} | {
|
8706
|
-
firstname
|
8707
|
-
surname
|
8693
|
+
firstname?: string | null | undefined;
|
8694
|
+
surname?: string | null | undefined;
|
8708
8695
|
middlename?: string | null | undefined;
|
8709
8696
|
} | {
|
8710
8697
|
country: string;
|
@@ -8758,8 +8745,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8758
8745
|
street?: string | null | undefined;
|
8759
8746
|
zipCode?: string | null | undefined;
|
8760
8747
|
} | {
|
8761
|
-
firstname
|
8762
|
-
surname
|
8748
|
+
firstname?: string | null | undefined;
|
8749
|
+
surname?: string | null | undefined;
|
8763
8750
|
middlename?: string | null | undefined;
|
8764
8751
|
} | {
|
8765
8752
|
country: string;
|
@@ -8787,9 +8774,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
8787
8774
|
start: string;
|
8788
8775
|
end: string;
|
8789
8776
|
} | null | undefined>;
|
8790
|
-
content?: {
|
8791
|
-
templateId?: string | undefined;
|
8792
|
-
} | null | undefined;
|
8793
8777
|
createdBySignature?: string | null | undefined;
|
8794
8778
|
createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
|
8795
8779
|
annotation?: Record<string, string | number | boolean | {
|
@@ -8808,8 +8792,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8808
8792
|
street?: string | null | undefined;
|
8809
8793
|
zipCode?: string | null | undefined;
|
8810
8794
|
} | {
|
8811
|
-
firstname
|
8812
|
-
surname
|
8795
|
+
firstname?: string | null | undefined;
|
8796
|
+
surname?: string | null | undefined;
|
8813
8797
|
middlename?: string | null | undefined;
|
8814
8798
|
} | {
|
8815
8799
|
country: string;
|
@@ -8863,8 +8847,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8863
8847
|
street?: string | null | undefined;
|
8864
8848
|
zipCode?: string | null | undefined;
|
8865
8849
|
} | {
|
8866
|
-
firstname
|
8867
|
-
surname
|
8850
|
+
firstname?: string | null | undefined;
|
8851
|
+
surname?: string | null | undefined;
|
8868
8852
|
middlename?: string | null | undefined;
|
8869
8853
|
} | {
|
8870
8854
|
country: string;
|
@@ -8910,8 +8894,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8910
8894
|
street?: string | null | undefined;
|
8911
8895
|
zipCode?: string | null | undefined;
|
8912
8896
|
} | {
|
8913
|
-
firstname
|
8914
|
-
surname
|
8897
|
+
firstname?: string | null | undefined;
|
8898
|
+
surname?: string | null | undefined;
|
8915
8899
|
middlename?: string | null | undefined;
|
8916
8900
|
} | {
|
8917
8901
|
country: string;
|
@@ -8965,8 +8949,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8965
8949
|
street?: string | null | undefined;
|
8966
8950
|
zipCode?: string | null | undefined;
|
8967
8951
|
} | {
|
8968
|
-
firstname
|
8969
|
-
surname
|
8952
|
+
firstname?: string | null | undefined;
|
8953
|
+
surname?: string | null | undefined;
|
8970
8954
|
middlename?: string | null | undefined;
|
8971
8955
|
} | {
|
8972
8956
|
country: string;
|
@@ -9013,8 +8997,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9013
8997
|
street?: string | null | undefined;
|
9014
8998
|
zipCode?: string | null | undefined;
|
9015
8999
|
} | {
|
9016
|
-
firstname
|
9017
|
-
surname
|
9000
|
+
firstname?: string | null | undefined;
|
9001
|
+
surname?: string | null | undefined;
|
9018
9002
|
middlename?: string | null | undefined;
|
9019
9003
|
} | {
|
9020
9004
|
country: string;
|
@@ -9072,8 +9056,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9072
9056
|
street?: string | null | undefined;
|
9073
9057
|
zipCode?: string | null | undefined;
|
9074
9058
|
} | {
|
9075
|
-
firstname
|
9076
|
-
surname
|
9059
|
+
firstname?: string | null | undefined;
|
9060
|
+
surname?: string | null | undefined;
|
9077
9061
|
middlename?: string | null | undefined;
|
9078
9062
|
} | {
|
9079
9063
|
country: string;
|
@@ -9120,8 +9104,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9120
9104
|
street?: string | null | undefined;
|
9121
9105
|
zipCode?: string | null | undefined;
|
9122
9106
|
} | {
|
9123
|
-
firstname
|
9124
|
-
surname
|
9107
|
+
firstname?: string | null | undefined;
|
9108
|
+
surname?: string | null | undefined;
|
9125
9109
|
middlename?: string | null | undefined;
|
9126
9110
|
} | {
|
9127
9111
|
country: string;
|
@@ -9175,8 +9159,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9175
9159
|
street?: string | null | undefined;
|
9176
9160
|
zipCode?: string | null | undefined;
|
9177
9161
|
} | {
|
9178
|
-
firstname
|
9179
|
-
surname
|
9162
|
+
firstname?: string | null | undefined;
|
9163
|
+
surname?: string | null | undefined;
|
9180
9164
|
middlename?: string | null | undefined;
|
9181
9165
|
} | {
|
9182
9166
|
country: string;
|
@@ -9222,8 +9206,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9222
9206
|
street?: string | null | undefined;
|
9223
9207
|
zipCode?: string | null | undefined;
|
9224
9208
|
} | {
|
9225
|
-
firstname
|
9226
|
-
surname
|
9209
|
+
firstname?: string | null | undefined;
|
9210
|
+
surname?: string | null | undefined;
|
9227
9211
|
middlename?: string | null | undefined;
|
9228
9212
|
} | {
|
9229
9213
|
country: string;
|
@@ -9296,8 +9280,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9296
9280
|
street?: string | null | undefined;
|
9297
9281
|
zipCode?: string | null | undefined;
|
9298
9282
|
} | {
|
9299
|
-
firstname
|
9300
|
-
surname
|
9283
|
+
firstname?: string | null | undefined;
|
9284
|
+
surname?: string | null | undefined;
|
9301
9285
|
middlename?: string | null | undefined;
|
9302
9286
|
} | {
|
9303
9287
|
country: string;
|
@@ -9344,8 +9328,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9344
9328
|
street?: string | null | undefined;
|
9345
9329
|
zipCode?: string | null | undefined;
|
9346
9330
|
} | {
|
9347
|
-
firstname
|
9348
|
-
surname
|
9331
|
+
firstname?: string | null | undefined;
|
9332
|
+
surname?: string | null | undefined;
|
9349
9333
|
middlename?: string | null | undefined;
|
9350
9334
|
} | {
|
9351
9335
|
country: string;
|
@@ -9399,8 +9383,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9399
9383
|
street?: string | null | undefined;
|
9400
9384
|
zipCode?: string | null | undefined;
|
9401
9385
|
} | {
|
9402
|
-
firstname
|
9403
|
-
surname
|
9386
|
+
firstname?: string | null | undefined;
|
9387
|
+
surname?: string | null | undefined;
|
9404
9388
|
middlename?: string | null | undefined;
|
9405
9389
|
} | {
|
9406
9390
|
country: string;
|
@@ -9446,8 +9430,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9446
9430
|
street?: string | null | undefined;
|
9447
9431
|
zipCode?: string | null | undefined;
|
9448
9432
|
} | {
|
9449
|
-
firstname
|
9450
|
-
surname
|
9433
|
+
firstname?: string | null | undefined;
|
9434
|
+
surname?: string | null | undefined;
|
9451
9435
|
middlename?: string | null | undefined;
|
9452
9436
|
} | {
|
9453
9437
|
country: string;
|
@@ -9501,8 +9485,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9501
9485
|
street?: string | null | undefined;
|
9502
9486
|
zipCode?: string | null | undefined;
|
9503
9487
|
} | {
|
9504
|
-
firstname
|
9505
|
-
surname
|
9488
|
+
firstname?: string | null | undefined;
|
9489
|
+
surname?: string | null | undefined;
|
9506
9490
|
middlename?: string | null | undefined;
|
9507
9491
|
} | {
|
9508
9492
|
country: string;
|
@@ -9548,8 +9532,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9548
9532
|
street?: string | null | undefined;
|
9549
9533
|
zipCode?: string | null | undefined;
|
9550
9534
|
} | {
|
9551
|
-
firstname
|
9552
|
-
surname
|
9535
|
+
firstname?: string | null | undefined;
|
9536
|
+
surname?: string | null | undefined;
|
9553
9537
|
middlename?: string | null | undefined;
|
9554
9538
|
} | {
|
9555
9539
|
country: string;
|
@@ -9604,8 +9588,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9604
9588
|
street?: string | null | undefined;
|
9605
9589
|
zipCode?: string | null | undefined;
|
9606
9590
|
} | {
|
9607
|
-
firstname
|
9608
|
-
surname
|
9591
|
+
firstname?: string | null | undefined;
|
9592
|
+
surname?: string | null | undefined;
|
9609
9593
|
middlename?: string | null | undefined;
|
9610
9594
|
} | {
|
9611
9595
|
country: string;
|
@@ -9651,8 +9635,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9651
9635
|
street?: string | null | undefined;
|
9652
9636
|
zipCode?: string | null | undefined;
|
9653
9637
|
} | {
|
9654
|
-
firstname
|
9655
|
-
surname
|
9638
|
+
firstname?: string | null | undefined;
|
9639
|
+
surname?: string | null | undefined;
|
9656
9640
|
middlename?: string | null | undefined;
|
9657
9641
|
} | {
|
9658
9642
|
country: string;
|
@@ -9706,8 +9690,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9706
9690
|
street?: string | null | undefined;
|
9707
9691
|
zipCode?: string | null | undefined;
|
9708
9692
|
} | {
|
9709
|
-
firstname
|
9710
|
-
surname
|
9693
|
+
firstname?: string | null | undefined;
|
9694
|
+
surname?: string | null | undefined;
|
9711
9695
|
middlename?: string | null | undefined;
|
9712
9696
|
} | {
|
9713
9697
|
country: string;
|
@@ -9753,8 +9737,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9753
9737
|
street?: string | null | undefined;
|
9754
9738
|
zipCode?: string | null | undefined;
|
9755
9739
|
} | {
|
9756
|
-
firstname
|
9757
|
-
surname
|
9740
|
+
firstname?: string | null | undefined;
|
9741
|
+
surname?: string | null | undefined;
|
9758
9742
|
middlename?: string | null | undefined;
|
9759
9743
|
} | {
|
9760
9744
|
country: string;
|
@@ -9812,8 +9796,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9812
9796
|
street?: string | null | undefined;
|
9813
9797
|
zipCode?: string | null | undefined;
|
9814
9798
|
} | {
|
9815
|
-
firstname
|
9816
|
-
surname
|
9799
|
+
firstname?: string | null | undefined;
|
9800
|
+
surname?: string | null | undefined;
|
9817
9801
|
middlename?: string | null | undefined;
|
9818
9802
|
} | {
|
9819
9803
|
country: string;
|
@@ -9859,8 +9843,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9859
9843
|
street?: string | null | undefined;
|
9860
9844
|
zipCode?: string | null | undefined;
|
9861
9845
|
} | {
|
9862
|
-
firstname
|
9863
|
-
surname
|
9846
|
+
firstname?: string | null | undefined;
|
9847
|
+
surname?: string | null | undefined;
|
9864
9848
|
middlename?: string | null | undefined;
|
9865
9849
|
} | {
|
9866
9850
|
country: string;
|
@@ -9914,8 +9898,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9914
9898
|
street?: string | null | undefined;
|
9915
9899
|
zipCode?: string | null | undefined;
|
9916
9900
|
} | {
|
9917
|
-
firstname
|
9918
|
-
surname
|
9901
|
+
firstname?: string | null | undefined;
|
9902
|
+
surname?: string | null | undefined;
|
9919
9903
|
middlename?: string | null | undefined;
|
9920
9904
|
} | {
|
9921
9905
|
country: string;
|
@@ -9961,8 +9945,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9961
9945
|
street?: string | null | undefined;
|
9962
9946
|
zipCode?: string | null | undefined;
|
9963
9947
|
} | {
|
9964
|
-
firstname
|
9965
|
-
surname
|
9948
|
+
firstname?: string | null | undefined;
|
9949
|
+
surname?: string | null | undefined;
|
9966
9950
|
middlename?: string | null | undefined;
|
9967
9951
|
} | {
|
9968
9952
|
country: string;
|
@@ -10020,8 +10004,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10020
10004
|
street?: string | null | undefined;
|
10021
10005
|
zipCode?: string | null | undefined;
|
10022
10006
|
} | {
|
10023
|
-
firstname
|
10024
|
-
surname
|
10007
|
+
firstname?: string | null | undefined;
|
10008
|
+
surname?: string | null | undefined;
|
10025
10009
|
middlename?: string | null | undefined;
|
10026
10010
|
} | {
|
10027
10011
|
country: string;
|
@@ -10067,8 +10051,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10067
10051
|
street?: string | null | undefined;
|
10068
10052
|
zipCode?: string | null | undefined;
|
10069
10053
|
} | {
|
10070
|
-
firstname
|
10071
|
-
surname
|
10054
|
+
firstname?: string | null | undefined;
|
10055
|
+
surname?: string | null | undefined;
|
10072
10056
|
middlename?: string | null | undefined;
|
10073
10057
|
} | {
|
10074
10058
|
country: string;
|
@@ -10122,8 +10106,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10122
10106
|
street?: string | null | undefined;
|
10123
10107
|
zipCode?: string | null | undefined;
|
10124
10108
|
} | {
|
10125
|
-
firstname
|
10126
|
-
surname
|
10109
|
+
firstname?: string | null | undefined;
|
10110
|
+
surname?: string | null | undefined;
|
10127
10111
|
middlename?: string | null | undefined;
|
10128
10112
|
} | {
|
10129
10113
|
country: string;
|
@@ -10169,8 +10153,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10169
10153
|
street?: string | null | undefined;
|
10170
10154
|
zipCode?: string | null | undefined;
|
10171
10155
|
} | {
|
10172
|
-
firstname
|
10173
|
-
surname
|
10156
|
+
firstname?: string | null | undefined;
|
10157
|
+
surname?: string | null | undefined;
|
10174
10158
|
middlename?: string | null | undefined;
|
10175
10159
|
} | {
|
10176
10160
|
country: string;
|
@@ -10224,8 +10208,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10224
10208
|
street?: string | null | undefined;
|
10225
10209
|
zipCode?: string | null | undefined;
|
10226
10210
|
} | {
|
10227
|
-
firstname
|
10228
|
-
surname
|
10211
|
+
firstname?: string | null | undefined;
|
10212
|
+
surname?: string | null | undefined;
|
10229
10213
|
middlename?: string | null | undefined;
|
10230
10214
|
} | {
|
10231
10215
|
country: string;
|
@@ -10271,8 +10255,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10271
10255
|
street?: string | null | undefined;
|
10272
10256
|
zipCode?: string | null | undefined;
|
10273
10257
|
} | {
|
10274
|
-
firstname
|
10275
|
-
surname
|
10258
|
+
firstname?: string | null | undefined;
|
10259
|
+
surname?: string | null | undefined;
|
10276
10260
|
middlename?: string | null | undefined;
|
10277
10261
|
} | {
|
10278
10262
|
country: string;
|
@@ -10326,8 +10310,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10326
10310
|
street?: string | null | undefined;
|
10327
10311
|
zipCode?: string | null | undefined;
|
10328
10312
|
} | {
|
10329
|
-
firstname
|
10330
|
-
surname
|
10313
|
+
firstname?: string | null | undefined;
|
10314
|
+
surname?: string | null | undefined;
|
10331
10315
|
middlename?: string | null | undefined;
|
10332
10316
|
} | {
|
10333
10317
|
country: string;
|
@@ -10355,9 +10339,6 @@ export declare const EventDocument: z.ZodObject<{
|
|
10355
10339
|
start: string;
|
10356
10340
|
end: string;
|
10357
10341
|
} | null | undefined>;
|
10358
|
-
content?: {
|
10359
|
-
templateId?: string | undefined;
|
10360
|
-
} | null | undefined;
|
10361
10342
|
createdBySignature?: string | null | undefined;
|
10362
10343
|
createdAtLocation?: string | null | undefined;
|
10363
10344
|
annotation?: Record<string, string | number | boolean | {
|
@@ -10376,8 +10357,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10376
10357
|
street?: string | null | undefined;
|
10377
10358
|
zipCode?: string | null | undefined;
|
10378
10359
|
} | {
|
10379
|
-
firstname
|
10380
|
-
surname
|
10360
|
+
firstname?: string | null | undefined;
|
10361
|
+
surname?: string | null | undefined;
|
10381
10362
|
middlename?: string | null | undefined;
|
10382
10363
|
} | {
|
10383
10364
|
country: string;
|
@@ -10431,8 +10412,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10431
10412
|
street?: string | null | undefined;
|
10432
10413
|
zipCode?: string | null | undefined;
|
10433
10414
|
} | {
|
10434
|
-
firstname
|
10435
|
-
surname
|
10415
|
+
firstname?: string | null | undefined;
|
10416
|
+
surname?: string | null | undefined;
|
10436
10417
|
middlename?: string | null | undefined;
|
10437
10418
|
} | {
|
10438
10419
|
country: string;
|
@@ -10478,8 +10459,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10478
10459
|
street?: string | null | undefined;
|
10479
10460
|
zipCode?: string | null | undefined;
|
10480
10461
|
} | {
|
10481
|
-
firstname
|
10482
|
-
surname
|
10462
|
+
firstname?: string | null | undefined;
|
10463
|
+
surname?: string | null | undefined;
|
10483
10464
|
middlename?: string | null | undefined;
|
10484
10465
|
} | {
|
10485
10466
|
country: string;
|
@@ -10533,8 +10514,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10533
10514
|
street?: string | null | undefined;
|
10534
10515
|
zipCode?: string | null | undefined;
|
10535
10516
|
} | {
|
10536
|
-
firstname
|
10537
|
-
surname
|
10517
|
+
firstname?: string | null | undefined;
|
10518
|
+
surname?: string | null | undefined;
|
10538
10519
|
middlename?: string | null | undefined;
|
10539
10520
|
} | {
|
10540
10521
|
country: string;
|
@@ -10581,8 +10562,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10581
10562
|
street?: string | null | undefined;
|
10582
10563
|
zipCode?: string | null | undefined;
|
10583
10564
|
} | {
|
10584
|
-
firstname
|
10585
|
-
surname
|
10565
|
+
firstname?: string | null | undefined;
|
10566
|
+
surname?: string | null | undefined;
|
10586
10567
|
middlename?: string | null | undefined;
|
10587
10568
|
} | {
|
10588
10569
|
country: string;
|
@@ -10640,8 +10621,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10640
10621
|
street?: string | null | undefined;
|
10641
10622
|
zipCode?: string | null | undefined;
|
10642
10623
|
} | {
|
10643
|
-
firstname
|
10644
|
-
surname
|
10624
|
+
firstname?: string | null | undefined;
|
10625
|
+
surname?: string | null | undefined;
|
10645
10626
|
middlename?: string | null | undefined;
|
10646
10627
|
} | {
|
10647
10628
|
country: string;
|
@@ -10688,8 +10669,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10688
10669
|
street?: string | null | undefined;
|
10689
10670
|
zipCode?: string | null | undefined;
|
10690
10671
|
} | {
|
10691
|
-
firstname
|
10692
|
-
surname
|
10672
|
+
firstname?: string | null | undefined;
|
10673
|
+
surname?: string | null | undefined;
|
10693
10674
|
middlename?: string | null | undefined;
|
10694
10675
|
} | {
|
10695
10676
|
country: string;
|
@@ -10743,8 +10724,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10743
10724
|
street?: string | null | undefined;
|
10744
10725
|
zipCode?: string | null | undefined;
|
10745
10726
|
} | {
|
10746
|
-
firstname
|
10747
|
-
surname
|
10727
|
+
firstname?: string | null | undefined;
|
10728
|
+
surname?: string | null | undefined;
|
10748
10729
|
middlename?: string | null | undefined;
|
10749
10730
|
} | {
|
10750
10731
|
country: string;
|
@@ -10790,8 +10771,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10790
10771
|
street?: string | null | undefined;
|
10791
10772
|
zipCode?: string | null | undefined;
|
10792
10773
|
} | {
|
10793
|
-
firstname
|
10794
|
-
surname
|
10774
|
+
firstname?: string | null | undefined;
|
10775
|
+
surname?: string | null | undefined;
|
10795
10776
|
middlename?: string | null | undefined;
|
10796
10777
|
} | {
|
10797
10778
|
country: string;
|