@opencrvs/toolkit 1.8.1-rc.c6281e8 → 1.8.1-rc.cc27fe6

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.
Files changed (31) hide show
  1. package/dist/commons/api/router.d.ts +409 -392
  2. package/dist/commons/conditionals/validate.d.ts +11 -2
  3. package/dist/commons/events/ActionConfig.d.ts +2004 -366
  4. package/dist/commons/events/ActionDocument.d.ts +1252 -716
  5. package/dist/commons/events/ActionInput.d.ts +626 -600
  6. package/dist/commons/events/AdvancedSearchConfig.d.ts +49 -31
  7. package/dist/commons/events/CompositeFieldValue.d.ts +6 -6
  8. package/dist/commons/events/CountryConfigQueryInput.d.ts +88 -88
  9. package/dist/commons/events/Draft.d.ts +48 -48
  10. package/dist/commons/events/EventConfig.d.ts +673 -146
  11. package/dist/commons/events/EventDocument.d.ts +451 -432
  12. package/dist/commons/events/EventIndex.d.ts +62 -62
  13. package/dist/commons/events/EventMetadata.d.ts +9 -9
  14. package/dist/commons/events/FieldConfig.d.ts +254 -43
  15. package/dist/commons/events/FieldTypeMapping.d.ts +16 -16
  16. package/dist/commons/events/FieldValue.d.ts +12 -12
  17. package/dist/commons/events/FormConfig.d.ts +1032 -246
  18. package/dist/commons/events/PageConfig.d.ts +264 -46
  19. package/dist/commons/events/WorkqueueConfig.d.ts +199 -164
  20. package/dist/commons/events/defineConfig.d.ts +127 -28
  21. package/dist/commons/events/event.d.ts +61 -7
  22. package/dist/commons/events/test.utils.d.ts +12 -12
  23. package/dist/commons/events/utils.d.ts +234 -58
  24. package/dist/conditionals/index.js +3 -2
  25. package/dist/events/index.js +239 -89
  26. package/package.json +1 -1
  27. package/tsconfig.json +1 -1
  28. package/dist/commons/conditionals/conditionals.test.d.ts +0 -2
  29. package/dist/commons/conditionals/validate-address.test.d.ts +0 -2
  30. package/dist/commons/conditionals/validate.test.d.ts +0 -2
  31. package/dist/commons/events/utils.test.d.ts +0 -2
