@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.
- package/dist/commons/api/router.d.ts +409 -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 +1252 -716
- package/dist/commons/events/ActionInput.d.ts +626 -600
- package/dist/commons/events/AdvancedSearchConfig.d.ts +49 -31
- package/dist/commons/events/CompositeFieldValue.d.ts +6 -6
- package/dist/commons/events/CountryConfigQueryInput.d.ts +88 -88
- package/dist/commons/events/Draft.d.ts +48 -48
- package/dist/commons/events/EventConfig.d.ts +673 -146
- package/dist/commons/events/EventDocument.d.ts +451 -432
- package/dist/commons/events/EventIndex.d.ts +62 -62
- package/dist/commons/events/EventMetadata.d.ts +9 -9
- package/dist/commons/events/FieldConfig.d.ts +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 +199 -164
- package/dist/commons/events/defineConfig.d.ts +127 -28
- package/dist/commons/events/event.d.ts +61 -7
- package/dist/commons/events/test.utils.d.ts +12 -12
- package/dist/commons/events/utils.d.ts +234 -58
- package/dist/conditionals/index.js +3 -2
- package/dist/events/index.js +239 -89
- package/package.json +1 -1
- package/tsconfig.json +1 -1
- package/dist/commons/conditionals/conditionals.test.d.ts +0 -2
- package/dist/commons/conditionals/validate-address.test.d.ts +0 -2
- package/dist/commons/conditionals/validate.test.d.ts +0 -2
- package/dist/commons/events/utils.test.d.ts +0 -2
@@ -125,16 +125,16 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
125
125
|
addressLine3?: string | null | undefined;
|
126
126
|
postcodeOrZip?: string | null | undefined;
|
127
127
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
128
|
-
firstname: z.
|
129
|
-
surname: z.
|
128
|
+
firstname: z.ZodString;
|
129
|
+
surname: z.ZodString;
|
130
130
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
131
131
|
}, "strip", z.ZodTypeAny, {
|
132
|
-
firstname
|
133
|
-
surname
|
132
|
+
firstname: string;
|
133
|
+
surname: string;
|
134
134
|
middlename?: string | null | undefined;
|
135
135
|
}, {
|
136
|
-
firstname
|
137
|
-
surname
|
136
|
+
firstname: string;
|
137
|
+
surname: string;
|
138
138
|
middlename?: string | null | undefined;
|
139
139
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
140
140
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -260,16 +260,16 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
260
260
|
addressLine3?: string | null | undefined;
|
261
261
|
postcodeOrZip?: string | null | undefined;
|
262
262
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
263
|
-
firstname: z.
|
264
|
-
surname: z.
|
263
|
+
firstname: z.ZodString;
|
264
|
+
surname: z.ZodString;
|
265
265
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
266
266
|
}, "strip", z.ZodTypeAny, {
|
267
|
-
firstname
|
268
|
-
surname
|
267
|
+
firstname: string;
|
268
|
+
surname: string;
|
269
269
|
middlename?: string | null | undefined;
|
270
270
|
}, {
|
271
|
-
firstname
|
272
|
-
surname
|
271
|
+
firstname: string;
|
272
|
+
surname: string;
|
273
273
|
middlename?: string | null | undefined;
|
274
274
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
275
275
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -292,8 +292,8 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
292
292
|
street?: string | null | undefined;
|
293
293
|
zipCode?: string | null | undefined;
|
294
294
|
} | {
|
295
|
-
firstname
|
296
|
-
surname
|
295
|
+
firstname: string;
|
296
|
+
surname: string;
|
297
297
|
middlename?: string | null | undefined;
|
298
298
|
} | {
|
299
299
|
country: string;
|
@@ -338,8 +338,8 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
338
338
|
street?: string | null | undefined;
|
339
339
|
zipCode?: string | null | undefined;
|
340
340
|
} | {
|
341
|
-
firstname
|
342
|
-
surname
|
341
|
+
firstname: string;
|
342
|
+
surname: string;
|
343
343
|
middlename?: string | null | undefined;
|
344
344
|
} | {
|
345
345
|
country: string;
|
@@ -388,8 +388,8 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
388
388
|
street?: string | null | undefined;
|
389
389
|
zipCode?: string | null | undefined;
|
390
390
|
} | {
|
391
|
-
firstname
|
392
|
-
surname
|
391
|
+
firstname: string;
|
392
|
+
surname: string;
|
393
393
|
middlename?: string | null | undefined;
|
394
394
|
} | {
|
395
395
|
country: string;
|
@@ -433,8 +433,8 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
433
433
|
street?: string | null | undefined;
|
434
434
|
zipCode?: string | null | undefined;
|
435
435
|
} | {
|
436
|
-
firstname
|
437
|
-
surname
|
436
|
+
firstname: string;
|
437
|
+
surname: string;
|
438
438
|
middlename?: string | null | undefined;
|
439
439
|
} | {
|
440
440
|
country: string;
|
@@ -591,16 +591,16 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
591
591
|
addressLine3?: string | null | undefined;
|
592
592
|
postcodeOrZip?: string | null | undefined;
|
593
593
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
594
|
-
firstname: z.
|
595
|
-
surname: z.
|
594
|
+
firstname: z.ZodString;
|
595
|
+
surname: z.ZodString;
|
596
596
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
597
597
|
}, "strip", z.ZodTypeAny, {
|
598
|
-
firstname
|
599
|
-
surname
|
598
|
+
firstname: string;
|
599
|
+
surname: string;
|
600
600
|
middlename?: string | null | undefined;
|
601
601
|
}, {
|
602
|
-
firstname
|
603
|
-
surname
|
602
|
+
firstname: string;
|
603
|
+
surname: string;
|
604
604
|
middlename?: string | null | undefined;
|
605
605
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
606
606
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -726,16 +726,16 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
726
726
|
addressLine3?: string | null | undefined;
|
727
727
|
postcodeOrZip?: string | null | undefined;
|
728
728
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
729
|
-
firstname: z.
|
730
|
-
surname: z.
|
729
|
+
firstname: z.ZodString;
|
730
|
+
surname: z.ZodString;
|
731
731
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
732
732
|
}, "strip", z.ZodTypeAny, {
|
733
|
-
firstname
|
734
|
-
surname
|
733
|
+
firstname: string;
|
734
|
+
surname: string;
|
735
735
|
middlename?: string | null | undefined;
|
736
736
|
}, {
|
737
|
-
firstname
|
738
|
-
surname
|
737
|
+
firstname: string;
|
738
|
+
surname: string;
|
739
739
|
middlename?: string | null | undefined;
|
740
740
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
741
741
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -762,8 +762,8 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
762
762
|
street?: string | null | undefined;
|
763
763
|
zipCode?: string | null | undefined;
|
764
764
|
} | {
|
765
|
-
firstname
|
766
|
-
surname
|
765
|
+
firstname: string;
|
766
|
+
surname: string;
|
767
767
|
middlename?: string | null | undefined;
|
768
768
|
} | {
|
769
769
|
country: string;
|
@@ -808,8 +808,8 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
808
808
|
street?: string | null | undefined;
|
809
809
|
zipCode?: string | null | undefined;
|
810
810
|
} | {
|
811
|
-
firstname
|
812
|
-
surname
|
811
|
+
firstname: string;
|
812
|
+
surname: string;
|
813
813
|
middlename?: string | null | undefined;
|
814
814
|
} | {
|
815
815
|
country: string;
|
@@ -860,8 +860,8 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
860
860
|
street?: string | null | undefined;
|
861
861
|
zipCode?: string | null | undefined;
|
862
862
|
} | {
|
863
|
-
firstname
|
864
|
-
surname
|
863
|
+
firstname: string;
|
864
|
+
surname: string;
|
865
865
|
middlename?: string | null | undefined;
|
866
866
|
} | {
|
867
867
|
country: string;
|
@@ -905,8 +905,8 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
905
905
|
street?: string | null | undefined;
|
906
906
|
zipCode?: string | null | undefined;
|
907
907
|
} | {
|
908
|
-
firstname
|
909
|
-
surname
|
908
|
+
firstname: string;
|
909
|
+
surname: string;
|
910
910
|
middlename?: string | null | undefined;
|
911
911
|
} | {
|
912
912
|
country: string;
|
@@ -1065,16 +1065,16 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1065
1065
|
addressLine3?: string | null | undefined;
|
1066
1066
|
postcodeOrZip?: string | null | undefined;
|
1067
1067
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1068
|
-
firstname: z.
|
1069
|
-
surname: z.
|
1068
|
+
firstname: z.ZodString;
|
1069
|
+
surname: z.ZodString;
|
1070
1070
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1071
1071
|
}, "strip", z.ZodTypeAny, {
|
1072
|
-
firstname
|
1073
|
-
surname
|
1072
|
+
firstname: string;
|
1073
|
+
surname: string;
|
1074
1074
|
middlename?: string | null | undefined;
|
1075
1075
|
}, {
|
1076
|
-
firstname
|
1077
|
-
surname
|
1076
|
+
firstname: string;
|
1077
|
+
surname: string;
|
1078
1078
|
middlename?: string | null | undefined;
|
1079
1079
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
1080
1080
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -1200,16 +1200,16 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1200
1200
|
addressLine3?: string | null | undefined;
|
1201
1201
|
postcodeOrZip?: string | null | undefined;
|
1202
1202
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1203
|
-
firstname: z.
|
1204
|
-
surname: z.
|
1203
|
+
firstname: z.ZodString;
|
1204
|
+
surname: z.ZodString;
|
1205
1205
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1206
1206
|
}, "strip", z.ZodTypeAny, {
|
1207
|
-
firstname
|
1208
|
-
surname
|
1207
|
+
firstname: string;
|
1208
|
+
surname: string;
|
1209
1209
|
middlename?: string | null | undefined;
|
1210
1210
|
}, {
|
1211
|
-
firstname
|
1212
|
-
surname
|
1211
|
+
firstname: string;
|
1212
|
+
surname: string;
|
1213
1213
|
middlename?: string | null | undefined;
|
1214
1214
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
1215
1215
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -1236,8 +1236,8 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1236
1236
|
street?: string | null | undefined;
|
1237
1237
|
zipCode?: string | null | undefined;
|
1238
1238
|
} | {
|
1239
|
-
firstname
|
1240
|
-
surname
|
1239
|
+
firstname: string;
|
1240
|
+
surname: string;
|
1241
1241
|
middlename?: string | null | undefined;
|
1242
1242
|
} | {
|
1243
1243
|
country: string;
|
@@ -1283,8 +1283,8 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1283
1283
|
street?: string | null | undefined;
|
1284
1284
|
zipCode?: string | null | undefined;
|
1285
1285
|
} | {
|
1286
|
-
firstname
|
1287
|
-
surname
|
1286
|
+
firstname: string;
|
1287
|
+
surname: string;
|
1288
1288
|
middlename?: string | null | undefined;
|
1289
1289
|
} | {
|
1290
1290
|
country: string;
|
@@ -1335,8 +1335,8 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1335
1335
|
street?: string | null | undefined;
|
1336
1336
|
zipCode?: string | null | undefined;
|
1337
1337
|
} | {
|
1338
|
-
firstname
|
1339
|
-
surname
|
1338
|
+
firstname: string;
|
1339
|
+
surname: string;
|
1340
1340
|
middlename?: string | null | undefined;
|
1341
1341
|
} | {
|
1342
1342
|
country: string;
|
@@ -1380,8 +1380,8 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1380
1380
|
street?: string | null | undefined;
|
1381
1381
|
zipCode?: string | null | undefined;
|
1382
1382
|
} | {
|
1383
|
-
firstname
|
1384
|
-
surname
|
1383
|
+
firstname: string;
|
1384
|
+
surname: string;
|
1385
1385
|
middlename?: string | null | undefined;
|
1386
1386
|
} | {
|
1387
1387
|
country: string;
|
@@ -1539,16 +1539,16 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1539
1539
|
addressLine3?: string | null | undefined;
|
1540
1540
|
postcodeOrZip?: string | null | undefined;
|
1541
1541
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1542
|
-
firstname: z.
|
1543
|
-
surname: z.
|
1542
|
+
firstname: z.ZodString;
|
1543
|
+
surname: z.ZodString;
|
1544
1544
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1545
1545
|
}, "strip", z.ZodTypeAny, {
|
1546
|
-
firstname
|
1547
|
-
surname
|
1546
|
+
firstname: string;
|
1547
|
+
surname: string;
|
1548
1548
|
middlename?: string | null | undefined;
|
1549
1549
|
}, {
|
1550
|
-
firstname
|
1551
|
-
surname
|
1550
|
+
firstname: string;
|
1551
|
+
surname: string;
|
1552
1552
|
middlename?: string | null | undefined;
|
1553
1553
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
1554
1554
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -1674,16 +1674,16 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1674
1674
|
addressLine3?: string | null | undefined;
|
1675
1675
|
postcodeOrZip?: string | null | undefined;
|
1676
1676
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1677
|
-
firstname: z.
|
1678
|
-
surname: z.
|
1677
|
+
firstname: z.ZodString;
|
1678
|
+
surname: z.ZodString;
|
1679
1679
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1680
1680
|
}, "strip", z.ZodTypeAny, {
|
1681
|
-
firstname
|
1682
|
-
surname
|
1681
|
+
firstname: string;
|
1682
|
+
surname: string;
|
1683
1683
|
middlename?: string | null | undefined;
|
1684
1684
|
}, {
|
1685
|
-
firstname
|
1686
|
-
surname
|
1685
|
+
firstname: string;
|
1686
|
+
surname: string;
|
1687
1687
|
middlename?: string | null | undefined;
|
1688
1688
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
1689
1689
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -1709,8 +1709,8 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1709
1709
|
street?: string | null | undefined;
|
1710
1710
|
zipCode?: string | null | undefined;
|
1711
1711
|
} | {
|
1712
|
-
firstname
|
1713
|
-
surname
|
1712
|
+
firstname: string;
|
1713
|
+
surname: string;
|
1714
1714
|
middlename?: string | null | undefined;
|
1715
1715
|
} | {
|
1716
1716
|
country: string;
|
@@ -1755,8 +1755,8 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1755
1755
|
street?: string | null | undefined;
|
1756
1756
|
zipCode?: string | null | undefined;
|
1757
1757
|
} | {
|
1758
|
-
firstname
|
1759
|
-
surname
|
1758
|
+
firstname: string;
|
1759
|
+
surname: string;
|
1760
1760
|
middlename?: string | null | undefined;
|
1761
1761
|
} | {
|
1762
1762
|
country: string;
|
@@ -1806,8 +1806,8 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1806
1806
|
street?: string | null | undefined;
|
1807
1807
|
zipCode?: string | null | undefined;
|
1808
1808
|
} | {
|
1809
|
-
firstname
|
1810
|
-
surname
|
1809
|
+
firstname: string;
|
1810
|
+
surname: string;
|
1811
1811
|
middlename?: string | null | undefined;
|
1812
1812
|
} | {
|
1813
1813
|
country: string;
|
@@ -1851,8 +1851,8 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1851
1851
|
street?: string | null | undefined;
|
1852
1852
|
zipCode?: string | null | undefined;
|
1853
1853
|
} | {
|
1854
|
-
firstname
|
1855
|
-
surname
|
1854
|
+
firstname: string;
|
1855
|
+
surname: string;
|
1856
1856
|
middlename?: string | null | undefined;
|
1857
1857
|
} | {
|
1858
1858
|
country: string;
|
@@ -2010,16 +2010,16 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2010
2010
|
addressLine3?: string | null | undefined;
|
2011
2011
|
postcodeOrZip?: string | null | undefined;
|
2012
2012
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2013
|
-
firstname: z.
|
2014
|
-
surname: z.
|
2013
|
+
firstname: z.ZodString;
|
2014
|
+
surname: z.ZodString;
|
2015
2015
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2016
2016
|
}, "strip", z.ZodTypeAny, {
|
2017
|
-
firstname
|
2018
|
-
surname
|
2017
|
+
firstname: string;
|
2018
|
+
surname: string;
|
2019
2019
|
middlename?: string | null | undefined;
|
2020
2020
|
}, {
|
2021
|
-
firstname
|
2022
|
-
surname
|
2021
|
+
firstname: string;
|
2022
|
+
surname: string;
|
2023
2023
|
middlename?: string | null | undefined;
|
2024
2024
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
2025
2025
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -2145,16 +2145,16 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2145
2145
|
addressLine3?: string | null | undefined;
|
2146
2146
|
postcodeOrZip?: string | null | undefined;
|
2147
2147
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2148
|
-
firstname: z.
|
2149
|
-
surname: z.
|
2148
|
+
firstname: z.ZodString;
|
2149
|
+
surname: z.ZodString;
|
2150
2150
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2151
2151
|
}, "strip", z.ZodTypeAny, {
|
2152
|
-
firstname
|
2153
|
-
surname
|
2152
|
+
firstname: string;
|
2153
|
+
surname: string;
|
2154
2154
|
middlename?: string | null | undefined;
|
2155
2155
|
}, {
|
2156
|
-
firstname
|
2157
|
-
surname
|
2156
|
+
firstname: string;
|
2157
|
+
surname: string;
|
2158
2158
|
middlename?: string | null | undefined;
|
2159
2159
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
2160
2160
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -2180,8 +2180,8 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2180
2180
|
street?: string | null | undefined;
|
2181
2181
|
zipCode?: string | null | undefined;
|
2182
2182
|
} | {
|
2183
|
-
firstname
|
2184
|
-
surname
|
2183
|
+
firstname: string;
|
2184
|
+
surname: string;
|
2185
2185
|
middlename?: string | null | undefined;
|
2186
2186
|
} | {
|
2187
2187
|
country: string;
|
@@ -2226,8 +2226,8 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2226
2226
|
street?: string | null | undefined;
|
2227
2227
|
zipCode?: string | null | undefined;
|
2228
2228
|
} | {
|
2229
|
-
firstname
|
2230
|
-
surname
|
2229
|
+
firstname: string;
|
2230
|
+
surname: string;
|
2231
2231
|
middlename?: string | null | undefined;
|
2232
2232
|
} | {
|
2233
2233
|
country: string;
|
@@ -2277,8 +2277,8 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2277
2277
|
street?: string | null | undefined;
|
2278
2278
|
zipCode?: string | null | undefined;
|
2279
2279
|
} | {
|
2280
|
-
firstname
|
2281
|
-
surname
|
2280
|
+
firstname: string;
|
2281
|
+
surname: string;
|
2282
2282
|
middlename?: string | null | undefined;
|
2283
2283
|
} | {
|
2284
2284
|
country: string;
|
@@ -2322,8 +2322,8 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2322
2322
|
street?: string | null | undefined;
|
2323
2323
|
zipCode?: string | null | undefined;
|
2324
2324
|
} | {
|
2325
|
-
firstname
|
2326
|
-
surname
|
2325
|
+
firstname: string;
|
2326
|
+
surname: string;
|
2327
2327
|
middlename?: string | null | undefined;
|
2328
2328
|
} | {
|
2329
2329
|
country: string;
|
@@ -2480,16 +2480,16 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2480
2480
|
addressLine3?: string | null | undefined;
|
2481
2481
|
postcodeOrZip?: string | null | undefined;
|
2482
2482
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2483
|
-
firstname: z.
|
2484
|
-
surname: z.
|
2483
|
+
firstname: z.ZodString;
|
2484
|
+
surname: z.ZodString;
|
2485
2485
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2486
2486
|
}, "strip", z.ZodTypeAny, {
|
2487
|
-
firstname
|
2488
|
-
surname
|
2487
|
+
firstname: string;
|
2488
|
+
surname: string;
|
2489
2489
|
middlename?: string | null | undefined;
|
2490
2490
|
}, {
|
2491
|
-
firstname
|
2492
|
-
surname
|
2491
|
+
firstname: string;
|
2492
|
+
surname: string;
|
2493
2493
|
middlename?: string | null | undefined;
|
2494
2494
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
2495
2495
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -2615,22 +2615,29 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2615
2615
|
addressLine3?: string | null | undefined;
|
2616
2616
|
postcodeOrZip?: string | null | undefined;
|
2617
2617
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2618
|
-
firstname: z.
|
2619
|
-
surname: z.
|
2618
|
+
firstname: z.ZodString;
|
2619
|
+
surname: z.ZodString;
|
2620
2620
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2621
2621
|
}, "strip", z.ZodTypeAny, {
|
2622
|
-
firstname
|
2623
|
-
surname
|
2622
|
+
firstname: string;
|
2623
|
+
surname: string;
|
2624
2624
|
middlename?: string | null | undefined;
|
2625
2625
|
}, {
|
2626
|
-
firstname
|
2627
|
-
surname
|
2626
|
+
firstname: string;
|
2627
|
+
surname: string;
|
2628
2628
|
middlename?: string | null | undefined;
|
2629
2629
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
2630
2630
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
2631
2631
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
2632
2632
|
}, {
|
2633
2633
|
type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
|
2634
|
+
content: z.ZodOptional<z.ZodObject<{
|
2635
|
+
templateId: z.ZodOptional<z.ZodString>;
|
2636
|
+
}, "strip", z.ZodTypeAny, {
|
2637
|
+
templateId?: string | undefined;
|
2638
|
+
}, {
|
2639
|
+
templateId?: string | undefined;
|
2640
|
+
}>>;
|
2634
2641
|
}>, "strip", z.ZodTypeAny, {
|
2635
2642
|
type: "PRINT_CERTIFICATE";
|
2636
2643
|
transactionId: string;
|
@@ -2650,8 +2657,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2650
2657
|
street?: string | null | undefined;
|
2651
2658
|
zipCode?: string | null | undefined;
|
2652
2659
|
} | {
|
2653
|
-
firstname
|
2654
|
-
surname
|
2660
|
+
firstname: string;
|
2661
|
+
surname: string;
|
2655
2662
|
middlename?: string | null | undefined;
|
2656
2663
|
} | {
|
2657
2664
|
country: string;
|
@@ -2680,6 +2687,9 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2680
2687
|
end: string;
|
2681
2688
|
} | null | undefined>;
|
2682
2689
|
eventId: string & z.BRAND<"UUID">;
|
2690
|
+
content?: {
|
2691
|
+
templateId?: string | undefined;
|
2692
|
+
} | undefined;
|
2683
2693
|
annotation?: Record<string, string | number | boolean | {
|
2684
2694
|
type: string;
|
2685
2695
|
path: string;
|
@@ -2696,8 +2706,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2696
2706
|
street?: string | null | undefined;
|
2697
2707
|
zipCode?: string | null | undefined;
|
2698
2708
|
} | {
|
2699
|
-
firstname
|
2700
|
-
surname
|
2709
|
+
firstname: string;
|
2710
|
+
surname: string;
|
2701
2711
|
middlename?: string | null | undefined;
|
2702
2712
|
} | {
|
2703
2713
|
country: string;
|
@@ -2731,6 +2741,9 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2731
2741
|
transactionId: string;
|
2732
2742
|
eventId: string;
|
2733
2743
|
type?: "PRINT_CERTIFICATE" | undefined;
|
2744
|
+
content?: {
|
2745
|
+
templateId?: string | undefined;
|
2746
|
+
} | undefined;
|
2734
2747
|
declaration?: Record<string, string | number | boolean | {
|
2735
2748
|
type: string;
|
2736
2749
|
path: string;
|
@@ -2747,8 +2760,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2747
2760
|
street?: string | null | undefined;
|
2748
2761
|
zipCode?: string | null | undefined;
|
2749
2762
|
} | {
|
2750
|
-
firstname
|
2751
|
-
surname
|
2763
|
+
firstname: string;
|
2764
|
+
surname: string;
|
2752
2765
|
middlename?: string | null | undefined;
|
2753
2766
|
} | {
|
2754
2767
|
country: string;
|
@@ -2792,8 +2805,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2792
2805
|
street?: string | null | undefined;
|
2793
2806
|
zipCode?: string | null | undefined;
|
2794
2807
|
} | {
|
2795
|
-
firstname
|
2796
|
-
surname
|
2808
|
+
firstname: string;
|
2809
|
+
surname: string;
|
2797
2810
|
middlename?: string | null | undefined;
|
2798
2811
|
} | {
|
2799
2812
|
country: string;
|
@@ -2951,16 +2964,16 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
2951
2964
|
addressLine3?: string | null | undefined;
|
2952
2965
|
postcodeOrZip?: string | null | undefined;
|
2953
2966
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2954
|
-
firstname: z.
|
2955
|
-
surname: z.
|
2967
|
+
firstname: z.ZodString;
|
2968
|
+
surname: z.ZodString;
|
2956
2969
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2957
2970
|
}, "strip", z.ZodTypeAny, {
|
2958
|
-
firstname
|
2959
|
-
surname
|
2971
|
+
firstname: string;
|
2972
|
+
surname: string;
|
2960
2973
|
middlename?: string | null | undefined;
|
2961
2974
|
}, {
|
2962
|
-
firstname
|
2963
|
-
surname
|
2975
|
+
firstname: string;
|
2976
|
+
surname: string;
|
2964
2977
|
middlename?: string | null | undefined;
|
2965
2978
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
2966
2979
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -3086,16 +3099,16 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
3086
3099
|
addressLine3?: string | null | undefined;
|
3087
3100
|
postcodeOrZip?: string | null | undefined;
|
3088
3101
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3089
|
-
firstname: z.
|
3090
|
-
surname: z.
|
3102
|
+
firstname: z.ZodString;
|
3103
|
+
surname: z.ZodString;
|
3091
3104
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3092
3105
|
}, "strip", z.ZodTypeAny, {
|
3093
|
-
firstname
|
3094
|
-
surname
|
3106
|
+
firstname: string;
|
3107
|
+
surname: string;
|
3095
3108
|
middlename?: string | null | undefined;
|
3096
3109
|
}, {
|
3097
|
-
firstname
|
3098
|
-
surname
|
3110
|
+
firstname: string;
|
3111
|
+
surname: string;
|
3099
3112
|
middlename?: string | null | undefined;
|
3100
3113
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
3101
3114
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -3135,8 +3148,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
3135
3148
|
street?: string | null | undefined;
|
3136
3149
|
zipCode?: string | null | undefined;
|
3137
3150
|
} | {
|
3138
|
-
firstname
|
3139
|
-
surname
|
3151
|
+
firstname: string;
|
3152
|
+
surname: string;
|
3140
3153
|
middlename?: string | null | undefined;
|
3141
3154
|
} | {
|
3142
3155
|
country: string;
|
@@ -3181,8 +3194,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
3181
3194
|
street?: string | null | undefined;
|
3182
3195
|
zipCode?: string | null | undefined;
|
3183
3196
|
} | {
|
3184
|
-
firstname
|
3185
|
-
surname
|
3197
|
+
firstname: string;
|
3198
|
+
surname: string;
|
3186
3199
|
middlename?: string | null | undefined;
|
3187
3200
|
} | {
|
3188
3201
|
country: string;
|
@@ -3236,8 +3249,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
3236
3249
|
street?: string | null | undefined;
|
3237
3250
|
zipCode?: string | null | undefined;
|
3238
3251
|
} | {
|
3239
|
-
firstname
|
3240
|
-
surname
|
3252
|
+
firstname: string;
|
3253
|
+
surname: string;
|
3241
3254
|
middlename?: string | null | undefined;
|
3242
3255
|
} | {
|
3243
3256
|
country: string;
|
@@ -3281,8 +3294,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
3281
3294
|
street?: string | null | undefined;
|
3282
3295
|
zipCode?: string | null | undefined;
|
3283
3296
|
} | {
|
3284
|
-
firstname
|
3285
|
-
surname
|
3297
|
+
firstname: string;
|
3298
|
+
surname: string;
|
3286
3299
|
middlename?: string | null | undefined;
|
3287
3300
|
} | {
|
3288
3301
|
country: string;
|
@@ -3440,16 +3453,16 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3440
3453
|
addressLine3?: string | null | undefined;
|
3441
3454
|
postcodeOrZip?: string | null | undefined;
|
3442
3455
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3443
|
-
firstname: z.
|
3444
|
-
surname: z.
|
3456
|
+
firstname: z.ZodString;
|
3457
|
+
surname: z.ZodString;
|
3445
3458
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3446
3459
|
}, "strip", z.ZodTypeAny, {
|
3447
|
-
firstname
|
3448
|
-
surname
|
3460
|
+
firstname: string;
|
3461
|
+
surname: string;
|
3449
3462
|
middlename?: string | null | undefined;
|
3450
3463
|
}, {
|
3451
|
-
firstname
|
3452
|
-
surname
|
3464
|
+
firstname: string;
|
3465
|
+
surname: string;
|
3453
3466
|
middlename?: string | null | undefined;
|
3454
3467
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
3455
3468
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -3575,16 +3588,16 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3575
3588
|
addressLine3?: string | null | undefined;
|
3576
3589
|
postcodeOrZip?: string | null | undefined;
|
3577
3590
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3578
|
-
firstname: z.
|
3579
|
-
surname: z.
|
3591
|
+
firstname: z.ZodString;
|
3592
|
+
surname: z.ZodString;
|
3580
3593
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3581
3594
|
}, "strip", z.ZodTypeAny, {
|
3582
|
-
firstname
|
3583
|
-
surname
|
3595
|
+
firstname: string;
|
3596
|
+
surname: string;
|
3584
3597
|
middlename?: string | null | undefined;
|
3585
3598
|
}, {
|
3586
|
-
firstname
|
3587
|
-
surname
|
3599
|
+
firstname: string;
|
3600
|
+
surname: string;
|
3588
3601
|
middlename?: string | null | undefined;
|
3589
3602
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
3590
3603
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -3610,8 +3623,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3610
3623
|
street?: string | null | undefined;
|
3611
3624
|
zipCode?: string | null | undefined;
|
3612
3625
|
} | {
|
3613
|
-
firstname
|
3614
|
-
surname
|
3626
|
+
firstname: string;
|
3627
|
+
surname: string;
|
3615
3628
|
middlename?: string | null | undefined;
|
3616
3629
|
} | {
|
3617
3630
|
country: string;
|
@@ -3656,8 +3669,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3656
3669
|
street?: string | null | undefined;
|
3657
3670
|
zipCode?: string | null | undefined;
|
3658
3671
|
} | {
|
3659
|
-
firstname
|
3660
|
-
surname
|
3672
|
+
firstname: string;
|
3673
|
+
surname: string;
|
3661
3674
|
middlename?: string | null | undefined;
|
3662
3675
|
} | {
|
3663
3676
|
country: string;
|
@@ -3707,8 +3720,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3707
3720
|
street?: string | null | undefined;
|
3708
3721
|
zipCode?: string | null | undefined;
|
3709
3722
|
} | {
|
3710
|
-
firstname
|
3711
|
-
surname
|
3723
|
+
firstname: string;
|
3724
|
+
surname: string;
|
3712
3725
|
middlename?: string | null | undefined;
|
3713
3726
|
} | {
|
3714
3727
|
country: string;
|
@@ -3752,8 +3765,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3752
3765
|
street?: string | null | undefined;
|
3753
3766
|
zipCode?: string | null | undefined;
|
3754
3767
|
} | {
|
3755
|
-
firstname
|
3756
|
-
surname
|
3768
|
+
firstname: string;
|
3769
|
+
surname: string;
|
3757
3770
|
middlename?: string | null | undefined;
|
3758
3771
|
} | {
|
3759
3772
|
country: string;
|
@@ -3911,16 +3924,16 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3911
3924
|
addressLine3?: string | null | undefined;
|
3912
3925
|
postcodeOrZip?: string | null | undefined;
|
3913
3926
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3914
|
-
firstname: z.
|
3915
|
-
surname: z.
|
3927
|
+
firstname: z.ZodString;
|
3928
|
+
surname: z.ZodString;
|
3916
3929
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3917
3930
|
}, "strip", z.ZodTypeAny, {
|
3918
|
-
firstname
|
3919
|
-
surname
|
3931
|
+
firstname: string;
|
3932
|
+
surname: string;
|
3920
3933
|
middlename?: string | null | undefined;
|
3921
3934
|
}, {
|
3922
|
-
firstname
|
3923
|
-
surname
|
3935
|
+
firstname: string;
|
3936
|
+
surname: string;
|
3924
3937
|
middlename?: string | null | undefined;
|
3925
3938
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
3926
3939
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -4046,16 +4059,16 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4046
4059
|
addressLine3?: string | null | undefined;
|
4047
4060
|
postcodeOrZip?: string | null | undefined;
|
4048
4061
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4049
|
-
firstname: z.
|
4050
|
-
surname: z.
|
4062
|
+
firstname: z.ZodString;
|
4063
|
+
surname: z.ZodString;
|
4051
4064
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4052
4065
|
}, "strip", z.ZodTypeAny, {
|
4053
|
-
firstname
|
4054
|
-
surname
|
4066
|
+
firstname: string;
|
4067
|
+
surname: string;
|
4055
4068
|
middlename?: string | null | undefined;
|
4056
4069
|
}, {
|
4057
|
-
firstname
|
4058
|
-
surname
|
4070
|
+
firstname: string;
|
4071
|
+
surname: string;
|
4059
4072
|
middlename?: string | null | undefined;
|
4060
4073
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4061
4074
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -4095,8 +4108,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4095
4108
|
street?: string | null | undefined;
|
4096
4109
|
zipCode?: string | null | undefined;
|
4097
4110
|
} | {
|
4098
|
-
firstname
|
4099
|
-
surname
|
4111
|
+
firstname: string;
|
4112
|
+
surname: string;
|
4100
4113
|
middlename?: string | null | undefined;
|
4101
4114
|
} | {
|
4102
4115
|
country: string;
|
@@ -4141,8 +4154,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4141
4154
|
street?: string | null | undefined;
|
4142
4155
|
zipCode?: string | null | undefined;
|
4143
4156
|
} | {
|
4144
|
-
firstname
|
4145
|
-
surname
|
4157
|
+
firstname: string;
|
4158
|
+
surname: string;
|
4146
4159
|
middlename?: string | null | undefined;
|
4147
4160
|
} | {
|
4148
4161
|
country: string;
|
@@ -4196,8 +4209,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4196
4209
|
street?: string | null | undefined;
|
4197
4210
|
zipCode?: string | null | undefined;
|
4198
4211
|
} | {
|
4199
|
-
firstname
|
4200
|
-
surname
|
4212
|
+
firstname: string;
|
4213
|
+
surname: string;
|
4201
4214
|
middlename?: string | null | undefined;
|
4202
4215
|
} | {
|
4203
4216
|
country: string;
|
@@ -4241,8 +4254,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4241
4254
|
street?: string | null | undefined;
|
4242
4255
|
zipCode?: string | null | undefined;
|
4243
4256
|
} | {
|
4244
|
-
firstname
|
4245
|
-
surname
|
4257
|
+
firstname: string;
|
4258
|
+
surname: string;
|
4246
4259
|
middlename?: string | null | undefined;
|
4247
4260
|
} | {
|
4248
4261
|
country: string;
|
@@ -4400,16 +4413,16 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4400
4413
|
addressLine3?: string | null | undefined;
|
4401
4414
|
postcodeOrZip?: string | null | undefined;
|
4402
4415
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4403
|
-
firstname: z.
|
4404
|
-
surname: z.
|
4416
|
+
firstname: z.ZodString;
|
4417
|
+
surname: z.ZodString;
|
4405
4418
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4406
4419
|
}, "strip", z.ZodTypeAny, {
|
4407
|
-
firstname
|
4408
|
-
surname
|
4420
|
+
firstname: string;
|
4421
|
+
surname: string;
|
4409
4422
|
middlename?: string | null | undefined;
|
4410
4423
|
}, {
|
4411
|
-
firstname
|
4412
|
-
surname
|
4424
|
+
firstname: string;
|
4425
|
+
surname: string;
|
4413
4426
|
middlename?: string | null | undefined;
|
4414
4427
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4415
4428
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -4535,16 +4548,16 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4535
4548
|
addressLine3?: string | null | undefined;
|
4536
4549
|
postcodeOrZip?: string | null | undefined;
|
4537
4550
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4538
|
-
firstname: z.
|
4539
|
-
surname: z.
|
4551
|
+
firstname: z.ZodString;
|
4552
|
+
surname: z.ZodString;
|
4540
4553
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4541
4554
|
}, "strip", z.ZodTypeAny, {
|
4542
|
-
firstname
|
4543
|
-
surname
|
4555
|
+
firstname: string;
|
4556
|
+
surname: string;
|
4544
4557
|
middlename?: string | null | undefined;
|
4545
4558
|
}, {
|
4546
|
-
firstname
|
4547
|
-
surname
|
4559
|
+
firstname: string;
|
4560
|
+
surname: string;
|
4548
4561
|
middlename?: string | null | undefined;
|
4549
4562
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4550
4563
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -4571,8 +4584,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4571
4584
|
street?: string | null | undefined;
|
4572
4585
|
zipCode?: string | null | undefined;
|
4573
4586
|
} | {
|
4574
|
-
firstname
|
4575
|
-
surname
|
4587
|
+
firstname: string;
|
4588
|
+
surname: string;
|
4576
4589
|
middlename?: string | null | undefined;
|
4577
4590
|
} | {
|
4578
4591
|
country: string;
|
@@ -4618,8 +4631,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4618
4631
|
street?: string | null | undefined;
|
4619
4632
|
zipCode?: string | null | undefined;
|
4620
4633
|
} | {
|
4621
|
-
firstname
|
4622
|
-
surname
|
4634
|
+
firstname: string;
|
4635
|
+
surname: string;
|
4623
4636
|
middlename?: string | null | undefined;
|
4624
4637
|
} | {
|
4625
4638
|
country: string;
|
@@ -4670,8 +4683,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4670
4683
|
street?: string | null | undefined;
|
4671
4684
|
zipCode?: string | null | undefined;
|
4672
4685
|
} | {
|
4673
|
-
firstname
|
4674
|
-
surname
|
4686
|
+
firstname: string;
|
4687
|
+
surname: string;
|
4675
4688
|
middlename?: string | null | undefined;
|
4676
4689
|
} | {
|
4677
4690
|
country: string;
|
@@ -4715,8 +4728,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4715
4728
|
street?: string | null | undefined;
|
4716
4729
|
zipCode?: string | null | undefined;
|
4717
4730
|
} | {
|
4718
|
-
firstname
|
4719
|
-
surname
|
4731
|
+
firstname: string;
|
4732
|
+
surname: string;
|
4720
4733
|
middlename?: string | null | undefined;
|
4721
4734
|
} | {
|
4722
4735
|
country: string;
|
@@ -4874,16 +4887,16 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4874
4887
|
addressLine3?: string | null | undefined;
|
4875
4888
|
postcodeOrZip?: string | null | undefined;
|
4876
4889
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4877
|
-
firstname: z.
|
4878
|
-
surname: z.
|
4890
|
+
firstname: z.ZodString;
|
4891
|
+
surname: z.ZodString;
|
4879
4892
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4880
4893
|
}, "strip", z.ZodTypeAny, {
|
4881
|
-
firstname
|
4882
|
-
surname
|
4894
|
+
firstname: string;
|
4895
|
+
surname: string;
|
4883
4896
|
middlename?: string | null | undefined;
|
4884
4897
|
}, {
|
4885
|
-
firstname
|
4886
|
-
surname
|
4898
|
+
firstname: string;
|
4899
|
+
surname: string;
|
4887
4900
|
middlename?: string | null | undefined;
|
4888
4901
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4889
4902
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -5009,16 +5022,16 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5009
5022
|
addressLine3?: string | null | undefined;
|
5010
5023
|
postcodeOrZip?: string | null | undefined;
|
5011
5024
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5012
|
-
firstname: z.
|
5013
|
-
surname: z.
|
5025
|
+
firstname: z.ZodString;
|
5026
|
+
surname: z.ZodString;
|
5014
5027
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5015
5028
|
}, "strip", z.ZodTypeAny, {
|
5016
|
-
firstname
|
5017
|
-
surname
|
5029
|
+
firstname: string;
|
5030
|
+
surname: string;
|
5018
5031
|
middlename?: string | null | undefined;
|
5019
5032
|
}, {
|
5020
|
-
firstname
|
5021
|
-
surname
|
5033
|
+
firstname: string;
|
5034
|
+
surname: string;
|
5022
5035
|
middlename?: string | null | undefined;
|
5023
5036
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5024
5037
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -5045,8 +5058,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5045
5058
|
street?: string | null | undefined;
|
5046
5059
|
zipCode?: string | null | undefined;
|
5047
5060
|
} | {
|
5048
|
-
firstname
|
5049
|
-
surname
|
5061
|
+
firstname: string;
|
5062
|
+
surname: string;
|
5050
5063
|
middlename?: string | null | undefined;
|
5051
5064
|
} | {
|
5052
5065
|
country: string;
|
@@ -5092,8 +5105,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5092
5105
|
street?: string | null | undefined;
|
5093
5106
|
zipCode?: string | null | undefined;
|
5094
5107
|
} | {
|
5095
|
-
firstname
|
5096
|
-
surname
|
5108
|
+
firstname: string;
|
5109
|
+
surname: string;
|
5097
5110
|
middlename?: string | null | undefined;
|
5098
5111
|
} | {
|
5099
5112
|
country: string;
|
@@ -5143,8 +5156,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5143
5156
|
street?: string | null | undefined;
|
5144
5157
|
zipCode?: string | null | undefined;
|
5145
5158
|
} | {
|
5146
|
-
firstname
|
5147
|
-
surname
|
5159
|
+
firstname: string;
|
5160
|
+
surname: string;
|
5148
5161
|
middlename?: string | null | undefined;
|
5149
5162
|
} | {
|
5150
5163
|
country: string;
|
@@ -5188,8 +5201,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5188
5201
|
street?: string | null | undefined;
|
5189
5202
|
zipCode?: string | null | undefined;
|
5190
5203
|
} | {
|
5191
|
-
firstname
|
5192
|
-
surname
|
5204
|
+
firstname: string;
|
5205
|
+
surname: string;
|
5193
5206
|
middlename?: string | null | undefined;
|
5194
5207
|
} | {
|
5195
5208
|
country: string;
|
@@ -5348,16 +5361,16 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5348
5361
|
addressLine3?: string | null | undefined;
|
5349
5362
|
postcodeOrZip?: string | null | undefined;
|
5350
5363
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5351
|
-
firstname: z.
|
5352
|
-
surname: z.
|
5364
|
+
firstname: z.ZodString;
|
5365
|
+
surname: z.ZodString;
|
5353
5366
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5354
5367
|
}, "strip", z.ZodTypeAny, {
|
5355
|
-
firstname
|
5356
|
-
surname
|
5368
|
+
firstname: string;
|
5369
|
+
surname: string;
|
5357
5370
|
middlename?: string | null | undefined;
|
5358
5371
|
}, {
|
5359
|
-
firstname
|
5360
|
-
surname
|
5372
|
+
firstname: string;
|
5373
|
+
surname: string;
|
5361
5374
|
middlename?: string | null | undefined;
|
5362
5375
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5363
5376
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -5483,16 +5496,16 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5483
5496
|
addressLine3?: string | null | undefined;
|
5484
5497
|
postcodeOrZip?: string | null | undefined;
|
5485
5498
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5486
|
-
firstname: z.
|
5487
|
-
surname: z.
|
5499
|
+
firstname: z.ZodString;
|
5500
|
+
surname: z.ZodString;
|
5488
5501
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5489
5502
|
}, "strip", z.ZodTypeAny, {
|
5490
|
-
firstname
|
5491
|
-
surname
|
5503
|
+
firstname: string;
|
5504
|
+
surname: string;
|
5492
5505
|
middlename?: string | null | undefined;
|
5493
5506
|
}, {
|
5494
|
-
firstname
|
5495
|
-
surname
|
5507
|
+
firstname: string;
|
5508
|
+
surname: string;
|
5496
5509
|
middlename?: string | null | undefined;
|
5497
5510
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5498
5511
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -5518,8 +5531,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5518
5531
|
street?: string | null | undefined;
|
5519
5532
|
zipCode?: string | null | undefined;
|
5520
5533
|
} | {
|
5521
|
-
firstname
|
5522
|
-
surname
|
5534
|
+
firstname: string;
|
5535
|
+
surname: string;
|
5523
5536
|
middlename?: string | null | undefined;
|
5524
5537
|
} | {
|
5525
5538
|
country: string;
|
@@ -5564,8 +5577,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5564
5577
|
street?: string | null | undefined;
|
5565
5578
|
zipCode?: string | null | undefined;
|
5566
5579
|
} | {
|
5567
|
-
firstname
|
5568
|
-
surname
|
5580
|
+
firstname: string;
|
5581
|
+
surname: string;
|
5569
5582
|
middlename?: string | null | undefined;
|
5570
5583
|
} | {
|
5571
5584
|
country: string;
|
@@ -5615,8 +5628,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5615
5628
|
street?: string | null | undefined;
|
5616
5629
|
zipCode?: string | null | undefined;
|
5617
5630
|
} | {
|
5618
|
-
firstname
|
5619
|
-
surname
|
5631
|
+
firstname: string;
|
5632
|
+
surname: string;
|
5620
5633
|
middlename?: string | null | undefined;
|
5621
5634
|
} | {
|
5622
5635
|
country: string;
|
@@ -5660,8 +5673,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5660
5673
|
street?: string | null | undefined;
|
5661
5674
|
zipCode?: string | null | undefined;
|
5662
5675
|
} | {
|
5663
|
-
firstname
|
5664
|
-
surname
|
5676
|
+
firstname: string;
|
5677
|
+
surname: string;
|
5665
5678
|
middlename?: string | null | undefined;
|
5666
5679
|
} | {
|
5667
5680
|
country: string;
|
@@ -5819,16 +5832,16 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
5819
5832
|
addressLine3?: string | null | undefined;
|
5820
5833
|
postcodeOrZip?: string | null | undefined;
|
5821
5834
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5822
|
-
firstname: z.
|
5823
|
-
surname: z.
|
5835
|
+
firstname: z.ZodString;
|
5836
|
+
surname: z.ZodString;
|
5824
5837
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5825
5838
|
}, "strip", z.ZodTypeAny, {
|
5826
|
-
firstname
|
5827
|
-
surname
|
5839
|
+
firstname: string;
|
5840
|
+
surname: string;
|
5828
5841
|
middlename?: string | null | undefined;
|
5829
5842
|
}, {
|
5830
|
-
firstname
|
5831
|
-
surname
|
5843
|
+
firstname: string;
|
5844
|
+
surname: string;
|
5832
5845
|
middlename?: string | null | undefined;
|
5833
5846
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5834
5847
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -5954,16 +5967,16 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
5954
5967
|
addressLine3?: string | null | undefined;
|
5955
5968
|
postcodeOrZip?: string | null | undefined;
|
5956
5969
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5957
|
-
firstname: z.
|
5958
|
-
surname: z.
|
5970
|
+
firstname: z.ZodString;
|
5971
|
+
surname: z.ZodString;
|
5959
5972
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5960
5973
|
}, "strip", z.ZodTypeAny, {
|
5961
|
-
firstname
|
5962
|
-
surname
|
5974
|
+
firstname: string;
|
5975
|
+
surname: string;
|
5963
5976
|
middlename?: string | null | undefined;
|
5964
5977
|
}, {
|
5965
|
-
firstname
|
5966
|
-
surname
|
5978
|
+
firstname: string;
|
5979
|
+
surname: string;
|
5967
5980
|
middlename?: string | null | undefined;
|
5968
5981
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5969
5982
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -6004,8 +6017,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
6004
6017
|
street?: string | null | undefined;
|
6005
6018
|
zipCode?: string | null | undefined;
|
6006
6019
|
} | {
|
6007
|
-
firstname
|
6008
|
-
surname
|
6020
|
+
firstname: string;
|
6021
|
+
surname: string;
|
6009
6022
|
middlename?: string | null | undefined;
|
6010
6023
|
} | {
|
6011
6024
|
country: string;
|
@@ -6051,8 +6064,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
6051
6064
|
street?: string | null | undefined;
|
6052
6065
|
zipCode?: string | null | undefined;
|
6053
6066
|
} | {
|
6054
|
-
firstname
|
6055
|
-
surname
|
6067
|
+
firstname: string;
|
6068
|
+
surname: string;
|
6056
6069
|
middlename?: string | null | undefined;
|
6057
6070
|
} | {
|
6058
6071
|
country: string;
|
@@ -6107,8 +6120,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
6107
6120
|
street?: string | null | undefined;
|
6108
6121
|
zipCode?: string | null | undefined;
|
6109
6122
|
} | {
|
6110
|
-
firstname
|
6111
|
-
surname
|
6123
|
+
firstname: string;
|
6124
|
+
surname: string;
|
6112
6125
|
middlename?: string | null | undefined;
|
6113
6126
|
} | {
|
6114
6127
|
country: string;
|
@@ -6152,8 +6165,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
6152
6165
|
street?: string | null | undefined;
|
6153
6166
|
zipCode?: string | null | undefined;
|
6154
6167
|
} | {
|
6155
|
-
firstname
|
6156
|
-
surname
|
6168
|
+
firstname: string;
|
6169
|
+
surname: string;
|
6157
6170
|
middlename?: string | null | undefined;
|
6158
6171
|
} | {
|
6159
6172
|
country: string;
|
@@ -6311,16 +6324,16 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6311
6324
|
addressLine3?: string | null | undefined;
|
6312
6325
|
postcodeOrZip?: string | null | undefined;
|
6313
6326
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6314
|
-
firstname: z.
|
6315
|
-
surname: z.
|
6327
|
+
firstname: z.ZodString;
|
6328
|
+
surname: z.ZodString;
|
6316
6329
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6317
6330
|
}, "strip", z.ZodTypeAny, {
|
6318
|
-
firstname
|
6319
|
-
surname
|
6331
|
+
firstname: string;
|
6332
|
+
surname: string;
|
6320
6333
|
middlename?: string | null | undefined;
|
6321
6334
|
}, {
|
6322
|
-
firstname
|
6323
|
-
surname
|
6335
|
+
firstname: string;
|
6336
|
+
surname: string;
|
6324
6337
|
middlename?: string | null | undefined;
|
6325
6338
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6326
6339
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -6446,16 +6459,16 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6446
6459
|
addressLine3?: string | null | undefined;
|
6447
6460
|
postcodeOrZip?: string | null | undefined;
|
6448
6461
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6449
|
-
firstname: z.
|
6450
|
-
surname: z.
|
6462
|
+
firstname: z.ZodString;
|
6463
|
+
surname: z.ZodString;
|
6451
6464
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6452
6465
|
}, "strip", z.ZodTypeAny, {
|
6453
|
-
firstname
|
6454
|
-
surname
|
6466
|
+
firstname: string;
|
6467
|
+
surname: string;
|
6455
6468
|
middlename?: string | null | undefined;
|
6456
6469
|
}, {
|
6457
|
-
firstname
|
6458
|
-
surname
|
6470
|
+
firstname: string;
|
6471
|
+
surname: string;
|
6459
6472
|
middlename?: string | null | undefined;
|
6460
6473
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6461
6474
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -6482,8 +6495,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6482
6495
|
street?: string | null | undefined;
|
6483
6496
|
zipCode?: string | null | undefined;
|
6484
6497
|
} | {
|
6485
|
-
firstname
|
6486
|
-
surname
|
6498
|
+
firstname: string;
|
6499
|
+
surname: string;
|
6487
6500
|
middlename?: string | null | undefined;
|
6488
6501
|
} | {
|
6489
6502
|
country: string;
|
@@ -6529,8 +6542,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6529
6542
|
street?: string | null | undefined;
|
6530
6543
|
zipCode?: string | null | undefined;
|
6531
6544
|
} | {
|
6532
|
-
firstname
|
6533
|
-
surname
|
6545
|
+
firstname: string;
|
6546
|
+
surname: string;
|
6534
6547
|
middlename?: string | null | undefined;
|
6535
6548
|
} | {
|
6536
6549
|
country: string;
|
@@ -6581,8 +6594,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6581
6594
|
street?: string | null | undefined;
|
6582
6595
|
zipCode?: string | null | undefined;
|
6583
6596
|
} | {
|
6584
|
-
firstname
|
6585
|
-
surname
|
6597
|
+
firstname: string;
|
6598
|
+
surname: string;
|
6586
6599
|
middlename?: string | null | undefined;
|
6587
6600
|
} | {
|
6588
6601
|
country: string;
|
@@ -6626,8 +6639,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6626
6639
|
street?: string | null | undefined;
|
6627
6640
|
zipCode?: string | null | undefined;
|
6628
6641
|
} | {
|
6629
|
-
firstname
|
6630
|
-
surname
|
6642
|
+
firstname: string;
|
6643
|
+
surname: string;
|
6631
6644
|
middlename?: string | null | undefined;
|
6632
6645
|
} | {
|
6633
6646
|
country: string;
|
@@ -6785,16 +6798,16 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
6785
6798
|
addressLine3?: string | null | undefined;
|
6786
6799
|
postcodeOrZip?: string | null | undefined;
|
6787
6800
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6788
|
-
firstname: z.
|
6789
|
-
surname: z.
|
6801
|
+
firstname: z.ZodString;
|
6802
|
+
surname: z.ZodString;
|
6790
6803
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6791
6804
|
}, "strip", z.ZodTypeAny, {
|
6792
|
-
firstname
|
6793
|
-
surname
|
6805
|
+
firstname: string;
|
6806
|
+
surname: string;
|
6794
6807
|
middlename?: string | null | undefined;
|
6795
6808
|
}, {
|
6796
|
-
firstname
|
6797
|
-
surname
|
6809
|
+
firstname: string;
|
6810
|
+
surname: string;
|
6798
6811
|
middlename?: string | null | undefined;
|
6799
6812
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6800
6813
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -6920,16 +6933,16 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
6920
6933
|
addressLine3?: string | null | undefined;
|
6921
6934
|
postcodeOrZip?: string | null | undefined;
|
6922
6935
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6923
|
-
firstname: z.
|
6924
|
-
surname: z.
|
6936
|
+
firstname: z.ZodString;
|
6937
|
+
surname: z.ZodString;
|
6925
6938
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6926
6939
|
}, "strip", z.ZodTypeAny, {
|
6927
|
-
firstname
|
6928
|
-
surname
|
6940
|
+
firstname: string;
|
6941
|
+
surname: string;
|
6929
6942
|
middlename?: string | null | undefined;
|
6930
6943
|
}, {
|
6931
|
-
firstname
|
6932
|
-
surname
|
6944
|
+
firstname: string;
|
6945
|
+
surname: string;
|
6933
6946
|
middlename?: string | null | undefined;
|
6934
6947
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6935
6948
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -6955,8 +6968,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
6955
6968
|
street?: string | null | undefined;
|
6956
6969
|
zipCode?: string | null | undefined;
|
6957
6970
|
} | {
|
6958
|
-
firstname
|
6959
|
-
surname
|
6971
|
+
firstname: string;
|
6972
|
+
surname: string;
|
6960
6973
|
middlename?: string | null | undefined;
|
6961
6974
|
} | {
|
6962
6975
|
country: string;
|
@@ -7001,8 +7014,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
7001
7014
|
street?: string | null | undefined;
|
7002
7015
|
zipCode?: string | null | undefined;
|
7003
7016
|
} | {
|
7004
|
-
firstname
|
7005
|
-
surname
|
7017
|
+
firstname: string;
|
7018
|
+
surname: string;
|
7006
7019
|
middlename?: string | null | undefined;
|
7007
7020
|
} | {
|
7008
7021
|
country: string;
|
@@ -7052,8 +7065,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
7052
7065
|
street?: string | null | undefined;
|
7053
7066
|
zipCode?: string | null | undefined;
|
7054
7067
|
} | {
|
7055
|
-
firstname
|
7056
|
-
surname
|
7068
|
+
firstname: string;
|
7069
|
+
surname: string;
|
7057
7070
|
middlename?: string | null | undefined;
|
7058
7071
|
} | {
|
7059
7072
|
country: string;
|
@@ -7097,8 +7110,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
7097
7110
|
street?: string | null | undefined;
|
7098
7111
|
zipCode?: string | null | undefined;
|
7099
7112
|
} | {
|
7100
|
-
firstname
|
7101
|
-
surname
|
7113
|
+
firstname: string;
|
7114
|
+
surname: string;
|
7102
7115
|
middlename?: string | null | undefined;
|
7103
7116
|
} | {
|
7104
7117
|
country: string;
|
@@ -7272,16 +7285,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7272
7285
|
addressLine3?: string | null | undefined;
|
7273
7286
|
postcodeOrZip?: string | null | undefined;
|
7274
7287
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7275
|
-
firstname: z.
|
7276
|
-
surname: z.
|
7288
|
+
firstname: z.ZodString;
|
7289
|
+
surname: z.ZodString;
|
7277
7290
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7278
7291
|
}, "strip", z.ZodTypeAny, {
|
7279
|
-
firstname
|
7280
|
-
surname
|
7292
|
+
firstname: string;
|
7293
|
+
surname: string;
|
7281
7294
|
middlename?: string | null | undefined;
|
7282
7295
|
}, {
|
7283
|
-
firstname
|
7284
|
-
surname
|
7296
|
+
firstname: string;
|
7297
|
+
surname: string;
|
7285
7298
|
middlename?: string | null | undefined;
|
7286
7299
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
7287
7300
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -7407,16 +7420,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7407
7420
|
addressLine3?: string | null | undefined;
|
7408
7421
|
postcodeOrZip?: string | null | undefined;
|
7409
7422
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7410
|
-
firstname: z.
|
7411
|
-
surname: z.
|
7423
|
+
firstname: z.ZodString;
|
7424
|
+
surname: z.ZodString;
|
7412
7425
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7413
7426
|
}, "strip", z.ZodTypeAny, {
|
7414
|
-
firstname
|
7415
|
-
surname
|
7427
|
+
firstname: string;
|
7428
|
+
surname: string;
|
7416
7429
|
middlename?: string | null | undefined;
|
7417
7430
|
}, {
|
7418
|
-
firstname
|
7419
|
-
surname
|
7431
|
+
firstname: string;
|
7432
|
+
surname: string;
|
7420
7433
|
middlename?: string | null | undefined;
|
7421
7434
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
7422
7435
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -7443,8 +7456,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7443
7456
|
street?: string | null | undefined;
|
7444
7457
|
zipCode?: string | null | undefined;
|
7445
7458
|
} | {
|
7446
|
-
firstname
|
7447
|
-
surname
|
7459
|
+
firstname: string;
|
7460
|
+
surname: string;
|
7448
7461
|
middlename?: string | null | undefined;
|
7449
7462
|
} | {
|
7450
7463
|
country: string;
|
@@ -7490,8 +7503,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7490
7503
|
street?: string | null | undefined;
|
7491
7504
|
zipCode?: string | null | undefined;
|
7492
7505
|
} | {
|
7493
|
-
firstname
|
7494
|
-
surname
|
7506
|
+
firstname: string;
|
7507
|
+
surname: string;
|
7495
7508
|
middlename?: string | null | undefined;
|
7496
7509
|
} | {
|
7497
7510
|
country: string;
|
@@ -7542,8 +7555,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7542
7555
|
street?: string | null | undefined;
|
7543
7556
|
zipCode?: string | null | undefined;
|
7544
7557
|
} | {
|
7545
|
-
firstname
|
7546
|
-
surname
|
7558
|
+
firstname: string;
|
7559
|
+
surname: string;
|
7547
7560
|
middlename?: string | null | undefined;
|
7548
7561
|
} | {
|
7549
7562
|
country: string;
|
@@ -7587,8 +7600,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7587
7600
|
street?: string | null | undefined;
|
7588
7601
|
zipCode?: string | null | undefined;
|
7589
7602
|
} | {
|
7590
|
-
firstname
|
7591
|
-
surname
|
7603
|
+
firstname: string;
|
7604
|
+
surname: string;
|
7592
7605
|
middlename?: string | null | undefined;
|
7593
7606
|
} | {
|
7594
7607
|
country: string;
|
@@ -7744,16 +7757,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7744
7757
|
addressLine3?: string | null | undefined;
|
7745
7758
|
postcodeOrZip?: string | null | undefined;
|
7746
7759
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7747
|
-
firstname: z.
|
7748
|
-
surname: z.
|
7760
|
+
firstname: z.ZodString;
|
7761
|
+
surname: z.ZodString;
|
7749
7762
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7750
7763
|
}, "strip", z.ZodTypeAny, {
|
7751
|
-
firstname
|
7752
|
-
surname
|
7764
|
+
firstname: string;
|
7765
|
+
surname: string;
|
7753
7766
|
middlename?: string | null | undefined;
|
7754
7767
|
}, {
|
7755
|
-
firstname
|
7756
|
-
surname
|
7768
|
+
firstname: string;
|
7769
|
+
surname: string;
|
7757
7770
|
middlename?: string | null | undefined;
|
7758
7771
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
7759
7772
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -7879,16 +7892,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7879
7892
|
addressLine3?: string | null | undefined;
|
7880
7893
|
postcodeOrZip?: string | null | undefined;
|
7881
7894
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7882
|
-
firstname: z.
|
7883
|
-
surname: z.
|
7895
|
+
firstname: z.ZodString;
|
7896
|
+
surname: z.ZodString;
|
7884
7897
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7885
7898
|
}, "strip", z.ZodTypeAny, {
|
7886
|
-
firstname
|
7887
|
-
surname
|
7899
|
+
firstname: string;
|
7900
|
+
surname: string;
|
7888
7901
|
middlename?: string | null | undefined;
|
7889
7902
|
}, {
|
7890
|
-
firstname
|
7891
|
-
surname
|
7903
|
+
firstname: string;
|
7904
|
+
surname: string;
|
7892
7905
|
middlename?: string | null | undefined;
|
7893
7906
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
7894
7907
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -7915,8 +7928,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7915
7928
|
street?: string | null | undefined;
|
7916
7929
|
zipCode?: string | null | undefined;
|
7917
7930
|
} | {
|
7918
|
-
firstname
|
7919
|
-
surname
|
7931
|
+
firstname: string;
|
7932
|
+
surname: string;
|
7920
7933
|
middlename?: string | null | undefined;
|
7921
7934
|
} | {
|
7922
7935
|
country: string;
|
@@ -7962,8 +7975,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7962
7975
|
street?: string | null | undefined;
|
7963
7976
|
zipCode?: string | null | undefined;
|
7964
7977
|
} | {
|
7965
|
-
firstname
|
7966
|
-
surname
|
7978
|
+
firstname: string;
|
7979
|
+
surname: string;
|
7967
7980
|
middlename?: string | null | undefined;
|
7968
7981
|
} | {
|
7969
7982
|
country: string;
|
@@ -8014,8 +8027,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8014
8027
|
street?: string | null | undefined;
|
8015
8028
|
zipCode?: string | null | undefined;
|
8016
8029
|
} | {
|
8017
|
-
firstname
|
8018
|
-
surname
|
8030
|
+
firstname: string;
|
8031
|
+
surname: string;
|
8019
8032
|
middlename?: string | null | undefined;
|
8020
8033
|
} | {
|
8021
8034
|
country: string;
|
@@ -8059,8 +8072,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8059
8072
|
street?: string | null | undefined;
|
8060
8073
|
zipCode?: string | null | undefined;
|
8061
8074
|
} | {
|
8062
|
-
firstname
|
8063
|
-
surname
|
8075
|
+
firstname: string;
|
8076
|
+
surname: string;
|
8064
8077
|
middlename?: string | null | undefined;
|
8065
8078
|
} | {
|
8066
8079
|
country: string;
|
@@ -8216,16 +8229,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8216
8229
|
addressLine3?: string | null | undefined;
|
8217
8230
|
postcodeOrZip?: string | null | undefined;
|
8218
8231
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8219
|
-
firstname: z.
|
8220
|
-
surname: z.
|
8232
|
+
firstname: z.ZodString;
|
8233
|
+
surname: z.ZodString;
|
8221
8234
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8222
8235
|
}, "strip", z.ZodTypeAny, {
|
8223
|
-
firstname
|
8224
|
-
surname
|
8236
|
+
firstname: string;
|
8237
|
+
surname: string;
|
8225
8238
|
middlename?: string | null | undefined;
|
8226
8239
|
}, {
|
8227
|
-
firstname
|
8228
|
-
surname
|
8240
|
+
firstname: string;
|
8241
|
+
surname: string;
|
8229
8242
|
middlename?: string | null | undefined;
|
8230
8243
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
8231
8244
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -8351,16 +8364,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8351
8364
|
addressLine3?: string | null | undefined;
|
8352
8365
|
postcodeOrZip?: string | null | undefined;
|
8353
8366
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8354
|
-
firstname: z.
|
8355
|
-
surname: z.
|
8367
|
+
firstname: z.ZodString;
|
8368
|
+
surname: z.ZodString;
|
8356
8369
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8357
8370
|
}, "strip", z.ZodTypeAny, {
|
8358
|
-
firstname
|
8359
|
-
surname
|
8371
|
+
firstname: string;
|
8372
|
+
surname: string;
|
8360
8373
|
middlename?: string | null | undefined;
|
8361
8374
|
}, {
|
8362
|
-
firstname
|
8363
|
-
surname
|
8375
|
+
firstname: string;
|
8376
|
+
surname: string;
|
8364
8377
|
middlename?: string | null | undefined;
|
8365
8378
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
8366
8379
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -8387,8 +8400,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8387
8400
|
street?: string | null | undefined;
|
8388
8401
|
zipCode?: string | null | undefined;
|
8389
8402
|
} | {
|
8390
|
-
firstname
|
8391
|
-
surname
|
8403
|
+
firstname: string;
|
8404
|
+
surname: string;
|
8392
8405
|
middlename?: string | null | undefined;
|
8393
8406
|
} | {
|
8394
8407
|
country: string;
|
@@ -8433,8 +8446,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8433
8446
|
street?: string | null | undefined;
|
8434
8447
|
zipCode?: string | null | undefined;
|
8435
8448
|
} | {
|
8436
|
-
firstname
|
8437
|
-
surname
|
8449
|
+
firstname: string;
|
8450
|
+
surname: string;
|
8438
8451
|
middlename?: string | null | undefined;
|
8439
8452
|
} | {
|
8440
8453
|
country: string;
|
@@ -8485,8 +8498,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8485
8498
|
street?: string | null | undefined;
|
8486
8499
|
zipCode?: string | null | undefined;
|
8487
8500
|
} | {
|
8488
|
-
firstname
|
8489
|
-
surname
|
8501
|
+
firstname: string;
|
8502
|
+
surname: string;
|
8490
8503
|
middlename?: string | null | undefined;
|
8491
8504
|
} | {
|
8492
8505
|
country: string;
|
@@ -8530,8 +8543,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8530
8543
|
street?: string | null | undefined;
|
8531
8544
|
zipCode?: string | null | undefined;
|
8532
8545
|
} | {
|
8533
|
-
firstname
|
8534
|
-
surname
|
8546
|
+
firstname: string;
|
8547
|
+
surname: string;
|
8535
8548
|
middlename?: string | null | undefined;
|
8536
8549
|
} | {
|
8537
8550
|
country: string;
|
@@ -8688,16 +8701,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8688
8701
|
addressLine3?: string | null | undefined;
|
8689
8702
|
postcodeOrZip?: string | null | undefined;
|
8690
8703
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8691
|
-
firstname: z.
|
8692
|
-
surname: z.
|
8704
|
+
firstname: z.ZodString;
|
8705
|
+
surname: z.ZodString;
|
8693
8706
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8694
8707
|
}, "strip", z.ZodTypeAny, {
|
8695
|
-
firstname
|
8696
|
-
surname
|
8708
|
+
firstname: string;
|
8709
|
+
surname: string;
|
8697
8710
|
middlename?: string | null | undefined;
|
8698
8711
|
}, {
|
8699
|
-
firstname
|
8700
|
-
surname
|
8712
|
+
firstname: string;
|
8713
|
+
surname: string;
|
8701
8714
|
middlename?: string | null | undefined;
|
8702
8715
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
8703
8716
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -8823,16 +8836,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8823
8836
|
addressLine3?: string | null | undefined;
|
8824
8837
|
postcodeOrZip?: string | null | undefined;
|
8825
8838
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8826
|
-
firstname: z.
|
8827
|
-
surname: z.
|
8839
|
+
firstname: z.ZodString;
|
8840
|
+
surname: z.ZodString;
|
8828
8841
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8829
8842
|
}, "strip", z.ZodTypeAny, {
|
8830
|
-
firstname
|
8831
|
-
surname
|
8843
|
+
firstname: string;
|
8844
|
+
surname: string;
|
8832
8845
|
middlename?: string | null | undefined;
|
8833
8846
|
}, {
|
8834
|
-
firstname
|
8835
|
-
surname
|
8847
|
+
firstname: string;
|
8848
|
+
surname: string;
|
8836
8849
|
middlename?: string | null | undefined;
|
8837
8850
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
8838
8851
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -8858,8 +8871,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8858
8871
|
street?: string | null | undefined;
|
8859
8872
|
zipCode?: string | null | undefined;
|
8860
8873
|
} | {
|
8861
|
-
firstname
|
8862
|
-
surname
|
8874
|
+
firstname: string;
|
8875
|
+
surname: string;
|
8863
8876
|
middlename?: string | null | undefined;
|
8864
8877
|
} | {
|
8865
8878
|
country: string;
|
@@ -8904,8 +8917,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8904
8917
|
street?: string | null | undefined;
|
8905
8918
|
zipCode?: string | null | undefined;
|
8906
8919
|
} | {
|
8907
|
-
firstname
|
8908
|
-
surname
|
8920
|
+
firstname: string;
|
8921
|
+
surname: string;
|
8909
8922
|
middlename?: string | null | undefined;
|
8910
8923
|
} | {
|
8911
8924
|
country: string;
|
@@ -8955,8 +8968,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8955
8968
|
street?: string | null | undefined;
|
8956
8969
|
zipCode?: string | null | undefined;
|
8957
8970
|
} | {
|
8958
|
-
firstname
|
8959
|
-
surname
|
8971
|
+
firstname: string;
|
8972
|
+
surname: string;
|
8960
8973
|
middlename?: string | null | undefined;
|
8961
8974
|
} | {
|
8962
8975
|
country: string;
|
@@ -9000,8 +9013,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9000
9013
|
street?: string | null | undefined;
|
9001
9014
|
zipCode?: string | null | undefined;
|
9002
9015
|
} | {
|
9003
|
-
firstname
|
9004
|
-
surname
|
9016
|
+
firstname: string;
|
9017
|
+
surname: string;
|
9005
9018
|
middlename?: string | null | undefined;
|
9006
9019
|
} | {
|
9007
9020
|
country: string;
|
@@ -9157,16 +9170,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9157
9170
|
addressLine3?: string | null | undefined;
|
9158
9171
|
postcodeOrZip?: string | null | undefined;
|
9159
9172
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9160
|
-
firstname: z.
|
9161
|
-
surname: z.
|
9173
|
+
firstname: z.ZodString;
|
9174
|
+
surname: z.ZodString;
|
9162
9175
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9163
9176
|
}, "strip", z.ZodTypeAny, {
|
9164
|
-
firstname
|
9165
|
-
surname
|
9177
|
+
firstname: string;
|
9178
|
+
surname: string;
|
9166
9179
|
middlename?: string | null | undefined;
|
9167
9180
|
}, {
|
9168
|
-
firstname
|
9169
|
-
surname
|
9181
|
+
firstname: string;
|
9182
|
+
surname: string;
|
9170
9183
|
middlename?: string | null | undefined;
|
9171
9184
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
9172
9185
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -9292,16 +9305,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9292
9305
|
addressLine3?: string | null | undefined;
|
9293
9306
|
postcodeOrZip?: string | null | undefined;
|
9294
9307
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9295
|
-
firstname: z.
|
9296
|
-
surname: z.
|
9308
|
+
firstname: z.ZodString;
|
9309
|
+
surname: z.ZodString;
|
9297
9310
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9298
9311
|
}, "strip", z.ZodTypeAny, {
|
9299
|
-
firstname
|
9300
|
-
surname
|
9312
|
+
firstname: string;
|
9313
|
+
surname: string;
|
9301
9314
|
middlename?: string | null | undefined;
|
9302
9315
|
}, {
|
9303
|
-
firstname
|
9304
|
-
surname
|
9316
|
+
firstname: string;
|
9317
|
+
surname: string;
|
9305
9318
|
middlename?: string | null | undefined;
|
9306
9319
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
9307
9320
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -9327,8 +9340,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9327
9340
|
street?: string | null | undefined;
|
9328
9341
|
zipCode?: string | null | undefined;
|
9329
9342
|
} | {
|
9330
|
-
firstname
|
9331
|
-
surname
|
9343
|
+
firstname: string;
|
9344
|
+
surname: string;
|
9332
9345
|
middlename?: string | null | undefined;
|
9333
9346
|
} | {
|
9334
9347
|
country: string;
|
@@ -9373,8 +9386,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9373
9386
|
street?: string | null | undefined;
|
9374
9387
|
zipCode?: string | null | undefined;
|
9375
9388
|
} | {
|
9376
|
-
firstname
|
9377
|
-
surname
|
9389
|
+
firstname: string;
|
9390
|
+
surname: string;
|
9378
9391
|
middlename?: string | null | undefined;
|
9379
9392
|
} | {
|
9380
9393
|
country: string;
|
@@ -9424,8 +9437,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9424
9437
|
street?: string | null | undefined;
|
9425
9438
|
zipCode?: string | null | undefined;
|
9426
9439
|
} | {
|
9427
|
-
firstname
|
9428
|
-
surname
|
9440
|
+
firstname: string;
|
9441
|
+
surname: string;
|
9429
9442
|
middlename?: string | null | undefined;
|
9430
9443
|
} | {
|
9431
9444
|
country: string;
|
@@ -9469,8 +9482,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9469
9482
|
street?: string | null | undefined;
|
9470
9483
|
zipCode?: string | null | undefined;
|
9471
9484
|
} | {
|
9472
|
-
firstname
|
9473
|
-
surname
|
9485
|
+
firstname: string;
|
9486
|
+
surname: string;
|
9474
9487
|
middlename?: string | null | undefined;
|
9475
9488
|
} | {
|
9476
9489
|
country: string;
|
@@ -9626,16 +9639,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9626
9639
|
addressLine3?: string | null | undefined;
|
9627
9640
|
postcodeOrZip?: string | null | undefined;
|
9628
9641
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9629
|
-
firstname: z.
|
9630
|
-
surname: z.
|
9642
|
+
firstname: z.ZodString;
|
9643
|
+
surname: z.ZodString;
|
9631
9644
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9632
9645
|
}, "strip", z.ZodTypeAny, {
|
9633
|
-
firstname
|
9634
|
-
surname
|
9646
|
+
firstname: string;
|
9647
|
+
surname: string;
|
9635
9648
|
middlename?: string | null | undefined;
|
9636
9649
|
}, {
|
9637
|
-
firstname
|
9638
|
-
surname
|
9650
|
+
firstname: string;
|
9651
|
+
surname: string;
|
9639
9652
|
middlename?: string | null | undefined;
|
9640
9653
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
9641
9654
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -9761,16 +9774,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9761
9774
|
addressLine3?: string | null | undefined;
|
9762
9775
|
postcodeOrZip?: string | null | undefined;
|
9763
9776
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9764
|
-
firstname: z.
|
9765
|
-
surname: z.
|
9777
|
+
firstname: z.ZodString;
|
9778
|
+
surname: z.ZodString;
|
9766
9779
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9767
9780
|
}, "strip", z.ZodTypeAny, {
|
9768
|
-
firstname
|
9769
|
-
surname
|
9781
|
+
firstname: string;
|
9782
|
+
surname: string;
|
9770
9783
|
middlename?: string | null | undefined;
|
9771
9784
|
}, {
|
9772
|
-
firstname
|
9773
|
-
surname
|
9785
|
+
firstname: string;
|
9786
|
+
surname: string;
|
9774
9787
|
middlename?: string | null | undefined;
|
9775
9788
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
9776
9789
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -9810,8 +9823,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9810
9823
|
street?: string | null | undefined;
|
9811
9824
|
zipCode?: string | null | undefined;
|
9812
9825
|
} | {
|
9813
|
-
firstname
|
9814
|
-
surname
|
9826
|
+
firstname: string;
|
9827
|
+
surname: string;
|
9815
9828
|
middlename?: string | null | undefined;
|
9816
9829
|
} | {
|
9817
9830
|
country: string;
|
@@ -9856,8 +9869,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9856
9869
|
street?: string | null | undefined;
|
9857
9870
|
zipCode?: string | null | undefined;
|
9858
9871
|
} | {
|
9859
|
-
firstname
|
9860
|
-
surname
|
9872
|
+
firstname: string;
|
9873
|
+
surname: string;
|
9861
9874
|
middlename?: string | null | undefined;
|
9862
9875
|
} | {
|
9863
9876
|
country: string;
|
@@ -9911,8 +9924,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9911
9924
|
street?: string | null | undefined;
|
9912
9925
|
zipCode?: string | null | undefined;
|
9913
9926
|
} | {
|
9914
|
-
firstname
|
9915
|
-
surname
|
9927
|
+
firstname: string;
|
9928
|
+
surname: string;
|
9916
9929
|
middlename?: string | null | undefined;
|
9917
9930
|
} | {
|
9918
9931
|
country: string;
|
@@ -9956,8 +9969,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9956
9969
|
street?: string | null | undefined;
|
9957
9970
|
zipCode?: string | null | undefined;
|
9958
9971
|
} | {
|
9959
|
-
firstname
|
9960
|
-
surname
|
9972
|
+
firstname: string;
|
9973
|
+
surname: string;
|
9961
9974
|
middlename?: string | null | undefined;
|
9962
9975
|
} | {
|
9963
9976
|
country: string;
|
@@ -10113,16 +10126,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10113
10126
|
addressLine3?: string | null | undefined;
|
10114
10127
|
postcodeOrZip?: string | null | undefined;
|
10115
10128
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10116
|
-
firstname: z.
|
10117
|
-
surname: z.
|
10129
|
+
firstname: z.ZodString;
|
10130
|
+
surname: z.ZodString;
|
10118
10131
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10119
10132
|
}, "strip", z.ZodTypeAny, {
|
10120
|
-
firstname
|
10121
|
-
surname
|
10133
|
+
firstname: string;
|
10134
|
+
surname: string;
|
10122
10135
|
middlename?: string | null | undefined;
|
10123
10136
|
}, {
|
10124
|
-
firstname
|
10125
|
-
surname
|
10137
|
+
firstname: string;
|
10138
|
+
surname: string;
|
10126
10139
|
middlename?: string | null | undefined;
|
10127
10140
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
10128
10141
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -10248,16 +10261,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10248
10261
|
addressLine3?: string | null | undefined;
|
10249
10262
|
postcodeOrZip?: string | null | undefined;
|
10250
10263
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10251
|
-
firstname: z.
|
10252
|
-
surname: z.
|
10264
|
+
firstname: z.ZodString;
|
10265
|
+
surname: z.ZodString;
|
10253
10266
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10254
10267
|
}, "strip", z.ZodTypeAny, {
|
10255
|
-
firstname
|
10256
|
-
surname
|
10268
|
+
firstname: string;
|
10269
|
+
surname: string;
|
10257
10270
|
middlename?: string | null | undefined;
|
10258
10271
|
}, {
|
10259
|
-
firstname
|
10260
|
-
surname
|
10272
|
+
firstname: string;
|
10273
|
+
surname: string;
|
10261
10274
|
middlename?: string | null | undefined;
|
10262
10275
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
10263
10276
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -10283,8 +10296,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10283
10296
|
street?: string | null | undefined;
|
10284
10297
|
zipCode?: string | null | undefined;
|
10285
10298
|
} | {
|
10286
|
-
firstname
|
10287
|
-
surname
|
10299
|
+
firstname: string;
|
10300
|
+
surname: string;
|
10288
10301
|
middlename?: string | null | undefined;
|
10289
10302
|
} | {
|
10290
10303
|
country: string;
|
@@ -10329,8 +10342,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10329
10342
|
street?: string | null | undefined;
|
10330
10343
|
zipCode?: string | null | undefined;
|
10331
10344
|
} | {
|
10332
|
-
firstname
|
10333
|
-
surname
|
10345
|
+
firstname: string;
|
10346
|
+
surname: string;
|
10334
10347
|
middlename?: string | null | undefined;
|
10335
10348
|
} | {
|
10336
10349
|
country: string;
|
@@ -10380,8 +10393,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10380
10393
|
street?: string | null | undefined;
|
10381
10394
|
zipCode?: string | null | undefined;
|
10382
10395
|
} | {
|
10383
|
-
firstname
|
10384
|
-
surname
|
10396
|
+
firstname: string;
|
10397
|
+
surname: string;
|
10385
10398
|
middlename?: string | null | undefined;
|
10386
10399
|
} | {
|
10387
10400
|
country: string;
|
@@ -10425,8 +10438,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10425
10438
|
street?: string | null | undefined;
|
10426
10439
|
zipCode?: string | null | undefined;
|
10427
10440
|
} | {
|
10428
|
-
firstname
|
10429
|
-
surname
|
10441
|
+
firstname: string;
|
10442
|
+
surname: string;
|
10430
10443
|
middlename?: string | null | undefined;
|
10431
10444
|
} | {
|
10432
10445
|
country: string;
|
@@ -10582,16 +10595,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10582
10595
|
addressLine3?: string | null | undefined;
|
10583
10596
|
postcodeOrZip?: string | null | undefined;
|
10584
10597
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10585
|
-
firstname: z.
|
10586
|
-
surname: z.
|
10598
|
+
firstname: z.ZodString;
|
10599
|
+
surname: z.ZodString;
|
10587
10600
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10588
10601
|
}, "strip", z.ZodTypeAny, {
|
10589
|
-
firstname
|
10590
|
-
surname
|
10602
|
+
firstname: string;
|
10603
|
+
surname: string;
|
10591
10604
|
middlename?: string | null | undefined;
|
10592
10605
|
}, {
|
10593
|
-
firstname
|
10594
|
-
surname
|
10606
|
+
firstname: string;
|
10607
|
+
surname: string;
|
10595
10608
|
middlename?: string | null | undefined;
|
10596
10609
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
10597
10610
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -10717,16 +10730,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10717
10730
|
addressLine3?: string | null | undefined;
|
10718
10731
|
postcodeOrZip?: string | null | undefined;
|
10719
10732
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10720
|
-
firstname: z.
|
10721
|
-
surname: z.
|
10733
|
+
firstname: z.ZodString;
|
10734
|
+
surname: z.ZodString;
|
10722
10735
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10723
10736
|
}, "strip", z.ZodTypeAny, {
|
10724
|
-
firstname
|
10725
|
-
surname
|
10737
|
+
firstname: string;
|
10738
|
+
surname: string;
|
10726
10739
|
middlename?: string | null | undefined;
|
10727
10740
|
}, {
|
10728
|
-
firstname
|
10729
|
-
surname
|
10741
|
+
firstname: string;
|
10742
|
+
surname: string;
|
10730
10743
|
middlename?: string | null | undefined;
|
10731
10744
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
10732
10745
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -10766,8 +10779,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10766
10779
|
street?: string | null | undefined;
|
10767
10780
|
zipCode?: string | null | undefined;
|
10768
10781
|
} | {
|
10769
|
-
firstname
|
10770
|
-
surname
|
10782
|
+
firstname: string;
|
10783
|
+
surname: string;
|
10771
10784
|
middlename?: string | null | undefined;
|
10772
10785
|
} | {
|
10773
10786
|
country: string;
|
@@ -10812,8 +10825,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10812
10825
|
street?: string | null | undefined;
|
10813
10826
|
zipCode?: string | null | undefined;
|
10814
10827
|
} | {
|
10815
|
-
firstname
|
10816
|
-
surname
|
10828
|
+
firstname: string;
|
10829
|
+
surname: string;
|
10817
10830
|
middlename?: string | null | undefined;
|
10818
10831
|
} | {
|
10819
10832
|
country: string;
|
@@ -10867,8 +10880,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10867
10880
|
street?: string | null | undefined;
|
10868
10881
|
zipCode?: string | null | undefined;
|
10869
10882
|
} | {
|
10870
|
-
firstname
|
10871
|
-
surname
|
10883
|
+
firstname: string;
|
10884
|
+
surname: string;
|
10872
10885
|
middlename?: string | null | undefined;
|
10873
10886
|
} | {
|
10874
10887
|
country: string;
|
@@ -10912,8 +10925,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10912
10925
|
street?: string | null | undefined;
|
10913
10926
|
zipCode?: string | null | undefined;
|
10914
10927
|
} | {
|
10915
|
-
firstname
|
10916
|
-
surname
|
10928
|
+
firstname: string;
|
10929
|
+
surname: string;
|
10917
10930
|
middlename?: string | null | undefined;
|
10918
10931
|
} | {
|
10919
10932
|
country: string;
|
@@ -11069,16 +11082,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11069
11082
|
addressLine3?: string | null | undefined;
|
11070
11083
|
postcodeOrZip?: string | null | undefined;
|
11071
11084
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11072
|
-
firstname: z.
|
11073
|
-
surname: z.
|
11085
|
+
firstname: z.ZodString;
|
11086
|
+
surname: z.ZodString;
|
11074
11087
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11075
11088
|
}, "strip", z.ZodTypeAny, {
|
11076
|
-
firstname
|
11077
|
-
surname
|
11089
|
+
firstname: string;
|
11090
|
+
surname: string;
|
11078
11091
|
middlename?: string | null | undefined;
|
11079
11092
|
}, {
|
11080
|
-
firstname
|
11081
|
-
surname
|
11093
|
+
firstname: string;
|
11094
|
+
surname: string;
|
11082
11095
|
middlename?: string | null | undefined;
|
11083
11096
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
11084
11097
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -11204,16 +11217,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11204
11217
|
addressLine3?: string | null | undefined;
|
11205
11218
|
postcodeOrZip?: string | null | undefined;
|
11206
11219
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11207
|
-
firstname: z.
|
11208
|
-
surname: z.
|
11220
|
+
firstname: z.ZodString;
|
11221
|
+
surname: z.ZodString;
|
11209
11222
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11210
11223
|
}, "strip", z.ZodTypeAny, {
|
11211
|
-
firstname
|
11212
|
-
surname
|
11224
|
+
firstname: string;
|
11225
|
+
surname: string;
|
11213
11226
|
middlename?: string | null | undefined;
|
11214
11227
|
}, {
|
11215
|
-
firstname
|
11216
|
-
surname
|
11228
|
+
firstname: string;
|
11229
|
+
surname: string;
|
11217
11230
|
middlename?: string | null | undefined;
|
11218
11231
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
11219
11232
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -11240,8 +11253,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11240
11253
|
street?: string | null | undefined;
|
11241
11254
|
zipCode?: string | null | undefined;
|
11242
11255
|
} | {
|
11243
|
-
firstname
|
11244
|
-
surname
|
11256
|
+
firstname: string;
|
11257
|
+
surname: string;
|
11245
11258
|
middlename?: string | null | undefined;
|
11246
11259
|
} | {
|
11247
11260
|
country: string;
|
@@ -11287,8 +11300,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11287
11300
|
street?: string | null | undefined;
|
11288
11301
|
zipCode?: string | null | undefined;
|
11289
11302
|
} | {
|
11290
|
-
firstname
|
11291
|
-
surname
|
11303
|
+
firstname: string;
|
11304
|
+
surname: string;
|
11292
11305
|
middlename?: string | null | undefined;
|
11293
11306
|
} | {
|
11294
11307
|
country: string;
|
@@ -11339,8 +11352,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11339
11352
|
street?: string | null | undefined;
|
11340
11353
|
zipCode?: string | null | undefined;
|
11341
11354
|
} | {
|
11342
|
-
firstname
|
11343
|
-
surname
|
11355
|
+
firstname: string;
|
11356
|
+
surname: string;
|
11344
11357
|
middlename?: string | null | undefined;
|
11345
11358
|
} | {
|
11346
11359
|
country: string;
|
@@ -11384,8 +11397,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11384
11397
|
street?: string | null | undefined;
|
11385
11398
|
zipCode?: string | null | undefined;
|
11386
11399
|
} | {
|
11387
|
-
firstname
|
11388
|
-
surname
|
11400
|
+
firstname: string;
|
11401
|
+
surname: string;
|
11389
11402
|
middlename?: string | null | undefined;
|
11390
11403
|
} | {
|
11391
11404
|
country: string;
|
@@ -11541,16 +11554,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11541
11554
|
addressLine3?: string | null | undefined;
|
11542
11555
|
postcodeOrZip?: string | null | undefined;
|
11543
11556
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11544
|
-
firstname: z.
|
11545
|
-
surname: z.
|
11557
|
+
firstname: z.ZodString;
|
11558
|
+
surname: z.ZodString;
|
11546
11559
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11547
11560
|
}, "strip", z.ZodTypeAny, {
|
11548
|
-
firstname
|
11549
|
-
surname
|
11561
|
+
firstname: string;
|
11562
|
+
surname: string;
|
11550
11563
|
middlename?: string | null | undefined;
|
11551
11564
|
}, {
|
11552
|
-
firstname
|
11553
|
-
surname
|
11565
|
+
firstname: string;
|
11566
|
+
surname: string;
|
11554
11567
|
middlename?: string | null | undefined;
|
11555
11568
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
11556
11569
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -11676,16 +11689,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11676
11689
|
addressLine3?: string | null | undefined;
|
11677
11690
|
postcodeOrZip?: string | null | undefined;
|
11678
11691
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11679
|
-
firstname: z.
|
11680
|
-
surname: z.
|
11692
|
+
firstname: z.ZodString;
|
11693
|
+
surname: z.ZodString;
|
11681
11694
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11682
11695
|
}, "strip", z.ZodTypeAny, {
|
11683
|
-
firstname
|
11684
|
-
surname
|
11696
|
+
firstname: string;
|
11697
|
+
surname: string;
|
11685
11698
|
middlename?: string | null | undefined;
|
11686
11699
|
}, {
|
11687
|
-
firstname
|
11688
|
-
surname
|
11700
|
+
firstname: string;
|
11701
|
+
surname: string;
|
11689
11702
|
middlename?: string | null | undefined;
|
11690
11703
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
11691
11704
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -11712,8 +11725,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11712
11725
|
street?: string | null | undefined;
|
11713
11726
|
zipCode?: string | null | undefined;
|
11714
11727
|
} | {
|
11715
|
-
firstname
|
11716
|
-
surname
|
11728
|
+
firstname: string;
|
11729
|
+
surname: string;
|
11717
11730
|
middlename?: string | null | undefined;
|
11718
11731
|
} | {
|
11719
11732
|
country: string;
|
@@ -11759,8 +11772,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11759
11772
|
street?: string | null | undefined;
|
11760
11773
|
zipCode?: string | null | undefined;
|
11761
11774
|
} | {
|
11762
|
-
firstname
|
11763
|
-
surname
|
11775
|
+
firstname: string;
|
11776
|
+
surname: string;
|
11764
11777
|
middlename?: string | null | undefined;
|
11765
11778
|
} | {
|
11766
11779
|
country: string;
|
@@ -11810,8 +11823,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11810
11823
|
street?: string | null | undefined;
|
11811
11824
|
zipCode?: string | null | undefined;
|
11812
11825
|
} | {
|
11813
|
-
firstname
|
11814
|
-
surname
|
11826
|
+
firstname: string;
|
11827
|
+
surname: string;
|
11815
11828
|
middlename?: string | null | undefined;
|
11816
11829
|
} | {
|
11817
11830
|
country: string;
|
@@ -11855,8 +11868,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11855
11868
|
street?: string | null | undefined;
|
11856
11869
|
zipCode?: string | null | undefined;
|
11857
11870
|
} | {
|
11858
|
-
firstname
|
11859
|
-
surname
|
11871
|
+
firstname: string;
|
11872
|
+
surname: string;
|
11860
11873
|
middlename?: string | null | undefined;
|
11861
11874
|
} | {
|
11862
11875
|
country: string;
|
@@ -12013,16 +12026,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12013
12026
|
addressLine3?: string | null | undefined;
|
12014
12027
|
postcodeOrZip?: string | null | undefined;
|
12015
12028
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12016
|
-
firstname: z.
|
12017
|
-
surname: z.
|
12029
|
+
firstname: z.ZodString;
|
12030
|
+
surname: z.ZodString;
|
12018
12031
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12019
12032
|
}, "strip", z.ZodTypeAny, {
|
12020
|
-
firstname
|
12021
|
-
surname
|
12033
|
+
firstname: string;
|
12034
|
+
surname: string;
|
12022
12035
|
middlename?: string | null | undefined;
|
12023
12036
|
}, {
|
12024
|
-
firstname
|
12025
|
-
surname
|
12037
|
+
firstname: string;
|
12038
|
+
surname: string;
|
12026
12039
|
middlename?: string | null | undefined;
|
12027
12040
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
12028
12041
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -12148,22 +12161,29 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12148
12161
|
addressLine3?: string | null | undefined;
|
12149
12162
|
postcodeOrZip?: string | null | undefined;
|
12150
12163
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12151
|
-
firstname: z.
|
12152
|
-
surname: z.
|
12164
|
+
firstname: z.ZodString;
|
12165
|
+
surname: z.ZodString;
|
12153
12166
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12154
12167
|
}, "strip", z.ZodTypeAny, {
|
12155
|
-
firstname
|
12156
|
-
surname
|
12168
|
+
firstname: string;
|
12169
|
+
surname: string;
|
12157
12170
|
middlename?: string | null | undefined;
|
12158
12171
|
}, {
|
12159
|
-
firstname
|
12160
|
-
surname
|
12172
|
+
firstname: string;
|
12173
|
+
surname: string;
|
12161
12174
|
middlename?: string | null | undefined;
|
12162
12175
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
12163
12176
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
12164
12177
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
12165
12178
|
}, {
|
12166
12179
|
type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
|
12180
|
+
content: z.ZodOptional<z.ZodObject<{
|
12181
|
+
templateId: z.ZodOptional<z.ZodString>;
|
12182
|
+
}, "strip", z.ZodTypeAny, {
|
12183
|
+
templateId?: string | undefined;
|
12184
|
+
}, {
|
12185
|
+
templateId?: string | undefined;
|
12186
|
+
}>>;
|
12167
12187
|
}>, "strip", z.ZodTypeAny, {
|
12168
12188
|
type: "PRINT_CERTIFICATE";
|
12169
12189
|
transactionId: string;
|
@@ -12183,8 +12203,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12183
12203
|
street?: string | null | undefined;
|
12184
12204
|
zipCode?: string | null | undefined;
|
12185
12205
|
} | {
|
12186
|
-
firstname
|
12187
|
-
surname
|
12206
|
+
firstname: string;
|
12207
|
+
surname: string;
|
12188
12208
|
middlename?: string | null | undefined;
|
12189
12209
|
} | {
|
12190
12210
|
country: string;
|
@@ -12213,6 +12233,9 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12213
12233
|
end: string;
|
12214
12234
|
} | null | undefined>;
|
12215
12235
|
eventId: string & z.BRAND<"UUID">;
|
12236
|
+
content?: {
|
12237
|
+
templateId?: string | undefined;
|
12238
|
+
} | undefined;
|
12216
12239
|
annotation?: Record<string, string | number | boolean | {
|
12217
12240
|
type: string;
|
12218
12241
|
path: string;
|
@@ -12229,8 +12252,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12229
12252
|
street?: string | null | undefined;
|
12230
12253
|
zipCode?: string | null | undefined;
|
12231
12254
|
} | {
|
12232
|
-
firstname
|
12233
|
-
surname
|
12255
|
+
firstname: string;
|
12256
|
+
surname: string;
|
12234
12257
|
middlename?: string | null | undefined;
|
12235
12258
|
} | {
|
12236
12259
|
country: string;
|
@@ -12264,6 +12287,9 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12264
12287
|
transactionId: string;
|
12265
12288
|
eventId: string;
|
12266
12289
|
type?: "PRINT_CERTIFICATE" | undefined;
|
12290
|
+
content?: {
|
12291
|
+
templateId?: string | undefined;
|
12292
|
+
} | undefined;
|
12267
12293
|
declaration?: Record<string, string | number | boolean | {
|
12268
12294
|
type: string;
|
12269
12295
|
path: string;
|
@@ -12280,8 +12306,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12280
12306
|
street?: string | null | undefined;
|
12281
12307
|
zipCode?: string | null | undefined;
|
12282
12308
|
} | {
|
12283
|
-
firstname
|
12284
|
-
surname
|
12309
|
+
firstname: string;
|
12310
|
+
surname: string;
|
12285
12311
|
middlename?: string | null | undefined;
|
12286
12312
|
} | {
|
12287
12313
|
country: string;
|
@@ -12325,8 +12351,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12325
12351
|
street?: string | null | undefined;
|
12326
12352
|
zipCode?: string | null | undefined;
|
12327
12353
|
} | {
|
12328
|
-
firstname
|
12329
|
-
surname
|
12354
|
+
firstname: string;
|
12355
|
+
surname: string;
|
12330
12356
|
middlename?: string | null | undefined;
|
12331
12357
|
} | {
|
12332
12358
|
country: string;
|
@@ -12482,16 +12508,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12482
12508
|
addressLine3?: string | null | undefined;
|
12483
12509
|
postcodeOrZip?: string | null | undefined;
|
12484
12510
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12485
|
-
firstname: z.
|
12486
|
-
surname: z.
|
12511
|
+
firstname: z.ZodString;
|
12512
|
+
surname: z.ZodString;
|
12487
12513
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12488
12514
|
}, "strip", z.ZodTypeAny, {
|
12489
|
-
firstname
|
12490
|
-
surname
|
12515
|
+
firstname: string;
|
12516
|
+
surname: string;
|
12491
12517
|
middlename?: string | null | undefined;
|
12492
12518
|
}, {
|
12493
|
-
firstname
|
12494
|
-
surname
|
12519
|
+
firstname: string;
|
12520
|
+
surname: string;
|
12495
12521
|
middlename?: string | null | undefined;
|
12496
12522
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
12497
12523
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -12617,16 +12643,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12617
12643
|
addressLine3?: string | null | undefined;
|
12618
12644
|
postcodeOrZip?: string | null | undefined;
|
12619
12645
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12620
|
-
firstname: z.
|
12621
|
-
surname: z.
|
12646
|
+
firstname: z.ZodString;
|
12647
|
+
surname: z.ZodString;
|
12622
12648
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12623
12649
|
}, "strip", z.ZodTypeAny, {
|
12624
|
-
firstname
|
12625
|
-
surname
|
12650
|
+
firstname: string;
|
12651
|
+
surname: string;
|
12626
12652
|
middlename?: string | null | undefined;
|
12627
12653
|
}, {
|
12628
|
-
firstname
|
12629
|
-
surname
|
12654
|
+
firstname: string;
|
12655
|
+
surname: string;
|
12630
12656
|
middlename?: string | null | undefined;
|
12631
12657
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
12632
12658
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -12652,8 +12678,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12652
12678
|
street?: string | null | undefined;
|
12653
12679
|
zipCode?: string | null | undefined;
|
12654
12680
|
} | {
|
12655
|
-
firstname
|
12656
|
-
surname
|
12681
|
+
firstname: string;
|
12682
|
+
surname: string;
|
12657
12683
|
middlename?: string | null | undefined;
|
12658
12684
|
} | {
|
12659
12685
|
country: string;
|
@@ -12698,8 +12724,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12698
12724
|
street?: string | null | undefined;
|
12699
12725
|
zipCode?: string | null | undefined;
|
12700
12726
|
} | {
|
12701
|
-
firstname
|
12702
|
-
surname
|
12727
|
+
firstname: string;
|
12728
|
+
surname: string;
|
12703
12729
|
middlename?: string | null | undefined;
|
12704
12730
|
} | {
|
12705
12731
|
country: string;
|
@@ -12749,8 +12775,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12749
12775
|
street?: string | null | undefined;
|
12750
12776
|
zipCode?: string | null | undefined;
|
12751
12777
|
} | {
|
12752
|
-
firstname
|
12753
|
-
surname
|
12778
|
+
firstname: string;
|
12779
|
+
surname: string;
|
12754
12780
|
middlename?: string | null | undefined;
|
12755
12781
|
} | {
|
12756
12782
|
country: string;
|
@@ -12794,8 +12820,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12794
12820
|
street?: string | null | undefined;
|
12795
12821
|
zipCode?: string | null | undefined;
|
12796
12822
|
} | {
|
12797
|
-
firstname
|
12798
|
-
surname
|
12823
|
+
firstname: string;
|
12824
|
+
surname: string;
|
12799
12825
|
middlename?: string | null | undefined;
|
12800
12826
|
} | {
|
12801
12827
|
country: string;
|
@@ -12951,16 +12977,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12951
12977
|
addressLine3?: string | null | undefined;
|
12952
12978
|
postcodeOrZip?: string | null | undefined;
|
12953
12979
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12954
|
-
firstname: z.
|
12955
|
-
surname: z.
|
12980
|
+
firstname: z.ZodString;
|
12981
|
+
surname: z.ZodString;
|
12956
12982
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12957
12983
|
}, "strip", z.ZodTypeAny, {
|
12958
|
-
firstname
|
12959
|
-
surname
|
12984
|
+
firstname: string;
|
12985
|
+
surname: string;
|
12960
12986
|
middlename?: string | null | undefined;
|
12961
12987
|
}, {
|
12962
|
-
firstname
|
12963
|
-
surname
|
12988
|
+
firstname: string;
|
12989
|
+
surname: string;
|
12964
12990
|
middlename?: string | null | undefined;
|
12965
12991
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
12966
12992
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -13086,16 +13112,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13086
13112
|
addressLine3?: string | null | undefined;
|
13087
13113
|
postcodeOrZip?: string | null | undefined;
|
13088
13114
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13089
|
-
firstname: z.
|
13090
|
-
surname: z.
|
13115
|
+
firstname: z.ZodString;
|
13116
|
+
surname: z.ZodString;
|
13091
13117
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13092
13118
|
}, "strip", z.ZodTypeAny, {
|
13093
|
-
firstname
|
13094
|
-
surname
|
13119
|
+
firstname: string;
|
13120
|
+
surname: string;
|
13095
13121
|
middlename?: string | null | undefined;
|
13096
13122
|
}, {
|
13097
|
-
firstname
|
13098
|
-
surname
|
13123
|
+
firstname: string;
|
13124
|
+
surname: string;
|
13099
13125
|
middlename?: string | null | undefined;
|
13100
13126
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
13101
13127
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -13136,8 +13162,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13136
13162
|
street?: string | null | undefined;
|
13137
13163
|
zipCode?: string | null | undefined;
|
13138
13164
|
} | {
|
13139
|
-
firstname
|
13140
|
-
surname
|
13165
|
+
firstname: string;
|
13166
|
+
surname: string;
|
13141
13167
|
middlename?: string | null | undefined;
|
13142
13168
|
} | {
|
13143
13169
|
country: string;
|
@@ -13183,8 +13209,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13183
13209
|
street?: string | null | undefined;
|
13184
13210
|
zipCode?: string | null | undefined;
|
13185
13211
|
} | {
|
13186
|
-
firstname
|
13187
|
-
surname
|
13212
|
+
firstname: string;
|
13213
|
+
surname: string;
|
13188
13214
|
middlename?: string | null | undefined;
|
13189
13215
|
} | {
|
13190
13216
|
country: string;
|
@@ -13239,8 +13265,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13239
13265
|
street?: string | null | undefined;
|
13240
13266
|
zipCode?: string | null | undefined;
|
13241
13267
|
} | {
|
13242
|
-
firstname
|
13243
|
-
surname
|
13268
|
+
firstname: string;
|
13269
|
+
surname: string;
|
13244
13270
|
middlename?: string | null | undefined;
|
13245
13271
|
} | {
|
13246
13272
|
country: string;
|
@@ -13284,8 +13310,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13284
13310
|
street?: string | null | undefined;
|
13285
13311
|
zipCode?: string | null | undefined;
|
13286
13312
|
} | {
|
13287
|
-
firstname
|
13288
|
-
surname
|
13313
|
+
firstname: string;
|
13314
|
+
surname: string;
|
13289
13315
|
middlename?: string | null | undefined;
|
13290
13316
|
} | {
|
13291
13317
|
country: string;
|
@@ -13441,16 +13467,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13441
13467
|
addressLine3?: string | null | undefined;
|
13442
13468
|
postcodeOrZip?: string | null | undefined;
|
13443
13469
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13444
|
-
firstname: z.
|
13445
|
-
surname: z.
|
13470
|
+
firstname: z.ZodString;
|
13471
|
+
surname: z.ZodString;
|
13446
13472
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13447
13473
|
}, "strip", z.ZodTypeAny, {
|
13448
|
-
firstname
|
13449
|
-
surname
|
13474
|
+
firstname: string;
|
13475
|
+
surname: string;
|
13450
13476
|
middlename?: string | null | undefined;
|
13451
13477
|
}, {
|
13452
|
-
firstname
|
13453
|
-
surname
|
13478
|
+
firstname: string;
|
13479
|
+
surname: string;
|
13454
13480
|
middlename?: string | null | undefined;
|
13455
13481
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
13456
13482
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -13576,16 +13602,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13576
13602
|
addressLine3?: string | null | undefined;
|
13577
13603
|
postcodeOrZip?: string | null | undefined;
|
13578
13604
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13579
|
-
firstname: z.
|
13580
|
-
surname: z.
|
13605
|
+
firstname: z.ZodString;
|
13606
|
+
surname: z.ZodString;
|
13581
13607
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13582
13608
|
}, "strip", z.ZodTypeAny, {
|
13583
|
-
firstname
|
13584
|
-
surname
|
13609
|
+
firstname: string;
|
13610
|
+
surname: string;
|
13585
13611
|
middlename?: string | null | undefined;
|
13586
13612
|
}, {
|
13587
|
-
firstname
|
13588
|
-
surname
|
13613
|
+
firstname: string;
|
13614
|
+
surname: string;
|
13589
13615
|
middlename?: string | null | undefined;
|
13590
13616
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
13591
13617
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -13612,8 +13638,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13612
13638
|
street?: string | null | undefined;
|
13613
13639
|
zipCode?: string | null | undefined;
|
13614
13640
|
} | {
|
13615
|
-
firstname
|
13616
|
-
surname
|
13641
|
+
firstname: string;
|
13642
|
+
surname: string;
|
13617
13643
|
middlename?: string | null | undefined;
|
13618
13644
|
} | {
|
13619
13645
|
country: string;
|
@@ -13659,8 +13685,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13659
13685
|
street?: string | null | undefined;
|
13660
13686
|
zipCode?: string | null | undefined;
|
13661
13687
|
} | {
|
13662
|
-
firstname
|
13663
|
-
surname
|
13688
|
+
firstname: string;
|
13689
|
+
surname: string;
|
13664
13690
|
middlename?: string | null | undefined;
|
13665
13691
|
} | {
|
13666
13692
|
country: string;
|
@@ -13711,8 +13737,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13711
13737
|
street?: string | null | undefined;
|
13712
13738
|
zipCode?: string | null | undefined;
|
13713
13739
|
} | {
|
13714
|
-
firstname
|
13715
|
-
surname
|
13740
|
+
firstname: string;
|
13741
|
+
surname: string;
|
13716
13742
|
middlename?: string | null | undefined;
|
13717
13743
|
} | {
|
13718
13744
|
country: string;
|
@@ -13756,8 +13782,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13756
13782
|
street?: string | null | undefined;
|
13757
13783
|
zipCode?: string | null | undefined;
|
13758
13784
|
} | {
|
13759
|
-
firstname
|
13760
|
-
surname
|
13785
|
+
firstname: string;
|
13786
|
+
surname: string;
|
13761
13787
|
middlename?: string | null | undefined;
|
13762
13788
|
} | {
|
13763
13789
|
country: string;
|
@@ -13913,16 +13939,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13913
13939
|
addressLine3?: string | null | undefined;
|
13914
13940
|
postcodeOrZip?: string | null | undefined;
|
13915
13941
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13916
|
-
firstname: z.
|
13917
|
-
surname: z.
|
13942
|
+
firstname: z.ZodString;
|
13943
|
+
surname: z.ZodString;
|
13918
13944
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13919
13945
|
}, "strip", z.ZodTypeAny, {
|
13920
|
-
firstname
|
13921
|
-
surname
|
13946
|
+
firstname: string;
|
13947
|
+
surname: string;
|
13922
13948
|
middlename?: string | null | undefined;
|
13923
13949
|
}, {
|
13924
|
-
firstname
|
13925
|
-
surname
|
13950
|
+
firstname: string;
|
13951
|
+
surname: string;
|
13926
13952
|
middlename?: string | null | undefined;
|
13927
13953
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
13928
13954
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -14048,16 +14074,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
14048
14074
|
addressLine3?: string | null | undefined;
|
14049
14075
|
postcodeOrZip?: string | null | undefined;
|
14050
14076
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
14051
|
-
firstname: z.
|
14052
|
-
surname: z.
|
14077
|
+
firstname: z.ZodString;
|
14078
|
+
surname: z.ZodString;
|
14053
14079
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
14054
14080
|
}, "strip", z.ZodTypeAny, {
|
14055
|
-
firstname
|
14056
|
-
surname
|
14081
|
+
firstname: string;
|
14082
|
+
surname: string;
|
14057
14083
|
middlename?: string | null | undefined;
|
14058
14084
|
}, {
|
14059
|
-
firstname
|
14060
|
-
surname
|
14085
|
+
firstname: string;
|
14086
|
+
surname: string;
|
14061
14087
|
middlename?: string | null | undefined;
|
14062
14088
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
14063
14089
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -14083,8 +14109,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
14083
14109
|
street?: string | null | undefined;
|
14084
14110
|
zipCode?: string | null | undefined;
|
14085
14111
|
} | {
|
14086
|
-
firstname
|
14087
|
-
surname
|
14112
|
+
firstname: string;
|
14113
|
+
surname: string;
|
14088
14114
|
middlename?: string | null | undefined;
|
14089
14115
|
} | {
|
14090
14116
|
country: string;
|
@@ -14129,8 +14155,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
14129
14155
|
street?: string | null | undefined;
|
14130
14156
|
zipCode?: string | null | undefined;
|
14131
14157
|
} | {
|
14132
|
-
firstname
|
14133
|
-
surname
|
14158
|
+
firstname: string;
|
14159
|
+
surname: string;
|
14134
14160
|
middlename?: string | null | undefined;
|
14135
14161
|
} | {
|
14136
14162
|
country: string;
|
@@ -14180,8 +14206,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
14180
14206
|
street?: string | null | undefined;
|
14181
14207
|
zipCode?: string | null | undefined;
|
14182
14208
|
} | {
|
14183
|
-
firstname
|
14184
|
-
surname
|
14209
|
+
firstname: string;
|
14210
|
+
surname: string;
|
14185
14211
|
middlename?: string | null | undefined;
|
14186
14212
|
} | {
|
14187
14213
|
country: string;
|
@@ -14225,8 +14251,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
14225
14251
|
street?: string | null | undefined;
|
14226
14252
|
zipCode?: string | null | undefined;
|
14227
14253
|
} | {
|
14228
|
-
firstname
|
14229
|
-
surname
|
14254
|
+
firstname: string;
|
14255
|
+
surname: string;
|
14230
14256
|
middlename?: string | null | undefined;
|
14231
14257
|
} | {
|
14232
14258
|
country: string;
|