@opencrvs/toolkit 1.8.1-rc.baeb06c → 1.8.1-rc.bbdfdc1
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/build.sh +5 -0
- package/dist/commons/api/router.d.ts +433 -392
- package/dist/commons/conditionals/validate.d.ts +11 -2
- package/dist/commons/events/ActionConfig.d.ts +2004 -366
- package/dist/commons/events/ActionDocument.d.ts +1319 -747
- package/dist/commons/events/ActionInput.d.ts +662 -600
- package/dist/commons/events/AdvancedSearchConfig.d.ts +83 -65
- 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 +695 -168
- package/dist/commons/events/EventDocument.d.ts +477 -432
- package/dist/commons/events/EventIndex.d.ts +184 -62
- package/dist/commons/events/EventMetadata.d.ts +9 -9
- package/dist/commons/events/FieldConfig.d.ts +254 -43
- package/dist/commons/events/FieldTypeMapping.d.ts +16 -16
- package/dist/commons/events/FieldValue.d.ts +12 -12
- package/dist/commons/events/FormConfig.d.ts +1032 -246
- package/dist/commons/events/PageConfig.d.ts +264 -46
- package/dist/commons/events/WorkqueueConfig.d.ts +288 -164
- package/dist/commons/events/defineConfig.d.ts +129 -30
- package/dist/commons/events/event.d.ts +68 -6
- package/dist/commons/events/field.d.ts +14 -0
- package/dist/commons/events/test.utils.d.ts +17 -13
- package/dist/commons/events/utils.d.ts +236 -60
- package/dist/commons/notification/UserNotifications.d.ts +547 -0
- package/dist/commons/notification/index.d.ts +2 -0
- package/dist/conditionals/index.js +3 -2
- package/dist/events/index.js +265 -95
- package/dist/notification/index.d.ts +2 -0
- package/dist/notification/index.d.ts.map +1 -0
- package/dist/notification/index.js +5362 -0
- package/package.json +3 -2
- package/tsconfig.json +3 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/dist/commons/conditionals/conditionals.test.d.ts +0 -2
- package/dist/commons/conditionals/validate-address.test.d.ts +0 -2
- package/dist/commons/conditionals/validate.test.d.ts +0 -2
- package/dist/commons/events/utils.test.d.ts +0 -2
@@ -136,16 +136,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
136
136
|
addressLine3?: string | null | undefined;
|
137
137
|
postcodeOrZip?: string | null | undefined;
|
138
138
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
139
|
-
firstname: z.
|
140
|
-
surname: z.
|
139
|
+
firstname: z.ZodString;
|
140
|
+
surname: z.ZodString;
|
141
141
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
142
142
|
}, "strip", z.ZodTypeAny, {
|
143
|
-
firstname
|
144
|
-
surname
|
143
|
+
firstname: string;
|
144
|
+
surname: string;
|
145
145
|
middlename?: string | null | undefined;
|
146
146
|
}, {
|
147
|
-
firstname
|
148
|
-
surname
|
147
|
+
firstname: string;
|
148
|
+
surname: string;
|
149
149
|
middlename?: string | null | undefined;
|
150
150
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
151
151
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -271,16 +271,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
271
271
|
addressLine3?: string | null | undefined;
|
272
272
|
postcodeOrZip?: string | null | undefined;
|
273
273
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
274
|
-
firstname: z.
|
275
|
-
surname: z.
|
274
|
+
firstname: z.ZodString;
|
275
|
+
surname: z.ZodString;
|
276
276
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
277
277
|
}, "strip", z.ZodTypeAny, {
|
278
|
-
firstname
|
279
|
-
surname
|
278
|
+
firstname: string;
|
279
|
+
surname: string;
|
280
280
|
middlename?: string | null | undefined;
|
281
281
|
}, {
|
282
|
-
firstname
|
283
|
-
surname
|
282
|
+
firstname: string;
|
283
|
+
surname: string;
|
284
284
|
middlename?: string | null | undefined;
|
285
285
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
286
286
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -312,8 +312,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
312
312
|
street?: string | null | undefined;
|
313
313
|
zipCode?: string | null | undefined;
|
314
314
|
} | {
|
315
|
-
firstname
|
316
|
-
surname
|
315
|
+
firstname: string;
|
316
|
+
surname: string;
|
317
317
|
middlename?: string | null | undefined;
|
318
318
|
} | {
|
319
319
|
country: string;
|
@@ -359,8 +359,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
359
359
|
street?: string | null | undefined;
|
360
360
|
zipCode?: string | null | undefined;
|
361
361
|
} | {
|
362
|
-
firstname
|
363
|
-
surname
|
362
|
+
firstname: string;
|
363
|
+
surname: string;
|
364
364
|
middlename?: string | null | undefined;
|
365
365
|
} | {
|
366
366
|
country: string;
|
@@ -414,8 +414,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
414
414
|
street?: string | null | undefined;
|
415
415
|
zipCode?: string | null | undefined;
|
416
416
|
} | {
|
417
|
-
firstname
|
418
|
-
surname
|
417
|
+
firstname: string;
|
418
|
+
surname: string;
|
419
419
|
middlename?: string | null | undefined;
|
420
420
|
} | {
|
421
421
|
country: string;
|
@@ -461,8 +461,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
461
461
|
street?: string | null | undefined;
|
462
462
|
zipCode?: string | null | undefined;
|
463
463
|
} | {
|
464
|
-
firstname
|
465
|
-
surname
|
464
|
+
firstname: string;
|
465
|
+
surname: string;
|
466
466
|
middlename?: string | null | undefined;
|
467
467
|
} | {
|
468
468
|
country: string;
|
@@ -623,16 +623,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
623
623
|
addressLine3?: string | null | undefined;
|
624
624
|
postcodeOrZip?: string | null | undefined;
|
625
625
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
626
|
-
firstname: z.
|
627
|
-
surname: z.
|
626
|
+
firstname: z.ZodString;
|
627
|
+
surname: z.ZodString;
|
628
628
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
629
629
|
}, "strip", z.ZodTypeAny, {
|
630
|
-
firstname
|
631
|
-
surname
|
630
|
+
firstname: string;
|
631
|
+
surname: string;
|
632
632
|
middlename?: string | null | undefined;
|
633
633
|
}, {
|
634
|
-
firstname
|
635
|
-
surname
|
634
|
+
firstname: string;
|
635
|
+
surname: string;
|
636
636
|
middlename?: string | null | undefined;
|
637
637
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
638
638
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -758,16 +758,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
758
758
|
addressLine3?: string | null | undefined;
|
759
759
|
postcodeOrZip?: string | null | undefined;
|
760
760
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
761
|
-
firstname: z.
|
762
|
-
surname: z.
|
761
|
+
firstname: z.ZodString;
|
762
|
+
surname: z.ZodString;
|
763
763
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
764
764
|
}, "strip", z.ZodTypeAny, {
|
765
|
-
firstname
|
766
|
-
surname
|
765
|
+
firstname: string;
|
766
|
+
surname: string;
|
767
767
|
middlename?: string | null | undefined;
|
768
768
|
}, {
|
769
|
-
firstname
|
770
|
-
surname
|
769
|
+
firstname: string;
|
770
|
+
surname: string;
|
771
771
|
middlename?: string | null | undefined;
|
772
772
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
773
773
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -799,8 +799,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
799
799
|
street?: string | null | undefined;
|
800
800
|
zipCode?: string | null | undefined;
|
801
801
|
} | {
|
802
|
-
firstname
|
803
|
-
surname
|
802
|
+
firstname: string;
|
803
|
+
surname: string;
|
804
804
|
middlename?: string | null | undefined;
|
805
805
|
} | {
|
806
806
|
country: string;
|
@@ -846,8 +846,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
846
846
|
street?: string | null | undefined;
|
847
847
|
zipCode?: string | null | undefined;
|
848
848
|
} | {
|
849
|
-
firstname
|
850
|
-
surname
|
849
|
+
firstname: string;
|
850
|
+
surname: string;
|
851
851
|
middlename?: string | null | undefined;
|
852
852
|
} | {
|
853
853
|
country: string;
|
@@ -901,8 +901,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
901
901
|
street?: string | null | undefined;
|
902
902
|
zipCode?: string | null | undefined;
|
903
903
|
} | {
|
904
|
-
firstname
|
905
|
-
surname
|
904
|
+
firstname: string;
|
905
|
+
surname: string;
|
906
906
|
middlename?: string | null | undefined;
|
907
907
|
} | {
|
908
908
|
country: string;
|
@@ -948,8 +948,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
948
948
|
street?: string | null | undefined;
|
949
949
|
zipCode?: string | null | undefined;
|
950
950
|
} | {
|
951
|
-
firstname
|
952
|
-
surname
|
951
|
+
firstname: string;
|
952
|
+
surname: string;
|
953
953
|
middlename?: string | null | undefined;
|
954
954
|
} | {
|
955
955
|
country: string;
|
@@ -1110,16 +1110,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
1110
1110
|
addressLine3?: string | null | undefined;
|
1111
1111
|
postcodeOrZip?: string | null | undefined;
|
1112
1112
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1113
|
-
firstname: z.
|
1114
|
-
surname: z.
|
1113
|
+
firstname: z.ZodString;
|
1114
|
+
surname: z.ZodString;
|
1115
1115
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1116
1116
|
}, "strip", z.ZodTypeAny, {
|
1117
|
-
firstname
|
1118
|
-
surname
|
1117
|
+
firstname: string;
|
1118
|
+
surname: string;
|
1119
1119
|
middlename?: string | null | undefined;
|
1120
1120
|
}, {
|
1121
|
-
firstname
|
1122
|
-
surname
|
1121
|
+
firstname: string;
|
1122
|
+
surname: string;
|
1123
1123
|
middlename?: string | null | undefined;
|
1124
1124
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
1125
1125
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -1245,16 +1245,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
1245
1245
|
addressLine3?: string | null | undefined;
|
1246
1246
|
postcodeOrZip?: string | null | undefined;
|
1247
1247
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1248
|
-
firstname: z.
|
1249
|
-
surname: z.
|
1248
|
+
firstname: z.ZodString;
|
1249
|
+
surname: z.ZodString;
|
1250
1250
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1251
1251
|
}, "strip", z.ZodTypeAny, {
|
1252
|
-
firstname
|
1253
|
-
surname
|
1252
|
+
firstname: string;
|
1253
|
+
surname: string;
|
1254
1254
|
middlename?: string | null | undefined;
|
1255
1255
|
}, {
|
1256
|
-
firstname
|
1257
|
-
surname
|
1256
|
+
firstname: string;
|
1257
|
+
surname: string;
|
1258
1258
|
middlename?: string | null | undefined;
|
1259
1259
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
1260
1260
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -1300,8 +1300,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1300
1300
|
street?: string | null | undefined;
|
1301
1301
|
zipCode?: string | null | undefined;
|
1302
1302
|
} | {
|
1303
|
-
firstname
|
1304
|
-
surname
|
1303
|
+
firstname: string;
|
1304
|
+
surname: string;
|
1305
1305
|
middlename?: string | null | undefined;
|
1306
1306
|
} | {
|
1307
1307
|
country: string;
|
@@ -1347,8 +1347,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1347
1347
|
street?: string | null | undefined;
|
1348
1348
|
zipCode?: string | null | undefined;
|
1349
1349
|
} | {
|
1350
|
-
firstname
|
1351
|
-
surname
|
1350
|
+
firstname: string;
|
1351
|
+
surname: string;
|
1352
1352
|
middlename?: string | null | undefined;
|
1353
1353
|
} | {
|
1354
1354
|
country: string;
|
@@ -1406,8 +1406,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1406
1406
|
street?: string | null | undefined;
|
1407
1407
|
zipCode?: string | null | undefined;
|
1408
1408
|
} | {
|
1409
|
-
firstname
|
1410
|
-
surname
|
1409
|
+
firstname: string;
|
1410
|
+
surname: string;
|
1411
1411
|
middlename?: string | null | undefined;
|
1412
1412
|
} | {
|
1413
1413
|
country: string;
|
@@ -1453,8 +1453,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1453
1453
|
street?: string | null | undefined;
|
1454
1454
|
zipCode?: string | null | undefined;
|
1455
1455
|
} | {
|
1456
|
-
firstname
|
1457
|
-
surname
|
1456
|
+
firstname: string;
|
1457
|
+
surname: string;
|
1458
1458
|
middlename?: string | null | undefined;
|
1459
1459
|
} | {
|
1460
1460
|
country: string;
|
@@ -1615,16 +1615,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
1615
1615
|
addressLine3?: string | null | undefined;
|
1616
1616
|
postcodeOrZip?: string | null | undefined;
|
1617
1617
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1618
|
-
firstname: z.
|
1619
|
-
surname: z.
|
1618
|
+
firstname: z.ZodString;
|
1619
|
+
surname: z.ZodString;
|
1620
1620
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1621
1621
|
}, "strip", z.ZodTypeAny, {
|
1622
|
-
firstname
|
1623
|
-
surname
|
1622
|
+
firstname: string;
|
1623
|
+
surname: string;
|
1624
1624
|
middlename?: string | null | undefined;
|
1625
1625
|
}, {
|
1626
|
-
firstname
|
1627
|
-
surname
|
1626
|
+
firstname: string;
|
1627
|
+
surname: string;
|
1628
1628
|
middlename?: string | null | undefined;
|
1629
1629
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
1630
1630
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -1750,16 +1750,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
1750
1750
|
addressLine3?: string | null | undefined;
|
1751
1751
|
postcodeOrZip?: string | null | undefined;
|
1752
1752
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1753
|
-
firstname: z.
|
1754
|
-
surname: z.
|
1753
|
+
firstname: z.ZodString;
|
1754
|
+
surname: z.ZodString;
|
1755
1755
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1756
1756
|
}, "strip", z.ZodTypeAny, {
|
1757
|
-
firstname
|
1758
|
-
surname
|
1757
|
+
firstname: string;
|
1758
|
+
surname: string;
|
1759
1759
|
middlename?: string | null | undefined;
|
1760
1760
|
}, {
|
1761
|
-
firstname
|
1762
|
-
surname
|
1761
|
+
firstname: string;
|
1762
|
+
surname: string;
|
1763
1763
|
middlename?: string | null | undefined;
|
1764
1764
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
1765
1765
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -1791,8 +1791,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1791
1791
|
street?: string | null | undefined;
|
1792
1792
|
zipCode?: string | null | undefined;
|
1793
1793
|
} | {
|
1794
|
-
firstname
|
1795
|
-
surname
|
1794
|
+
firstname: string;
|
1795
|
+
surname: string;
|
1796
1796
|
middlename?: string | null | undefined;
|
1797
1797
|
} | {
|
1798
1798
|
country: string;
|
@@ -1838,8 +1838,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1838
1838
|
street?: string | null | undefined;
|
1839
1839
|
zipCode?: string | null | undefined;
|
1840
1840
|
} | {
|
1841
|
-
firstname
|
1842
|
-
surname
|
1841
|
+
firstname: string;
|
1842
|
+
surname: string;
|
1843
1843
|
middlename?: string | null | undefined;
|
1844
1844
|
} | {
|
1845
1845
|
country: string;
|
@@ -1893,8 +1893,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1893
1893
|
street?: string | null | undefined;
|
1894
1894
|
zipCode?: string | null | undefined;
|
1895
1895
|
} | {
|
1896
|
-
firstname
|
1897
|
-
surname
|
1896
|
+
firstname: string;
|
1897
|
+
surname: string;
|
1898
1898
|
middlename?: string | null | undefined;
|
1899
1899
|
} | {
|
1900
1900
|
country: string;
|
@@ -1940,8 +1940,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
1940
1940
|
street?: string | null | undefined;
|
1941
1941
|
zipCode?: string | null | undefined;
|
1942
1942
|
} | {
|
1943
|
-
firstname
|
1944
|
-
surname
|
1943
|
+
firstname: string;
|
1944
|
+
surname: string;
|
1945
1945
|
middlename?: string | null | undefined;
|
1946
1946
|
} | {
|
1947
1947
|
country: string;
|
@@ -2102,16 +2102,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
2102
2102
|
addressLine3?: string | null | undefined;
|
2103
2103
|
postcodeOrZip?: string | null | undefined;
|
2104
2104
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2105
|
-
firstname: z.
|
2106
|
-
surname: z.
|
2105
|
+
firstname: z.ZodString;
|
2106
|
+
surname: z.ZodString;
|
2107
2107
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2108
2108
|
}, "strip", z.ZodTypeAny, {
|
2109
|
-
firstname
|
2110
|
-
surname
|
2109
|
+
firstname: string;
|
2110
|
+
surname: string;
|
2111
2111
|
middlename?: string | null | undefined;
|
2112
2112
|
}, {
|
2113
|
-
firstname
|
2114
|
-
surname
|
2113
|
+
firstname: string;
|
2114
|
+
surname: string;
|
2115
2115
|
middlename?: string | null | undefined;
|
2116
2116
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
2117
2117
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -2237,16 +2237,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
2237
2237
|
addressLine3?: string | null | undefined;
|
2238
2238
|
postcodeOrZip?: string | null | undefined;
|
2239
2239
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2240
|
-
firstname: z.
|
2241
|
-
surname: z.
|
2240
|
+
firstname: z.ZodString;
|
2241
|
+
surname: z.ZodString;
|
2242
2242
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2243
2243
|
}, "strip", z.ZodTypeAny, {
|
2244
|
-
firstname
|
2245
|
-
surname
|
2244
|
+
firstname: string;
|
2245
|
+
surname: string;
|
2246
2246
|
middlename?: string | null | undefined;
|
2247
2247
|
}, {
|
2248
|
-
firstname
|
2249
|
-
surname
|
2248
|
+
firstname: string;
|
2249
|
+
surname: string;
|
2250
2250
|
middlename?: string | null | undefined;
|
2251
2251
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
2252
2252
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -2292,8 +2292,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2292
2292
|
street?: string | null | undefined;
|
2293
2293
|
zipCode?: string | null | undefined;
|
2294
2294
|
} | {
|
2295
|
-
firstname
|
2296
|
-
surname
|
2295
|
+
firstname: string;
|
2296
|
+
surname: string;
|
2297
2297
|
middlename?: string | null | undefined;
|
2298
2298
|
} | {
|
2299
2299
|
country: string;
|
@@ -2339,8 +2339,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2339
2339
|
street?: string | null | undefined;
|
2340
2340
|
zipCode?: string | null | undefined;
|
2341
2341
|
} | {
|
2342
|
-
firstname
|
2343
|
-
surname
|
2342
|
+
firstname: string;
|
2343
|
+
surname: string;
|
2344
2344
|
middlename?: string | null | undefined;
|
2345
2345
|
} | {
|
2346
2346
|
country: string;
|
@@ -2398,8 +2398,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2398
2398
|
street?: string | null | undefined;
|
2399
2399
|
zipCode?: string | null | undefined;
|
2400
2400
|
} | {
|
2401
|
-
firstname
|
2402
|
-
surname
|
2401
|
+
firstname: string;
|
2402
|
+
surname: string;
|
2403
2403
|
middlename?: string | null | undefined;
|
2404
2404
|
} | {
|
2405
2405
|
country: string;
|
@@ -2445,8 +2445,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2445
2445
|
street?: string | null | undefined;
|
2446
2446
|
zipCode?: string | null | undefined;
|
2447
2447
|
} | {
|
2448
|
-
firstname
|
2449
|
-
surname
|
2448
|
+
firstname: string;
|
2449
|
+
surname: string;
|
2450
2450
|
middlename?: string | null | undefined;
|
2451
2451
|
} | {
|
2452
2452
|
country: string;
|
@@ -2607,16 +2607,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
2607
2607
|
addressLine3?: string | null | undefined;
|
2608
2608
|
postcodeOrZip?: string | null | undefined;
|
2609
2609
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2610
|
-
firstname: z.
|
2611
|
-
surname: z.
|
2610
|
+
firstname: z.ZodString;
|
2611
|
+
surname: z.ZodString;
|
2612
2612
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2613
2613
|
}, "strip", z.ZodTypeAny, {
|
2614
|
-
firstname
|
2615
|
-
surname
|
2614
|
+
firstname: string;
|
2615
|
+
surname: string;
|
2616
2616
|
middlename?: string | null | undefined;
|
2617
2617
|
}, {
|
2618
|
-
firstname
|
2619
|
-
surname
|
2618
|
+
firstname: string;
|
2619
|
+
surname: string;
|
2620
2620
|
middlename?: string | null | undefined;
|
2621
2621
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
2622
2622
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -2742,16 +2742,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
2742
2742
|
addressLine3?: string | null | undefined;
|
2743
2743
|
postcodeOrZip?: string | null | undefined;
|
2744
2744
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2745
|
-
firstname: z.
|
2746
|
-
surname: z.
|
2745
|
+
firstname: z.ZodString;
|
2746
|
+
surname: z.ZodString;
|
2747
2747
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2748
2748
|
}, "strip", z.ZodTypeAny, {
|
2749
|
-
firstname
|
2750
|
-
surname
|
2749
|
+
firstname: string;
|
2750
|
+
surname: string;
|
2751
2751
|
middlename?: string | null | undefined;
|
2752
2752
|
}, {
|
2753
|
-
firstname
|
2754
|
-
surname
|
2753
|
+
firstname: string;
|
2754
|
+
surname: string;
|
2755
2755
|
middlename?: string | null | undefined;
|
2756
2756
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
2757
2757
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -2783,8 +2783,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2783
2783
|
street?: string | null | undefined;
|
2784
2784
|
zipCode?: string | null | undefined;
|
2785
2785
|
} | {
|
2786
|
-
firstname
|
2787
|
-
surname
|
2786
|
+
firstname: string;
|
2787
|
+
surname: string;
|
2788
2788
|
middlename?: string | null | undefined;
|
2789
2789
|
} | {
|
2790
2790
|
country: string;
|
@@ -2830,8 +2830,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2830
2830
|
street?: string | null | undefined;
|
2831
2831
|
zipCode?: string | null | undefined;
|
2832
2832
|
} | {
|
2833
|
-
firstname
|
2834
|
-
surname
|
2833
|
+
firstname: string;
|
2834
|
+
surname: string;
|
2835
2835
|
middlename?: string | null | undefined;
|
2836
2836
|
} | {
|
2837
2837
|
country: string;
|
@@ -2885,8 +2885,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2885
2885
|
street?: string | null | undefined;
|
2886
2886
|
zipCode?: string | null | undefined;
|
2887
2887
|
} | {
|
2888
|
-
firstname
|
2889
|
-
surname
|
2888
|
+
firstname: string;
|
2889
|
+
surname: string;
|
2890
2890
|
middlename?: string | null | undefined;
|
2891
2891
|
} | {
|
2892
2892
|
country: string;
|
@@ -2932,8 +2932,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
2932
2932
|
street?: string | null | undefined;
|
2933
2933
|
zipCode?: string | null | undefined;
|
2934
2934
|
} | {
|
2935
|
-
firstname
|
2936
|
-
surname
|
2935
|
+
firstname: string;
|
2936
|
+
surname: string;
|
2937
2937
|
middlename?: string | null | undefined;
|
2938
2938
|
} | {
|
2939
2939
|
country: string;
|
@@ -3094,16 +3094,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
3094
3094
|
addressLine3?: string | null | undefined;
|
3095
3095
|
postcodeOrZip?: string | null | undefined;
|
3096
3096
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3097
|
-
firstname: z.
|
3098
|
-
surname: z.
|
3097
|
+
firstname: z.ZodString;
|
3098
|
+
surname: z.ZodString;
|
3099
3099
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3100
3100
|
}, "strip", z.ZodTypeAny, {
|
3101
|
-
firstname
|
3102
|
-
surname
|
3101
|
+
firstname: string;
|
3102
|
+
surname: string;
|
3103
3103
|
middlename?: string | null | undefined;
|
3104
3104
|
}, {
|
3105
|
-
firstname
|
3106
|
-
surname
|
3105
|
+
firstname: string;
|
3106
|
+
surname: string;
|
3107
3107
|
middlename?: string | null | undefined;
|
3108
3108
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
3109
3109
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -3229,16 +3229,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
3229
3229
|
addressLine3?: string | null | undefined;
|
3230
3230
|
postcodeOrZip?: string | null | undefined;
|
3231
3231
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3232
|
-
firstname: z.
|
3233
|
-
surname: z.
|
3232
|
+
firstname: z.ZodString;
|
3233
|
+
surname: z.ZodString;
|
3234
3234
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3235
3235
|
}, "strip", z.ZodTypeAny, {
|
3236
|
-
firstname
|
3237
|
-
surname
|
3236
|
+
firstname: string;
|
3237
|
+
surname: string;
|
3238
3238
|
middlename?: string | null | undefined;
|
3239
3239
|
}, {
|
3240
|
-
firstname
|
3241
|
-
surname
|
3240
|
+
firstname: string;
|
3241
|
+
surname: string;
|
3242
3242
|
middlename?: string | null | undefined;
|
3243
3243
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
3244
3244
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -3271,8 +3271,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3271
3271
|
street?: string | null | undefined;
|
3272
3272
|
zipCode?: string | null | undefined;
|
3273
3273
|
} | {
|
3274
|
-
firstname
|
3275
|
-
surname
|
3274
|
+
firstname: string;
|
3275
|
+
surname: string;
|
3276
3276
|
middlename?: string | null | undefined;
|
3277
3277
|
} | {
|
3278
3278
|
country: string;
|
@@ -3318,8 +3318,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3318
3318
|
street?: string | null | undefined;
|
3319
3319
|
zipCode?: string | null | undefined;
|
3320
3320
|
} | {
|
3321
|
-
firstname
|
3322
|
-
surname
|
3321
|
+
firstname: string;
|
3322
|
+
surname: string;
|
3323
3323
|
middlename?: string | null | undefined;
|
3324
3324
|
} | {
|
3325
3325
|
country: string;
|
@@ -3374,8 +3374,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3374
3374
|
street?: string | null | undefined;
|
3375
3375
|
zipCode?: string | null | undefined;
|
3376
3376
|
} | {
|
3377
|
-
firstname
|
3378
|
-
surname
|
3377
|
+
firstname: string;
|
3378
|
+
surname: string;
|
3379
3379
|
middlename?: string | null | undefined;
|
3380
3380
|
} | {
|
3381
3381
|
country: string;
|
@@ -3421,8 +3421,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3421
3421
|
street?: string | null | undefined;
|
3422
3422
|
zipCode?: string | null | undefined;
|
3423
3423
|
} | {
|
3424
|
-
firstname
|
3425
|
-
surname
|
3424
|
+
firstname: string;
|
3425
|
+
surname: string;
|
3426
3426
|
middlename?: string | null | undefined;
|
3427
3427
|
} | {
|
3428
3428
|
country: string;
|
@@ -3584,16 +3584,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
3584
3584
|
addressLine3?: string | null | undefined;
|
3585
3585
|
postcodeOrZip?: string | null | undefined;
|
3586
3586
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3587
|
-
firstname: z.
|
3588
|
-
surname: z.
|
3587
|
+
firstname: z.ZodString;
|
3588
|
+
surname: z.ZodString;
|
3589
3589
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3590
3590
|
}, "strip", z.ZodTypeAny, {
|
3591
|
-
firstname
|
3592
|
-
surname
|
3591
|
+
firstname: string;
|
3592
|
+
surname: string;
|
3593
3593
|
middlename?: string | null | undefined;
|
3594
3594
|
}, {
|
3595
|
-
firstname
|
3596
|
-
surname
|
3595
|
+
firstname: string;
|
3596
|
+
surname: string;
|
3597
3597
|
middlename?: string | null | undefined;
|
3598
3598
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
3599
3599
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -3719,16 +3719,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
3719
3719
|
addressLine3?: string | null | undefined;
|
3720
3720
|
postcodeOrZip?: string | null | undefined;
|
3721
3721
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3722
|
-
firstname: z.
|
3723
|
-
surname: z.
|
3722
|
+
firstname: z.ZodString;
|
3723
|
+
surname: z.ZodString;
|
3724
3724
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3725
3725
|
}, "strip", z.ZodTypeAny, {
|
3726
|
-
firstname
|
3727
|
-
surname
|
3726
|
+
firstname: string;
|
3727
|
+
surname: string;
|
3728
3728
|
middlename?: string | null | undefined;
|
3729
3729
|
}, {
|
3730
|
-
firstname
|
3731
|
-
surname
|
3730
|
+
firstname: string;
|
3731
|
+
surname: string;
|
3732
3732
|
middlename?: string | null | undefined;
|
3733
3733
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
3734
3734
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -3760,8 +3760,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3760
3760
|
street?: string | null | undefined;
|
3761
3761
|
zipCode?: string | null | undefined;
|
3762
3762
|
} | {
|
3763
|
-
firstname
|
3764
|
-
surname
|
3763
|
+
firstname: string;
|
3764
|
+
surname: string;
|
3765
3765
|
middlename?: string | null | undefined;
|
3766
3766
|
} | {
|
3767
3767
|
country: string;
|
@@ -3807,8 +3807,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3807
3807
|
street?: string | null | undefined;
|
3808
3808
|
zipCode?: string | null | undefined;
|
3809
3809
|
} | {
|
3810
|
-
firstname
|
3811
|
-
surname
|
3810
|
+
firstname: string;
|
3811
|
+
surname: string;
|
3812
3812
|
middlename?: string | null | undefined;
|
3813
3813
|
} | {
|
3814
3814
|
country: string;
|
@@ -3862,8 +3862,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3862
3862
|
street?: string | null | undefined;
|
3863
3863
|
zipCode?: string | null | undefined;
|
3864
3864
|
} | {
|
3865
|
-
firstname
|
3866
|
-
surname
|
3865
|
+
firstname: string;
|
3866
|
+
surname: string;
|
3867
3867
|
middlename?: string | null | undefined;
|
3868
3868
|
} | {
|
3869
3869
|
country: string;
|
@@ -3909,8 +3909,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
3909
3909
|
street?: string | null | undefined;
|
3910
3910
|
zipCode?: string | null | undefined;
|
3911
3911
|
} | {
|
3912
|
-
firstname
|
3913
|
-
surname
|
3912
|
+
firstname: string;
|
3913
|
+
surname: string;
|
3914
3914
|
middlename?: string | null | undefined;
|
3915
3915
|
} | {
|
3916
3916
|
country: string;
|
@@ -4071,16 +4071,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
4071
4071
|
addressLine3?: string | null | undefined;
|
4072
4072
|
postcodeOrZip?: string | null | undefined;
|
4073
4073
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4074
|
-
firstname: z.
|
4075
|
-
surname: z.
|
4074
|
+
firstname: z.ZodString;
|
4075
|
+
surname: z.ZodString;
|
4076
4076
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4077
4077
|
}, "strip", z.ZodTypeAny, {
|
4078
|
-
firstname
|
4079
|
-
surname
|
4078
|
+
firstname: string;
|
4079
|
+
surname: string;
|
4080
4080
|
middlename?: string | null | undefined;
|
4081
4081
|
}, {
|
4082
|
-
firstname
|
4083
|
-
surname
|
4082
|
+
firstname: string;
|
4083
|
+
surname: string;
|
4084
4084
|
middlename?: string | null | undefined;
|
4085
4085
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
4086
4086
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -4206,16 +4206,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
4206
4206
|
addressLine3?: string | null | undefined;
|
4207
4207
|
postcodeOrZip?: string | null | undefined;
|
4208
4208
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4209
|
-
firstname: z.
|
4210
|
-
surname: z.
|
4209
|
+
firstname: z.ZodString;
|
4210
|
+
surname: z.ZodString;
|
4211
4211
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4212
4212
|
}, "strip", z.ZodTypeAny, {
|
4213
|
-
firstname
|
4214
|
-
surname
|
4213
|
+
firstname: string;
|
4214
|
+
surname: string;
|
4215
4215
|
middlename?: string | null | undefined;
|
4216
4216
|
}, {
|
4217
|
-
firstname
|
4218
|
-
surname
|
4217
|
+
firstname: string;
|
4218
|
+
surname: string;
|
4219
4219
|
middlename?: string | null | undefined;
|
4220
4220
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
4221
4221
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -4248,8 +4248,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4248
4248
|
street?: string | null | undefined;
|
4249
4249
|
zipCode?: string | null | undefined;
|
4250
4250
|
} | {
|
4251
|
-
firstname
|
4252
|
-
surname
|
4251
|
+
firstname: string;
|
4252
|
+
surname: string;
|
4253
4253
|
middlename?: string | null | undefined;
|
4254
4254
|
} | {
|
4255
4255
|
country: string;
|
@@ -4296,8 +4296,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4296
4296
|
street?: string | null | undefined;
|
4297
4297
|
zipCode?: string | null | undefined;
|
4298
4298
|
} | {
|
4299
|
-
firstname
|
4300
|
-
surname
|
4299
|
+
firstname: string;
|
4300
|
+
surname: string;
|
4301
4301
|
middlename?: string | null | undefined;
|
4302
4302
|
} | {
|
4303
4303
|
country: string;
|
@@ -4351,8 +4351,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4351
4351
|
street?: string | null | undefined;
|
4352
4352
|
zipCode?: string | null | undefined;
|
4353
4353
|
} | {
|
4354
|
-
firstname
|
4355
|
-
surname
|
4354
|
+
firstname: string;
|
4355
|
+
surname: string;
|
4356
4356
|
middlename?: string | null | undefined;
|
4357
4357
|
} | {
|
4358
4358
|
country: string;
|
@@ -4399,8 +4399,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4399
4399
|
street?: string | null | undefined;
|
4400
4400
|
zipCode?: string | null | undefined;
|
4401
4401
|
} | {
|
4402
|
-
firstname
|
4403
|
-
surname
|
4402
|
+
firstname: string;
|
4403
|
+
surname: string;
|
4404
4404
|
middlename?: string | null | undefined;
|
4405
4405
|
} | {
|
4406
4406
|
country: string;
|
@@ -4561,16 +4561,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
4561
4561
|
addressLine3?: string | null | undefined;
|
4562
4562
|
postcodeOrZip?: string | null | undefined;
|
4563
4563
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4564
|
-
firstname: z.
|
4565
|
-
surname: z.
|
4564
|
+
firstname: z.ZodString;
|
4565
|
+
surname: z.ZodString;
|
4566
4566
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4567
4567
|
}, "strip", z.ZodTypeAny, {
|
4568
|
-
firstname
|
4569
|
-
surname
|
4568
|
+
firstname: string;
|
4569
|
+
surname: string;
|
4570
4570
|
middlename?: string | null | undefined;
|
4571
4571
|
}, {
|
4572
|
-
firstname
|
4573
|
-
surname
|
4572
|
+
firstname: string;
|
4573
|
+
surname: string;
|
4574
4574
|
middlename?: string | null | undefined;
|
4575
4575
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
4576
4576
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -4696,16 +4696,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
4696
4696
|
addressLine3?: string | null | undefined;
|
4697
4697
|
postcodeOrZip?: string | null | undefined;
|
4698
4698
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4699
|
-
firstname: z.
|
4700
|
-
surname: z.
|
4699
|
+
firstname: z.ZodString;
|
4700
|
+
surname: z.ZodString;
|
4701
4701
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4702
4702
|
}, "strip", z.ZodTypeAny, {
|
4703
|
-
firstname
|
4704
|
-
surname
|
4703
|
+
firstname: string;
|
4704
|
+
surname: string;
|
4705
4705
|
middlename?: string | null | undefined;
|
4706
4706
|
}, {
|
4707
|
-
firstname
|
4708
|
-
surname
|
4707
|
+
firstname: string;
|
4708
|
+
surname: string;
|
4709
4709
|
middlename?: string | null | undefined;
|
4710
4710
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
4711
4711
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -4737,8 +4737,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4737
4737
|
street?: string | null | undefined;
|
4738
4738
|
zipCode?: string | null | undefined;
|
4739
4739
|
} | {
|
4740
|
-
firstname
|
4741
|
-
surname
|
4740
|
+
firstname: string;
|
4741
|
+
surname: string;
|
4742
4742
|
middlename?: string | null | undefined;
|
4743
4743
|
} | {
|
4744
4744
|
country: string;
|
@@ -4784,8 +4784,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4784
4784
|
street?: string | null | undefined;
|
4785
4785
|
zipCode?: string | null | undefined;
|
4786
4786
|
} | {
|
4787
|
-
firstname
|
4788
|
-
surname
|
4787
|
+
firstname: string;
|
4788
|
+
surname: string;
|
4789
4789
|
middlename?: string | null | undefined;
|
4790
4790
|
} | {
|
4791
4791
|
country: string;
|
@@ -4839,8 +4839,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4839
4839
|
street?: string | null | undefined;
|
4840
4840
|
zipCode?: string | null | undefined;
|
4841
4841
|
} | {
|
4842
|
-
firstname
|
4843
|
-
surname
|
4842
|
+
firstname: string;
|
4843
|
+
surname: string;
|
4844
4844
|
middlename?: string | null | undefined;
|
4845
4845
|
} | {
|
4846
4846
|
country: string;
|
@@ -4886,8 +4886,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
4886
4886
|
street?: string | null | undefined;
|
4887
4887
|
zipCode?: string | null | undefined;
|
4888
4888
|
} | {
|
4889
|
-
firstname
|
4890
|
-
surname
|
4889
|
+
firstname: string;
|
4890
|
+
surname: string;
|
4891
4891
|
middlename?: string | null | undefined;
|
4892
4892
|
} | {
|
4893
4893
|
country: string;
|
@@ -5048,16 +5048,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
5048
5048
|
addressLine3?: string | null | undefined;
|
5049
5049
|
postcodeOrZip?: string | null | undefined;
|
5050
5050
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5051
|
-
firstname: z.
|
5052
|
-
surname: z.
|
5051
|
+
firstname: z.ZodString;
|
5052
|
+
surname: z.ZodString;
|
5053
5053
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5054
5054
|
}, "strip", z.ZodTypeAny, {
|
5055
|
-
firstname
|
5056
|
-
surname
|
5055
|
+
firstname: string;
|
5056
|
+
surname: string;
|
5057
5057
|
middlename?: string | null | undefined;
|
5058
5058
|
}, {
|
5059
|
-
firstname
|
5060
|
-
surname
|
5059
|
+
firstname: string;
|
5060
|
+
surname: string;
|
5061
5061
|
middlename?: string | null | undefined;
|
5062
5062
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
5063
5063
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -5183,16 +5183,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
5183
5183
|
addressLine3?: string | null | undefined;
|
5184
5184
|
postcodeOrZip?: string | null | undefined;
|
5185
5185
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5186
|
-
firstname: z.
|
5187
|
-
surname: z.
|
5186
|
+
firstname: z.ZodString;
|
5187
|
+
surname: z.ZodString;
|
5188
5188
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5189
5189
|
}, "strip", z.ZodTypeAny, {
|
5190
|
-
firstname
|
5191
|
-
surname
|
5190
|
+
firstname: string;
|
5191
|
+
surname: string;
|
5192
5192
|
middlename?: string | null | undefined;
|
5193
5193
|
}, {
|
5194
|
-
firstname
|
5195
|
-
surname
|
5194
|
+
firstname: string;
|
5195
|
+
surname: string;
|
5196
5196
|
middlename?: string | null | undefined;
|
5197
5197
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
5198
5198
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -5225,8 +5225,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5225
5225
|
street?: string | null | undefined;
|
5226
5226
|
zipCode?: string | null | undefined;
|
5227
5227
|
} | {
|
5228
|
-
firstname
|
5229
|
-
surname
|
5228
|
+
firstname: string;
|
5229
|
+
surname: string;
|
5230
5230
|
middlename?: string | null | undefined;
|
5231
5231
|
} | {
|
5232
5232
|
country: string;
|
@@ -5273,8 +5273,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5273
5273
|
street?: string | null | undefined;
|
5274
5274
|
zipCode?: string | null | undefined;
|
5275
5275
|
} | {
|
5276
|
-
firstname
|
5277
|
-
surname
|
5276
|
+
firstname: string;
|
5277
|
+
surname: string;
|
5278
5278
|
middlename?: string | null | undefined;
|
5279
5279
|
} | {
|
5280
5280
|
country: string;
|
@@ -5328,8 +5328,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5328
5328
|
street?: string | null | undefined;
|
5329
5329
|
zipCode?: string | null | undefined;
|
5330
5330
|
} | {
|
5331
|
-
firstname
|
5332
|
-
surname
|
5331
|
+
firstname: string;
|
5332
|
+
surname: string;
|
5333
5333
|
middlename?: string | null | undefined;
|
5334
5334
|
} | {
|
5335
5335
|
country: string;
|
@@ -5376,8 +5376,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5376
5376
|
street?: string | null | undefined;
|
5377
5377
|
zipCode?: string | null | undefined;
|
5378
5378
|
} | {
|
5379
|
-
firstname
|
5380
|
-
surname
|
5379
|
+
firstname: string;
|
5380
|
+
surname: string;
|
5381
5381
|
middlename?: string | null | undefined;
|
5382
5382
|
} | {
|
5383
5383
|
country: string;
|
@@ -5538,16 +5538,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
5538
5538
|
addressLine3?: string | null | undefined;
|
5539
5539
|
postcodeOrZip?: string | null | undefined;
|
5540
5540
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5541
|
-
firstname: z.
|
5542
|
-
surname: z.
|
5541
|
+
firstname: z.ZodString;
|
5542
|
+
surname: z.ZodString;
|
5543
5543
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5544
5544
|
}, "strip", z.ZodTypeAny, {
|
5545
|
-
firstname
|
5546
|
-
surname
|
5545
|
+
firstname: string;
|
5546
|
+
surname: string;
|
5547
5547
|
middlename?: string | null | undefined;
|
5548
5548
|
}, {
|
5549
|
-
firstname
|
5550
|
-
surname
|
5549
|
+
firstname: string;
|
5550
|
+
surname: string;
|
5551
5551
|
middlename?: string | null | undefined;
|
5552
5552
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
5553
5553
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -5673,16 +5673,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
5673
5673
|
addressLine3?: string | null | undefined;
|
5674
5674
|
postcodeOrZip?: string | null | undefined;
|
5675
5675
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5676
|
-
firstname: z.
|
5677
|
-
surname: z.
|
5676
|
+
firstname: z.ZodString;
|
5677
|
+
surname: z.ZodString;
|
5678
5678
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5679
5679
|
}, "strip", z.ZodTypeAny, {
|
5680
|
-
firstname
|
5681
|
-
surname
|
5680
|
+
firstname: string;
|
5681
|
+
surname: string;
|
5682
5682
|
middlename?: string | null | undefined;
|
5683
5683
|
}, {
|
5684
|
-
firstname
|
5685
|
-
surname
|
5684
|
+
firstname: string;
|
5685
|
+
surname: string;
|
5686
5686
|
middlename?: string | null | undefined;
|
5687
5687
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
5688
5688
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -5690,10 +5690,24 @@ export declare const EventDocument: z.ZodObject<{
|
|
5690
5690
|
}, {
|
5691
5691
|
type: z.ZodLiteral<"REJECT_CORRECTION">;
|
5692
5692
|
requestId: z.ZodString;
|
5693
|
+
reason: z.ZodObject<{
|
5694
|
+
message: z.ZodString;
|
5695
|
+
isDuplicate: z.ZodOptional<z.ZodBoolean>;
|
5696
|
+
}, "strip", z.ZodTypeAny, {
|
5697
|
+
message: string;
|
5698
|
+
isDuplicate?: boolean | undefined;
|
5699
|
+
}, {
|
5700
|
+
message: string;
|
5701
|
+
isDuplicate?: boolean | undefined;
|
5702
|
+
}>;
|
5693
5703
|
}>, "strip", z.ZodTypeAny, {
|
5694
5704
|
type: "REJECT_CORRECTION";
|
5695
5705
|
id: string & z.BRAND<"UUID">;
|
5696
5706
|
status: "Rejected" | "Requested" | "Accepted";
|
5707
|
+
reason: {
|
5708
|
+
message: string;
|
5709
|
+
isDuplicate?: boolean | undefined;
|
5710
|
+
};
|
5697
5711
|
transactionId: string;
|
5698
5712
|
createdByUserType: "system" | "user";
|
5699
5713
|
createdAt: string;
|
@@ -5715,8 +5729,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5715
5729
|
street?: string | null | undefined;
|
5716
5730
|
zipCode?: string | null | undefined;
|
5717
5731
|
} | {
|
5718
|
-
firstname
|
5719
|
-
surname
|
5732
|
+
firstname: string;
|
5733
|
+
surname: string;
|
5720
5734
|
middlename?: string | null | undefined;
|
5721
5735
|
} | {
|
5722
5736
|
country: string;
|
@@ -5763,8 +5777,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5763
5777
|
street?: string | null | undefined;
|
5764
5778
|
zipCode?: string | null | undefined;
|
5765
5779
|
} | {
|
5766
|
-
firstname
|
5767
|
-
surname
|
5780
|
+
firstname: string;
|
5781
|
+
surname: string;
|
5768
5782
|
middlename?: string | null | undefined;
|
5769
5783
|
} | {
|
5770
5784
|
country: string;
|
@@ -5797,6 +5811,10 @@ export declare const EventDocument: z.ZodObject<{
|
|
5797
5811
|
type: "REJECT_CORRECTION";
|
5798
5812
|
id: string;
|
5799
5813
|
status: "Rejected" | "Requested" | "Accepted";
|
5814
|
+
reason: {
|
5815
|
+
message: string;
|
5816
|
+
isDuplicate?: boolean | undefined;
|
5817
|
+
};
|
5800
5818
|
transactionId: string;
|
5801
5819
|
createdByUserType: "system" | "user";
|
5802
5820
|
createdAt: string;
|
@@ -5818,8 +5836,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5818
5836
|
street?: string | null | undefined;
|
5819
5837
|
zipCode?: string | null | undefined;
|
5820
5838
|
} | {
|
5821
|
-
firstname
|
5822
|
-
surname
|
5839
|
+
firstname: string;
|
5840
|
+
surname: string;
|
5823
5841
|
middlename?: string | null | undefined;
|
5824
5842
|
} | {
|
5825
5843
|
country: string;
|
@@ -5866,8 +5884,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
5866
5884
|
street?: string | null | undefined;
|
5867
5885
|
zipCode?: string | null | undefined;
|
5868
5886
|
} | {
|
5869
|
-
firstname
|
5870
|
-
surname
|
5887
|
+
firstname: string;
|
5888
|
+
surname: string;
|
5871
5889
|
middlename?: string | null | undefined;
|
5872
5890
|
} | {
|
5873
5891
|
country: string;
|
@@ -6028,16 +6046,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
6028
6046
|
addressLine3?: string | null | undefined;
|
6029
6047
|
postcodeOrZip?: string | null | undefined;
|
6030
6048
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6031
|
-
firstname: z.
|
6032
|
-
surname: z.
|
6049
|
+
firstname: z.ZodString;
|
6050
|
+
surname: z.ZodString;
|
6033
6051
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6034
6052
|
}, "strip", z.ZodTypeAny, {
|
6035
|
-
firstname
|
6036
|
-
surname
|
6053
|
+
firstname: string;
|
6054
|
+
surname: string;
|
6037
6055
|
middlename?: string | null | undefined;
|
6038
6056
|
}, {
|
6039
|
-
firstname
|
6040
|
-
surname
|
6057
|
+
firstname: string;
|
6058
|
+
surname: string;
|
6041
6059
|
middlename?: string | null | undefined;
|
6042
6060
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
6043
6061
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -6163,16 +6181,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
6163
6181
|
addressLine3?: string | null | undefined;
|
6164
6182
|
postcodeOrZip?: string | null | undefined;
|
6165
6183
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6166
|
-
firstname: z.
|
6167
|
-
surname: z.
|
6184
|
+
firstname: z.ZodString;
|
6185
|
+
surname: z.ZodString;
|
6168
6186
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6169
6187
|
}, "strip", z.ZodTypeAny, {
|
6170
|
-
firstname
|
6171
|
-
surname
|
6188
|
+
firstname: string;
|
6189
|
+
surname: string;
|
6172
6190
|
middlename?: string | null | undefined;
|
6173
6191
|
}, {
|
6174
|
-
firstname
|
6175
|
-
surname
|
6192
|
+
firstname: string;
|
6193
|
+
surname: string;
|
6176
6194
|
middlename?: string | null | undefined;
|
6177
6195
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
6178
6196
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -6204,8 +6222,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6204
6222
|
street?: string | null | undefined;
|
6205
6223
|
zipCode?: string | null | undefined;
|
6206
6224
|
} | {
|
6207
|
-
firstname
|
6208
|
-
surname
|
6225
|
+
firstname: string;
|
6226
|
+
surname: string;
|
6209
6227
|
middlename?: string | null | undefined;
|
6210
6228
|
} | {
|
6211
6229
|
country: string;
|
@@ -6251,8 +6269,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6251
6269
|
street?: string | null | undefined;
|
6252
6270
|
zipCode?: string | null | undefined;
|
6253
6271
|
} | {
|
6254
|
-
firstname
|
6255
|
-
surname
|
6272
|
+
firstname: string;
|
6273
|
+
surname: string;
|
6256
6274
|
middlename?: string | null | undefined;
|
6257
6275
|
} | {
|
6258
6276
|
country: string;
|
@@ -6306,8 +6324,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6306
6324
|
street?: string | null | undefined;
|
6307
6325
|
zipCode?: string | null | undefined;
|
6308
6326
|
} | {
|
6309
|
-
firstname
|
6310
|
-
surname
|
6327
|
+
firstname: string;
|
6328
|
+
surname: string;
|
6311
6329
|
middlename?: string | null | undefined;
|
6312
6330
|
} | {
|
6313
6331
|
country: string;
|
@@ -6353,8 +6371,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6353
6371
|
street?: string | null | undefined;
|
6354
6372
|
zipCode?: string | null | undefined;
|
6355
6373
|
} | {
|
6356
|
-
firstname
|
6357
|
-
surname
|
6374
|
+
firstname: string;
|
6375
|
+
surname: string;
|
6358
6376
|
middlename?: string | null | undefined;
|
6359
6377
|
} | {
|
6360
6378
|
country: string;
|
@@ -6515,16 +6533,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
6515
6533
|
addressLine3?: string | null | undefined;
|
6516
6534
|
postcodeOrZip?: string | null | undefined;
|
6517
6535
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6518
|
-
firstname: z.
|
6519
|
-
surname: z.
|
6536
|
+
firstname: z.ZodString;
|
6537
|
+
surname: z.ZodString;
|
6520
6538
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6521
6539
|
}, "strip", z.ZodTypeAny, {
|
6522
|
-
firstname
|
6523
|
-
surname
|
6540
|
+
firstname: string;
|
6541
|
+
surname: string;
|
6524
6542
|
middlename?: string | null | undefined;
|
6525
6543
|
}, {
|
6526
|
-
firstname
|
6527
|
-
surname
|
6544
|
+
firstname: string;
|
6545
|
+
surname: string;
|
6528
6546
|
middlename?: string | null | undefined;
|
6529
6547
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
6530
6548
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -6650,22 +6668,29 @@ export declare const EventDocument: z.ZodObject<{
|
|
6650
6668
|
addressLine3?: string | null | undefined;
|
6651
6669
|
postcodeOrZip?: string | null | undefined;
|
6652
6670
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6653
|
-
firstname: z.
|
6654
|
-
surname: z.
|
6671
|
+
firstname: z.ZodString;
|
6672
|
+
surname: z.ZodString;
|
6655
6673
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6656
6674
|
}, "strip", z.ZodTypeAny, {
|
6657
|
-
firstname
|
6658
|
-
surname
|
6675
|
+
firstname: string;
|
6676
|
+
surname: string;
|
6659
6677
|
middlename?: string | null | undefined;
|
6660
6678
|
}, {
|
6661
|
-
firstname
|
6662
|
-
surname
|
6679
|
+
firstname: string;
|
6680
|
+
surname: string;
|
6663
6681
|
middlename?: string | null | undefined;
|
6664
6682
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
6665
6683
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
6666
6684
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
6667
6685
|
}, {
|
6668
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
|
+
}>>>;
|
6669
6694
|
}>, "strip", z.ZodTypeAny, {
|
6670
6695
|
type: "PRINT_CERTIFICATE";
|
6671
6696
|
id: string & z.BRAND<"UUID">;
|
@@ -6691,8 +6716,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6691
6716
|
street?: string | null | undefined;
|
6692
6717
|
zipCode?: string | null | undefined;
|
6693
6718
|
} | {
|
6694
|
-
firstname
|
6695
|
-
surname
|
6719
|
+
firstname: string;
|
6720
|
+
surname: string;
|
6696
6721
|
middlename?: string | null | undefined;
|
6697
6722
|
} | {
|
6698
6723
|
country: string;
|
@@ -6720,6 +6745,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
6720
6745
|
start: string;
|
6721
6746
|
end: string;
|
6722
6747
|
} | null | undefined>;
|
6748
|
+
content?: {
|
6749
|
+
templateId?: string | undefined;
|
6750
|
+
} | null | undefined;
|
6723
6751
|
createdBySignature?: string | null | undefined;
|
6724
6752
|
createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
|
6725
6753
|
annotation?: Record<string, string | number | boolean | {
|
@@ -6738,8 +6766,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6738
6766
|
street?: string | null | undefined;
|
6739
6767
|
zipCode?: string | null | undefined;
|
6740
6768
|
} | {
|
6741
|
-
firstname
|
6742
|
-
surname
|
6769
|
+
firstname: string;
|
6770
|
+
surname: string;
|
6743
6771
|
middlename?: string | null | undefined;
|
6744
6772
|
} | {
|
6745
6773
|
country: string;
|
@@ -6793,8 +6821,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6793
6821
|
street?: string | null | undefined;
|
6794
6822
|
zipCode?: string | null | undefined;
|
6795
6823
|
} | {
|
6796
|
-
firstname
|
6797
|
-
surname
|
6824
|
+
firstname: string;
|
6825
|
+
surname: string;
|
6798
6826
|
middlename?: string | null | undefined;
|
6799
6827
|
} | {
|
6800
6828
|
country: string;
|
@@ -6822,6 +6850,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
6822
6850
|
start: string;
|
6823
6851
|
end: string;
|
6824
6852
|
} | null | undefined>;
|
6853
|
+
content?: {
|
6854
|
+
templateId?: string | undefined;
|
6855
|
+
} | null | undefined;
|
6825
6856
|
createdBySignature?: string | null | undefined;
|
6826
6857
|
createdAtLocation?: string | null | undefined;
|
6827
6858
|
annotation?: Record<string, string | number | boolean | {
|
@@ -6840,8 +6871,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
6840
6871
|
street?: string | null | undefined;
|
6841
6872
|
zipCode?: string | null | undefined;
|
6842
6873
|
} | {
|
6843
|
-
firstname
|
6844
|
-
surname
|
6874
|
+
firstname: string;
|
6875
|
+
surname: string;
|
6845
6876
|
middlename?: string | null | undefined;
|
6846
6877
|
} | {
|
6847
6878
|
country: string;
|
@@ -7002,16 +7033,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
7002
7033
|
addressLine3?: string | null | undefined;
|
7003
7034
|
postcodeOrZip?: string | null | undefined;
|
7004
7035
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7005
|
-
firstname: z.
|
7006
|
-
surname: z.
|
7036
|
+
firstname: z.ZodString;
|
7037
|
+
surname: z.ZodString;
|
7007
7038
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7008
7039
|
}, "strip", z.ZodTypeAny, {
|
7009
|
-
firstname
|
7010
|
-
surname
|
7040
|
+
firstname: string;
|
7041
|
+
surname: string;
|
7011
7042
|
middlename?: string | null | undefined;
|
7012
7043
|
}, {
|
7013
|
-
firstname
|
7014
|
-
surname
|
7044
|
+
firstname: string;
|
7045
|
+
surname: string;
|
7015
7046
|
middlename?: string | null | undefined;
|
7016
7047
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
7017
7048
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -7137,16 +7168,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
7137
7168
|
addressLine3?: string | null | undefined;
|
7138
7169
|
postcodeOrZip?: string | null | undefined;
|
7139
7170
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7140
|
-
firstname: z.
|
7141
|
-
surname: z.
|
7171
|
+
firstname: z.ZodString;
|
7172
|
+
surname: z.ZodString;
|
7142
7173
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7143
7174
|
}, "strip", z.ZodTypeAny, {
|
7144
|
-
firstname
|
7145
|
-
surname
|
7175
|
+
firstname: string;
|
7176
|
+
surname: string;
|
7146
7177
|
middlename?: string | null | undefined;
|
7147
7178
|
}, {
|
7148
|
-
firstname
|
7149
|
-
surname
|
7179
|
+
firstname: string;
|
7180
|
+
surname: string;
|
7150
7181
|
middlename?: string | null | undefined;
|
7151
7182
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
7152
7183
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -7178,8 +7209,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7178
7209
|
street?: string | null | undefined;
|
7179
7210
|
zipCode?: string | null | undefined;
|
7180
7211
|
} | {
|
7181
|
-
firstname
|
7182
|
-
surname
|
7212
|
+
firstname: string;
|
7213
|
+
surname: string;
|
7183
7214
|
middlename?: string | null | undefined;
|
7184
7215
|
} | {
|
7185
7216
|
country: string;
|
@@ -7225,8 +7256,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7225
7256
|
street?: string | null | undefined;
|
7226
7257
|
zipCode?: string | null | undefined;
|
7227
7258
|
} | {
|
7228
|
-
firstname
|
7229
|
-
surname
|
7259
|
+
firstname: string;
|
7260
|
+
surname: string;
|
7230
7261
|
middlename?: string | null | undefined;
|
7231
7262
|
} | {
|
7232
7263
|
country: string;
|
@@ -7280,8 +7311,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7280
7311
|
street?: string | null | undefined;
|
7281
7312
|
zipCode?: string | null | undefined;
|
7282
7313
|
} | {
|
7283
|
-
firstname
|
7284
|
-
surname
|
7314
|
+
firstname: string;
|
7315
|
+
surname: string;
|
7285
7316
|
middlename?: string | null | undefined;
|
7286
7317
|
} | {
|
7287
7318
|
country: string;
|
@@ -7327,8 +7358,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7327
7358
|
street?: string | null | undefined;
|
7328
7359
|
zipCode?: string | null | undefined;
|
7329
7360
|
} | {
|
7330
|
-
firstname
|
7331
|
-
surname
|
7361
|
+
firstname: string;
|
7362
|
+
surname: string;
|
7332
7363
|
middlename?: string | null | undefined;
|
7333
7364
|
} | {
|
7334
7365
|
country: string;
|
@@ -7489,16 +7520,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
7489
7520
|
addressLine3?: string | null | undefined;
|
7490
7521
|
postcodeOrZip?: string | null | undefined;
|
7491
7522
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7492
|
-
firstname: z.
|
7493
|
-
surname: z.
|
7523
|
+
firstname: z.ZodString;
|
7524
|
+
surname: z.ZodString;
|
7494
7525
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7495
7526
|
}, "strip", z.ZodTypeAny, {
|
7496
|
-
firstname
|
7497
|
-
surname
|
7527
|
+
firstname: string;
|
7528
|
+
surname: string;
|
7498
7529
|
middlename?: string | null | undefined;
|
7499
7530
|
}, {
|
7500
|
-
firstname
|
7501
|
-
surname
|
7531
|
+
firstname: string;
|
7532
|
+
surname: string;
|
7502
7533
|
middlename?: string | null | undefined;
|
7503
7534
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
7504
7535
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -7624,16 +7655,16 @@ export declare const EventDocument: z.ZodObject<{
|
|
7624
7655
|
addressLine3?: string | null | undefined;
|
7625
7656
|
postcodeOrZip?: string | null | undefined;
|
7626
7657
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7627
|
-
firstname: z.
|
7628
|
-
surname: z.
|
7658
|
+
firstname: z.ZodString;
|
7659
|
+
surname: z.ZodString;
|
7629
7660
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7630
7661
|
}, "strip", z.ZodTypeAny, {
|
7631
|
-
firstname
|
7632
|
-
surname
|
7662
|
+
firstname: string;
|
7663
|
+
surname: string;
|
7633
7664
|
middlename?: string | null | undefined;
|
7634
7665
|
}, {
|
7635
|
-
firstname
|
7636
|
-
surname
|
7666
|
+
firstname: string;
|
7667
|
+
surname: string;
|
7637
7668
|
middlename?: string | null | undefined;
|
7638
7669
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
7639
7670
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -7697,8 +7728,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7697
7728
|
street?: string | null | undefined;
|
7698
7729
|
zipCode?: string | null | undefined;
|
7699
7730
|
} | {
|
7700
|
-
firstname
|
7701
|
-
surname
|
7731
|
+
firstname: string;
|
7732
|
+
surname: string;
|
7702
7733
|
middlename?: string | null | undefined;
|
7703
7734
|
} | {
|
7704
7735
|
country: string;
|
@@ -7745,8 +7776,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7745
7776
|
street?: string | null | undefined;
|
7746
7777
|
zipCode?: string | null | undefined;
|
7747
7778
|
} | {
|
7748
|
-
firstname
|
7749
|
-
surname
|
7779
|
+
firstname: string;
|
7780
|
+
surname: string;
|
7750
7781
|
middlename?: string | null | undefined;
|
7751
7782
|
} | {
|
7752
7783
|
country: string;
|
@@ -7800,8 +7831,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7800
7831
|
street?: string | null | undefined;
|
7801
7832
|
zipCode?: string | null | undefined;
|
7802
7833
|
} | {
|
7803
|
-
firstname
|
7804
|
-
surname
|
7834
|
+
firstname: string;
|
7835
|
+
surname: string;
|
7805
7836
|
middlename?: string | null | undefined;
|
7806
7837
|
} | {
|
7807
7838
|
country: string;
|
@@ -7847,8 +7878,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7847
7878
|
street?: string | null | undefined;
|
7848
7879
|
zipCode?: string | null | undefined;
|
7849
7880
|
} | {
|
7850
|
-
firstname
|
7851
|
-
surname
|
7881
|
+
firstname: string;
|
7882
|
+
surname: string;
|
7852
7883
|
middlename?: string | null | undefined;
|
7853
7884
|
} | {
|
7854
7885
|
country: string;
|
@@ -7902,8 +7933,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7902
7933
|
street?: string | null | undefined;
|
7903
7934
|
zipCode?: string | null | undefined;
|
7904
7935
|
} | {
|
7905
|
-
firstname
|
7906
|
-
surname
|
7936
|
+
firstname: string;
|
7937
|
+
surname: string;
|
7907
7938
|
middlename?: string | null | undefined;
|
7908
7939
|
} | {
|
7909
7940
|
country: string;
|
@@ -7949,8 +7980,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
7949
7980
|
street?: string | null | undefined;
|
7950
7981
|
zipCode?: string | null | undefined;
|
7951
7982
|
} | {
|
7952
|
-
firstname
|
7953
|
-
surname
|
7983
|
+
firstname: string;
|
7984
|
+
surname: string;
|
7954
7985
|
middlename?: string | null | undefined;
|
7955
7986
|
} | {
|
7956
7987
|
country: string;
|
@@ -8005,8 +8036,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8005
8036
|
street?: string | null | undefined;
|
8006
8037
|
zipCode?: string | null | undefined;
|
8007
8038
|
} | {
|
8008
|
-
firstname
|
8009
|
-
surname
|
8039
|
+
firstname: string;
|
8040
|
+
surname: string;
|
8010
8041
|
middlename?: string | null | undefined;
|
8011
8042
|
} | {
|
8012
8043
|
country: string;
|
@@ -8052,8 +8083,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8052
8083
|
street?: string | null | undefined;
|
8053
8084
|
zipCode?: string | null | undefined;
|
8054
8085
|
} | {
|
8055
|
-
firstname
|
8056
|
-
surname
|
8086
|
+
firstname: string;
|
8087
|
+
surname: string;
|
8057
8088
|
middlename?: string | null | undefined;
|
8058
8089
|
} | {
|
8059
8090
|
country: string;
|
@@ -8107,8 +8138,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8107
8138
|
street?: string | null | undefined;
|
8108
8139
|
zipCode?: string | null | undefined;
|
8109
8140
|
} | {
|
8110
|
-
firstname
|
8111
|
-
surname
|
8141
|
+
firstname: string;
|
8142
|
+
surname: string;
|
8112
8143
|
middlename?: string | null | undefined;
|
8113
8144
|
} | {
|
8114
8145
|
country: string;
|
@@ -8154,8 +8185,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8154
8185
|
street?: string | null | undefined;
|
8155
8186
|
zipCode?: string | null | undefined;
|
8156
8187
|
} | {
|
8157
|
-
firstname
|
8158
|
-
surname
|
8188
|
+
firstname: string;
|
8189
|
+
surname: string;
|
8159
8190
|
middlename?: string | null | undefined;
|
8160
8191
|
} | {
|
8161
8192
|
country: string;
|
@@ -8213,8 +8244,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8213
8244
|
street?: string | null | undefined;
|
8214
8245
|
zipCode?: string | null | undefined;
|
8215
8246
|
} | {
|
8216
|
-
firstname
|
8217
|
-
surname
|
8247
|
+
firstname: string;
|
8248
|
+
surname: string;
|
8218
8249
|
middlename?: string | null | undefined;
|
8219
8250
|
} | {
|
8220
8251
|
country: string;
|
@@ -8260,8 +8291,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8260
8291
|
street?: string | null | undefined;
|
8261
8292
|
zipCode?: string | null | undefined;
|
8262
8293
|
} | {
|
8263
|
-
firstname
|
8264
|
-
surname
|
8294
|
+
firstname: string;
|
8295
|
+
surname: string;
|
8265
8296
|
middlename?: string | null | undefined;
|
8266
8297
|
} | {
|
8267
8298
|
country: string;
|
@@ -8315,8 +8346,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8315
8346
|
street?: string | null | undefined;
|
8316
8347
|
zipCode?: string | null | undefined;
|
8317
8348
|
} | {
|
8318
|
-
firstname
|
8319
|
-
surname
|
8349
|
+
firstname: string;
|
8350
|
+
surname: string;
|
8320
8351
|
middlename?: string | null | undefined;
|
8321
8352
|
} | {
|
8322
8353
|
country: string;
|
@@ -8362,8 +8393,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8362
8393
|
street?: string | null | undefined;
|
8363
8394
|
zipCode?: string | null | undefined;
|
8364
8395
|
} | {
|
8365
|
-
firstname
|
8366
|
-
surname
|
8396
|
+
firstname: string;
|
8397
|
+
surname: string;
|
8367
8398
|
middlename?: string | null | undefined;
|
8368
8399
|
} | {
|
8369
8400
|
country: string;
|
@@ -8421,8 +8452,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8421
8452
|
street?: string | null | undefined;
|
8422
8453
|
zipCode?: string | null | undefined;
|
8423
8454
|
} | {
|
8424
|
-
firstname
|
8425
|
-
surname
|
8455
|
+
firstname: string;
|
8456
|
+
surname: string;
|
8426
8457
|
middlename?: string | null | undefined;
|
8427
8458
|
} | {
|
8428
8459
|
country: string;
|
@@ -8468,8 +8499,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8468
8499
|
street?: string | null | undefined;
|
8469
8500
|
zipCode?: string | null | undefined;
|
8470
8501
|
} | {
|
8471
|
-
firstname
|
8472
|
-
surname
|
8502
|
+
firstname: string;
|
8503
|
+
surname: string;
|
8473
8504
|
middlename?: string | null | undefined;
|
8474
8505
|
} | {
|
8475
8506
|
country: string;
|
@@ -8523,8 +8554,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8523
8554
|
street?: string | null | undefined;
|
8524
8555
|
zipCode?: string | null | undefined;
|
8525
8556
|
} | {
|
8526
|
-
firstname
|
8527
|
-
surname
|
8557
|
+
firstname: string;
|
8558
|
+
surname: string;
|
8528
8559
|
middlename?: string | null | undefined;
|
8529
8560
|
} | {
|
8530
8561
|
country: string;
|
@@ -8570,8 +8601,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8570
8601
|
street?: string | null | undefined;
|
8571
8602
|
zipCode?: string | null | undefined;
|
8572
8603
|
} | {
|
8573
|
-
firstname
|
8574
|
-
surname
|
8604
|
+
firstname: string;
|
8605
|
+
surname: string;
|
8575
8606
|
middlename?: string | null | undefined;
|
8576
8607
|
} | {
|
8577
8608
|
country: string;
|
@@ -8625,8 +8656,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8625
8656
|
street?: string | null | undefined;
|
8626
8657
|
zipCode?: string | null | undefined;
|
8627
8658
|
} | {
|
8628
|
-
firstname
|
8629
|
-
surname
|
8659
|
+
firstname: string;
|
8660
|
+
surname: string;
|
8630
8661
|
middlename?: string | null | undefined;
|
8631
8662
|
} | {
|
8632
8663
|
country: string;
|
@@ -8672,8 +8703,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8672
8703
|
street?: string | null | undefined;
|
8673
8704
|
zipCode?: string | null | undefined;
|
8674
8705
|
} | {
|
8675
|
-
firstname
|
8676
|
-
surname
|
8706
|
+
firstname: string;
|
8707
|
+
surname: string;
|
8677
8708
|
middlename?: string | null | undefined;
|
8678
8709
|
} | {
|
8679
8710
|
country: string;
|
@@ -8727,8 +8758,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8727
8758
|
street?: string | null | undefined;
|
8728
8759
|
zipCode?: string | null | undefined;
|
8729
8760
|
} | {
|
8730
|
-
firstname
|
8731
|
-
surname
|
8761
|
+
firstname: string;
|
8762
|
+
surname: string;
|
8732
8763
|
middlename?: string | null | undefined;
|
8733
8764
|
} | {
|
8734
8765
|
country: string;
|
@@ -8756,6 +8787,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
8756
8787
|
start: string;
|
8757
8788
|
end: string;
|
8758
8789
|
} | null | undefined>;
|
8790
|
+
content?: {
|
8791
|
+
templateId?: string | undefined;
|
8792
|
+
} | null | undefined;
|
8759
8793
|
createdBySignature?: string | null | undefined;
|
8760
8794
|
createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
|
8761
8795
|
annotation?: Record<string, string | number | boolean | {
|
@@ -8774,8 +8808,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8774
8808
|
street?: string | null | undefined;
|
8775
8809
|
zipCode?: string | null | undefined;
|
8776
8810
|
} | {
|
8777
|
-
firstname
|
8778
|
-
surname
|
8811
|
+
firstname: string;
|
8812
|
+
surname: string;
|
8779
8813
|
middlename?: string | null | undefined;
|
8780
8814
|
} | {
|
8781
8815
|
country: string;
|
@@ -8829,8 +8863,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8829
8863
|
street?: string | null | undefined;
|
8830
8864
|
zipCode?: string | null | undefined;
|
8831
8865
|
} | {
|
8832
|
-
firstname
|
8833
|
-
surname
|
8866
|
+
firstname: string;
|
8867
|
+
surname: string;
|
8834
8868
|
middlename?: string | null | undefined;
|
8835
8869
|
} | {
|
8836
8870
|
country: string;
|
@@ -8876,8 +8910,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8876
8910
|
street?: string | null | undefined;
|
8877
8911
|
zipCode?: string | null | undefined;
|
8878
8912
|
} | {
|
8879
|
-
firstname
|
8880
|
-
surname
|
8913
|
+
firstname: string;
|
8914
|
+
surname: string;
|
8881
8915
|
middlename?: string | null | undefined;
|
8882
8916
|
} | {
|
8883
8917
|
country: string;
|
@@ -8931,8 +8965,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8931
8965
|
street?: string | null | undefined;
|
8932
8966
|
zipCode?: string | null | undefined;
|
8933
8967
|
} | {
|
8934
|
-
firstname
|
8935
|
-
surname
|
8968
|
+
firstname: string;
|
8969
|
+
surname: string;
|
8936
8970
|
middlename?: string | null | undefined;
|
8937
8971
|
} | {
|
8938
8972
|
country: string;
|
@@ -8979,8 +9013,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
8979
9013
|
street?: string | null | undefined;
|
8980
9014
|
zipCode?: string | null | undefined;
|
8981
9015
|
} | {
|
8982
|
-
firstname
|
8983
|
-
surname
|
9016
|
+
firstname: string;
|
9017
|
+
surname: string;
|
8984
9018
|
middlename?: string | null | undefined;
|
8985
9019
|
} | {
|
8986
9020
|
country: string;
|
@@ -9013,6 +9047,10 @@ export declare const EventDocument: z.ZodObject<{
|
|
9013
9047
|
type: "REJECT_CORRECTION";
|
9014
9048
|
id: string & z.BRAND<"UUID">;
|
9015
9049
|
status: "Rejected" | "Requested" | "Accepted";
|
9050
|
+
reason: {
|
9051
|
+
message: string;
|
9052
|
+
isDuplicate?: boolean | undefined;
|
9053
|
+
};
|
9016
9054
|
transactionId: string;
|
9017
9055
|
createdByUserType: "system" | "user";
|
9018
9056
|
createdAt: string;
|
@@ -9034,8 +9072,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9034
9072
|
street?: string | null | undefined;
|
9035
9073
|
zipCode?: string | null | undefined;
|
9036
9074
|
} | {
|
9037
|
-
firstname
|
9038
|
-
surname
|
9075
|
+
firstname: string;
|
9076
|
+
surname: string;
|
9039
9077
|
middlename?: string | null | undefined;
|
9040
9078
|
} | {
|
9041
9079
|
country: string;
|
@@ -9082,8 +9120,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9082
9120
|
street?: string | null | undefined;
|
9083
9121
|
zipCode?: string | null | undefined;
|
9084
9122
|
} | {
|
9085
|
-
firstname
|
9086
|
-
surname
|
9123
|
+
firstname: string;
|
9124
|
+
surname: string;
|
9087
9125
|
middlename?: string | null | undefined;
|
9088
9126
|
} | {
|
9089
9127
|
country: string;
|
@@ -9137,8 +9175,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9137
9175
|
street?: string | null | undefined;
|
9138
9176
|
zipCode?: string | null | undefined;
|
9139
9177
|
} | {
|
9140
|
-
firstname
|
9141
|
-
surname
|
9178
|
+
firstname: string;
|
9179
|
+
surname: string;
|
9142
9180
|
middlename?: string | null | undefined;
|
9143
9181
|
} | {
|
9144
9182
|
country: string;
|
@@ -9184,8 +9222,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9184
9222
|
street?: string | null | undefined;
|
9185
9223
|
zipCode?: string | null | undefined;
|
9186
9224
|
} | {
|
9187
|
-
firstname
|
9188
|
-
surname
|
9225
|
+
firstname: string;
|
9226
|
+
surname: string;
|
9189
9227
|
middlename?: string | null | undefined;
|
9190
9228
|
} | {
|
9191
9229
|
country: string;
|
@@ -9258,8 +9296,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9258
9296
|
street?: string | null | undefined;
|
9259
9297
|
zipCode?: string | null | undefined;
|
9260
9298
|
} | {
|
9261
|
-
firstname
|
9262
|
-
surname
|
9299
|
+
firstname: string;
|
9300
|
+
surname: string;
|
9263
9301
|
middlename?: string | null | undefined;
|
9264
9302
|
} | {
|
9265
9303
|
country: string;
|
@@ -9306,8 +9344,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9306
9344
|
street?: string | null | undefined;
|
9307
9345
|
zipCode?: string | null | undefined;
|
9308
9346
|
} | {
|
9309
|
-
firstname
|
9310
|
-
surname
|
9347
|
+
firstname: string;
|
9348
|
+
surname: string;
|
9311
9349
|
middlename?: string | null | undefined;
|
9312
9350
|
} | {
|
9313
9351
|
country: string;
|
@@ -9361,8 +9399,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9361
9399
|
street?: string | null | undefined;
|
9362
9400
|
zipCode?: string | null | undefined;
|
9363
9401
|
} | {
|
9364
|
-
firstname
|
9365
|
-
surname
|
9402
|
+
firstname: string;
|
9403
|
+
surname: string;
|
9366
9404
|
middlename?: string | null | undefined;
|
9367
9405
|
} | {
|
9368
9406
|
country: string;
|
@@ -9408,8 +9446,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9408
9446
|
street?: string | null | undefined;
|
9409
9447
|
zipCode?: string | null | undefined;
|
9410
9448
|
} | {
|
9411
|
-
firstname
|
9412
|
-
surname
|
9449
|
+
firstname: string;
|
9450
|
+
surname: string;
|
9413
9451
|
middlename?: string | null | undefined;
|
9414
9452
|
} | {
|
9415
9453
|
country: string;
|
@@ -9463,8 +9501,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9463
9501
|
street?: string | null | undefined;
|
9464
9502
|
zipCode?: string | null | undefined;
|
9465
9503
|
} | {
|
9466
|
-
firstname
|
9467
|
-
surname
|
9504
|
+
firstname: string;
|
9505
|
+
surname: string;
|
9468
9506
|
middlename?: string | null | undefined;
|
9469
9507
|
} | {
|
9470
9508
|
country: string;
|
@@ -9510,8 +9548,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9510
9548
|
street?: string | null | undefined;
|
9511
9549
|
zipCode?: string | null | undefined;
|
9512
9550
|
} | {
|
9513
|
-
firstname
|
9514
|
-
surname
|
9551
|
+
firstname: string;
|
9552
|
+
surname: string;
|
9515
9553
|
middlename?: string | null | undefined;
|
9516
9554
|
} | {
|
9517
9555
|
country: string;
|
@@ -9566,8 +9604,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9566
9604
|
street?: string | null | undefined;
|
9567
9605
|
zipCode?: string | null | undefined;
|
9568
9606
|
} | {
|
9569
|
-
firstname
|
9570
|
-
surname
|
9607
|
+
firstname: string;
|
9608
|
+
surname: string;
|
9571
9609
|
middlename?: string | null | undefined;
|
9572
9610
|
} | {
|
9573
9611
|
country: string;
|
@@ -9613,8 +9651,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9613
9651
|
street?: string | null | undefined;
|
9614
9652
|
zipCode?: string | null | undefined;
|
9615
9653
|
} | {
|
9616
|
-
firstname
|
9617
|
-
surname
|
9654
|
+
firstname: string;
|
9655
|
+
surname: string;
|
9618
9656
|
middlename?: string | null | undefined;
|
9619
9657
|
} | {
|
9620
9658
|
country: string;
|
@@ -9668,8 +9706,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9668
9706
|
street?: string | null | undefined;
|
9669
9707
|
zipCode?: string | null | undefined;
|
9670
9708
|
} | {
|
9671
|
-
firstname
|
9672
|
-
surname
|
9709
|
+
firstname: string;
|
9710
|
+
surname: string;
|
9673
9711
|
middlename?: string | null | undefined;
|
9674
9712
|
} | {
|
9675
9713
|
country: string;
|
@@ -9715,8 +9753,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9715
9753
|
street?: string | null | undefined;
|
9716
9754
|
zipCode?: string | null | undefined;
|
9717
9755
|
} | {
|
9718
|
-
firstname
|
9719
|
-
surname
|
9756
|
+
firstname: string;
|
9757
|
+
surname: string;
|
9720
9758
|
middlename?: string | null | undefined;
|
9721
9759
|
} | {
|
9722
9760
|
country: string;
|
@@ -9774,8 +9812,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9774
9812
|
street?: string | null | undefined;
|
9775
9813
|
zipCode?: string | null | undefined;
|
9776
9814
|
} | {
|
9777
|
-
firstname
|
9778
|
-
surname
|
9815
|
+
firstname: string;
|
9816
|
+
surname: string;
|
9779
9817
|
middlename?: string | null | undefined;
|
9780
9818
|
} | {
|
9781
9819
|
country: string;
|
@@ -9821,8 +9859,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9821
9859
|
street?: string | null | undefined;
|
9822
9860
|
zipCode?: string | null | undefined;
|
9823
9861
|
} | {
|
9824
|
-
firstname
|
9825
|
-
surname
|
9862
|
+
firstname: string;
|
9863
|
+
surname: string;
|
9826
9864
|
middlename?: string | null | undefined;
|
9827
9865
|
} | {
|
9828
9866
|
country: string;
|
@@ -9876,8 +9914,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9876
9914
|
street?: string | null | undefined;
|
9877
9915
|
zipCode?: string | null | undefined;
|
9878
9916
|
} | {
|
9879
|
-
firstname
|
9880
|
-
surname
|
9917
|
+
firstname: string;
|
9918
|
+
surname: string;
|
9881
9919
|
middlename?: string | null | undefined;
|
9882
9920
|
} | {
|
9883
9921
|
country: string;
|
@@ -9923,8 +9961,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9923
9961
|
street?: string | null | undefined;
|
9924
9962
|
zipCode?: string | null | undefined;
|
9925
9963
|
} | {
|
9926
|
-
firstname
|
9927
|
-
surname
|
9964
|
+
firstname: string;
|
9965
|
+
surname: string;
|
9928
9966
|
middlename?: string | null | undefined;
|
9929
9967
|
} | {
|
9930
9968
|
country: string;
|
@@ -9982,8 +10020,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
9982
10020
|
street?: string | null | undefined;
|
9983
10021
|
zipCode?: string | null | undefined;
|
9984
10022
|
} | {
|
9985
|
-
firstname
|
9986
|
-
surname
|
10023
|
+
firstname: string;
|
10024
|
+
surname: string;
|
9987
10025
|
middlename?: string | null | undefined;
|
9988
10026
|
} | {
|
9989
10027
|
country: string;
|
@@ -10029,8 +10067,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10029
10067
|
street?: string | null | undefined;
|
10030
10068
|
zipCode?: string | null | undefined;
|
10031
10069
|
} | {
|
10032
|
-
firstname
|
10033
|
-
surname
|
10070
|
+
firstname: string;
|
10071
|
+
surname: string;
|
10034
10072
|
middlename?: string | null | undefined;
|
10035
10073
|
} | {
|
10036
10074
|
country: string;
|
@@ -10084,8 +10122,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10084
10122
|
street?: string | null | undefined;
|
10085
10123
|
zipCode?: string | null | undefined;
|
10086
10124
|
} | {
|
10087
|
-
firstname
|
10088
|
-
surname
|
10125
|
+
firstname: string;
|
10126
|
+
surname: string;
|
10089
10127
|
middlename?: string | null | undefined;
|
10090
10128
|
} | {
|
10091
10129
|
country: string;
|
@@ -10131,8 +10169,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10131
10169
|
street?: string | null | undefined;
|
10132
10170
|
zipCode?: string | null | undefined;
|
10133
10171
|
} | {
|
10134
|
-
firstname
|
10135
|
-
surname
|
10172
|
+
firstname: string;
|
10173
|
+
surname: string;
|
10136
10174
|
middlename?: string | null | undefined;
|
10137
10175
|
} | {
|
10138
10176
|
country: string;
|
@@ -10186,8 +10224,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10186
10224
|
street?: string | null | undefined;
|
10187
10225
|
zipCode?: string | null | undefined;
|
10188
10226
|
} | {
|
10189
|
-
firstname
|
10190
|
-
surname
|
10227
|
+
firstname: string;
|
10228
|
+
surname: string;
|
10191
10229
|
middlename?: string | null | undefined;
|
10192
10230
|
} | {
|
10193
10231
|
country: string;
|
@@ -10233,8 +10271,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10233
10271
|
street?: string | null | undefined;
|
10234
10272
|
zipCode?: string | null | undefined;
|
10235
10273
|
} | {
|
10236
|
-
firstname
|
10237
|
-
surname
|
10274
|
+
firstname: string;
|
10275
|
+
surname: string;
|
10238
10276
|
middlename?: string | null | undefined;
|
10239
10277
|
} | {
|
10240
10278
|
country: string;
|
@@ -10288,8 +10326,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10288
10326
|
street?: string | null | undefined;
|
10289
10327
|
zipCode?: string | null | undefined;
|
10290
10328
|
} | {
|
10291
|
-
firstname
|
10292
|
-
surname
|
10329
|
+
firstname: string;
|
10330
|
+
surname: string;
|
10293
10331
|
middlename?: string | null | undefined;
|
10294
10332
|
} | {
|
10295
10333
|
country: string;
|
@@ -10317,6 +10355,9 @@ export declare const EventDocument: z.ZodObject<{
|
|
10317
10355
|
start: string;
|
10318
10356
|
end: string;
|
10319
10357
|
} | null | undefined>;
|
10358
|
+
content?: {
|
10359
|
+
templateId?: string | undefined;
|
10360
|
+
} | null | undefined;
|
10320
10361
|
createdBySignature?: string | null | undefined;
|
10321
10362
|
createdAtLocation?: string | null | undefined;
|
10322
10363
|
annotation?: Record<string, string | number | boolean | {
|
@@ -10335,8 +10376,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10335
10376
|
street?: string | null | undefined;
|
10336
10377
|
zipCode?: string | null | undefined;
|
10337
10378
|
} | {
|
10338
|
-
firstname
|
10339
|
-
surname
|
10379
|
+
firstname: string;
|
10380
|
+
surname: string;
|
10340
10381
|
middlename?: string | null | undefined;
|
10341
10382
|
} | {
|
10342
10383
|
country: string;
|
@@ -10390,8 +10431,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10390
10431
|
street?: string | null | undefined;
|
10391
10432
|
zipCode?: string | null | undefined;
|
10392
10433
|
} | {
|
10393
|
-
firstname
|
10394
|
-
surname
|
10434
|
+
firstname: string;
|
10435
|
+
surname: string;
|
10395
10436
|
middlename?: string | null | undefined;
|
10396
10437
|
} | {
|
10397
10438
|
country: string;
|
@@ -10437,8 +10478,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10437
10478
|
street?: string | null | undefined;
|
10438
10479
|
zipCode?: string | null | undefined;
|
10439
10480
|
} | {
|
10440
|
-
firstname
|
10441
|
-
surname
|
10481
|
+
firstname: string;
|
10482
|
+
surname: string;
|
10442
10483
|
middlename?: string | null | undefined;
|
10443
10484
|
} | {
|
10444
10485
|
country: string;
|
@@ -10492,8 +10533,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10492
10533
|
street?: string | null | undefined;
|
10493
10534
|
zipCode?: string | null | undefined;
|
10494
10535
|
} | {
|
10495
|
-
firstname
|
10496
|
-
surname
|
10536
|
+
firstname: string;
|
10537
|
+
surname: string;
|
10497
10538
|
middlename?: string | null | undefined;
|
10498
10539
|
} | {
|
10499
10540
|
country: string;
|
@@ -10540,8 +10581,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10540
10581
|
street?: string | null | undefined;
|
10541
10582
|
zipCode?: string | null | undefined;
|
10542
10583
|
} | {
|
10543
|
-
firstname
|
10544
|
-
surname
|
10584
|
+
firstname: string;
|
10585
|
+
surname: string;
|
10545
10586
|
middlename?: string | null | undefined;
|
10546
10587
|
} | {
|
10547
10588
|
country: string;
|
@@ -10574,6 +10615,10 @@ export declare const EventDocument: z.ZodObject<{
|
|
10574
10615
|
type: "REJECT_CORRECTION";
|
10575
10616
|
id: string;
|
10576
10617
|
status: "Rejected" | "Requested" | "Accepted";
|
10618
|
+
reason: {
|
10619
|
+
message: string;
|
10620
|
+
isDuplicate?: boolean | undefined;
|
10621
|
+
};
|
10577
10622
|
transactionId: string;
|
10578
10623
|
createdByUserType: "system" | "user";
|
10579
10624
|
createdAt: string;
|
@@ -10595,8 +10640,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10595
10640
|
street?: string | null | undefined;
|
10596
10641
|
zipCode?: string | null | undefined;
|
10597
10642
|
} | {
|
10598
|
-
firstname
|
10599
|
-
surname
|
10643
|
+
firstname: string;
|
10644
|
+
surname: string;
|
10600
10645
|
middlename?: string | null | undefined;
|
10601
10646
|
} | {
|
10602
10647
|
country: string;
|
@@ -10643,8 +10688,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10643
10688
|
street?: string | null | undefined;
|
10644
10689
|
zipCode?: string | null | undefined;
|
10645
10690
|
} | {
|
10646
|
-
firstname
|
10647
|
-
surname
|
10691
|
+
firstname: string;
|
10692
|
+
surname: string;
|
10648
10693
|
middlename?: string | null | undefined;
|
10649
10694
|
} | {
|
10650
10695
|
country: string;
|
@@ -10698,8 +10743,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10698
10743
|
street?: string | null | undefined;
|
10699
10744
|
zipCode?: string | null | undefined;
|
10700
10745
|
} | {
|
10701
|
-
firstname
|
10702
|
-
surname
|
10746
|
+
firstname: string;
|
10747
|
+
surname: string;
|
10703
10748
|
middlename?: string | null | undefined;
|
10704
10749
|
} | {
|
10705
10750
|
country: string;
|
@@ -10745,8 +10790,8 @@ export declare const EventDocument: z.ZodObject<{
|
|
10745
10790
|
street?: string | null | undefined;
|
10746
10791
|
zipCode?: string | null | undefined;
|
10747
10792
|
} | {
|
10748
|
-
firstname
|
10749
|
-
surname
|
10793
|
+
firstname: string;
|
10794
|
+
surname: string;
|
10750
10795
|
middlename?: string | null | undefined;
|
10751
10796
|
} | {
|
10752
10797
|
country: string;
|