@@ -136,16 +136,16 @@ export declare const EventDocument: z.ZodObject<{
136
136
  addressLine3?: string | null | undefined;
137
137
  postcodeOrZip?: string | null | undefined;
138
138
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
139
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
140
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
139
+ firstname: z.ZodString;
140
+ surname: z.ZodString;
141
141
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
142
142
  }, "strip", z.ZodTypeAny, {
143
- firstname?: string | null | undefined;
144
- surname?: string | null | undefined;
143
+ firstname: string;
144
+ surname: string;
145
145
  middlename?: string | null | undefined;
146
146
  }, {
147
- firstname?: string | null | undefined;
148
- surname?: string | null | undefined;
147
+ firstname: string;
148
+ surname: string;
149
149
  middlename?: string | null | undefined;
150
150
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
151
151
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -271,16 +271,16 @@ export declare const EventDocument: z.ZodObject<{
271
271
  addressLine3?: string | null | undefined;
272
272
  postcodeOrZip?: string | null | undefined;
273
273
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
274
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
275
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
274
+ firstname: z.ZodString;
275
+ surname: z.ZodString;
276
276
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
277
277
  }, "strip", z.ZodTypeAny, {
278
- firstname?: string | null | undefined;
279
- surname?: string | null | undefined;
278
+ firstname: string;
279
+ surname: string;
280
280
  middlename?: string | null | undefined;
281
281
  }, {
282
- firstname?: string | null | undefined;
283
- surname?: string | null | undefined;
282
+ firstname: string;
283
+ surname: string;
284
284
  middlename?: string | null | undefined;
285
285
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
286
286
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -312,8 +312,8 @@ export declare const EventDocument: z.ZodObject<{
312
312
  street?: string | null | undefined;
313
313
  zipCode?: string | null | undefined;
314
314
  } | {
315
- firstname?: string | null | undefined;
316
- surname?: string | null | undefined;
315
+ firstname: string;
316
+ surname: string;
317
317
  middlename?: string | null | undefined;
318
318
  } | {
319
319
  country: string;
@@ -359,8 +359,8 @@ export declare const EventDocument: z.ZodObject<{
359
359
  street?: string | null | undefined;
360
360
  zipCode?: string | null | undefined;
361
361
  } | {
362
- firstname?: string | null | undefined;
363
- surname?: string | null | undefined;
362
+ firstname: string;
363
+ surname: string;
364
364
  middlename?: string | null | undefined;
365
365
  } | {
366
366
  country: string;
@@ -414,8 +414,8 @@ export declare const EventDocument: z.ZodObject<{
414
414
  street?: string | null | undefined;
415
415
  zipCode?: string | null | undefined;
416
416
  } | {
417
- firstname?: string | null | undefined;
418
- surname?: string | null | undefined;
417
+ firstname: string;
418
+ surname: string;
419
419
  middlename?: string | null | undefined;
420
420
  } | {
421
421
  country: string;
@@ -461,8 +461,8 @@ export declare const EventDocument: z.ZodObject<{
461
461
  street?: string | null | undefined;
462
462
  zipCode?: string | null | undefined;
463
463
  } | {
464
- firstname?: string | null | undefined;
465
- surname?: string | null | undefined;
464
+ firstname: string;
465
+ surname: string;
466
466
  middlename?: string | null | undefined;
467
467
  } | {
468
468
  country: string;
@@ -623,16 +623,16 @@ export declare const EventDocument: z.ZodObject<{
623
623
  addressLine3?: string | null | undefined;
624
624
  postcodeOrZip?: string | null | undefined;
625
625
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
626
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
627
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
626
+ firstname: z.ZodString;
627
+ surname: z.ZodString;
628
628
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
629
629
  }, "strip", z.ZodTypeAny, {
630
- firstname?: string | null | undefined;
631
- surname?: string | null | undefined;
630
+ firstname: string;
631
+ surname: string;
632
632
  middlename?: string | null | undefined;
633
633
  }, {
634
- firstname?: string | null | undefined;
635
- surname?: string | null | undefined;
634
+ firstname: string;
635
+ surname: string;
636
636
  middlename?: string | null | undefined;
637
637
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
638
638
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -758,16 +758,16 @@ export declare const EventDocument: z.ZodObject<{
758
758
  addressLine3?: string | null | undefined;
759
759
  postcodeOrZip?: string | null | undefined;
760
760
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
761
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
762
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
761
+ firstname: z.ZodString;
762
+ surname: z.ZodString;
763
763
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
764
764
  }, "strip", z.ZodTypeAny, {
765
- firstname?: string | null | undefined;
766
- surname?: string | null | undefined;
765
+ firstname: string;
766
+ surname: string;
767
767
  middlename?: string | null | undefined;
768
768
  }, {
769
- firstname?: string | null | undefined;
770
- surname?: string | null | undefined;
769
+ firstname: string;
770
+ surname: string;
771
771
  middlename?: string | null | undefined;
772
772
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
773
773
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -799,8 +799,8 @@ export declare const EventDocument: z.ZodObject<{
799
799
  street?: string | null | undefined;
800
800
  zipCode?: string | null | undefined;
801
801
  } | {
802
- firstname?: string | null | undefined;
803
- surname?: string | null | undefined;
802
+ firstname: string;
803
+ surname: string;
804
804
  middlename?: string | null | undefined;
805
805
  } | {
806
806
  country: string;
@@ -846,8 +846,8 @@ export declare const EventDocument: z.ZodObject<{
846
846
  street?: string | null | undefined;
847
847
  zipCode?: string | null | undefined;
848
848
  } | {
849
- firstname?: string | null | undefined;
850
- surname?: string | null | undefined;
849
+ firstname: string;
850
+ surname: string;
851
851
  middlename?: string | null | undefined;
852
852
  } | {
853
853
  country: string;
@@ -901,8 +901,8 @@ export declare const EventDocument: z.ZodObject<{
901
901
  street?: string | null | undefined;
902
902
  zipCode?: string | null | undefined;
903
903
  } | {
904
- firstname?: string | null | undefined;
905
- surname?: string | null | undefined;
904
+ firstname: string;
905
+ surname: string;
906
906
  middlename?: string | null | undefined;
907
907
  } | {
908
908
  country: string;
@@ -948,8 +948,8 @@ export declare const EventDocument: z.ZodObject<{
948
948
  street?: string | null | undefined;
949
949
  zipCode?: string | null | undefined;
950
950
  } | {
951
- firstname?: string | null | undefined;
952
- surname?: string | null | undefined;
951
+ firstname: string;
952
+ surname: string;
953
953
  middlename?: string | null | undefined;
954
954
  } | {
955
955
  country: string;
@@ -1110,16 +1110,16 @@ export declare const EventDocument: z.ZodObject<{
1110
1110
  addressLine3?: string | null | undefined;
1111
1111
  postcodeOrZip?: string | null | undefined;
1112
1112
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1113
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1114
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1113
+ firstname: z.ZodString;
1114
+ surname: z.ZodString;
1115
1115
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1116
1116
  }, "strip", z.ZodTypeAny, {
1117
- firstname?: string | null | undefined;
1118
- surname?: string | null | undefined;
1117
+ firstname: string;
1118
+ surname: string;
1119
1119
  middlename?: string | null | undefined;
1120
1120
  }, {
1121
- firstname?: string | null | undefined;
1122
- surname?: string | null | undefined;
1121
+ firstname: string;
1122
+ surname: string;
1123
1123
  middlename?: string | null | undefined;
1124
1124
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
1125
1125
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -1245,16 +1245,16 @@ export declare const EventDocument: z.ZodObject<{
1245
1245
  addressLine3?: string | null | undefined;
1246
1246
  postcodeOrZip?: string | null | undefined;
1247
1247
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1248
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1249
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1248
+ firstname: z.ZodString;
1249
+ surname: z.ZodString;
1250
1250
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1251
1251
  }, "strip", z.ZodTypeAny, {
1252
- firstname?: string | null | undefined;
1253
- surname?: string | null | undefined;
1252
+ firstname: string;
1253
+ surname: string;
1254
1254
  middlename?: string | null | undefined;
1255
1255
  }, {
1256
- firstname?: string | null | undefined;
1257
- surname?: string | null | undefined;
1256
+ firstname: string;
1257
+ surname: string;
1258
1258
  middlename?: string | null | undefined;
1259
1259
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
1260
1260
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -1300,8 +1300,8 @@ export declare const EventDocument: z.ZodObject<{
1300
1300
  street?: string | null | undefined;
1301
1301
  zipCode?: string | null | undefined;
1302
1302
  } | {
1303
- firstname?: string | null | undefined;
1304
- surname?: string | null | undefined;
1303
+ firstname: string;
1304
+ surname: string;
1305
1305
  middlename?: string | null | undefined;
1306
1306
  } | {
1307
1307
  country: string;
@@ -1347,8 +1347,8 @@ export declare const EventDocument: z.ZodObject<{
1347
1347
  street?: string | null | undefined;
1348
1348
  zipCode?: string | null | undefined;
1349
1349
  } | {
1350
- firstname?: string | null | undefined;
1351
- surname?: string | null | undefined;
1350
+ firstname: string;
1351
+ surname: string;
1352
1352
  middlename?: string | null | undefined;
1353
1353
  } | {
1354
1354
  country: string;
@@ -1406,8 +1406,8 @@ export declare const EventDocument: z.ZodObject<{
1406
1406
  street?: string | null | undefined;
1407
1407
  zipCode?: string | null | undefined;
1408
1408
  } | {
1409
- firstname?: string | null | undefined;
1410
- surname?: string | null | undefined;
1409
+ firstname: string;
1410
+ surname: string;
1411
1411
  middlename?: string | null | undefined;
1412
1412
  } | {
1413
1413
  country: string;
@@ -1453,8 +1453,8 @@ export declare const EventDocument: z.ZodObject<{
1453
1453
  street?: string | null | undefined;
1454
1454
  zipCode?: string | null | undefined;
1455
1455
  } | {
1456
- firstname?: string | null | undefined;
1457
- surname?: string | null | undefined;
1456
+ firstname: string;
1457
+ surname: string;
1458
1458
  middlename?: string | null | undefined;
1459
1459
  } | {
1460
1460
  country: string;
@@ -1615,16 +1615,16 @@ export declare const EventDocument: z.ZodObject<{
1615
1615
  addressLine3?: string | null | undefined;
1616
1616
  postcodeOrZip?: string | null | undefined;
1617
1617
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1618
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1619
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1618
+ firstname: z.ZodString;
1619
+ surname: z.ZodString;
1620
1620
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1621
1621
  }, "strip", z.ZodTypeAny, {
1622
- firstname?: string | null | undefined;
1623
- surname?: string | null | undefined;
1622
+ firstname: string;
1623
+ surname: string;
1624
1624
  middlename?: string | null | undefined;
1625
1625
  }, {
1626
- firstname?: string | null | undefined;
1627
- surname?: string | null | undefined;
1626
+ firstname: string;
1627
+ surname: string;
1628
1628
  middlename?: string | null | undefined;
1629
1629
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
1630
1630
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -1750,16 +1750,16 @@ export declare const EventDocument: z.ZodObject<{
1750
1750
  addressLine3?: string | null | undefined;
1751
1751
  postcodeOrZip?: string | null | undefined;
1752
1752
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1753
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1754
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1753
+ firstname: z.ZodString;
1754
+ surname: z.ZodString;
1755
1755
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1756
1756
  }, "strip", z.ZodTypeAny, {
1757
- firstname?: string | null | undefined;
1758
- surname?: string | null | undefined;
1757
+ firstname: string;
1758
+ surname: string;
1759
1759
  middlename?: string | null | undefined;
1760
1760
  }, {
1761
- firstname?: string | null | undefined;
1762
- surname?: string | null | undefined;
1761
+ firstname: string;
1762
+ surname: string;
1763
1763
  middlename?: string | null | undefined;
1764
1764
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
1765
1765
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -1791,8 +1791,8 @@ export declare const EventDocument: z.ZodObject<{
1791
1791
  street?: string | null | undefined;
1792
1792
  zipCode?: string | null | undefined;
1793
1793
  } | {
1794
- firstname?: string | null | undefined;
1795
- surname?: string | null | undefined;
1794
+ firstname: string;
1795
+ surname: string;
1796
1796
  middlename?: string | null | undefined;
1797
1797
  } | {
1798
1798
  country: string;
@@ -1838,8 +1838,8 @@ export declare const EventDocument: z.ZodObject<{
1838
1838
  street?: string | null | undefined;
1839
1839
  zipCode?: string | null | undefined;
1840
1840
  } | {
1841
- firstname?: string | null | undefined;
1842
- surname?: string | null | undefined;
1841
+ firstname: string;
1842
+ surname: string;
1843
1843
  middlename?: string | null | undefined;
1844
1844
  } | {
1845
1845
  country: string;
@@ -1893,8 +1893,8 @@ export declare const EventDocument: z.ZodObject<{
1893
1893
  street?: string | null | undefined;
1894
1894
  zipCode?: string | null | undefined;
1895
1895
  } | {
1896
- firstname?: string | null | undefined;
1897
- surname?: string | null | undefined;
1896
+ firstname: string;
1897
+ surname: string;
1898
1898
  middlename?: string | null | undefined;
1899
1899
  } | {
1900
1900
  country: string;
@@ -1940,8 +1940,8 @@ export declare const EventDocument: z.ZodObject<{
1940
1940
  street?: string | null | undefined;
1941
1941
  zipCode?: string | null | undefined;
1942
1942
  } | {
1943
- firstname?: string | null | undefined;
1944
- surname?: string | null | undefined;
1943
+ firstname: string;
1944
+ surname: string;
1945
1945
  middlename?: string | null | undefined;
1946
1946
  } | {
1947
1947
  country: string;
@@ -2102,16 +2102,16 @@ export declare const EventDocument: z.ZodObject<{
2102
2102
  addressLine3?: string | null | undefined;
2103
2103
  postcodeOrZip?: string | null | undefined;
2104
2104
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2105
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2106
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2105
+ firstname: z.ZodString;
2106
+ surname: z.ZodString;
2107
2107
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2108
2108
  }, "strip", z.ZodTypeAny, {
2109
- firstname?: string | null | undefined;
2110
- surname?: string | null | undefined;
2109
+ firstname: string;
2110
+ surname: string;
2111
2111
  middlename?: string | null | undefined;
2112
2112
  }, {
2113
- firstname?: string | null | undefined;
2114
- surname?: string | null | undefined;
2113
+ firstname: string;
2114
+ surname: string;
2115
2115
  middlename?: string | null | undefined;
2116
2116
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
2117
2117
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -2237,16 +2237,16 @@ export declare const EventDocument: z.ZodObject<{
2237
2237
  addressLine3?: string | null | undefined;
2238
2238
  postcodeOrZip?: string | null | undefined;
2239
2239
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2240
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2241
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2240
+ firstname: z.ZodString;
2241
+ surname: z.ZodString;
2242
2242
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2243
2243
  }, "strip", z.ZodTypeAny, {
2244
- firstname?: string | null | undefined;
2245
- surname?: string | null | undefined;
2244
+ firstname: string;
2245
+ surname: string;
2246
2246
  middlename?: string | null | undefined;
2247
2247
  }, {
2248
- firstname?: string | null | undefined;
2249
- surname?: string | null | undefined;
2248
+ firstname: string;
2249
+ surname: string;
2250
2250
  middlename?: string | null | undefined;
2251
2251
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
2252
2252
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -2292,8 +2292,8 @@ export declare const EventDocument: z.ZodObject<{
2292
2292
  street?: string | null | undefined;
2293
2293
  zipCode?: string | null | undefined;
2294
2294
  } | {
2295
- firstname?: string | null | undefined;
2296
- surname?: string | null | undefined;
2295
+ firstname: string;
2296
+ surname: string;
2297
2297
  middlename?: string | null | undefined;
2298
2298
  } | {
2299
2299
  country: string;
@@ -2339,8 +2339,8 @@ export declare const EventDocument: z.ZodObject<{
2339
2339
  street?: string | null | undefined;
2340
2340
  zipCode?: string | null | undefined;
2341
2341
  } | {
2342
- firstname?: string | null | undefined;
2343
- surname?: string | null | undefined;
2342
+ firstname: string;
2343
+ surname: string;
2344
2344
  middlename?: string | null | undefined;
2345
2345
  } | {
2346
2346
  country: string;
@@ -2398,8 +2398,8 @@ export declare const EventDocument: z.ZodObject<{
2398
2398
  street?: string | null | undefined;
2399
2399
  zipCode?: string | null | undefined;
2400
2400
  } | {
2401
- firstname?: string | null | undefined;
2402
- surname?: string | null | undefined;
2401
+ firstname: string;
2402
+ surname: string;
2403
2403
  middlename?: string | null | undefined;
2404
2404
  } | {
2405
2405
  country: string;
@@ -2445,8 +2445,8 @@ export declare const EventDocument: z.ZodObject<{
2445
2445
  street?: string | null | undefined;
2446
2446
  zipCode?: string | null | undefined;
2447
2447
  } | {
2448
- firstname?: string | null | undefined;
2449
- surname?: string | null | undefined;
2448
+ firstname: string;
2449
+ surname: string;
2450
2450
  middlename?: string | null | undefined;
2451
2451
  } | {
2452
2452
  country: string;
@@ -2607,16 +2607,16 @@ export declare const EventDocument: z.ZodObject<{
2607
2607
  addressLine3?: string | null | undefined;
2608
2608
  postcodeOrZip?: string | null | undefined;
2609
2609
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2610
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2611
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2610
+ firstname: z.ZodString;
2611
+ surname: z.ZodString;
2612
2612
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2613
2613
  }, "strip", z.ZodTypeAny, {
2614
- firstname?: string | null | undefined;
2615
- surname?: string | null | undefined;
2614
+ firstname: string;
2615
+ surname: string;
2616
2616
  middlename?: string | null | undefined;
2617
2617
  }, {
2618
- firstname?: string | null | undefined;
2619
- surname?: string | null | undefined;
2618
+ firstname: string;
2619
+ surname: string;
2620
2620
  middlename?: string | null | undefined;
2621
2621
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
2622
2622
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -2742,16 +2742,16 @@ export declare const EventDocument: z.ZodObject<{
2742
2742
  addressLine3?: string | null | undefined;
2743
2743
  postcodeOrZip?: string | null | undefined;
2744
2744
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2745
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2746
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2745
+ firstname: z.ZodString;
2746
+ surname: z.ZodString;
2747
2747
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2748
2748
  }, "strip", z.ZodTypeAny, {
2749
- firstname?: string | null | undefined;
2750
- surname?: string | null | undefined;
2749
+ firstname: string;
2750
+ surname: string;
2751
2751
  middlename?: string | null | undefined;
2752
2752
  }, {
2753
- firstname?: string | null | undefined;
2754
- surname?: string | null | undefined;
2753
+ firstname: string;
2754
+ surname: string;
2755
2755
  middlename?: string | null | undefined;
2756
2756
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
2757
2757
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -2783,8 +2783,8 @@ export declare const EventDocument: z.ZodObject<{
2783
2783
  street?: string | null | undefined;
2784
2784
  zipCode?: string | null | undefined;
2785
2785
  } | {
2786
- firstname?: string | null | undefined;
2787
- surname?: string | null | undefined;
2786
+ firstname: string;
2787
+ surname: string;
2788
2788
  middlename?: string | null | undefined;
2789
2789
  } | {
2790
2790
  country: string;
@@ -2830,8 +2830,8 @@ export declare const EventDocument: z.ZodObject<{
2830
2830
  street?: string | null | undefined;
2831
2831
  zipCode?: string | null | undefined;
2832
2832
  } | {
2833
- firstname?: string | null | undefined;
2834
- surname?: string | null | undefined;
2833
+ firstname: string;
2834
+ surname: string;
2835
2835
  middlename?: string | null | undefined;
2836
2836
  } | {
2837
2837
  country: string;
@@ -2885,8 +2885,8 @@ export declare const EventDocument: z.ZodObject<{
2885
2885
  street?: string | null | undefined;
2886
2886
  zipCode?: string | null | undefined;
2887
2887
  } | {
2888
- firstname?: string | null | undefined;
2889
- surname?: string | null | undefined;
2888
+ firstname: string;
2889
+ surname: string;
2890
2890
  middlename?: string | null | undefined;
2891
2891
  } | {
2892
2892
  country: string;
@@ -2932,8 +2932,8 @@ export declare const EventDocument: z.ZodObject<{
2932
2932
  street?: string | null | undefined;
2933
2933
  zipCode?: string | null | undefined;
2934
2934
  } | {
2935
- firstname?: string | null | undefined;
2936
- surname?: string | null | undefined;
2935
+ firstname: string;
2936
+ surname: string;
2937
2937
  middlename?: string | null | undefined;
2938
2938
  } | {
2939
2939
  country: string;
@@ -3094,16 +3094,16 @@ export declare const EventDocument: z.ZodObject<{
3094
3094
  addressLine3?: string | null | undefined;
3095
3095
  postcodeOrZip?: string | null | undefined;
3096
3096
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3097
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3098
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3097
+ firstname: z.ZodString;
3098
+ surname: z.ZodString;
3099
3099
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3100
3100
  }, "strip", z.ZodTypeAny, {
3101
- firstname?: string | null | undefined;
3102
- surname?: string | null | undefined;
3101
+ firstname: string;
3102
+ surname: string;
3103
3103
  middlename?: string | null | undefined;
3104
3104
  }, {
3105
- firstname?: string | null | undefined;
3106
- surname?: string | null | undefined;
3105
+ firstname: string;
3106
+ surname: string;
3107
3107
  middlename?: string | null | undefined;
3108
3108
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
3109
3109
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -3229,16 +3229,16 @@ export declare const EventDocument: z.ZodObject<{
3229
3229
  addressLine3?: string | null | undefined;
3230
3230
  postcodeOrZip?: string | null | undefined;
3231
3231
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3232
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3233
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3232
+ firstname: z.ZodString;
3233
+ surname: z.ZodString;
3234
3234
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3235
3235
  }, "strip", z.ZodTypeAny, {
3236
- firstname?: string | null | undefined;
3237
- surname?: string | null | undefined;
3236
+ firstname: string;
3237
+ surname: string;
3238
3238
  middlename?: string | null | undefined;
3239
3239
  }, {
3240
- firstname?: string | null | undefined;
3241
- surname?: string | null | undefined;
3240
+ firstname: string;
3241
+ surname: string;
3242
3242
  middlename?: string | null | undefined;
3243
3243
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
3244
3244
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -3271,8 +3271,8 @@ export declare const EventDocument: z.ZodObject<{
3271
3271
  street?: string | null | undefined;
3272
3272
  zipCode?: string | null | undefined;
3273
3273
  } | {
3274
- firstname?: string | null | undefined;
3275
- surname?: string | null | undefined;
3274
+ firstname: string;
3275
+ surname: string;
3276
3276
  middlename?: string | null | undefined;
3277
3277
  } | {
3278
3278
  country: string;
@@ -3318,8 +3318,8 @@ export declare const EventDocument: z.ZodObject<{
3318
3318
  street?: string | null | undefined;
3319
3319
  zipCode?: string | null | undefined;
3320
3320
  } | {
3321
- firstname?: string | null | undefined;
3322
- surname?: string | null | undefined;
3321
+ firstname: string;
3322
+ surname: string;
3323
3323
  middlename?: string | null | undefined;
3324
3324
  } | {
3325
3325
  country: string;
@@ -3374,8 +3374,8 @@ export declare const EventDocument: z.ZodObject<{
3374
3374
  street?: string | null | undefined;
3375
3375
  zipCode?: string | null | undefined;
3376
3376
  } | {
3377
- firstname?: string | null | undefined;
3378
- surname?: string | null | undefined;
3377
+ firstname: string;
3378
+ surname: string;
3379
3379
  middlename?: string | null | undefined;
3380
3380
  } | {
3381
3381
  country: string;
@@ -3421,8 +3421,8 @@ export declare const EventDocument: z.ZodObject<{
3421
3421
  street?: string | null | undefined;
3422
3422
  zipCode?: string | null | undefined;
3423
3423
  } | {
3424
- firstname?: string | null | undefined;
3425
- surname?: string | null | undefined;
3424
+ firstname: string;
3425
+ surname: string;
3426
3426
  middlename?: string | null | undefined;
3427
3427
  } | {
3428
3428
  country: string;
@@ -3584,16 +3584,16 @@ export declare const EventDocument: z.ZodObject<{
3584
3584
  addressLine3?: string | null | undefined;
3585
3585
  postcodeOrZip?: string | null | undefined;
3586
3586
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3587
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3588
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3587
+ firstname: z.ZodString;
3588
+ surname: z.ZodString;
3589
3589
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3590
3590
  }, "strip", z.ZodTypeAny, {
3591
- firstname?: string | null | undefined;
3592
- surname?: string | null | undefined;
3591
+ firstname: string;
3592
+ surname: string;
3593
3593
  middlename?: string | null | undefined;
3594
3594
  }, {
3595
- firstname?: string | null | undefined;
3596
- surname?: string | null | undefined;
3595
+ firstname: string;
3596
+ surname: string;
3597
3597
  middlename?: string | null | undefined;
3598
3598
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
3599
3599
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -3719,16 +3719,16 @@ export declare const EventDocument: z.ZodObject<{
3719
3719
  addressLine3?: string | null | undefined;
3720
3720
  postcodeOrZip?: string | null | undefined;
3721
3721
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3722
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3723
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3722
+ firstname: z.ZodString;
3723
+ surname: z.ZodString;
3724
3724
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3725
3725
  }, "strip", z.ZodTypeAny, {
3726
- firstname?: string | null | undefined;
3727
- surname?: string | null | undefined;
3726
+ firstname: string;
3727
+ surname: string;
3728
3728
  middlename?: string | null | undefined;
3729
3729
  }, {
3730
- firstname?: string | null | undefined;
3731
- surname?: string | null | undefined;
3730
+ firstname: string;
3731
+ surname: string;
3732
3732
  middlename?: string | null | undefined;
3733
3733
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
3734
3734
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -3760,8 +3760,8 @@ export declare const EventDocument: z.ZodObject<{
3760
3760
  street?: string | null | undefined;
3761
3761
  zipCode?: string | null | undefined;
3762
3762
  } | {
3763
- firstname?: string | null | undefined;
3764
- surname?: string | null | undefined;
3763
+ firstname: string;
3764
+ surname: string;
3765
3765
  middlename?: string | null | undefined;
3766
3766
  } | {
3767
3767
  country: string;
@@ -3807,8 +3807,8 @@ export declare const EventDocument: z.ZodObject<{
3807
3807
  street?: string | null | undefined;
3808
3808
  zipCode?: string | null | undefined;
3809
3809
  } | {
3810
- firstname?: string | null | undefined;
3811
- surname?: string | null | undefined;
3810
+ firstname: string;
3811
+ surname: string;
3812
3812
  middlename?: string | null | undefined;
3813
3813
  } | {
3814
3814
  country: string;
@@ -3862,8 +3862,8 @@ export declare const EventDocument: z.ZodObject<{
3862
3862
  street?: string | null | undefined;
3863
3863
  zipCode?: string | null | undefined;
3864
3864
  } | {
3865
- firstname?: string | null | undefined;
3866
- surname?: string | null | undefined;
3865
+ firstname: string;
3866
+ surname: string;
3867
3867
  middlename?: string | null | undefined;
3868
3868
  } | {
3869
3869
  country: string;
@@ -3909,8 +3909,8 @@ export declare const EventDocument: z.ZodObject<{
3909
3909
  street?: string | null | undefined;
3910
3910
  zipCode?: string | null | undefined;
3911
3911
  } | {
3912
- firstname?: string | null | undefined;
3913
- surname?: string | null | undefined;
3912
+ firstname: string;
3913
+ surname: string;
3914
3914
  middlename?: string | null | undefined;
3915
3915
  } | {
3916
3916
  country: string;
@@ -4071,16 +4071,16 @@ export declare const EventDocument: z.ZodObject<{
4071
4071
  addressLine3?: string | null | undefined;
4072
4072
  postcodeOrZip?: string | null | undefined;
4073
4073
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4074
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4075
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4074
+ firstname: z.ZodString;
4075
+ surname: z.ZodString;
4076
4076
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4077
4077
  }, "strip", z.ZodTypeAny, {
4078
- firstname?: string | null | undefined;
4079
- surname?: string | null | undefined;
4078
+ firstname: string;
4079
+ surname: string;
4080
4080
  middlename?: string | null | undefined;
4081
4081
  }, {
4082
- firstname?: string | null | undefined;
4083
- surname?: string | null | undefined;
4082
+ firstname: string;
4083
+ surname: string;
4084
4084
  middlename?: string | null | undefined;
4085
4085
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
4086
4086
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -4206,16 +4206,16 @@ export declare const EventDocument: z.ZodObject<{
4206
4206
  addressLine3?: string | null | undefined;
4207
4207
  postcodeOrZip?: string | null | undefined;
4208
4208
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4209
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4210
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4209
+ firstname: z.ZodString;
4210
+ surname: z.ZodString;
4211
4211
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4212
4212
  }, "strip", z.ZodTypeAny, {
4213
- firstname?: string | null | undefined;
4214
- surname?: string | null | undefined;
4213
+ firstname: string;
4214
+ surname: string;
4215
4215
  middlename?: string | null | undefined;
4216
4216
  }, {
4217
- firstname?: string | null | undefined;
4218
- surname?: string | null | undefined;
4217
+ firstname: string;
4218
+ surname: string;
4219
4219
  middlename?: string | null | undefined;
4220
4220
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
4221
4221
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -4248,8 +4248,8 @@ export declare const EventDocument: z.ZodObject<{
4248
4248
  street?: string | null | undefined;
4249
4249
  zipCode?: string | null | undefined;
4250
4250
  } | {
4251
- firstname?: string | null | undefined;
4252
- surname?: string | null | undefined;
4251
+ firstname: string;
4252
+ surname: string;
4253
4253
  middlename?: string | null | undefined;
4254
4254
  } | {
4255
4255
  country: string;
@@ -4296,8 +4296,8 @@ export declare const EventDocument: z.ZodObject<{
4296
4296
  street?: string | null | undefined;
4297
4297
  zipCode?: string | null | undefined;
4298
4298
  } | {
4299
- firstname?: string | null | undefined;
4300
- surname?: string | null | undefined;
4299
+ firstname: string;
4300
+ surname: string;
4301
4301
  middlename?: string | null | undefined;
4302
4302
  } | {
4303
4303
  country: string;
@@ -4351,8 +4351,8 @@ export declare const EventDocument: z.ZodObject<{
4351
4351
  street?: string | null | undefined;
4352
4352
  zipCode?: string | null | undefined;
4353
4353
  } | {
4354
- firstname?: string | null | undefined;
4355
- surname?: string | null | undefined;
4354
+ firstname: string;
4355
+ surname: string;
4356
4356
  middlename?: string | null | undefined;
4357
4357
  } | {
4358
4358
  country: string;
@@ -4399,8 +4399,8 @@ export declare const EventDocument: z.ZodObject<{
4399
4399
  street?: string | null | undefined;
4400
4400
  zipCode?: string | null | undefined;
4401
4401
  } | {
4402
- firstname?: string | null | undefined;
4403
- surname?: string | null | undefined;
4402
+ firstname: string;
4403
+ surname: string;
4404
4404
  middlename?: string | null | undefined;
4405
4405
  } | {
4406
4406
  country: string;
@@ -4561,16 +4561,16 @@ export declare const EventDocument: z.ZodObject<{
4561
4561
  addressLine3?: string | null | undefined;
4562
4562
  postcodeOrZip?: string | null | undefined;
4563
4563
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4564
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4565
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4564
+ firstname: z.ZodString;
4565
+ surname: z.ZodString;
4566
4566
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4567
4567
  }, "strip", z.ZodTypeAny, {
4568
- firstname?: string | null | undefined;
4569
- surname?: string | null | undefined;
4568
+ firstname: string;
4569
+ surname: string;
4570
4570
  middlename?: string | null | undefined;
4571
4571
  }, {
4572
- firstname?: string | null | undefined;
4573
- surname?: string | null | undefined;
4572
+ firstname: string;
4573
+ surname: string;
4574
4574
  middlename?: string | null | undefined;
4575
4575
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
4576
4576
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -4696,16 +4696,16 @@ export declare const EventDocument: z.ZodObject<{
4696
4696
  addressLine3?: string | null | undefined;
4697
4697
  postcodeOrZip?: string | null | undefined;
4698
4698
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4699
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4700
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4699
+ firstname: z.ZodString;
4700
+ surname: z.ZodString;
4701
4701
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4702
4702
  }, "strip", z.ZodTypeAny, {
4703
- firstname?: string | null | undefined;
4704
- surname?: string | null | undefined;
4703
+ firstname: string;
4704
+ surname: string;
4705
4705
  middlename?: string | null | undefined;
4706
4706
  }, {
4707
- firstname?: string | null | undefined;
4708
- surname?: string | null | undefined;
4707
+ firstname: string;
4708
+ surname: string;
4709
4709
  middlename?: string | null | undefined;
4710
4710
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
4711
4711
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -4737,8 +4737,8 @@ export declare const EventDocument: z.ZodObject<{
4737
4737
  street?: string | null | undefined;
4738
4738
  zipCode?: string | null | undefined;
4739
4739
  } | {
4740
- firstname?: string | null | undefined;
4741
- surname?: string | null | undefined;
4740
+ firstname: string;
4741
+ surname: string;
4742
4742
  middlename?: string | null | undefined;
4743
4743
  } | {
4744
4744
  country: string;
@@ -4784,8 +4784,8 @@ export declare const EventDocument: z.ZodObject<{
4784
4784
  street?: string | null | undefined;
4785
4785
  zipCode?: string | null | undefined;
4786
4786
  } | {
4787
- firstname?: string | null | undefined;
4788
- surname?: string | null | undefined;
4787
+ firstname: string;
4788
+ surname: string;
4789
4789
  middlename?: string | null | undefined;
4790
4790
  } | {
4791
4791
  country: string;
@@ -4839,8 +4839,8 @@ export declare const EventDocument: z.ZodObject<{
4839
4839
  street?: string | null | undefined;
4840
4840
  zipCode?: string | null | undefined;
4841
4841
  } | {
4842
- firstname?: string | null | undefined;
4843
- surname?: string | null | undefined;
4842
+ firstname: string;
4843
+ surname: string;
4844
4844
  middlename?: string | null | undefined;
4845
4845
  } | {
4846
4846
  country: string;
@@ -4886,8 +4886,8 @@ export declare const EventDocument: z.ZodObject<{
4886
4886
  street?: string | null | undefined;
4887
4887
  zipCode?: string | null | undefined;
4888
4888
  } | {
4889
- firstname?: string | null | undefined;
4890
- surname?: string | null | undefined;
4889
+ firstname: string;
4890
+ surname: string;
4891
4891
  middlename?: string | null | undefined;
4892
4892
  } | {
4893
4893
  country: string;
@@ -5048,16 +5048,16 @@ export declare const EventDocument: z.ZodObject<{
5048
5048
  addressLine3?: string | null | undefined;
5049
5049
  postcodeOrZip?: string | null | undefined;
5050
5050
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5051
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5052
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5051
+ firstname: z.ZodString;
5052
+ surname: z.ZodString;
5053
5053
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5054
5054
  }, "strip", z.ZodTypeAny, {
5055
- firstname?: string | null | undefined;
5056
- surname?: string | null | undefined;
5055
+ firstname: string;
5056
+ surname: string;
5057
5057
  middlename?: string | null | undefined;
5058
5058
  }, {
5059
- firstname?: string | null | undefined;
5060
- surname?: string | null | undefined;
5059
+ firstname: string;
5060
+ surname: string;
5061
5061
  middlename?: string | null | undefined;
5062
5062
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
5063
5063
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -5183,16 +5183,16 @@ export declare const EventDocument: z.ZodObject<{
5183
5183
  addressLine3?: string | null | undefined;
5184
5184
  postcodeOrZip?: string | null | undefined;
5185
5185
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5186
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5187
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5186
+ firstname: z.ZodString;
5187
+ surname: z.ZodString;
5188
5188
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5189
5189
  }, "strip", z.ZodTypeAny, {
5190
- firstname?: string | null | undefined;
5191
- surname?: string | null | undefined;
5190
+ firstname: string;
5191
+ surname: string;
5192
5192
  middlename?: string | null | undefined;
5193
5193
  }, {
5194
- firstname?: string | null | undefined;
5195
- surname?: string | null | undefined;
5194
+ firstname: string;
5195
+ surname: string;
5196
5196
  middlename?: string | null | undefined;
5197
5197
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
5198
5198
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -5225,8 +5225,8 @@ export declare const EventDocument: z.ZodObject<{
5225
5225
  street?: string | null | undefined;
5226
5226
  zipCode?: string | null | undefined;
5227
5227
  } | {
5228
- firstname?: string | null | undefined;
5229
- surname?: string | null | undefined;
5228
+ firstname: string;
5229
+ surname: string;
5230
5230
  middlename?: string | null | undefined;
5231
5231
  } | {
5232
5232
  country: string;
@@ -5273,8 +5273,8 @@ export declare const EventDocument: z.ZodObject<{
5273
5273
  street?: string | null | undefined;
5274
5274
  zipCode?: string | null | undefined;
5275
5275
  } | {
5276
- firstname?: string | null | undefined;
5277
- surname?: string | null | undefined;
5276
+ firstname: string;
5277
+ surname: string;
5278
5278
  middlename?: string | null | undefined;
5279
5279
  } | {
5280
5280
  country: string;
@@ -5328,8 +5328,8 @@ export declare const EventDocument: z.ZodObject<{
5328
5328
  street?: string | null | undefined;
5329
5329
  zipCode?: string | null | undefined;
5330
5330
  } | {
5331
- firstname?: string | null | undefined;
5332
- surname?: string | null | undefined;
5331
+ firstname: string;
5332
+ surname: string;
5333
5333
  middlename?: string | null | undefined;
5334
5334
  } | {
5335
5335
  country: string;
@@ -5376,8 +5376,8 @@ export declare const EventDocument: z.ZodObject<{
5376
5376
  street?: string | null | undefined;
5377
5377
  zipCode?: string | null | undefined;
5378
5378
  } | {
5379
- firstname?: string | null | undefined;
5380
- surname?: string | null | undefined;
5379
+ firstname: string;
5380
+ surname: string;
5381
5381
  middlename?: string | null | undefined;
5382
5382
  } | {
5383
5383
  country: string;
@@ -5538,16 +5538,16 @@ export declare const EventDocument: z.ZodObject<{
5538
5538
  addressLine3?: string | null | undefined;
5539
5539
  postcodeOrZip?: string | null | undefined;
5540
5540
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5541
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5542
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5541
+ firstname: z.ZodString;
5542
+ surname: z.ZodString;
5543
5543
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5544
5544
  }, "strip", z.ZodTypeAny, {
5545
- firstname?: string | null | undefined;
5546
- surname?: string | null | undefined;
5545
+ firstname: string;
5546
+ surname: string;
5547
5547
  middlename?: string | null | undefined;
5548
5548
  }, {
5549
- firstname?: string | null | undefined;
5550
- surname?: string | null | undefined;
5549
+ firstname: string;
5550
+ surname: string;
5551
5551
  middlename?: string | null | undefined;
5552
5552
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
5553
5553
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -5673,16 +5673,16 @@ export declare const EventDocument: z.ZodObject<{
5673
5673
  addressLine3?: string | null | undefined;
5674
5674
  postcodeOrZip?: string | null | undefined;
5675
5675
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5676
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5677
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5676
+ firstname: z.ZodString;
5677
+ surname: z.ZodString;
5678
5678
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5679
5679
  }, "strip", z.ZodTypeAny, {
5680
- firstname?: string | null | undefined;
5681
- surname?: string | null | undefined;
5680
+ firstname: string;
5681
+ surname: string;
5682
5682
  middlename?: string | null | undefined;
5683
5683
  }, {
5684
- firstname?: string | null | undefined;
5685
- surname?: string | null | undefined;
5684
+ firstname: string;
5685
+ surname: string;
5686
5686
  middlename?: string | null | undefined;
5687
5687
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
5688
5688
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -5729,8 +5729,8 @@ export declare const EventDocument: z.ZodObject<{
5729
5729
  street?: string | null | undefined;
5730
5730
  zipCode?: string | null | undefined;
5731
5731
  } | {
5732
- firstname?: string | null | undefined;
5733
- surname?: string | null | undefined;
5732
+ firstname: string;
5733
+ surname: string;
5734
5734
  middlename?: string | null | undefined;
5735
5735
  } | {
5736
5736
  country: string;
@@ -5777,8 +5777,8 @@ export declare const EventDocument: z.ZodObject<{
5777
5777
  street?: string | null | undefined;
5778
5778
  zipCode?: string | null | undefined;
5779
5779
  } | {
5780
- firstname?: string | null | undefined;
5781
- surname?: string | null | undefined;
5780
+ firstname: string;
5781
+ surname: string;
5782
5782
  middlename?: string | null | undefined;
5783
5783
  } | {
5784
5784
  country: string;
@@ -5836,8 +5836,8 @@ export declare const EventDocument: z.ZodObject<{
5836
5836
  street?: string | null | undefined;
5837
5837
  zipCode?: string | null | undefined;
5838
5838
  } | {
5839
- firstname?: string | null | undefined;
5840
- surname?: string | null | undefined;
5839
+ firstname: string;
5840
+ surname: string;
5841
5841
  middlename?: string | null | undefined;
5842
5842
  } | {
5843
5843
  country: string;
@@ -5884,8 +5884,8 @@ export declare const EventDocument: z.ZodObject<{
5884
5884
  street?: string | null | undefined;
5885
5885
  zipCode?: string | null | undefined;
5886
5886
  } | {
5887
- firstname?: string | null | undefined;
5888
- surname?: string | null | undefined;
5887
+ firstname: string;
5888
+ surname: string;
5889
5889
  middlename?: string | null | undefined;
5890
5890
  } | {
5891
5891
  country: string;
@@ -6046,16 +6046,16 @@ export declare const EventDocument: z.ZodObject<{
6046
6046
  addressLine3?: string | null | undefined;
6047
6047
  postcodeOrZip?: string | null | undefined;
6048
6048
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6049
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6050
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6049
+ firstname: z.ZodString;
6050
+ surname: z.ZodString;
6051
6051
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6052
6052
  }, "strip", z.ZodTypeAny, {
6053
- firstname?: string | null | undefined;
6054
- surname?: string | null | undefined;
6053
+ firstname: string;
6054
+ surname: string;
6055
6055
  middlename?: string | null | undefined;
6056
6056
  }, {
6057
- firstname?: string | null | undefined;
6058
- surname?: string | null | undefined;
6057
+ firstname: string;
6058
+ surname: string;
6059
6059
  middlename?: string | null | undefined;
6060
6060
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
6061
6061
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -6181,16 +6181,16 @@ export declare const EventDocument: z.ZodObject<{
6181
6181
  addressLine3?: string | null | undefined;
6182
6182
  postcodeOrZip?: string | null | undefined;
6183
6183
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6184
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6185
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6184
+ firstname: z.ZodString;
6185
+ surname: z.ZodString;
6186
6186
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6187
6187
  }, "strip", z.ZodTypeAny, {
6188
- firstname?: string | null | undefined;
6189
- surname?: string | null | undefined;
6188
+ firstname: string;
6189
+ surname: string;
6190
6190
  middlename?: string | null | undefined;
6191
6191
  }, {
6192
- firstname?: string | null | undefined;
6193
- surname?: string | null | undefined;
6192
+ firstname: string;
6193
+ surname: string;
6194
6194
  middlename?: string | null | undefined;
6195
6195
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
6196
6196
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -6222,8 +6222,8 @@ export declare const EventDocument: z.ZodObject<{
6222
6222
  street?: string | null | undefined;
6223
6223
  zipCode?: string | null | undefined;
6224
6224
  } | {
6225
- firstname?: string | null | undefined;
6226
- surname?: string | null | undefined;
6225
+ firstname: string;
6226
+ surname: string;
6227
6227
  middlename?: string | null | undefined;
6228
6228
  } | {
6229
6229
  country: string;
@@ -6269,8 +6269,8 @@ export declare const EventDocument: z.ZodObject<{
6269
6269
  street?: string | null | undefined;
6270
6270
  zipCode?: string | null | undefined;
6271
6271
  } | {
6272
- firstname?: string | null | undefined;
6273
- surname?: string | null | undefined;
6272
+ firstname: string;
6273
+ surname: string;
6274
6274
  middlename?: string | null | undefined;
6275
6275
  } | {
6276
6276
  country: string;
@@ -6324,8 +6324,8 @@ export declare const EventDocument: z.ZodObject<{
6324
6324
  street?: string | null | undefined;
6325
6325
  zipCode?: string | null | undefined;
6326
6326
  } | {
6327
- firstname?: string | null | undefined;
6328
- surname?: string | null | undefined;
6327
+ firstname: string;
6328
+ surname: string;
6329
6329
  middlename?: string | null | undefined;
6330
6330
  } | {
6331
6331
  country: string;
@@ -6371,8 +6371,8 @@ export declare const EventDocument: z.ZodObject<{
6371
6371
  street?: string | null | undefined;
6372
6372
  zipCode?: string | null | undefined;
6373
6373
  } | {
6374
- firstname?: string | null | undefined;
6375
- surname?: string | null | undefined;
6374
+ firstname: string;
6375
+ surname: string;
6376
6376
  middlename?: string | null | undefined;
6377
6377
  } | {
6378
6378
  country: string;
@@ -6533,16 +6533,16 @@ export declare const EventDocument: z.ZodObject<{
6533
6533
  addressLine3?: string | null | undefined;
6534
6534
  postcodeOrZip?: string | null | undefined;
6535
6535
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6536
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6537
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6536
+ firstname: z.ZodString;
6537
+ surname: z.ZodString;
6538
6538
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6539
6539
  }, "strip", z.ZodTypeAny, {
6540
- firstname?: string | null | undefined;
6541
- surname?: string | null | undefined;
6540
+ firstname: string;
6541
+ surname: string;
6542
6542
  middlename?: string | null | undefined;
6543
6543
  }, {
6544
- firstname?: string | null | undefined;
6545
- surname?: string | null | undefined;
6544
+ firstname: string;
6545
+ surname: string;
6546
6546
  middlename?: string | null | undefined;
6547
6547
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
6548
6548
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -6668,22 +6668,29 @@ 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.ZodOptional<z.ZodNullable<z.ZodString>>;
6672
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6671
+ firstname: z.ZodString;
6672
+ surname: z.ZodString;
6673
6673
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6674
6674
  }, "strip", z.ZodTypeAny, {
6675
- firstname?: string | null | undefined;
6676
- surname?: string | null | undefined;
6675
+ firstname: string;
6676
+ surname: string;
6677
6677
  middlename?: string | null | undefined;
6678
6678
  }, {
6679
- firstname?: string | null | undefined;
6680
- surname?: string | null | undefined;
6679
+ firstname: string;
6680
+ surname: string;
6681
6681
  middlename?: string | null | undefined;
6682
6682
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
6683
6683
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
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
+ }>>>;
6687
6694
  }>, "strip", z.ZodTypeAny, {
6688
6695
  type: "PRINT_CERTIFICATE";
6689
6696
  id: string & z.BRAND<"UUID">;
@@ -6709,8 +6716,8 @@ export declare const EventDocument: z.ZodObject<{
6709
6716
  street?: string | null | undefined;
6710
6717
  zipCode?: string | null | undefined;
6711
6718
  } | {
6712
- firstname?: string | null | undefined;
6713
- surname?: string | null | undefined;
6719
+ firstname: string;
6720
+ surname: string;
6714
6721
  middlename?: string | null | undefined;
6715
6722
  } | {
6716
6723
  country: string;
@@ -6738,6 +6745,9 @@ export declare const EventDocument: z.ZodObject<{
6738
6745
  start: string;
6739
6746
  end: string;
6740
6747
  } | null | undefined>;
6748
+ content?: {
6749
+ templateId?: string | undefined;
6750
+ } | null | undefined;
6741
6751
  createdBySignature?: string | null | undefined;
6742
6752
  createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
6743
6753
  annotation?: Record<string, string | number | boolean | {
@@ -6756,8 +6766,8 @@ export declare const EventDocument: z.ZodObject<{
6756
6766
  street?: string | null | undefined;
6757
6767
  zipCode?: string | null | undefined;
6758
6768
  } | {
6759
- firstname?: string | null | undefined;
6760
- surname?: string | null | undefined;
6769
+ firstname: string;
6770
+ surname: string;
6761
6771
  middlename?: string | null | undefined;
6762
6772
  } | {
6763
6773
  country: string;
@@ -6811,8 +6821,8 @@ export declare const EventDocument: z.ZodObject<{
6811
6821
  street?: string | null | undefined;
6812
6822
  zipCode?: string | null | undefined;
6813
6823
  } | {
6814
- firstname?: string | null | undefined;
6815
- surname?: string | null | undefined;
6824
+ firstname: string;
6825
+ surname: string;
6816
6826
  middlename?: string | null | undefined;
6817
6827
  } | {
6818
6828
  country: string;
@@ -6840,6 +6850,9 @@ export declare const EventDocument: z.ZodObject<{
6840
6850
  start: string;
6841
6851
  end: string;
6842
6852
  } | null | undefined>;
6853
+ content?: {
6854
+ templateId?: string | undefined;
6855
+ } | null | undefined;
6843
6856
  createdBySignature?: string | null | undefined;
6844
6857
  createdAtLocation?: string | null | undefined;
6845
6858
  annotation?: Record<string, string | number | boolean | {
@@ -6858,8 +6871,8 @@ export declare const EventDocument: z.ZodObject<{
6858
6871
  street?: string | null | undefined;
6859
6872
  zipCode?: string | null | undefined;
6860
6873
  } | {
6861
- firstname?: string | null | undefined;
6862
- surname?: string | null | undefined;
6874
+ firstname: string;
6875
+ surname: string;
6863
6876
  middlename?: string | null | undefined;
6864
6877
  } | {
6865
6878
  country: string;
@@ -7020,16 +7033,16 @@ export declare const EventDocument: z.ZodObject<{
7020
7033
  addressLine3?: string | null | undefined;
7021
7034
  postcodeOrZip?: string | null | undefined;
7022
7035
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7023
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7024
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7036
+ firstname: z.ZodString;
7037
+ surname: z.ZodString;
7025
7038
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7026
7039
  }, "strip", z.ZodTypeAny, {
7027
- firstname?: string | null | undefined;
7028
- surname?: string | null | undefined;
7040
+ firstname: string;
7041
+ surname: string;
7029
7042
  middlename?: string | null | undefined;
7030
7043
  }, {
7031
- firstname?: string | null | undefined;
7032
- surname?: string | null | undefined;
7044
+ firstname: string;
7045
+ surname: string;
7033
7046
  middlename?: string | null | undefined;
7034
7047
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
7035
7048
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -7155,16 +7168,16 @@ export declare const EventDocument: z.ZodObject<{
7155
7168
  addressLine3?: string | null | undefined;
7156
7169
  postcodeOrZip?: string | null | undefined;
7157
7170
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7158
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7159
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7171
+ firstname: z.ZodString;
7172
+ surname: z.ZodString;
7160
7173
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7161
7174
  }, "strip", z.ZodTypeAny, {
7162
- firstname?: string | null | undefined;
7163
- surname?: string | null | undefined;
7175
+ firstname: string;
7176
+ surname: string;
7164
7177
  middlename?: string | null | undefined;
7165
7178
  }, {
7166
- firstname?: string | null | undefined;
7167
- surname?: string | null | undefined;
7179
+ firstname: string;
7180
+ surname: string;
7168
7181
  middlename?: string | null | undefined;
7169
7182
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
7170
7183
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -7196,8 +7209,8 @@ export declare const EventDocument: z.ZodObject<{
7196
7209
  street?: string | null | undefined;
7197
7210
  zipCode?: string | null | undefined;
7198
7211
  } | {
7199
- firstname?: string | null | undefined;
7200
- surname?: string | null | undefined;
7212
+ firstname: string;
7213
+ surname: string;
7201
7214
  middlename?: string | null | undefined;
7202
7215
  } | {
7203
7216
  country: string;
@@ -7243,8 +7256,8 @@ export declare const EventDocument: z.ZodObject<{
7243
7256
  street?: string | null | undefined;
7244
7257
  zipCode?: string | null | undefined;
7245
7258
  } | {
7246
- firstname?: string | null | undefined;
7247
- surname?: string | null | undefined;
7259
+ firstname: string;
7260
+ surname: string;
7248
7261
  middlename?: string | null | undefined;
7249
7262
  } | {
7250
7263
  country: string;
@@ -7298,8 +7311,8 @@ export declare const EventDocument: z.ZodObject<{
7298
7311
  street?: string | null | undefined;
7299
7312
  zipCode?: string | null | undefined;
7300
7313
  } | {
7301
- firstname?: string | null | undefined;
7302
- surname?: string | null | undefined;
7314
+ firstname: string;
7315
+ surname: string;
7303
7316
  middlename?: string | null | undefined;
7304
7317
  } | {
7305
7318
  country: string;
@@ -7345,8 +7358,8 @@ export declare const EventDocument: z.ZodObject<{
7345
7358
  street?: string | null | undefined;
7346
7359
  zipCode?: string | null | undefined;
7347
7360
  } | {
7348
- firstname?: string | null | undefined;
7349
- surname?: string | null | undefined;
7361
+ firstname: string;
7362
+ surname: string;
7350
7363
  middlename?: string | null | undefined;
7351
7364
  } | {
7352
7365
  country: string;
@@ -7507,16 +7520,16 @@ export declare const EventDocument: z.ZodObject<{
7507
7520
  addressLine3?: string | null | undefined;
7508
7521
  postcodeOrZip?: string | null | undefined;
7509
7522
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7510
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7511
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7523
+ firstname: z.ZodString;
7524
+ surname: z.ZodString;
7512
7525
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7513
7526
  }, "strip", z.ZodTypeAny, {
7514
- firstname?: string | null | undefined;
7515
- surname?: string | null | undefined;
7527
+ firstname: string;
7528
+ surname: string;
7516
7529
  middlename?: string | null | undefined;
7517
7530
  }, {
7518
- firstname?: string | null | undefined;
7519
- surname?: string | null | undefined;
7531
+ firstname: string;
7532
+ surname: string;
7520
7533
  middlename?: string | null | undefined;
7521
7534
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
7522
7535
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -7642,16 +7655,16 @@ export declare const EventDocument: z.ZodObject<{
7642
7655
  addressLine3?: string | null | undefined;
7643
7656
  postcodeOrZip?: string | null | undefined;
7644
7657
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7645
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7646
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7658
+ firstname: z.ZodString;
7659
+ surname: z.ZodString;
7647
7660
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7648
7661
  }, "strip", z.ZodTypeAny, {
7649
- firstname?: string | null | undefined;
7650
- surname?: string | null | undefined;
7662
+ firstname: string;
7663
+ surname: string;
7651
7664
  middlename?: string | null | undefined;
7652
7665
  }, {
7653
- firstname?: string | null | undefined;
7654
- surname?: string | null | undefined;
7666
+ firstname: string;
7667
+ surname: string;
7655
7668
  middlename?: string | null | undefined;
7656
7669
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
7657
7670
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -7715,8 +7728,8 @@ export declare const EventDocument: z.ZodObject<{
7715
7728
  street?: string | null | undefined;
7716
7729
  zipCode?: string | null | undefined;
7717
7730
  } | {
7718
- firstname?: string | null | undefined;
7719
- surname?: string | null | undefined;
7731
+ firstname: string;
7732
+ surname: string;
7720
7733
  middlename?: string | null | undefined;
7721
7734
  } | {
7722
7735
  country: string;
@@ -7763,8 +7776,8 @@ export declare const EventDocument: z.ZodObject<{
7763
7776
  street?: string | null | undefined;
7764
7777
  zipCode?: string | null | undefined;
7765
7778
  } | {
7766
- firstname?: string | null | undefined;
7767
- surname?: string | null | undefined;
7779
+ firstname: string;
7780
+ surname: string;
7768
7781
  middlename?: string | null | undefined;
7769
7782
  } | {
7770
7783
  country: string;
@@ -7818,8 +7831,8 @@ export declare const EventDocument: z.ZodObject<{
7818
7831
  street?: string | null | undefined;
7819
7832
  zipCode?: string | null | undefined;
7820
7833
  } | {
7821
- firstname?: string | null | undefined;
7822
- surname?: string | null | undefined;
7834
+ firstname: string;
7835
+ surname: string;
7823
7836
  middlename?: string | null | undefined;
7824
7837
  } | {
7825
7838
  country: string;
@@ -7865,8 +7878,8 @@ export declare const EventDocument: z.ZodObject<{
7865
7878
  street?: string | null | undefined;
7866
7879
  zipCode?: string | null | undefined;
7867
7880
  } | {
7868
- firstname?: string | null | undefined;
7869
- surname?: string | null | undefined;
7881
+ firstname: string;
7882
+ surname: string;
7870
7883
  middlename?: string | null | undefined;
7871
7884
  } | {
7872
7885
  country: string;
@@ -7920,8 +7933,8 @@ export declare const EventDocument: z.ZodObject<{
7920
7933
  street?: string | null | undefined;
7921
7934
  zipCode?: string | null | undefined;
7922
7935
  } | {
7923
- firstname?: string | null | undefined;
7924
- surname?: string | null | undefined;
7936
+ firstname: string;
7937
+ surname: string;
7925
7938
  middlename?: string | null | undefined;
7926
7939
  } | {
7927
7940
  country: string;
@@ -7967,8 +7980,8 @@ export declare const EventDocument: z.ZodObject<{
7967
7980
  street?: string | null | undefined;
7968
7981
  zipCode?: string | null | undefined;
7969
7982
  } | {
7970
- firstname?: string | null | undefined;
7971
- surname?: string | null | undefined;
7983
+ firstname: string;
7984
+ surname: string;
7972
7985
  middlename?: string | null | undefined;
7973
7986
  } | {
7974
7987
  country: string;
@@ -8023,8 +8036,8 @@ export declare const EventDocument: z.ZodObject<{
8023
8036
  street?: string | null | undefined;
8024
8037
  zipCode?: string | null | undefined;
8025
8038
  } | {
8026
- firstname?: string | null | undefined;
8027
- surname?: string | null | undefined;
8039
+ firstname: string;
8040
+ surname: string;
8028
8041
  middlename?: string | null | undefined;
8029
8042
  } | {
8030
8043
  country: string;
@@ -8070,8 +8083,8 @@ export declare const EventDocument: z.ZodObject<{
8070
8083
  street?: string | null | undefined;
8071
8084
  zipCode?: string | null | undefined;
8072
8085
  } | {
8073
- firstname?: string | null | undefined;
8074
- surname?: string | null | undefined;
8086
+ firstname: string;
8087
+ surname: string;
8075
8088
  middlename?: string | null | undefined;
8076
8089
  } | {
8077
8090
  country: string;
@@ -8125,8 +8138,8 @@ export declare const EventDocument: z.ZodObject<{
8125
8138
  street?: string | null | undefined;
8126
8139
  zipCode?: string | null | undefined;
8127
8140
  } | {
8128
- firstname?: string | null | undefined;
8129
- surname?: string | null | undefined;
8141
+ firstname: string;
8142
+ surname: string;
8130
8143
  middlename?: string | null | undefined;
8131
8144
  } | {
8132
8145
  country: string;
@@ -8172,8 +8185,8 @@ export declare const EventDocument: z.ZodObject<{
8172
8185
  street?: string | null | undefined;
8173
8186
  zipCode?: string | null | undefined;
8174
8187
  } | {
8175
- firstname?: string | null | undefined;
8176
- surname?: string | null | undefined;
8188
+ firstname: string;
8189
+ surname: string;
8177
8190
  middlename?: string | null | undefined;
8178
8191
  } | {
8179
8192
  country: string;
@@ -8231,8 +8244,8 @@ export declare const EventDocument: z.ZodObject<{
8231
8244
  street?: string | null | undefined;
8232
8245
  zipCode?: string | null | undefined;
8233
8246
  } | {
8234
- firstname?: string | null | undefined;
8235
- surname?: string | null | undefined;
8247
+ firstname: string;
8248
+ surname: string;
8236
8249
  middlename?: string | null | undefined;
8237
8250
  } | {
8238
8251
  country: string;
@@ -8278,8 +8291,8 @@ export declare const EventDocument: z.ZodObject<{
8278
8291
  street?: string | null | undefined;
8279
8292
  zipCode?: string | null | undefined;
8280
8293
  } | {
8281
- firstname?: string | null | undefined;
8282
- surname?: string | null | undefined;
8294
+ firstname: string;
8295
+ surname: string;
8283
8296
  middlename?: string | null | undefined;
8284
8297
  } | {
8285
8298
  country: string;
@@ -8333,8 +8346,8 @@ export declare const EventDocument: z.ZodObject<{
8333
8346
  street?: string | null | undefined;
8334
8347
  zipCode?: string | null | undefined;
8335
8348
  } | {
8336
- firstname?: string | null | undefined;
8337
- surname?: string | null | undefined;
8349
+ firstname: string;
8350
+ surname: string;
8338
8351
  middlename?: string | null | undefined;
8339
8352
  } | {
8340
8353
  country: string;
@@ -8380,8 +8393,8 @@ export declare const EventDocument: z.ZodObject<{
8380
8393
  street?: string | null | undefined;
8381
8394
  zipCode?: string | null | undefined;
8382
8395
  } | {
8383
- firstname?: string | null | undefined;
8384
- surname?: string | null | undefined;
8396
+ firstname: string;
8397
+ surname: string;
8385
8398
  middlename?: string | null | undefined;
8386
8399
  } | {
8387
8400
  country: string;
@@ -8439,8 +8452,8 @@ export declare const EventDocument: z.ZodObject<{
8439
8452
  street?: string | null | undefined;
8440
8453
  zipCode?: string | null | undefined;
8441
8454
  } | {
8442
- firstname?: string | null | undefined;
8443
- surname?: string | null | undefined;
8455
+ firstname: string;
8456
+ surname: string;
8444
8457
  middlename?: string | null | undefined;
8445
8458
  } | {
8446
8459
  country: string;
@@ -8486,8 +8499,8 @@ export declare const EventDocument: z.ZodObject<{
8486
8499
  street?: string | null | undefined;
8487
8500
  zipCode?: string | null | undefined;
8488
8501
  } | {
8489
- firstname?: string | null | undefined;
8490
- surname?: string | null | undefined;
8502
+ firstname: string;
8503
+ surname: string;
8491
8504
  middlename?: string | null | undefined;
8492
8505
  } | {
8493
8506
  country: string;
@@ -8541,8 +8554,8 @@ export declare const EventDocument: z.ZodObject<{
8541
8554
  street?: string | null | undefined;
8542
8555
  zipCode?: string | null | undefined;
8543
8556
  } | {
8544
- firstname?: string | null | undefined;
8545
- surname?: string | null | undefined;
8557
+ firstname: string;
8558
+ surname: string;
8546
8559
  middlename?: string | null | undefined;
8547
8560
  } | {
8548
8561
  country: string;
@@ -8588,8 +8601,8 @@ export declare const EventDocument: z.ZodObject<{
8588
8601
  street?: string | null | undefined;
8589
8602
  zipCode?: string | null | undefined;
8590
8603
  } | {
8591
- firstname?: string | null | undefined;
8592
- surname?: string | null | undefined;
8604
+ firstname: string;
8605
+ surname: string;
8593
8606
  middlename?: string | null | undefined;
8594
8607
  } | {
8595
8608
  country: string;
@@ -8643,8 +8656,8 @@ export declare const EventDocument: z.ZodObject<{
8643
8656
  street?: string | null | undefined;
8644
8657
  zipCode?: string | null | undefined;
8645
8658
  } | {
8646
- firstname?: string | null | undefined;
8647
- surname?: string | null | undefined;
8659
+ firstname: string;
8660
+ surname: string;
8648
8661
  middlename?: string | null | undefined;
8649
8662
  } | {
8650
8663
  country: string;
@@ -8690,8 +8703,8 @@ export declare const EventDocument: z.ZodObject<{
8690
8703
  street?: string | null | undefined;
8691
8704
  zipCode?: string | null | undefined;
8692
8705
  } | {
8693
- firstname?: string | null | undefined;
8694
- surname?: string | null | undefined;
8706
+ firstname: string;
8707
+ surname: string;
8695
8708
  middlename?: string | null | undefined;
8696
8709
  } | {
8697
8710
  country: string;
@@ -8745,8 +8758,8 @@ export declare const EventDocument: z.ZodObject<{
8745
8758
  street?: string | null | undefined;
8746
8759
  zipCode?: string | null | undefined;
8747
8760
  } | {
8748
- firstname?: string | null | undefined;
8749
- surname?: string | null | undefined;
8761
+ firstname: string;
8762
+ surname: string;
8750
8763
  middlename?: string | null | undefined;
8751
8764
  } | {
8752
8765
  country: string;
@@ -8774,6 +8787,9 @@ export declare const EventDocument: z.ZodObject<{
8774
8787
  start: string;
8775
8788
  end: string;
8776
8789
  } | null | undefined>;
8790
+ content?: {
8791
+ templateId?: string | undefined;
8792
+ } | null | undefined;
8777
8793
  createdBySignature?: string | null | undefined;
8778
8794
  createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
8779
8795
  annotation?: Record<string, string | number | boolean | {
@@ -8792,8 +8808,8 @@ export declare const EventDocument: z.ZodObject<{
8792
8808
  street?: string | null | undefined;
8793
8809
  zipCode?: string | null | undefined;
8794
8810
  } | {
8795
- firstname?: string | null | undefined;
8796
- surname?: string | null | undefined;
8811
+ firstname: string;
8812
+ surname: string;
8797
8813
  middlename?: string | null | undefined;
8798
8814
  } | {
8799
8815
  country: string;
@@ -8847,8 +8863,8 @@ export declare const EventDocument: z.ZodObject<{
8847
8863
  street?: string | null | undefined;
8848
8864
  zipCode?: string | null | undefined;
8849
8865
  } | {
8850
- firstname?: string | null | undefined;
8851
- surname?: string | null | undefined;
8866
+ firstname: string;
8867
+ surname: string;
8852
8868
  middlename?: string | null | undefined;
8853
8869
  } | {
8854
8870
  country: string;
@@ -8894,8 +8910,8 @@ export declare const EventDocument: z.ZodObject<{
8894
8910
  street?: string | null | undefined;
8895
8911
  zipCode?: string | null | undefined;
8896
8912
  } | {
8897
- firstname?: string | null | undefined;
8898
- surname?: string | null | undefined;
8913
+ firstname: string;
8914
+ surname: string;
8899
8915
  middlename?: string | null | undefined;
8900
8916
  } | {
8901
8917
  country: string;
@@ -8949,8 +8965,8 @@ export declare const EventDocument: z.ZodObject<{
8949
8965
  street?: string | null | undefined;
8950
8966
  zipCode?: string | null | undefined;
8951
8967
  } | {
8952
- firstname?: string | null | undefined;
8953
- surname?: string | null | undefined;
8968
+ firstname: string;
8969
+ surname: string;
8954
8970
  middlename?: string | null | undefined;
8955
8971
  } | {
8956
8972
  country: string;
@@ -8997,8 +9013,8 @@ export declare const EventDocument: z.ZodObject<{
8997
9013
  street?: string | null | undefined;
8998
9014
  zipCode?: string | null | undefined;
8999
9015
  } | {
9000
- firstname?: string | null | undefined;
9001
- surname?: string | null | undefined;
9016
+ firstname: string;
9017
+ surname: string;
9002
9018
  middlename?: string | null | undefined;
9003
9019
  } | {
9004
9020
  country: string;
@@ -9056,8 +9072,8 @@ export declare const EventDocument: z.ZodObject<{
9056
9072
  street?: string | null | undefined;
9057
9073
  zipCode?: string | null | undefined;
9058
9074
  } | {
9059
- firstname?: string | null | undefined;
9060
- surname?: string | null | undefined;
9075
+ firstname: string;
9076
+ surname: string;
9061
9077
  middlename?: string | null | undefined;
9062
9078
  } | {
9063
9079
  country: string;
@@ -9104,8 +9120,8 @@ export declare const EventDocument: z.ZodObject<{
9104
9120
  street?: string | null | undefined;
9105
9121
  zipCode?: string | null | undefined;
9106
9122
  } | {
9107
- firstname?: string | null | undefined;
9108
- surname?: string | null | undefined;
9123
+ firstname: string;
9124
+ surname: string;
9109
9125
  middlename?: string | null | undefined;
9110
9126
  } | {
9111
9127
  country: string;
@@ -9159,8 +9175,8 @@ export declare const EventDocument: z.ZodObject<{
9159
9175
  street?: string | null | undefined;
9160
9176
  zipCode?: string | null | undefined;
9161
9177
  } | {
9162
- firstname?: string | null | undefined;
9163
- surname?: string | null | undefined;
9178
+ firstname: string;
9179
+ surname: string;
9164
9180
  middlename?: string | null | undefined;
9165
9181
  } | {
9166
9182
  country: string;
@@ -9206,8 +9222,8 @@ export declare const EventDocument: z.ZodObject<{
9206
9222
  street?: string | null | undefined;
9207
9223
  zipCode?: string | null | undefined;
9208
9224
  } | {
9209
- firstname?: string | null | undefined;
9210
- surname?: string | null | undefined;
9225
+ firstname: string;
9226
+ surname: string;
9211
9227
  middlename?: string | null | undefined;
9212
9228
  } | {
9213
9229
  country: string;
@@ -9280,8 +9296,8 @@ export declare const EventDocument: z.ZodObject<{
9280
9296
  street?: string | null | undefined;
9281
9297
  zipCode?: string | null | undefined;
9282
9298
  } | {
9283
- firstname?: string | null | undefined;
9284
- surname?: string | null | undefined;
9299
+ firstname: string;
9300
+ surname: string;
9285
9301
  middlename?: string | null | undefined;
9286
9302
  } | {
9287
9303
  country: string;
@@ -9328,8 +9344,8 @@ export declare const EventDocument: z.ZodObject<{
9328
9344
  street?: string | null | undefined;
9329
9345
  zipCode?: string | null | undefined;
9330
9346
  } | {
9331
- firstname?: string | null | undefined;
9332
- surname?: string | null | undefined;
9347
+ firstname: string;
9348
+ surname: string;
9333
9349
  middlename?: string | null | undefined;
9334
9350
  } | {
9335
9351
  country: string;
@@ -9383,8 +9399,8 @@ export declare const EventDocument: z.ZodObject<{
9383
9399
  street?: string | null | undefined;
9384
9400
  zipCode?: string | null | undefined;
9385
9401
  } | {
9386
- firstname?: string | null | undefined;
9387
- surname?: string | null | undefined;
9402
+ firstname: string;
9403
+ surname: string;
9388
9404
  middlename?: string | null | undefined;
9389
9405
  } | {
9390
9406
  country: string;
@@ -9430,8 +9446,8 @@ export declare const EventDocument: z.ZodObject<{
9430
9446
  street?: string | null | undefined;
9431
9447
  zipCode?: string | null | undefined;
9432
9448
  } | {
9433
- firstname?: string | null | undefined;
9434
- surname?: string | null | undefined;
9449
+ firstname: string;
9450
+ surname: string;
9435
9451
  middlename?: string | null | undefined;
9436
9452
  } | {
9437
9453
  country: string;
@@ -9485,8 +9501,8 @@ export declare const EventDocument: z.ZodObject<{
9485
9501
  street?: string | null | undefined;
9486
9502
  zipCode?: string | null | undefined;
9487
9503
  } | {
9488
- firstname?: string | null | undefined;
9489
- surname?: string | null | undefined;
9504
+ firstname: string;
9505
+ surname: string;
9490
9506
  middlename?: string | null | undefined;
9491
9507
  } | {
9492
9508
  country: string;
@@ -9532,8 +9548,8 @@ export declare const EventDocument: z.ZodObject<{
9532
9548
  street?: string | null | undefined;
9533
9549
  zipCode?: string | null | undefined;
9534
9550
  } | {
9535
- firstname?: string | null | undefined;
9536
- surname?: string | null | undefined;
9551
+ firstname: string;
9552
+ surname: string;
9537
9553
  middlename?: string | null | undefined;
9538
9554
  } | {
9539
9555
  country: string;
@@ -9588,8 +9604,8 @@ export declare const EventDocument: z.ZodObject<{
9588
9604
  street?: string | null | undefined;
9589
9605
  zipCode?: string | null | undefined;
9590
9606
  } | {
9591
- firstname?: string | null | undefined;
9592
- surname?: string | null | undefined;
9607
+ firstname: string;
9608
+ surname: string;
9593
9609
  middlename?: string | null | undefined;
9594
9610
  } | {
9595
9611
  country: string;
@@ -9635,8 +9651,8 @@ export declare const EventDocument: z.ZodObject<{
9635
9651
  street?: string | null | undefined;
9636
9652
  zipCode?: string | null | undefined;
9637
9653
  } | {
9638
- firstname?: string | null | undefined;
9639
- surname?: string | null | undefined;
9654
+ firstname: string;
9655
+ surname: string;
9640
9656
  middlename?: string | null | undefined;
9641
9657
  } | {
9642
9658
  country: string;
@@ -9690,8 +9706,8 @@ export declare const EventDocument: z.ZodObject<{
9690
9706
  street?: string | null | undefined;
9691
9707
  zipCode?: string | null | undefined;
9692
9708
  } | {
9693
- firstname?: string | null | undefined;
9694
- surname?: string | null | undefined;
9709
+ firstname: string;
9710
+ surname: string;
9695
9711
  middlename?: string | null | undefined;
9696
9712
  } | {
9697
9713
  country: string;
@@ -9737,8 +9753,8 @@ export declare const EventDocument: z.ZodObject<{
9737
9753
  street?: string | null | undefined;
9738
9754
  zipCode?: string | null | undefined;
9739
9755
  } | {
9740
- firstname?: string | null | undefined;
9741
- surname?: string | null | undefined;
9756
+ firstname: string;
9757
+ surname: string;
9742
9758
  middlename?: string | null | undefined;
9743
9759
  } | {
9744
9760
  country: string;
@@ -9796,8 +9812,8 @@ export declare const EventDocument: z.ZodObject<{
9796
9812
  street?: string | null | undefined;
9797
9813
  zipCode?: string | null | undefined;
9798
9814
  } | {
9799
- firstname?: string | null | undefined;
9800
- surname?: string | null | undefined;
9815
+ firstname: string;
9816
+ surname: string;
9801
9817
  middlename?: string | null | undefined;
9802
9818
  } | {
9803
9819
  country: string;
@@ -9843,8 +9859,8 @@ export declare const EventDocument: z.ZodObject<{
9843
9859
  street?: string | null | undefined;
9844
9860
  zipCode?: string | null | undefined;
9845
9861
  } | {
9846
- firstname?: string | null | undefined;
9847
- surname?: string | null | undefined;
9862
+ firstname: string;
9863
+ surname: string;
9848
9864
  middlename?: string | null | undefined;
9849
9865
  } | {
9850
9866
  country: string;
@@ -9898,8 +9914,8 @@ export declare const EventDocument: z.ZodObject<{
9898
9914
  street?: string | null | undefined;
9899
9915
  zipCode?: string | null | undefined;
9900
9916
  } | {
9901
- firstname?: string | null | undefined;
9902
- surname?: string | null | undefined;
9917
+ firstname: string;
9918
+ surname: string;
9903
9919
  middlename?: string | null | undefined;
9904
9920
  } | {
9905
9921
  country: string;
@@ -9945,8 +9961,8 @@ export declare const EventDocument: z.ZodObject<{
9945
9961
  street?: string | null | undefined;
9946
9962
  zipCode?: string | null | undefined;
9947
9963
  } | {
9948
- firstname?: string | null | undefined;
9949
- surname?: string | null | undefined;
9964
+ firstname: string;
9965
+ surname: string;
9950
9966
  middlename?: string | null | undefined;
9951
9967
  } | {
9952
9968
  country: string;
@@ -10004,8 +10020,8 @@ export declare const EventDocument: z.ZodObject<{
10004
10020
  street?: string | null | undefined;
10005
10021
  zipCode?: string | null | undefined;
10006
10022
  } | {
10007
- firstname?: string | null | undefined;
10008
- surname?: string | null | undefined;
10023
+ firstname: string;
10024
+ surname: string;
10009
10025
  middlename?: string | null | undefined;
10010
10026
  } | {
10011
10027
  country: string;
@@ -10051,8 +10067,8 @@ export declare const EventDocument: z.ZodObject<{
10051
10067
  street?: string | null | undefined;
10052
10068
  zipCode?: string | null | undefined;
10053
10069
  } | {
10054
- firstname?: string | null | undefined;
10055
- surname?: string | null | undefined;
10070
+ firstname: string;
10071
+ surname: string;
10056
10072
  middlename?: string | null | undefined;
10057
10073
  } | {
10058
10074
  country: string;
@@ -10106,8 +10122,8 @@ export declare const EventDocument: z.ZodObject<{
10106
10122
  street?: string | null | undefined;
10107
10123
  zipCode?: string | null | undefined;
10108
10124
  } | {
10109
- firstname?: string | null | undefined;
10110
- surname?: string | null | undefined;
10125
+ firstname: string;
10126
+ surname: string;
10111
10127
  middlename?: string | null | undefined;
10112
10128
  } | {
10113
10129
  country: string;
@@ -10153,8 +10169,8 @@ export declare const EventDocument: z.ZodObject<{
10153
10169
  street?: string | null | undefined;
10154
10170
  zipCode?: string | null | undefined;
10155
10171
  } | {
10156
- firstname?: string | null | undefined;
10157
- surname?: string | null | undefined;
10172
+ firstname: string;
10173
+ surname: string;
10158
10174
  middlename?: string | null | undefined;
10159
10175
  } | {
10160
10176
  country: string;
@@ -10208,8 +10224,8 @@ export declare const EventDocument: z.ZodObject<{
10208
10224
  street?: string | null | undefined;
10209
10225
  zipCode?: string | null | undefined;
10210
10226
  } | {
10211
- firstname?: string | null | undefined;
10212
- surname?: string | null | undefined;
10227
+ firstname: string;
10228
+ surname: string;
10213
10229
  middlename?: string | null | undefined;
10214
10230
  } | {
10215
10231
  country: string;
@@ -10255,8 +10271,8 @@ export declare const EventDocument: z.ZodObject<{
10255
10271
  street?: string | null | undefined;
10256
10272
  zipCode?: string | null | undefined;
10257
10273
  } | {
10258
- firstname?: string | null | undefined;
10259
- surname?: string | null | undefined;
10274
+ firstname: string;
10275
+ surname: string;
10260
10276
  middlename?: string | null | undefined;
10261
10277
  } | {
10262
10278
  country: string;
@@ -10310,8 +10326,8 @@ export declare const EventDocument: z.ZodObject<{
10310
10326
  street?: string | null | undefined;
10311
10327
  zipCode?: string | null | undefined;
10312
10328
  } | {
10313
- firstname?: string | null | undefined;
10314
- surname?: string | null | undefined;
10329
+ firstname: string;
10330
+ surname: string;
10315
10331
  middlename?: string | null | undefined;
10316
10332
  } | {
10317
10333
  country: string;
@@ -10339,6 +10355,9 @@ export declare const EventDocument: z.ZodObject<{
10339
10355
  start: string;
10340
10356
  end: string;
10341
10357
  } | null | undefined>;
10358
+ content?: {
10359
+ templateId?: string | undefined;
10360
+ } | null | undefined;
10342
10361
  createdBySignature?: string | null | undefined;
10343
10362
  createdAtLocation?: string | null | undefined;
10344
10363
  annotation?: Record<string, string | number | boolean | {
@@ -10357,8 +10376,8 @@ export declare const EventDocument: z.ZodObject<{
10357
10376
  street?: string | null | undefined;
10358
10377
  zipCode?: string | null | undefined;
10359
10378
  } | {
10360
- firstname?: string | null | undefined;
10361
- surname?: string | null | undefined;
10379
+ firstname: string;
10380
+ surname: string;
10362
10381
  middlename?: string | null | undefined;
10363
10382
  } | {
10364
10383
  country: string;
@@ -10412,8 +10431,8 @@ export declare const EventDocument: z.ZodObject<{
10412
10431
  street?: string | null | undefined;
10413
10432
  zipCode?: string | null | undefined;
10414
10433
  } | {
10415
- firstname?: string | null | undefined;
10416
- surname?: string | null | undefined;
10434
+ firstname: string;
10435
+ surname: string;
10417
10436
  middlename?: string | null | undefined;
10418
10437
  } | {
10419
10438
  country: string;
@@ -10459,8 +10478,8 @@ export declare const EventDocument: z.ZodObject<{
10459
10478
  street?: string | null | undefined;
10460
10479
  zipCode?: string | null | undefined;
10461
10480
  } | {
10462
- firstname?: string | null | undefined;
10463
- surname?: string | null | undefined;
10481
+ firstname: string;
10482
+ surname: string;
10464
10483
  middlename?: string | null | undefined;
10465
10484
  } | {
10466
10485
  country: string;
@@ -10514,8 +10533,8 @@ export declare const EventDocument: z.ZodObject<{
10514
10533
  street?: string | null | undefined;
10515
10534
  zipCode?: string | null | undefined;
10516
10535
  } | {
10517
- firstname?: string | null | undefined;
10518
- surname?: string | null | undefined;
10536
+ firstname: string;
10537
+ surname: string;
10519
10538
  middlename?: string | null | undefined;
10520
10539
  } | {
10521
10540
  country: string;
@@ -10562,8 +10581,8 @@ export declare const EventDocument: z.ZodObject<{
10562
10581
  street?: string | null | undefined;
10563
10582
  zipCode?: string | null | undefined;
10564
10583
  } | {
10565
- firstname?: string | null | undefined;
10566
- surname?: string | null | undefined;
10584
+ firstname: string;
10585
+ surname: string;
10567
10586
  middlename?: string | null | undefined;
10568
10587
  } | {
10569
10588
  country: string;
@@ -10621,8 +10640,8 @@ export declare const EventDocument: z.ZodObject<{
10621
10640
  street?: string | null | undefined;
10622
10641
  zipCode?: string | null | undefined;
10623
10642
  } | {
10624
- firstname?: string | null | undefined;
10625
- surname?: string | null | undefined;
10643
+ firstname: string;
10644
+ surname: string;
10626
10645
  middlename?: string | null | undefined;
10627
10646
  } | {
10628
10647
  country: string;
@@ -10669,8 +10688,8 @@ export declare const EventDocument: z.ZodObject<{
10669
10688
  street?: string | null | undefined;
10670
10689
  zipCode?: string | null | undefined;
10671
10690
  } | {
10672
- firstname?: string | null | undefined;
10673
- surname?: string | null | undefined;
10691
+ firstname: string;
10692
+ surname: string;
10674
10693
  middlename?: string | null | undefined;
10675
10694
  } | {
10676
10695
  country: string;
@@ -10724,8 +10743,8 @@ export declare const EventDocument: z.ZodObject<{
10724
10743
  street?: string | null | undefined;
10725
10744
  zipCode?: string | null | undefined;
10726
10745
  } | {
10727
- firstname?: string | null | undefined;
10728
- surname?: string | null | undefined;
10746
+ firstname: string;
10747
+ surname: string;
10729
10748
  middlename?: string | null | undefined;
10730
10749
  } | {
10731
10750
  country: string;
@@ -10771,8 +10790,8 @@ export declare const EventDocument: z.ZodObject<{
10771
10790
  street?: string | null | undefined;
10772
10791
  zipCode?: string | null | undefined;
10773
10792
  } | {
10774
- firstname?: string | null | undefined;
10775
- surname?: string | null | undefined;
10793
+ firstname: string;
10794
+ surname: string;
10776
10795
  middlename?: string | null | undefined;
10777
10796
  } | {
10778
10797
  country: string;