@opencrvs/toolkit 1.8.1-rc.cacd557 → 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 +391 -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 +736 -736
- package/dist/commons/events/ActionInput.d.ts +600 -600
- package/dist/commons/events/AdvancedSearchConfig.d.ts +49 -31
- package/dist/commons/events/CompositeFieldValue.d.ts +6 -6
- package/dist/commons/events/CountryConfigQueryInput.d.ts +88 -88
- package/dist/commons/events/Draft.d.ts +48 -48
- package/dist/commons/events/EventConfig.d.ts +673 -146
- package/dist/commons/events/EventDocument.d.ts +432 -432
- package/dist/commons/events/EventIndex.d.ts +62 -62
- package/dist/commons/events/EventMetadata.d.ts +9 -9
- package/dist/commons/events/FieldConfig.d.ts +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 +224 -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,16 +2615,16 @@ 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">>;
|
@@ -2657,8 +2657,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2657
2657
|
street?: string | null | undefined;
|
2658
2658
|
zipCode?: string | null | undefined;
|
2659
2659
|
} | {
|
2660
|
-
firstname
|
2661
|
-
surname
|
2660
|
+
firstname: string;
|
2661
|
+
surname: string;
|
2662
2662
|
middlename?: string | null | undefined;
|
2663
2663
|
} | {
|
2664
2664
|
country: string;
|
@@ -2706,8 +2706,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2706
2706
|
street?: string | null | undefined;
|
2707
2707
|
zipCode?: string | null | undefined;
|
2708
2708
|
} | {
|
2709
|
-
firstname
|
2710
|
-
surname
|
2709
|
+
firstname: string;
|
2710
|
+
surname: string;
|
2711
2711
|
middlename?: string | null | undefined;
|
2712
2712
|
} | {
|
2713
2713
|
country: string;
|
@@ -2760,8 +2760,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2760
2760
|
street?: string | null | undefined;
|
2761
2761
|
zipCode?: string | null | undefined;
|
2762
2762
|
} | {
|
2763
|
-
firstname
|
2764
|
-
surname
|
2763
|
+
firstname: string;
|
2764
|
+
surname: string;
|
2765
2765
|
middlename?: string | null | undefined;
|
2766
2766
|
} | {
|
2767
2767
|
country: string;
|
@@ -2805,8 +2805,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2805
2805
|
street?: string | null | undefined;
|
2806
2806
|
zipCode?: string | null | undefined;
|
2807
2807
|
} | {
|
2808
|
-
firstname
|
2809
|
-
surname
|
2808
|
+
firstname: string;
|
2809
|
+
surname: string;
|
2810
2810
|
middlename?: string | null | undefined;
|
2811
2811
|
} | {
|
2812
2812
|
country: string;
|
@@ -2964,16 +2964,16 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
2964
2964
|
addressLine3?: string | null | undefined;
|
2965
2965
|
postcodeOrZip?: string | null | undefined;
|
2966
2966
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2967
|
-
firstname: z.
|
2968
|
-
surname: z.
|
2967
|
+
firstname: z.ZodString;
|
2968
|
+
surname: z.ZodString;
|
2969
2969
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2970
2970
|
}, "strip", z.ZodTypeAny, {
|
2971
|
-
firstname
|
2972
|
-
surname
|
2971
|
+
firstname: string;
|
2972
|
+
surname: string;
|
2973
2973
|
middlename?: string | null | undefined;
|
2974
2974
|
}, {
|
2975
|
-
firstname
|
2976
|
-
surname
|
2975
|
+
firstname: string;
|
2976
|
+
surname: string;
|
2977
2977
|
middlename?: string | null | undefined;
|
2978
2978
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
2979
2979
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -3099,16 +3099,16 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
3099
3099
|
addressLine3?: string | null | undefined;
|
3100
3100
|
postcodeOrZip?: string | null | undefined;
|
3101
3101
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3102
|
-
firstname: z.
|
3103
|
-
surname: z.
|
3102
|
+
firstname: z.ZodString;
|
3103
|
+
surname: z.ZodString;
|
3104
3104
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3105
3105
|
}, "strip", z.ZodTypeAny, {
|
3106
|
-
firstname
|
3107
|
-
surname
|
3106
|
+
firstname: string;
|
3107
|
+
surname: string;
|
3108
3108
|
middlename?: string | null | undefined;
|
3109
3109
|
}, {
|
3110
|
-
firstname
|
3111
|
-
surname
|
3110
|
+
firstname: string;
|
3111
|
+
surname: string;
|
3112
3112
|
middlename?: string | null | undefined;
|
3113
3113
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
3114
3114
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -3148,8 +3148,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
3148
3148
|
street?: string | null | undefined;
|
3149
3149
|
zipCode?: string | null | undefined;
|
3150
3150
|
} | {
|
3151
|
-
firstname
|
3152
|
-
surname
|
3151
|
+
firstname: string;
|
3152
|
+
surname: string;
|
3153
3153
|
middlename?: string | null | undefined;
|
3154
3154
|
} | {
|
3155
3155
|
country: string;
|
@@ -3194,8 +3194,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
3194
3194
|
street?: string | null | undefined;
|
3195
3195
|
zipCode?: string | null | undefined;
|
3196
3196
|
} | {
|
3197
|
-
firstname
|
3198
|
-
surname
|
3197
|
+
firstname: string;
|
3198
|
+
surname: string;
|
3199
3199
|
middlename?: string | null | undefined;
|
3200
3200
|
} | {
|
3201
3201
|
country: string;
|
@@ -3249,8 +3249,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
3249
3249
|
street?: string | null | undefined;
|
3250
3250
|
zipCode?: string | null | undefined;
|
3251
3251
|
} | {
|
3252
|
-
firstname
|
3253
|
-
surname
|
3252
|
+
firstname: string;
|
3253
|
+
surname: string;
|
3254
3254
|
middlename?: string | null | undefined;
|
3255
3255
|
} | {
|
3256
3256
|
country: string;
|
@@ -3294,8 +3294,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
3294
3294
|
street?: string | null | undefined;
|
3295
3295
|
zipCode?: string | null | undefined;
|
3296
3296
|
} | {
|
3297
|
-
firstname
|
3298
|
-
surname
|
3297
|
+
firstname: string;
|
3298
|
+
surname: string;
|
3299
3299
|
middlename?: string | null | undefined;
|
3300
3300
|
} | {
|
3301
3301
|
country: string;
|
@@ -3453,16 +3453,16 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3453
3453
|
addressLine3?: string | null | undefined;
|
3454
3454
|
postcodeOrZip?: string | null | undefined;
|
3455
3455
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3456
|
-
firstname: z.
|
3457
|
-
surname: z.
|
3456
|
+
firstname: z.ZodString;
|
3457
|
+
surname: z.ZodString;
|
3458
3458
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3459
3459
|
}, "strip", z.ZodTypeAny, {
|
3460
|
-
firstname
|
3461
|
-
surname
|
3460
|
+
firstname: string;
|
3461
|
+
surname: string;
|
3462
3462
|
middlename?: string | null | undefined;
|
3463
3463
|
}, {
|
3464
|
-
firstname
|
3465
|
-
surname
|
3464
|
+
firstname: string;
|
3465
|
+
surname: string;
|
3466
3466
|
middlename?: string | null | undefined;
|
3467
3467
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
3468
3468
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -3588,16 +3588,16 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3588
3588
|
addressLine3?: string | null | undefined;
|
3589
3589
|
postcodeOrZip?: string | null | undefined;
|
3590
3590
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3591
|
-
firstname: z.
|
3592
|
-
surname: z.
|
3591
|
+
firstname: z.ZodString;
|
3592
|
+
surname: z.ZodString;
|
3593
3593
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3594
3594
|
}, "strip", z.ZodTypeAny, {
|
3595
|
-
firstname
|
3596
|
-
surname
|
3595
|
+
firstname: string;
|
3596
|
+
surname: string;
|
3597
3597
|
middlename?: string | null | undefined;
|
3598
3598
|
}, {
|
3599
|
-
firstname
|
3600
|
-
surname
|
3599
|
+
firstname: string;
|
3600
|
+
surname: string;
|
3601
3601
|
middlename?: string | null | undefined;
|
3602
3602
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
3603
3603
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -3623,8 +3623,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3623
3623
|
street?: string | null | undefined;
|
3624
3624
|
zipCode?: string | null | undefined;
|
3625
3625
|
} | {
|
3626
|
-
firstname
|
3627
|
-
surname
|
3626
|
+
firstname: string;
|
3627
|
+
surname: string;
|
3628
3628
|
middlename?: string | null | undefined;
|
3629
3629
|
} | {
|
3630
3630
|
country: string;
|
@@ -3669,8 +3669,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3669
3669
|
street?: string | null | undefined;
|
3670
3670
|
zipCode?: string | null | undefined;
|
3671
3671
|
} | {
|
3672
|
-
firstname
|
3673
|
-
surname
|
3672
|
+
firstname: string;
|
3673
|
+
surname: string;
|
3674
3674
|
middlename?: string | null | undefined;
|
3675
3675
|
} | {
|
3676
3676
|
country: string;
|
@@ -3720,8 +3720,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3720
3720
|
street?: string | null | undefined;
|
3721
3721
|
zipCode?: string | null | undefined;
|
3722
3722
|
} | {
|
3723
|
-
firstname
|
3724
|
-
surname
|
3723
|
+
firstname: string;
|
3724
|
+
surname: string;
|
3725
3725
|
middlename?: string | null | undefined;
|
3726
3726
|
} | {
|
3727
3727
|
country: string;
|
@@ -3765,8 +3765,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3765
3765
|
street?: string | null | undefined;
|
3766
3766
|
zipCode?: string | null | undefined;
|
3767
3767
|
} | {
|
3768
|
-
firstname
|
3769
|
-
surname
|
3768
|
+
firstname: string;
|
3769
|
+
surname: string;
|
3770
3770
|
middlename?: string | null | undefined;
|
3771
3771
|
} | {
|
3772
3772
|
country: string;
|
@@ -3924,16 +3924,16 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3924
3924
|
addressLine3?: string | null | undefined;
|
3925
3925
|
postcodeOrZip?: string | null | undefined;
|
3926
3926
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3927
|
-
firstname: z.
|
3928
|
-
surname: z.
|
3927
|
+
firstname: z.ZodString;
|
3928
|
+
surname: z.ZodString;
|
3929
3929
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3930
3930
|
}, "strip", z.ZodTypeAny, {
|
3931
|
-
firstname
|
3932
|
-
surname
|
3931
|
+
firstname: string;
|
3932
|
+
surname: string;
|
3933
3933
|
middlename?: string | null | undefined;
|
3934
3934
|
}, {
|
3935
|
-
firstname
|
3936
|
-
surname
|
3935
|
+
firstname: string;
|
3936
|
+
surname: string;
|
3937
3937
|
middlename?: string | null | undefined;
|
3938
3938
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
3939
3939
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -4059,16 +4059,16 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4059
4059
|
addressLine3?: string | null | undefined;
|
4060
4060
|
postcodeOrZip?: string | null | undefined;
|
4061
4061
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4062
|
-
firstname: z.
|
4063
|
-
surname: z.
|
4062
|
+
firstname: z.ZodString;
|
4063
|
+
surname: z.ZodString;
|
4064
4064
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4065
4065
|
}, "strip", z.ZodTypeAny, {
|
4066
|
-
firstname
|
4067
|
-
surname
|
4066
|
+
firstname: string;
|
4067
|
+
surname: string;
|
4068
4068
|
middlename?: string | null | undefined;
|
4069
4069
|
}, {
|
4070
|
-
firstname
|
4071
|
-
surname
|
4070
|
+
firstname: string;
|
4071
|
+
surname: string;
|
4072
4072
|
middlename?: string | null | undefined;
|
4073
4073
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4074
4074
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -4108,8 +4108,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4108
4108
|
street?: string | null | undefined;
|
4109
4109
|
zipCode?: string | null | undefined;
|
4110
4110
|
} | {
|
4111
|
-
firstname
|
4112
|
-
surname
|
4111
|
+
firstname: string;
|
4112
|
+
surname: string;
|
4113
4113
|
middlename?: string | null | undefined;
|
4114
4114
|
} | {
|
4115
4115
|
country: string;
|
@@ -4154,8 +4154,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4154
4154
|
street?: string | null | undefined;
|
4155
4155
|
zipCode?: string | null | undefined;
|
4156
4156
|
} | {
|
4157
|
-
firstname
|
4158
|
-
surname
|
4157
|
+
firstname: string;
|
4158
|
+
surname: string;
|
4159
4159
|
middlename?: string | null | undefined;
|
4160
4160
|
} | {
|
4161
4161
|
country: string;
|
@@ -4209,8 +4209,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4209
4209
|
street?: string | null | undefined;
|
4210
4210
|
zipCode?: string | null | undefined;
|
4211
4211
|
} | {
|
4212
|
-
firstname
|
4213
|
-
surname
|
4212
|
+
firstname: string;
|
4213
|
+
surname: string;
|
4214
4214
|
middlename?: string | null | undefined;
|
4215
4215
|
} | {
|
4216
4216
|
country: string;
|
@@ -4254,8 +4254,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4254
4254
|
street?: string | null | undefined;
|
4255
4255
|
zipCode?: string | null | undefined;
|
4256
4256
|
} | {
|
4257
|
-
firstname
|
4258
|
-
surname
|
4257
|
+
firstname: string;
|
4258
|
+
surname: string;
|
4259
4259
|
middlename?: string | null | undefined;
|
4260
4260
|
} | {
|
4261
4261
|
country: string;
|
@@ -4413,16 +4413,16 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4413
4413
|
addressLine3?: string | null | undefined;
|
4414
4414
|
postcodeOrZip?: string | null | undefined;
|
4415
4415
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4416
|
-
firstname: z.
|
4417
|
-
surname: z.
|
4416
|
+
firstname: z.ZodString;
|
4417
|
+
surname: z.ZodString;
|
4418
4418
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4419
4419
|
}, "strip", z.ZodTypeAny, {
|
4420
|
-
firstname
|
4421
|
-
surname
|
4420
|
+
firstname: string;
|
4421
|
+
surname: string;
|
4422
4422
|
middlename?: string | null | undefined;
|
4423
4423
|
}, {
|
4424
|
-
firstname
|
4425
|
-
surname
|
4424
|
+
firstname: string;
|
4425
|
+
surname: string;
|
4426
4426
|
middlename?: string | null | undefined;
|
4427
4427
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4428
4428
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -4548,16 +4548,16 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4548
4548
|
addressLine3?: string | null | undefined;
|
4549
4549
|
postcodeOrZip?: string | null | undefined;
|
4550
4550
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4551
|
-
firstname: z.
|
4552
|
-
surname: z.
|
4551
|
+
firstname: z.ZodString;
|
4552
|
+
surname: z.ZodString;
|
4553
4553
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4554
4554
|
}, "strip", z.ZodTypeAny, {
|
4555
|
-
firstname
|
4556
|
-
surname
|
4555
|
+
firstname: string;
|
4556
|
+
surname: string;
|
4557
4557
|
middlename?: string | null | undefined;
|
4558
4558
|
}, {
|
4559
|
-
firstname
|
4560
|
-
surname
|
4559
|
+
firstname: string;
|
4560
|
+
surname: string;
|
4561
4561
|
middlename?: string | null | undefined;
|
4562
4562
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4563
4563
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -4584,8 +4584,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4584
4584
|
street?: string | null | undefined;
|
4585
4585
|
zipCode?: string | null | undefined;
|
4586
4586
|
} | {
|
4587
|
-
firstname
|
4588
|
-
surname
|
4587
|
+
firstname: string;
|
4588
|
+
surname: string;
|
4589
4589
|
middlename?: string | null | undefined;
|
4590
4590
|
} | {
|
4591
4591
|
country: string;
|
@@ -4631,8 +4631,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4631
4631
|
street?: string | null | undefined;
|
4632
4632
|
zipCode?: string | null | undefined;
|
4633
4633
|
} | {
|
4634
|
-
firstname
|
4635
|
-
surname
|
4634
|
+
firstname: string;
|
4635
|
+
surname: string;
|
4636
4636
|
middlename?: string | null | undefined;
|
4637
4637
|
} | {
|
4638
4638
|
country: string;
|
@@ -4683,8 +4683,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4683
4683
|
street?: string | null | undefined;
|
4684
4684
|
zipCode?: string | null | undefined;
|
4685
4685
|
} | {
|
4686
|
-
firstname
|
4687
|
-
surname
|
4686
|
+
firstname: string;
|
4687
|
+
surname: string;
|
4688
4688
|
middlename?: string | null | undefined;
|
4689
4689
|
} | {
|
4690
4690
|
country: string;
|
@@ -4728,8 +4728,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4728
4728
|
street?: string | null | undefined;
|
4729
4729
|
zipCode?: string | null | undefined;
|
4730
4730
|
} | {
|
4731
|
-
firstname
|
4732
|
-
surname
|
4731
|
+
firstname: string;
|
4732
|
+
surname: string;
|
4733
4733
|
middlename?: string | null | undefined;
|
4734
4734
|
} | {
|
4735
4735
|
country: string;
|
@@ -4887,16 +4887,16 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4887
4887
|
addressLine3?: string | null | undefined;
|
4888
4888
|
postcodeOrZip?: string | null | undefined;
|
4889
4889
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4890
|
-
firstname: z.
|
4891
|
-
surname: z.
|
4890
|
+
firstname: z.ZodString;
|
4891
|
+
surname: z.ZodString;
|
4892
4892
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4893
4893
|
}, "strip", z.ZodTypeAny, {
|
4894
|
-
firstname
|
4895
|
-
surname
|
4894
|
+
firstname: string;
|
4895
|
+
surname: string;
|
4896
4896
|
middlename?: string | null | undefined;
|
4897
4897
|
}, {
|
4898
|
-
firstname
|
4899
|
-
surname
|
4898
|
+
firstname: string;
|
4899
|
+
surname: string;
|
4900
4900
|
middlename?: string | null | undefined;
|
4901
4901
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4902
4902
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -5022,16 +5022,16 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5022
5022
|
addressLine3?: string | null | undefined;
|
5023
5023
|
postcodeOrZip?: string | null | undefined;
|
5024
5024
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5025
|
-
firstname: z.
|
5026
|
-
surname: z.
|
5025
|
+
firstname: z.ZodString;
|
5026
|
+
surname: z.ZodString;
|
5027
5027
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5028
5028
|
}, "strip", z.ZodTypeAny, {
|
5029
|
-
firstname
|
5030
|
-
surname
|
5029
|
+
firstname: string;
|
5030
|
+
surname: string;
|
5031
5031
|
middlename?: string | null | undefined;
|
5032
5032
|
}, {
|
5033
|
-
firstname
|
5034
|
-
surname
|
5033
|
+
firstname: string;
|
5034
|
+
surname: string;
|
5035
5035
|
middlename?: string | null | undefined;
|
5036
5036
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5037
5037
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -5058,8 +5058,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5058
5058
|
street?: string | null | undefined;
|
5059
5059
|
zipCode?: string | null | undefined;
|
5060
5060
|
} | {
|
5061
|
-
firstname
|
5062
|
-
surname
|
5061
|
+
firstname: string;
|
5062
|
+
surname: string;
|
5063
5063
|
middlename?: string | null | undefined;
|
5064
5064
|
} | {
|
5065
5065
|
country: string;
|
@@ -5105,8 +5105,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5105
5105
|
street?: string | null | undefined;
|
5106
5106
|
zipCode?: string | null | undefined;
|
5107
5107
|
} | {
|
5108
|
-
firstname
|
5109
|
-
surname
|
5108
|
+
firstname: string;
|
5109
|
+
surname: string;
|
5110
5110
|
middlename?: string | null | undefined;
|
5111
5111
|
} | {
|
5112
5112
|
country: string;
|
@@ -5156,8 +5156,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5156
5156
|
street?: string | null | undefined;
|
5157
5157
|
zipCode?: string | null | undefined;
|
5158
5158
|
} | {
|
5159
|
-
firstname
|
5160
|
-
surname
|
5159
|
+
firstname: string;
|
5160
|
+
surname: string;
|
5161
5161
|
middlename?: string | null | undefined;
|
5162
5162
|
} | {
|
5163
5163
|
country: string;
|
@@ -5201,8 +5201,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5201
5201
|
street?: string | null | undefined;
|
5202
5202
|
zipCode?: string | null | undefined;
|
5203
5203
|
} | {
|
5204
|
-
firstname
|
5205
|
-
surname
|
5204
|
+
firstname: string;
|
5205
|
+
surname: string;
|
5206
5206
|
middlename?: string | null | undefined;
|
5207
5207
|
} | {
|
5208
5208
|
country: string;
|
@@ -5361,16 +5361,16 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5361
5361
|
addressLine3?: string | null | undefined;
|
5362
5362
|
postcodeOrZip?: string | null | undefined;
|
5363
5363
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5364
|
-
firstname: z.
|
5365
|
-
surname: z.
|
5364
|
+
firstname: z.ZodString;
|
5365
|
+
surname: z.ZodString;
|
5366
5366
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5367
5367
|
}, "strip", z.ZodTypeAny, {
|
5368
|
-
firstname
|
5369
|
-
surname
|
5368
|
+
firstname: string;
|
5369
|
+
surname: string;
|
5370
5370
|
middlename?: string | null | undefined;
|
5371
5371
|
}, {
|
5372
|
-
firstname
|
5373
|
-
surname
|
5372
|
+
firstname: string;
|
5373
|
+
surname: string;
|
5374
5374
|
middlename?: string | null | undefined;
|
5375
5375
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5376
5376
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -5496,16 +5496,16 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5496
5496
|
addressLine3?: string | null | undefined;
|
5497
5497
|
postcodeOrZip?: string | null | undefined;
|
5498
5498
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5499
|
-
firstname: z.
|
5500
|
-
surname: z.
|
5499
|
+
firstname: z.ZodString;
|
5500
|
+
surname: z.ZodString;
|
5501
5501
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5502
5502
|
}, "strip", z.ZodTypeAny, {
|
5503
|
-
firstname
|
5504
|
-
surname
|
5503
|
+
firstname: string;
|
5504
|
+
surname: string;
|
5505
5505
|
middlename?: string | null | undefined;
|
5506
5506
|
}, {
|
5507
|
-
firstname
|
5508
|
-
surname
|
5507
|
+
firstname: string;
|
5508
|
+
surname: string;
|
5509
5509
|
middlename?: string | null | undefined;
|
5510
5510
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5511
5511
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -5531,8 +5531,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5531
5531
|
street?: string | null | undefined;
|
5532
5532
|
zipCode?: string | null | undefined;
|
5533
5533
|
} | {
|
5534
|
-
firstname
|
5535
|
-
surname
|
5534
|
+
firstname: string;
|
5535
|
+
surname: string;
|
5536
5536
|
middlename?: string | null | undefined;
|
5537
5537
|
} | {
|
5538
5538
|
country: string;
|
@@ -5577,8 +5577,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5577
5577
|
street?: string | null | undefined;
|
5578
5578
|
zipCode?: string | null | undefined;
|
5579
5579
|
} | {
|
5580
|
-
firstname
|
5581
|
-
surname
|
5580
|
+
firstname: string;
|
5581
|
+
surname: string;
|
5582
5582
|
middlename?: string | null | undefined;
|
5583
5583
|
} | {
|
5584
5584
|
country: string;
|
@@ -5628,8 +5628,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5628
5628
|
street?: string | null | undefined;
|
5629
5629
|
zipCode?: string | null | undefined;
|
5630
5630
|
} | {
|
5631
|
-
firstname
|
5632
|
-
surname
|
5631
|
+
firstname: string;
|
5632
|
+
surname: string;
|
5633
5633
|
middlename?: string | null | undefined;
|
5634
5634
|
} | {
|
5635
5635
|
country: string;
|
@@ -5673,8 +5673,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5673
5673
|
street?: string | null | undefined;
|
5674
5674
|
zipCode?: string | null | undefined;
|
5675
5675
|
} | {
|
5676
|
-
firstname
|
5677
|
-
surname
|
5676
|
+
firstname: string;
|
5677
|
+
surname: string;
|
5678
5678
|
middlename?: string | null | undefined;
|
5679
5679
|
} | {
|
5680
5680
|
country: string;
|
@@ -5832,16 +5832,16 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
5832
5832
|
addressLine3?: string | null | undefined;
|
5833
5833
|
postcodeOrZip?: string | null | undefined;
|
5834
5834
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5835
|
-
firstname: z.
|
5836
|
-
surname: z.
|
5835
|
+
firstname: z.ZodString;
|
5836
|
+
surname: z.ZodString;
|
5837
5837
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5838
5838
|
}, "strip", z.ZodTypeAny, {
|
5839
|
-
firstname
|
5840
|
-
surname
|
5839
|
+
firstname: string;
|
5840
|
+
surname: string;
|
5841
5841
|
middlename?: string | null | undefined;
|
5842
5842
|
}, {
|
5843
|
-
firstname
|
5844
|
-
surname
|
5843
|
+
firstname: string;
|
5844
|
+
surname: string;
|
5845
5845
|
middlename?: string | null | undefined;
|
5846
5846
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5847
5847
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -5967,16 +5967,16 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
5967
5967
|
addressLine3?: string | null | undefined;
|
5968
5968
|
postcodeOrZip?: string | null | undefined;
|
5969
5969
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5970
|
-
firstname: z.
|
5971
|
-
surname: z.
|
5970
|
+
firstname: z.ZodString;
|
5971
|
+
surname: z.ZodString;
|
5972
5972
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5973
5973
|
}, "strip", z.ZodTypeAny, {
|
5974
|
-
firstname
|
5975
|
-
surname
|
5974
|
+
firstname: string;
|
5975
|
+
surname: string;
|
5976
5976
|
middlename?: string | null | undefined;
|
5977
5977
|
}, {
|
5978
|
-
firstname
|
5979
|
-
surname
|
5978
|
+
firstname: string;
|
5979
|
+
surname: string;
|
5980
5980
|
middlename?: string | null | undefined;
|
5981
5981
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5982
5982
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -6017,8 +6017,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
6017
6017
|
street?: string | null | undefined;
|
6018
6018
|
zipCode?: string | null | undefined;
|
6019
6019
|
} | {
|
6020
|
-
firstname
|
6021
|
-
surname
|
6020
|
+
firstname: string;
|
6021
|
+
surname: string;
|
6022
6022
|
middlename?: string | null | undefined;
|
6023
6023
|
} | {
|
6024
6024
|
country: string;
|
@@ -6064,8 +6064,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
6064
6064
|
street?: string | null | undefined;
|
6065
6065
|
zipCode?: string | null | undefined;
|
6066
6066
|
} | {
|
6067
|
-
firstname
|
6068
|
-
surname
|
6067
|
+
firstname: string;
|
6068
|
+
surname: string;
|
6069
6069
|
middlename?: string | null | undefined;
|
6070
6070
|
} | {
|
6071
6071
|
country: string;
|
@@ -6120,8 +6120,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
6120
6120
|
street?: string | null | undefined;
|
6121
6121
|
zipCode?: string | null | undefined;
|
6122
6122
|
} | {
|
6123
|
-
firstname
|
6124
|
-
surname
|
6123
|
+
firstname: string;
|
6124
|
+
surname: string;
|
6125
6125
|
middlename?: string | null | undefined;
|
6126
6126
|
} | {
|
6127
6127
|
country: string;
|
@@ -6165,8 +6165,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
6165
6165
|
street?: string | null | undefined;
|
6166
6166
|
zipCode?: string | null | undefined;
|
6167
6167
|
} | {
|
6168
|
-
firstname
|
6169
|
-
surname
|
6168
|
+
firstname: string;
|
6169
|
+
surname: string;
|
6170
6170
|
middlename?: string | null | undefined;
|
6171
6171
|
} | {
|
6172
6172
|
country: string;
|
@@ -6324,16 +6324,16 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6324
6324
|
addressLine3?: string | null | undefined;
|
6325
6325
|
postcodeOrZip?: string | null | undefined;
|
6326
6326
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6327
|
-
firstname: z.
|
6328
|
-
surname: z.
|
6327
|
+
firstname: z.ZodString;
|
6328
|
+
surname: z.ZodString;
|
6329
6329
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6330
6330
|
}, "strip", z.ZodTypeAny, {
|
6331
|
-
firstname
|
6332
|
-
surname
|
6331
|
+
firstname: string;
|
6332
|
+
surname: string;
|
6333
6333
|
middlename?: string | null | undefined;
|
6334
6334
|
}, {
|
6335
|
-
firstname
|
6336
|
-
surname
|
6335
|
+
firstname: string;
|
6336
|
+
surname: string;
|
6337
6337
|
middlename?: string | null | undefined;
|
6338
6338
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6339
6339
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -6459,16 +6459,16 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6459
6459
|
addressLine3?: string | null | undefined;
|
6460
6460
|
postcodeOrZip?: string | null | undefined;
|
6461
6461
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6462
|
-
firstname: z.
|
6463
|
-
surname: z.
|
6462
|
+
firstname: z.ZodString;
|
6463
|
+
surname: z.ZodString;
|
6464
6464
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6465
6465
|
}, "strip", z.ZodTypeAny, {
|
6466
|
-
firstname
|
6467
|
-
surname
|
6466
|
+
firstname: string;
|
6467
|
+
surname: string;
|
6468
6468
|
middlename?: string | null | undefined;
|
6469
6469
|
}, {
|
6470
|
-
firstname
|
6471
|
-
surname
|
6470
|
+
firstname: string;
|
6471
|
+
surname: string;
|
6472
6472
|
middlename?: string | null | undefined;
|
6473
6473
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6474
6474
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -6495,8 +6495,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6495
6495
|
street?: string | null | undefined;
|
6496
6496
|
zipCode?: string | null | undefined;
|
6497
6497
|
} | {
|
6498
|
-
firstname
|
6499
|
-
surname
|
6498
|
+
firstname: string;
|
6499
|
+
surname: string;
|
6500
6500
|
middlename?: string | null | undefined;
|
6501
6501
|
} | {
|
6502
6502
|
country: string;
|
@@ -6542,8 +6542,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6542
6542
|
street?: string | null | undefined;
|
6543
6543
|
zipCode?: string | null | undefined;
|
6544
6544
|
} | {
|
6545
|
-
firstname
|
6546
|
-
surname
|
6545
|
+
firstname: string;
|
6546
|
+
surname: string;
|
6547
6547
|
middlename?: string | null | undefined;
|
6548
6548
|
} | {
|
6549
6549
|
country: string;
|
@@ -6594,8 +6594,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6594
6594
|
street?: string | null | undefined;
|
6595
6595
|
zipCode?: string | null | undefined;
|
6596
6596
|
} | {
|
6597
|
-
firstname
|
6598
|
-
surname
|
6597
|
+
firstname: string;
|
6598
|
+
surname: string;
|
6599
6599
|
middlename?: string | null | undefined;
|
6600
6600
|
} | {
|
6601
6601
|
country: string;
|
@@ -6639,8 +6639,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6639
6639
|
street?: string | null | undefined;
|
6640
6640
|
zipCode?: string | null | undefined;
|
6641
6641
|
} | {
|
6642
|
-
firstname
|
6643
|
-
surname
|
6642
|
+
firstname: string;
|
6643
|
+
surname: string;
|
6644
6644
|
middlename?: string | null | undefined;
|
6645
6645
|
} | {
|
6646
6646
|
country: string;
|
@@ -6798,16 +6798,16 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
6798
6798
|
addressLine3?: string | null | undefined;
|
6799
6799
|
postcodeOrZip?: string | null | undefined;
|
6800
6800
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6801
|
-
firstname: z.
|
6802
|
-
surname: z.
|
6801
|
+
firstname: z.ZodString;
|
6802
|
+
surname: z.ZodString;
|
6803
6803
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6804
6804
|
}, "strip", z.ZodTypeAny, {
|
6805
|
-
firstname
|
6806
|
-
surname
|
6805
|
+
firstname: string;
|
6806
|
+
surname: string;
|
6807
6807
|
middlename?: string | null | undefined;
|
6808
6808
|
}, {
|
6809
|
-
firstname
|
6810
|
-
surname
|
6809
|
+
firstname: string;
|
6810
|
+
surname: string;
|
6811
6811
|
middlename?: string | null | undefined;
|
6812
6812
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6813
6813
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -6933,16 +6933,16 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
6933
6933
|
addressLine3?: string | null | undefined;
|
6934
6934
|
postcodeOrZip?: string | null | undefined;
|
6935
6935
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6936
|
-
firstname: z.
|
6937
|
-
surname: z.
|
6936
|
+
firstname: z.ZodString;
|
6937
|
+
surname: z.ZodString;
|
6938
6938
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6939
6939
|
}, "strip", z.ZodTypeAny, {
|
6940
|
-
firstname
|
6941
|
-
surname
|
6940
|
+
firstname: string;
|
6941
|
+
surname: string;
|
6942
6942
|
middlename?: string | null | undefined;
|
6943
6943
|
}, {
|
6944
|
-
firstname
|
6945
|
-
surname
|
6944
|
+
firstname: string;
|
6945
|
+
surname: string;
|
6946
6946
|
middlename?: string | null | undefined;
|
6947
6947
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6948
6948
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -6968,8 +6968,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
6968
6968
|
street?: string | null | undefined;
|
6969
6969
|
zipCode?: string | null | undefined;
|
6970
6970
|
} | {
|
6971
|
-
firstname
|
6972
|
-
surname
|
6971
|
+
firstname: string;
|
6972
|
+
surname: string;
|
6973
6973
|
middlename?: string | null | undefined;
|
6974
6974
|
} | {
|
6975
6975
|
country: string;
|
@@ -7014,8 +7014,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
7014
7014
|
street?: string | null | undefined;
|
7015
7015
|
zipCode?: string | null | undefined;
|
7016
7016
|
} | {
|
7017
|
-
firstname
|
7018
|
-
surname
|
7017
|
+
firstname: string;
|
7018
|
+
surname: string;
|
7019
7019
|
middlename?: string | null | undefined;
|
7020
7020
|
} | {
|
7021
7021
|
country: string;
|
@@ -7065,8 +7065,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
7065
7065
|
street?: string | null | undefined;
|
7066
7066
|
zipCode?: string | null | undefined;
|
7067
7067
|
} | {
|
7068
|
-
firstname
|
7069
|
-
surname
|
7068
|
+
firstname: string;
|
7069
|
+
surname: string;
|
7070
7070
|
middlename?: string | null | undefined;
|
7071
7071
|
} | {
|
7072
7072
|
country: string;
|
@@ -7110,8 +7110,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
7110
7110
|
street?: string | null | undefined;
|
7111
7111
|
zipCode?: string | null | undefined;
|
7112
7112
|
} | {
|
7113
|
-
firstname
|
7114
|
-
surname
|
7113
|
+
firstname: string;
|
7114
|
+
surname: string;
|
7115
7115
|
middlename?: string | null | undefined;
|
7116
7116
|
} | {
|
7117
7117
|
country: string;
|
@@ -7285,16 +7285,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7285
7285
|
addressLine3?: string | null | undefined;
|
7286
7286
|
postcodeOrZip?: string | null | undefined;
|
7287
7287
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7288
|
-
firstname: z.
|
7289
|
-
surname: z.
|
7288
|
+
firstname: z.ZodString;
|
7289
|
+
surname: z.ZodString;
|
7290
7290
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7291
7291
|
}, "strip", z.ZodTypeAny, {
|
7292
|
-
firstname
|
7293
|
-
surname
|
7292
|
+
firstname: string;
|
7293
|
+
surname: string;
|
7294
7294
|
middlename?: string | null | undefined;
|
7295
7295
|
}, {
|
7296
|
-
firstname
|
7297
|
-
surname
|
7296
|
+
firstname: string;
|
7297
|
+
surname: string;
|
7298
7298
|
middlename?: string | null | undefined;
|
7299
7299
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
7300
7300
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -7420,16 +7420,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7420
7420
|
addressLine3?: string | null | undefined;
|
7421
7421
|
postcodeOrZip?: string | null | undefined;
|
7422
7422
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7423
|
-
firstname: z.
|
7424
|
-
surname: z.
|
7423
|
+
firstname: z.ZodString;
|
7424
|
+
surname: z.ZodString;
|
7425
7425
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7426
7426
|
}, "strip", z.ZodTypeAny, {
|
7427
|
-
firstname
|
7428
|
-
surname
|
7427
|
+
firstname: string;
|
7428
|
+
surname: string;
|
7429
7429
|
middlename?: string | null | undefined;
|
7430
7430
|
}, {
|
7431
|
-
firstname
|
7432
|
-
surname
|
7431
|
+
firstname: string;
|
7432
|
+
surname: string;
|
7433
7433
|
middlename?: string | null | undefined;
|
7434
7434
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
7435
7435
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -7456,8 +7456,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7456
7456
|
street?: string | null | undefined;
|
7457
7457
|
zipCode?: string | null | undefined;
|
7458
7458
|
} | {
|
7459
|
-
firstname
|
7460
|
-
surname
|
7459
|
+
firstname: string;
|
7460
|
+
surname: string;
|
7461
7461
|
middlename?: string | null | undefined;
|
7462
7462
|
} | {
|
7463
7463
|
country: string;
|
@@ -7503,8 +7503,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7503
7503
|
street?: string | null | undefined;
|
7504
7504
|
zipCode?: string | null | undefined;
|
7505
7505
|
} | {
|
7506
|
-
firstname
|
7507
|
-
surname
|
7506
|
+
firstname: string;
|
7507
|
+
surname: string;
|
7508
7508
|
middlename?: string | null | undefined;
|
7509
7509
|
} | {
|
7510
7510
|
country: string;
|
@@ -7555,8 +7555,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7555
7555
|
street?: string | null | undefined;
|
7556
7556
|
zipCode?: string | null | undefined;
|
7557
7557
|
} | {
|
7558
|
-
firstname
|
7559
|
-
surname
|
7558
|
+
firstname: string;
|
7559
|
+
surname: string;
|
7560
7560
|
middlename?: string | null | undefined;
|
7561
7561
|
} | {
|
7562
7562
|
country: string;
|
@@ -7600,8 +7600,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7600
7600
|
street?: string | null | undefined;
|
7601
7601
|
zipCode?: string | null | undefined;
|
7602
7602
|
} | {
|
7603
|
-
firstname
|
7604
|
-
surname
|
7603
|
+
firstname: string;
|
7604
|
+
surname: string;
|
7605
7605
|
middlename?: string | null | undefined;
|
7606
7606
|
} | {
|
7607
7607
|
country: string;
|
@@ -7757,16 +7757,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7757
7757
|
addressLine3?: string | null | undefined;
|
7758
7758
|
postcodeOrZip?: string | null | undefined;
|
7759
7759
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7760
|
-
firstname: z.
|
7761
|
-
surname: z.
|
7760
|
+
firstname: z.ZodString;
|
7761
|
+
surname: z.ZodString;
|
7762
7762
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7763
7763
|
}, "strip", z.ZodTypeAny, {
|
7764
|
-
firstname
|
7765
|
-
surname
|
7764
|
+
firstname: string;
|
7765
|
+
surname: string;
|
7766
7766
|
middlename?: string | null | undefined;
|
7767
7767
|
}, {
|
7768
|
-
firstname
|
7769
|
-
surname
|
7768
|
+
firstname: string;
|
7769
|
+
surname: string;
|
7770
7770
|
middlename?: string | null | undefined;
|
7771
7771
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
7772
7772
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -7892,16 +7892,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7892
7892
|
addressLine3?: string | null | undefined;
|
7893
7893
|
postcodeOrZip?: string | null | undefined;
|
7894
7894
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7895
|
-
firstname: z.
|
7896
|
-
surname: z.
|
7895
|
+
firstname: z.ZodString;
|
7896
|
+
surname: z.ZodString;
|
7897
7897
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7898
7898
|
}, "strip", z.ZodTypeAny, {
|
7899
|
-
firstname
|
7900
|
-
surname
|
7899
|
+
firstname: string;
|
7900
|
+
surname: string;
|
7901
7901
|
middlename?: string | null | undefined;
|
7902
7902
|
}, {
|
7903
|
-
firstname
|
7904
|
-
surname
|
7903
|
+
firstname: string;
|
7904
|
+
surname: string;
|
7905
7905
|
middlename?: string | null | undefined;
|
7906
7906
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
7907
7907
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -7928,8 +7928,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7928
7928
|
street?: string | null | undefined;
|
7929
7929
|
zipCode?: string | null | undefined;
|
7930
7930
|
} | {
|
7931
|
-
firstname
|
7932
|
-
surname
|
7931
|
+
firstname: string;
|
7932
|
+
surname: string;
|
7933
7933
|
middlename?: string | null | undefined;
|
7934
7934
|
} | {
|
7935
7935
|
country: string;
|
@@ -7975,8 +7975,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7975
7975
|
street?: string | null | undefined;
|
7976
7976
|
zipCode?: string | null | undefined;
|
7977
7977
|
} | {
|
7978
|
-
firstname
|
7979
|
-
surname
|
7978
|
+
firstname: string;
|
7979
|
+
surname: string;
|
7980
7980
|
middlename?: string | null | undefined;
|
7981
7981
|
} | {
|
7982
7982
|
country: string;
|
@@ -8027,8 +8027,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8027
8027
|
street?: string | null | undefined;
|
8028
8028
|
zipCode?: string | null | undefined;
|
8029
8029
|
} | {
|
8030
|
-
firstname
|
8031
|
-
surname
|
8030
|
+
firstname: string;
|
8031
|
+
surname: string;
|
8032
8032
|
middlename?: string | null | undefined;
|
8033
8033
|
} | {
|
8034
8034
|
country: string;
|
@@ -8072,8 +8072,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8072
8072
|
street?: string | null | undefined;
|
8073
8073
|
zipCode?: string | null | undefined;
|
8074
8074
|
} | {
|
8075
|
-
firstname
|
8076
|
-
surname
|
8075
|
+
firstname: string;
|
8076
|
+
surname: string;
|
8077
8077
|
middlename?: string | null | undefined;
|
8078
8078
|
} | {
|
8079
8079
|
country: string;
|
@@ -8229,16 +8229,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8229
8229
|
addressLine3?: string | null | undefined;
|
8230
8230
|
postcodeOrZip?: string | null | undefined;
|
8231
8231
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8232
|
-
firstname: z.
|
8233
|
-
surname: z.
|
8232
|
+
firstname: z.ZodString;
|
8233
|
+
surname: z.ZodString;
|
8234
8234
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8235
8235
|
}, "strip", z.ZodTypeAny, {
|
8236
|
-
firstname
|
8237
|
-
surname
|
8236
|
+
firstname: string;
|
8237
|
+
surname: string;
|
8238
8238
|
middlename?: string | null | undefined;
|
8239
8239
|
}, {
|
8240
|
-
firstname
|
8241
|
-
surname
|
8240
|
+
firstname: string;
|
8241
|
+
surname: string;
|
8242
8242
|
middlename?: string | null | undefined;
|
8243
8243
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
8244
8244
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -8364,16 +8364,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8364
8364
|
addressLine3?: string | null | undefined;
|
8365
8365
|
postcodeOrZip?: string | null | undefined;
|
8366
8366
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8367
|
-
firstname: z.
|
8368
|
-
surname: z.
|
8367
|
+
firstname: z.ZodString;
|
8368
|
+
surname: z.ZodString;
|
8369
8369
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8370
8370
|
}, "strip", z.ZodTypeAny, {
|
8371
|
-
firstname
|
8372
|
-
surname
|
8371
|
+
firstname: string;
|
8372
|
+
surname: string;
|
8373
8373
|
middlename?: string | null | undefined;
|
8374
8374
|
}, {
|
8375
|
-
firstname
|
8376
|
-
surname
|
8375
|
+
firstname: string;
|
8376
|
+
surname: string;
|
8377
8377
|
middlename?: string | null | undefined;
|
8378
8378
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
8379
8379
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -8400,8 +8400,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8400
8400
|
street?: string | null | undefined;
|
8401
8401
|
zipCode?: string | null | undefined;
|
8402
8402
|
} | {
|
8403
|
-
firstname
|
8404
|
-
surname
|
8403
|
+
firstname: string;
|
8404
|
+
surname: string;
|
8405
8405
|
middlename?: string | null | undefined;
|
8406
8406
|
} | {
|
8407
8407
|
country: string;
|
@@ -8446,8 +8446,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8446
8446
|
street?: string | null | undefined;
|
8447
8447
|
zipCode?: string | null | undefined;
|
8448
8448
|
} | {
|
8449
|
-
firstname
|
8450
|
-
surname
|
8449
|
+
firstname: string;
|
8450
|
+
surname: string;
|
8451
8451
|
middlename?: string | null | undefined;
|
8452
8452
|
} | {
|
8453
8453
|
country: string;
|
@@ -8498,8 +8498,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8498
8498
|
street?: string | null | undefined;
|
8499
8499
|
zipCode?: string | null | undefined;
|
8500
8500
|
} | {
|
8501
|
-
firstname
|
8502
|
-
surname
|
8501
|
+
firstname: string;
|
8502
|
+
surname: string;
|
8503
8503
|
middlename?: string | null | undefined;
|
8504
8504
|
} | {
|
8505
8505
|
country: string;
|
@@ -8543,8 +8543,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8543
8543
|
street?: string | null | undefined;
|
8544
8544
|
zipCode?: string | null | undefined;
|
8545
8545
|
} | {
|
8546
|
-
firstname
|
8547
|
-
surname
|
8546
|
+
firstname: string;
|
8547
|
+
surname: string;
|
8548
8548
|
middlename?: string | null | undefined;
|
8549
8549
|
} | {
|
8550
8550
|
country: string;
|
@@ -8701,16 +8701,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8701
8701
|
addressLine3?: string | null | undefined;
|
8702
8702
|
postcodeOrZip?: string | null | undefined;
|
8703
8703
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8704
|
-
firstname: z.
|
8705
|
-
surname: z.
|
8704
|
+
firstname: z.ZodString;
|
8705
|
+
surname: z.ZodString;
|
8706
8706
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8707
8707
|
}, "strip", z.ZodTypeAny, {
|
8708
|
-
firstname
|
8709
|
-
surname
|
8708
|
+
firstname: string;
|
8709
|
+
surname: string;
|
8710
8710
|
middlename?: string | null | undefined;
|
8711
8711
|
}, {
|
8712
|
-
firstname
|
8713
|
-
surname
|
8712
|
+
firstname: string;
|
8713
|
+
surname: string;
|
8714
8714
|
middlename?: string | null | undefined;
|
8715
8715
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
8716
8716
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -8836,16 +8836,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8836
8836
|
addressLine3?: string | null | undefined;
|
8837
8837
|
postcodeOrZip?: string | null | undefined;
|
8838
8838
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8839
|
-
firstname: z.
|
8840
|
-
surname: z.
|
8839
|
+
firstname: z.ZodString;
|
8840
|
+
surname: z.ZodString;
|
8841
8841
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8842
8842
|
}, "strip", z.ZodTypeAny, {
|
8843
|
-
firstname
|
8844
|
-
surname
|
8843
|
+
firstname: string;
|
8844
|
+
surname: string;
|
8845
8845
|
middlename?: string | null | undefined;
|
8846
8846
|
}, {
|
8847
|
-
firstname
|
8848
|
-
surname
|
8847
|
+
firstname: string;
|
8848
|
+
surname: string;
|
8849
8849
|
middlename?: string | null | undefined;
|
8850
8850
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
8851
8851
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -8871,8 +8871,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8871
8871
|
street?: string | null | undefined;
|
8872
8872
|
zipCode?: string | null | undefined;
|
8873
8873
|
} | {
|
8874
|
-
firstname
|
8875
|
-
surname
|
8874
|
+
firstname: string;
|
8875
|
+
surname: string;
|
8876
8876
|
middlename?: string | null | undefined;
|
8877
8877
|
} | {
|
8878
8878
|
country: string;
|
@@ -8917,8 +8917,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8917
8917
|
street?: string | null | undefined;
|
8918
8918
|
zipCode?: string | null | undefined;
|
8919
8919
|
} | {
|
8920
|
-
firstname
|
8921
|
-
surname
|
8920
|
+
firstname: string;
|
8921
|
+
surname: string;
|
8922
8922
|
middlename?: string | null | undefined;
|
8923
8923
|
} | {
|
8924
8924
|
country: string;
|
@@ -8968,8 +8968,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8968
8968
|
street?: string | null | undefined;
|
8969
8969
|
zipCode?: string | null | undefined;
|
8970
8970
|
} | {
|
8971
|
-
firstname
|
8972
|
-
surname
|
8971
|
+
firstname: string;
|
8972
|
+
surname: string;
|
8973
8973
|
middlename?: string | null | undefined;
|
8974
8974
|
} | {
|
8975
8975
|
country: string;
|
@@ -9013,8 +9013,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9013
9013
|
street?: string | null | undefined;
|
9014
9014
|
zipCode?: string | null | undefined;
|
9015
9015
|
} | {
|
9016
|
-
firstname
|
9017
|
-
surname
|
9016
|
+
firstname: string;
|
9017
|
+
surname: string;
|
9018
9018
|
middlename?: string | null | undefined;
|
9019
9019
|
} | {
|
9020
9020
|
country: string;
|
@@ -9170,16 +9170,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9170
9170
|
addressLine3?: string | null | undefined;
|
9171
9171
|
postcodeOrZip?: string | null | undefined;
|
9172
9172
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9173
|
-
firstname: z.
|
9174
|
-
surname: z.
|
9173
|
+
firstname: z.ZodString;
|
9174
|
+
surname: z.ZodString;
|
9175
9175
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9176
9176
|
}, "strip", z.ZodTypeAny, {
|
9177
|
-
firstname
|
9178
|
-
surname
|
9177
|
+
firstname: string;
|
9178
|
+
surname: string;
|
9179
9179
|
middlename?: string | null | undefined;
|
9180
9180
|
}, {
|
9181
|
-
firstname
|
9182
|
-
surname
|
9181
|
+
firstname: string;
|
9182
|
+
surname: string;
|
9183
9183
|
middlename?: string | null | undefined;
|
9184
9184
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
9185
9185
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -9305,16 +9305,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9305
9305
|
addressLine3?: string | null | undefined;
|
9306
9306
|
postcodeOrZip?: string | null | undefined;
|
9307
9307
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9308
|
-
firstname: z.
|
9309
|
-
surname: z.
|
9308
|
+
firstname: z.ZodString;
|
9309
|
+
surname: z.ZodString;
|
9310
9310
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9311
9311
|
}, "strip", z.ZodTypeAny, {
|
9312
|
-
firstname
|
9313
|
-
surname
|
9312
|
+
firstname: string;
|
9313
|
+
surname: string;
|
9314
9314
|
middlename?: string | null | undefined;
|
9315
9315
|
}, {
|
9316
|
-
firstname
|
9317
|
-
surname
|
9316
|
+
firstname: string;
|
9317
|
+
surname: string;
|
9318
9318
|
middlename?: string | null | undefined;
|
9319
9319
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
9320
9320
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -9340,8 +9340,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9340
9340
|
street?: string | null | undefined;
|
9341
9341
|
zipCode?: string | null | undefined;
|
9342
9342
|
} | {
|
9343
|
-
firstname
|
9344
|
-
surname
|
9343
|
+
firstname: string;
|
9344
|
+
surname: string;
|
9345
9345
|
middlename?: string | null | undefined;
|
9346
9346
|
} | {
|
9347
9347
|
country: string;
|
@@ -9386,8 +9386,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9386
9386
|
street?: string | null | undefined;
|
9387
9387
|
zipCode?: string | null | undefined;
|
9388
9388
|
} | {
|
9389
|
-
firstname
|
9390
|
-
surname
|
9389
|
+
firstname: string;
|
9390
|
+
surname: string;
|
9391
9391
|
middlename?: string | null | undefined;
|
9392
9392
|
} | {
|
9393
9393
|
country: string;
|
@@ -9437,8 +9437,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9437
9437
|
street?: string | null | undefined;
|
9438
9438
|
zipCode?: string | null | undefined;
|
9439
9439
|
} | {
|
9440
|
-
firstname
|
9441
|
-
surname
|
9440
|
+
firstname: string;
|
9441
|
+
surname: string;
|
9442
9442
|
middlename?: string | null | undefined;
|
9443
9443
|
} | {
|
9444
9444
|
country: string;
|
@@ -9482,8 +9482,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9482
9482
|
street?: string | null | undefined;
|
9483
9483
|
zipCode?: string | null | undefined;
|
9484
9484
|
} | {
|
9485
|
-
firstname
|
9486
|
-
surname
|
9485
|
+
firstname: string;
|
9486
|
+
surname: string;
|
9487
9487
|
middlename?: string | null | undefined;
|
9488
9488
|
} | {
|
9489
9489
|
country: string;
|
@@ -9639,16 +9639,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9639
9639
|
addressLine3?: string | null | undefined;
|
9640
9640
|
postcodeOrZip?: string | null | undefined;
|
9641
9641
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9642
|
-
firstname: z.
|
9643
|
-
surname: z.
|
9642
|
+
firstname: z.ZodString;
|
9643
|
+
surname: z.ZodString;
|
9644
9644
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9645
9645
|
}, "strip", z.ZodTypeAny, {
|
9646
|
-
firstname
|
9647
|
-
surname
|
9646
|
+
firstname: string;
|
9647
|
+
surname: string;
|
9648
9648
|
middlename?: string | null | undefined;
|
9649
9649
|
}, {
|
9650
|
-
firstname
|
9651
|
-
surname
|
9650
|
+
firstname: string;
|
9651
|
+
surname: string;
|
9652
9652
|
middlename?: string | null | undefined;
|
9653
9653
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
9654
9654
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -9774,16 +9774,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9774
9774
|
addressLine3?: string | null | undefined;
|
9775
9775
|
postcodeOrZip?: string | null | undefined;
|
9776
9776
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9777
|
-
firstname: z.
|
9778
|
-
surname: z.
|
9777
|
+
firstname: z.ZodString;
|
9778
|
+
surname: z.ZodString;
|
9779
9779
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9780
9780
|
}, "strip", z.ZodTypeAny, {
|
9781
|
-
firstname
|
9782
|
-
surname
|
9781
|
+
firstname: string;
|
9782
|
+
surname: string;
|
9783
9783
|
middlename?: string | null | undefined;
|
9784
9784
|
}, {
|
9785
|
-
firstname
|
9786
|
-
surname
|
9785
|
+
firstname: string;
|
9786
|
+
surname: string;
|
9787
9787
|
middlename?: string | null | undefined;
|
9788
9788
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
9789
9789
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -9823,8 +9823,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9823
9823
|
street?: string | null | undefined;
|
9824
9824
|
zipCode?: string | null | undefined;
|
9825
9825
|
} | {
|
9826
|
-
firstname
|
9827
|
-
surname
|
9826
|
+
firstname: string;
|
9827
|
+
surname: string;
|
9828
9828
|
middlename?: string | null | undefined;
|
9829
9829
|
} | {
|
9830
9830
|
country: string;
|
@@ -9869,8 +9869,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9869
9869
|
street?: string | null | undefined;
|
9870
9870
|
zipCode?: string | null | undefined;
|
9871
9871
|
} | {
|
9872
|
-
firstname
|
9873
|
-
surname
|
9872
|
+
firstname: string;
|
9873
|
+
surname: string;
|
9874
9874
|
middlename?: string | null | undefined;
|
9875
9875
|
} | {
|
9876
9876
|
country: string;
|
@@ -9924,8 +9924,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9924
9924
|
street?: string | null | undefined;
|
9925
9925
|
zipCode?: string | null | undefined;
|
9926
9926
|
} | {
|
9927
|
-
firstname
|
9928
|
-
surname
|
9927
|
+
firstname: string;
|
9928
|
+
surname: string;
|
9929
9929
|
middlename?: string | null | undefined;
|
9930
9930
|
} | {
|
9931
9931
|
country: string;
|
@@ -9969,8 +9969,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9969
9969
|
street?: string | null | undefined;
|
9970
9970
|
zipCode?: string | null | undefined;
|
9971
9971
|
} | {
|
9972
|
-
firstname
|
9973
|
-
surname
|
9972
|
+
firstname: string;
|
9973
|
+
surname: string;
|
9974
9974
|
middlename?: string | null | undefined;
|
9975
9975
|
} | {
|
9976
9976
|
country: string;
|
@@ -10126,16 +10126,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10126
10126
|
addressLine3?: string | null | undefined;
|
10127
10127
|
postcodeOrZip?: string | null | undefined;
|
10128
10128
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10129
|
-
firstname: z.
|
10130
|
-
surname: z.
|
10129
|
+
firstname: z.ZodString;
|
10130
|
+
surname: z.ZodString;
|
10131
10131
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10132
10132
|
}, "strip", z.ZodTypeAny, {
|
10133
|
-
firstname
|
10134
|
-
surname
|
10133
|
+
firstname: string;
|
10134
|
+
surname: string;
|
10135
10135
|
middlename?: string | null | undefined;
|
10136
10136
|
}, {
|
10137
|
-
firstname
|
10138
|
-
surname
|
10137
|
+
firstname: string;
|
10138
|
+
surname: string;
|
10139
10139
|
middlename?: string | null | undefined;
|
10140
10140
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
10141
10141
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -10261,16 +10261,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10261
10261
|
addressLine3?: string | null | undefined;
|
10262
10262
|
postcodeOrZip?: string | null | undefined;
|
10263
10263
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10264
|
-
firstname: z.
|
10265
|
-
surname: z.
|
10264
|
+
firstname: z.ZodString;
|
10265
|
+
surname: z.ZodString;
|
10266
10266
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10267
10267
|
}, "strip", z.ZodTypeAny, {
|
10268
|
-
firstname
|
10269
|
-
surname
|
10268
|
+
firstname: string;
|
10269
|
+
surname: string;
|
10270
10270
|
middlename?: string | null | undefined;
|
10271
10271
|
}, {
|
10272
|
-
firstname
|
10273
|
-
surname
|
10272
|
+
firstname: string;
|
10273
|
+
surname: string;
|
10274
10274
|
middlename?: string | null | undefined;
|
10275
10275
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
10276
10276
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -10296,8 +10296,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10296
10296
|
street?: string | null | undefined;
|
10297
10297
|
zipCode?: string | null | undefined;
|
10298
10298
|
} | {
|
10299
|
-
firstname
|
10300
|
-
surname
|
10299
|
+
firstname: string;
|
10300
|
+
surname: string;
|
10301
10301
|
middlename?: string | null | undefined;
|
10302
10302
|
} | {
|
10303
10303
|
country: string;
|
@@ -10342,8 +10342,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10342
10342
|
street?: string | null | undefined;
|
10343
10343
|
zipCode?: string | null | undefined;
|
10344
10344
|
} | {
|
10345
|
-
firstname
|
10346
|
-
surname
|
10345
|
+
firstname: string;
|
10346
|
+
surname: string;
|
10347
10347
|
middlename?: string | null | undefined;
|
10348
10348
|
} | {
|
10349
10349
|
country: string;
|
@@ -10393,8 +10393,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10393
10393
|
street?: string | null | undefined;
|
10394
10394
|
zipCode?: string | null | undefined;
|
10395
10395
|
} | {
|
10396
|
-
firstname
|
10397
|
-
surname
|
10396
|
+
firstname: string;
|
10397
|
+
surname: string;
|
10398
10398
|
middlename?: string | null | undefined;
|
10399
10399
|
} | {
|
10400
10400
|
country: string;
|
@@ -10438,8 +10438,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10438
10438
|
street?: string | null | undefined;
|
10439
10439
|
zipCode?: string | null | undefined;
|
10440
10440
|
} | {
|
10441
|
-
firstname
|
10442
|
-
surname
|
10441
|
+
firstname: string;
|
10442
|
+
surname: string;
|
10443
10443
|
middlename?: string | null | undefined;
|
10444
10444
|
} | {
|
10445
10445
|
country: string;
|
@@ -10595,16 +10595,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10595
10595
|
addressLine3?: string | null | undefined;
|
10596
10596
|
postcodeOrZip?: string | null | undefined;
|
10597
10597
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10598
|
-
firstname: z.
|
10599
|
-
surname: z.
|
10598
|
+
firstname: z.ZodString;
|
10599
|
+
surname: z.ZodString;
|
10600
10600
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10601
10601
|
}, "strip", z.ZodTypeAny, {
|
10602
|
-
firstname
|
10603
|
-
surname
|
10602
|
+
firstname: string;
|
10603
|
+
surname: string;
|
10604
10604
|
middlename?: string | null | undefined;
|
10605
10605
|
}, {
|
10606
|
-
firstname
|
10607
|
-
surname
|
10606
|
+
firstname: string;
|
10607
|
+
surname: string;
|
10608
10608
|
middlename?: string | null | undefined;
|
10609
10609
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
10610
10610
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -10730,16 +10730,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10730
10730
|
addressLine3?: string | null | undefined;
|
10731
10731
|
postcodeOrZip?: string | null | undefined;
|
10732
10732
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10733
|
-
firstname: z.
|
10734
|
-
surname: z.
|
10733
|
+
firstname: z.ZodString;
|
10734
|
+
surname: z.ZodString;
|
10735
10735
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10736
10736
|
}, "strip", z.ZodTypeAny, {
|
10737
|
-
firstname
|
10738
|
-
surname
|
10737
|
+
firstname: string;
|
10738
|
+
surname: string;
|
10739
10739
|
middlename?: string | null | undefined;
|
10740
10740
|
}, {
|
10741
|
-
firstname
|
10742
|
-
surname
|
10741
|
+
firstname: string;
|
10742
|
+
surname: string;
|
10743
10743
|
middlename?: string | null | undefined;
|
10744
10744
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
10745
10745
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -10779,8 +10779,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10779
10779
|
street?: string | null | undefined;
|
10780
10780
|
zipCode?: string | null | undefined;
|
10781
10781
|
} | {
|
10782
|
-
firstname
|
10783
|
-
surname
|
10782
|
+
firstname: string;
|
10783
|
+
surname: string;
|
10784
10784
|
middlename?: string | null | undefined;
|
10785
10785
|
} | {
|
10786
10786
|
country: string;
|
@@ -10825,8 +10825,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10825
10825
|
street?: string | null | undefined;
|
10826
10826
|
zipCode?: string | null | undefined;
|
10827
10827
|
} | {
|
10828
|
-
firstname
|
10829
|
-
surname
|
10828
|
+
firstname: string;
|
10829
|
+
surname: string;
|
10830
10830
|
middlename?: string | null | undefined;
|
10831
10831
|
} | {
|
10832
10832
|
country: string;
|
@@ -10880,8 +10880,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10880
10880
|
street?: string | null | undefined;
|
10881
10881
|
zipCode?: string | null | undefined;
|
10882
10882
|
} | {
|
10883
|
-
firstname
|
10884
|
-
surname
|
10883
|
+
firstname: string;
|
10884
|
+
surname: string;
|
10885
10885
|
middlename?: string | null | undefined;
|
10886
10886
|
} | {
|
10887
10887
|
country: string;
|
@@ -10925,8 +10925,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10925
10925
|
street?: string | null | undefined;
|
10926
10926
|
zipCode?: string | null | undefined;
|
10927
10927
|
} | {
|
10928
|
-
firstname
|
10929
|
-
surname
|
10928
|
+
firstname: string;
|
10929
|
+
surname: string;
|
10930
10930
|
middlename?: string | null | undefined;
|
10931
10931
|
} | {
|
10932
10932
|
country: string;
|
@@ -11082,16 +11082,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11082
11082
|
addressLine3?: string | null | undefined;
|
11083
11083
|
postcodeOrZip?: string | null | undefined;
|
11084
11084
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11085
|
-
firstname: z.
|
11086
|
-
surname: z.
|
11085
|
+
firstname: z.ZodString;
|
11086
|
+
surname: z.ZodString;
|
11087
11087
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11088
11088
|
}, "strip", z.ZodTypeAny, {
|
11089
|
-
firstname
|
11090
|
-
surname
|
11089
|
+
firstname: string;
|
11090
|
+
surname: string;
|
11091
11091
|
middlename?: string | null | undefined;
|
11092
11092
|
}, {
|
11093
|
-
firstname
|
11094
|
-
surname
|
11093
|
+
firstname: string;
|
11094
|
+
surname: string;
|
11095
11095
|
middlename?: string | null | undefined;
|
11096
11096
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
11097
11097
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -11217,16 +11217,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11217
11217
|
addressLine3?: string | null | undefined;
|
11218
11218
|
postcodeOrZip?: string | null | undefined;
|
11219
11219
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11220
|
-
firstname: z.
|
11221
|
-
surname: z.
|
11220
|
+
firstname: z.ZodString;
|
11221
|
+
surname: z.ZodString;
|
11222
11222
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11223
11223
|
}, "strip", z.ZodTypeAny, {
|
11224
|
-
firstname
|
11225
|
-
surname
|
11224
|
+
firstname: string;
|
11225
|
+
surname: string;
|
11226
11226
|
middlename?: string | null | undefined;
|
11227
11227
|
}, {
|
11228
|
-
firstname
|
11229
|
-
surname
|
11228
|
+
firstname: string;
|
11229
|
+
surname: string;
|
11230
11230
|
middlename?: string | null | undefined;
|
11231
11231
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
11232
11232
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -11253,8 +11253,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11253
11253
|
street?: string | null | undefined;
|
11254
11254
|
zipCode?: string | null | undefined;
|
11255
11255
|
} | {
|
11256
|
-
firstname
|
11257
|
-
surname
|
11256
|
+
firstname: string;
|
11257
|
+
surname: string;
|
11258
11258
|
middlename?: string | null | undefined;
|
11259
11259
|
} | {
|
11260
11260
|
country: string;
|
@@ -11300,8 +11300,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11300
11300
|
street?: string | null | undefined;
|
11301
11301
|
zipCode?: string | null | undefined;
|
11302
11302
|
} | {
|
11303
|
-
firstname
|
11304
|
-
surname
|
11303
|
+
firstname: string;
|
11304
|
+
surname: string;
|
11305
11305
|
middlename?: string | null | undefined;
|
11306
11306
|
} | {
|
11307
11307
|
country: string;
|
@@ -11352,8 +11352,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11352
11352
|
street?: string | null | undefined;
|
11353
11353
|
zipCode?: string | null | undefined;
|
11354
11354
|
} | {
|
11355
|
-
firstname
|
11356
|
-
surname
|
11355
|
+
firstname: string;
|
11356
|
+
surname: string;
|
11357
11357
|
middlename?: string | null | undefined;
|
11358
11358
|
} | {
|
11359
11359
|
country: string;
|
@@ -11397,8 +11397,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11397
11397
|
street?: string | null | undefined;
|
11398
11398
|
zipCode?: string | null | undefined;
|
11399
11399
|
} | {
|
11400
|
-
firstname
|
11401
|
-
surname
|
11400
|
+
firstname: string;
|
11401
|
+
surname: string;
|
11402
11402
|
middlename?: string | null | undefined;
|
11403
11403
|
} | {
|
11404
11404
|
country: string;
|
@@ -11554,16 +11554,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11554
11554
|
addressLine3?: string | null | undefined;
|
11555
11555
|
postcodeOrZip?: string | null | undefined;
|
11556
11556
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11557
|
-
firstname: z.
|
11558
|
-
surname: z.
|
11557
|
+
firstname: z.ZodString;
|
11558
|
+
surname: z.ZodString;
|
11559
11559
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11560
11560
|
}, "strip", z.ZodTypeAny, {
|
11561
|
-
firstname
|
11562
|
-
surname
|
11561
|
+
firstname: string;
|
11562
|
+
surname: string;
|
11563
11563
|
middlename?: string | null | undefined;
|
11564
11564
|
}, {
|
11565
|
-
firstname
|
11566
|
-
surname
|
11565
|
+
firstname: string;
|
11566
|
+
surname: string;
|
11567
11567
|
middlename?: string | null | undefined;
|
11568
11568
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
11569
11569
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -11689,16 +11689,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11689
11689
|
addressLine3?: string | null | undefined;
|
11690
11690
|
postcodeOrZip?: string | null | undefined;
|
11691
11691
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11692
|
-
firstname: z.
|
11693
|
-
surname: z.
|
11692
|
+
firstname: z.ZodString;
|
11693
|
+
surname: z.ZodString;
|
11694
11694
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11695
11695
|
}, "strip", z.ZodTypeAny, {
|
11696
|
-
firstname
|
11697
|
-
surname
|
11696
|
+
firstname: string;
|
11697
|
+
surname: string;
|
11698
11698
|
middlename?: string | null | undefined;
|
11699
11699
|
}, {
|
11700
|
-
firstname
|
11701
|
-
surname
|
11700
|
+
firstname: string;
|
11701
|
+
surname: string;
|
11702
11702
|
middlename?: string | null | undefined;
|
11703
11703
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
11704
11704
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -11725,8 +11725,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11725
11725
|
street?: string | null | undefined;
|
11726
11726
|
zipCode?: string | null | undefined;
|
11727
11727
|
} | {
|
11728
|
-
firstname
|
11729
|
-
surname
|
11728
|
+
firstname: string;
|
11729
|
+
surname: string;
|
11730
11730
|
middlename?: string | null | undefined;
|
11731
11731
|
} | {
|
11732
11732
|
country: string;
|
@@ -11772,8 +11772,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11772
11772
|
street?: string | null | undefined;
|
11773
11773
|
zipCode?: string | null | undefined;
|
11774
11774
|
} | {
|
11775
|
-
firstname
|
11776
|
-
surname
|
11775
|
+
firstname: string;
|
11776
|
+
surname: string;
|
11777
11777
|
middlename?: string | null | undefined;
|
11778
11778
|
} | {
|
11779
11779
|
country: string;
|
@@ -11823,8 +11823,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11823
11823
|
street?: string | null | undefined;
|
11824
11824
|
zipCode?: string | null | undefined;
|
11825
11825
|
} | {
|
11826
|
-
firstname
|
11827
|
-
surname
|
11826
|
+
firstname: string;
|
11827
|
+
surname: string;
|
11828
11828
|
middlename?: string | null | undefined;
|
11829
11829
|
} | {
|
11830
11830
|
country: string;
|
@@ -11868,8 +11868,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11868
11868
|
street?: string | null | undefined;
|
11869
11869
|
zipCode?: string | null | undefined;
|
11870
11870
|
} | {
|
11871
|
-
firstname
|
11872
|
-
surname
|
11871
|
+
firstname: string;
|
11872
|
+
surname: string;
|
11873
11873
|
middlename?: string | null | undefined;
|
11874
11874
|
} | {
|
11875
11875
|
country: string;
|
@@ -12026,16 +12026,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12026
12026
|
addressLine3?: string | null | undefined;
|
12027
12027
|
postcodeOrZip?: string | null | undefined;
|
12028
12028
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12029
|
-
firstname: z.
|
12030
|
-
surname: z.
|
12029
|
+
firstname: z.ZodString;
|
12030
|
+
surname: z.ZodString;
|
12031
12031
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12032
12032
|
}, "strip", z.ZodTypeAny, {
|
12033
|
-
firstname
|
12034
|
-
surname
|
12033
|
+
firstname: string;
|
12034
|
+
surname: string;
|
12035
12035
|
middlename?: string | null | undefined;
|
12036
12036
|
}, {
|
12037
|
-
firstname
|
12038
|
-
surname
|
12037
|
+
firstname: string;
|
12038
|
+
surname: string;
|
12039
12039
|
middlename?: string | null | undefined;
|
12040
12040
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
12041
12041
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -12161,16 +12161,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12161
12161
|
addressLine3?: string | null | undefined;
|
12162
12162
|
postcodeOrZip?: string | null | undefined;
|
12163
12163
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12164
|
-
firstname: z.
|
12165
|
-
surname: z.
|
12164
|
+
firstname: z.ZodString;
|
12165
|
+
surname: z.ZodString;
|
12166
12166
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12167
12167
|
}, "strip", z.ZodTypeAny, {
|
12168
|
-
firstname
|
12169
|
-
surname
|
12168
|
+
firstname: string;
|
12169
|
+
surname: string;
|
12170
12170
|
middlename?: string | null | undefined;
|
12171
12171
|
}, {
|
12172
|
-
firstname
|
12173
|
-
surname
|
12172
|
+
firstname: string;
|
12173
|
+
surname: string;
|
12174
12174
|
middlename?: string | null | undefined;
|
12175
12175
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
12176
12176
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -12203,8 +12203,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12203
12203
|
street?: string | null | undefined;
|
12204
12204
|
zipCode?: string | null | undefined;
|
12205
12205
|
} | {
|
12206
|
-
firstname
|
12207
|
-
surname
|
12206
|
+
firstname: string;
|
12207
|
+
surname: string;
|
12208
12208
|
middlename?: string | null | undefined;
|
12209
12209
|
} | {
|
12210
12210
|
country: string;
|
@@ -12252,8 +12252,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12252
12252
|
street?: string | null | undefined;
|
12253
12253
|
zipCode?: string | null | undefined;
|
12254
12254
|
} | {
|
12255
|
-
firstname
|
12256
|
-
surname
|
12255
|
+
firstname: string;
|
12256
|
+
surname: string;
|
12257
12257
|
middlename?: string | null | undefined;
|
12258
12258
|
} | {
|
12259
12259
|
country: string;
|
@@ -12306,8 +12306,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12306
12306
|
street?: string | null | undefined;
|
12307
12307
|
zipCode?: string | null | undefined;
|
12308
12308
|
} | {
|
12309
|
-
firstname
|
12310
|
-
surname
|
12309
|
+
firstname: string;
|
12310
|
+
surname: string;
|
12311
12311
|
middlename?: string | null | undefined;
|
12312
12312
|
} | {
|
12313
12313
|
country: string;
|
@@ -12351,8 +12351,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12351
12351
|
street?: string | null | undefined;
|
12352
12352
|
zipCode?: string | null | undefined;
|
12353
12353
|
} | {
|
12354
|
-
firstname
|
12355
|
-
surname
|
12354
|
+
firstname: string;
|
12355
|
+
surname: string;
|
12356
12356
|
middlename?: string | null | undefined;
|
12357
12357
|
} | {
|
12358
12358
|
country: string;
|
@@ -12508,16 +12508,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12508
12508
|
addressLine3?: string | null | undefined;
|
12509
12509
|
postcodeOrZip?: string | null | undefined;
|
12510
12510
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12511
|
-
firstname: z.
|
12512
|
-
surname: z.
|
12511
|
+
firstname: z.ZodString;
|
12512
|
+
surname: z.ZodString;
|
12513
12513
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12514
12514
|
}, "strip", z.ZodTypeAny, {
|
12515
|
-
firstname
|
12516
|
-
surname
|
12515
|
+
firstname: string;
|
12516
|
+
surname: string;
|
12517
12517
|
middlename?: string | null | undefined;
|
12518
12518
|
}, {
|
12519
|
-
firstname
|
12520
|
-
surname
|
12519
|
+
firstname: string;
|
12520
|
+
surname: string;
|
12521
12521
|
middlename?: string | null | undefined;
|
12522
12522
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
12523
12523
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -12643,16 +12643,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12643
12643
|
addressLine3?: string | null | undefined;
|
12644
12644
|
postcodeOrZip?: string | null | undefined;
|
12645
12645
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12646
|
-
firstname: z.
|
12647
|
-
surname: z.
|
12646
|
+
firstname: z.ZodString;
|
12647
|
+
surname: z.ZodString;
|
12648
12648
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12649
12649
|
}, "strip", z.ZodTypeAny, {
|
12650
|
-
firstname
|
12651
|
-
surname
|
12650
|
+
firstname: string;
|
12651
|
+
surname: string;
|
12652
12652
|
middlename?: string | null | undefined;
|
12653
12653
|
}, {
|
12654
|
-
firstname
|
12655
|
-
surname
|
12654
|
+
firstname: string;
|
12655
|
+
surname: string;
|
12656
12656
|
middlename?: string | null | undefined;
|
12657
12657
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
12658
12658
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -12678,8 +12678,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12678
12678
|
street?: string | null | undefined;
|
12679
12679
|
zipCode?: string | null | undefined;
|
12680
12680
|
} | {
|
12681
|
-
firstname
|
12682
|
-
surname
|
12681
|
+
firstname: string;
|
12682
|
+
surname: string;
|
12683
12683
|
middlename?: string | null | undefined;
|
12684
12684
|
} | {
|
12685
12685
|
country: string;
|
@@ -12724,8 +12724,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12724
12724
|
street?: string | null | undefined;
|
12725
12725
|
zipCode?: string | null | undefined;
|
12726
12726
|
} | {
|
12727
|
-
firstname
|
12728
|
-
surname
|
12727
|
+
firstname: string;
|
12728
|
+
surname: string;
|
12729
12729
|
middlename?: string | null | undefined;
|
12730
12730
|
} | {
|
12731
12731
|
country: string;
|
@@ -12775,8 +12775,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12775
12775
|
street?: string | null | undefined;
|
12776
12776
|
zipCode?: string | null | undefined;
|
12777
12777
|
} | {
|
12778
|
-
firstname
|
12779
|
-
surname
|
12778
|
+
firstname: string;
|
12779
|
+
surname: string;
|
12780
12780
|
middlename?: string | null | undefined;
|
12781
12781
|
} | {
|
12782
12782
|
country: string;
|
@@ -12820,8 +12820,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12820
12820
|
street?: string | null | undefined;
|
12821
12821
|
zipCode?: string | null | undefined;
|
12822
12822
|
} | {
|
12823
|
-
firstname
|
12824
|
-
surname
|
12823
|
+
firstname: string;
|
12824
|
+
surname: string;
|
12825
12825
|
middlename?: string | null | undefined;
|
12826
12826
|
} | {
|
12827
12827
|
country: string;
|
@@ -12977,16 +12977,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12977
12977
|
addressLine3?: string | null | undefined;
|
12978
12978
|
postcodeOrZip?: string | null | undefined;
|
12979
12979
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12980
|
-
firstname: z.
|
12981
|
-
surname: z.
|
12980
|
+
firstname: z.ZodString;
|
12981
|
+
surname: z.ZodString;
|
12982
12982
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12983
12983
|
}, "strip", z.ZodTypeAny, {
|
12984
|
-
firstname
|
12985
|
-
surname
|
12984
|
+
firstname: string;
|
12985
|
+
surname: string;
|
12986
12986
|
middlename?: string | null | undefined;
|
12987
12987
|
}, {
|
12988
|
-
firstname
|
12989
|
-
surname
|
12988
|
+
firstname: string;
|
12989
|
+
surname: string;
|
12990
12990
|
middlename?: string | null | undefined;
|
12991
12991
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
12992
12992
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -13112,16 +13112,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13112
13112
|
addressLine3?: string | null | undefined;
|
13113
13113
|
postcodeOrZip?: string | null | undefined;
|
13114
13114
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13115
|
-
firstname: z.
|
13116
|
-
surname: z.
|
13115
|
+
firstname: z.ZodString;
|
13116
|
+
surname: z.ZodString;
|
13117
13117
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13118
13118
|
}, "strip", z.ZodTypeAny, {
|
13119
|
-
firstname
|
13120
|
-
surname
|
13119
|
+
firstname: string;
|
13120
|
+
surname: string;
|
13121
13121
|
middlename?: string | null | undefined;
|
13122
13122
|
}, {
|
13123
|
-
firstname
|
13124
|
-
surname
|
13123
|
+
firstname: string;
|
13124
|
+
surname: string;
|
13125
13125
|
middlename?: string | null | undefined;
|
13126
13126
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
13127
13127
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -13162,8 +13162,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13162
13162
|
street?: string | null | undefined;
|
13163
13163
|
zipCode?: string | null | undefined;
|
13164
13164
|
} | {
|
13165
|
-
firstname
|
13166
|
-
surname
|
13165
|
+
firstname: string;
|
13166
|
+
surname: string;
|
13167
13167
|
middlename?: string | null | undefined;
|
13168
13168
|
} | {
|
13169
13169
|
country: string;
|
@@ -13209,8 +13209,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13209
13209
|
street?: string | null | undefined;
|
13210
13210
|
zipCode?: string | null | undefined;
|
13211
13211
|
} | {
|
13212
|
-
firstname
|
13213
|
-
surname
|
13212
|
+
firstname: string;
|
13213
|
+
surname: string;
|
13214
13214
|
middlename?: string | null | undefined;
|
13215
13215
|
} | {
|
13216
13216
|
country: string;
|
@@ -13265,8 +13265,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13265
13265
|
street?: string | null | undefined;
|
13266
13266
|
zipCode?: string | null | undefined;
|
13267
13267
|
} | {
|
13268
|
-
firstname
|
13269
|
-
surname
|
13268
|
+
firstname: string;
|
13269
|
+
surname: string;
|
13270
13270
|
middlename?: string | null | undefined;
|
13271
13271
|
} | {
|
13272
13272
|
country: string;
|
@@ -13310,8 +13310,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13310
13310
|
street?: string | null | undefined;
|
13311
13311
|
zipCode?: string | null | undefined;
|
13312
13312
|
} | {
|
13313
|
-
firstname
|
13314
|
-
surname
|
13313
|
+
firstname: string;
|
13314
|
+
surname: string;
|
13315
13315
|
middlename?: string | null | undefined;
|
13316
13316
|
} | {
|
13317
13317
|
country: string;
|
@@ -13467,16 +13467,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13467
13467
|
addressLine3?: string | null | undefined;
|
13468
13468
|
postcodeOrZip?: string | null | undefined;
|
13469
13469
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13470
|
-
firstname: z.
|
13471
|
-
surname: z.
|
13470
|
+
firstname: z.ZodString;
|
13471
|
+
surname: z.ZodString;
|
13472
13472
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13473
13473
|
}, "strip", z.ZodTypeAny, {
|
13474
|
-
firstname
|
13475
|
-
surname
|
13474
|
+
firstname: string;
|
13475
|
+
surname: string;
|
13476
13476
|
middlename?: string | null | undefined;
|
13477
13477
|
}, {
|
13478
|
-
firstname
|
13479
|
-
surname
|
13478
|
+
firstname: string;
|
13479
|
+
surname: string;
|
13480
13480
|
middlename?: string | null | undefined;
|
13481
13481
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
13482
13482
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -13602,16 +13602,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13602
13602
|
addressLine3?: string | null | undefined;
|
13603
13603
|
postcodeOrZip?: string | null | undefined;
|
13604
13604
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13605
|
-
firstname: z.
|
13606
|
-
surname: z.
|
13605
|
+
firstname: z.ZodString;
|
13606
|
+
surname: z.ZodString;
|
13607
13607
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13608
13608
|
}, "strip", z.ZodTypeAny, {
|
13609
|
-
firstname
|
13610
|
-
surname
|
13609
|
+
firstname: string;
|
13610
|
+
surname: string;
|
13611
13611
|
middlename?: string | null | undefined;
|
13612
13612
|
}, {
|
13613
|
-
firstname
|
13614
|
-
surname
|
13613
|
+
firstname: string;
|
13614
|
+
surname: string;
|
13615
13615
|
middlename?: string | null | undefined;
|
13616
13616
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
13617
13617
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -13638,8 +13638,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13638
13638
|
street?: string | null | undefined;
|
13639
13639
|
zipCode?: string | null | undefined;
|
13640
13640
|
} | {
|
13641
|
-
firstname
|
13642
|
-
surname
|
13641
|
+
firstname: string;
|
13642
|
+
surname: string;
|
13643
13643
|
middlename?: string | null | undefined;
|
13644
13644
|
} | {
|
13645
13645
|
country: string;
|
@@ -13685,8 +13685,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13685
13685
|
street?: string | null | undefined;
|
13686
13686
|
zipCode?: string | null | undefined;
|
13687
13687
|
} | {
|
13688
|
-
firstname
|
13689
|
-
surname
|
13688
|
+
firstname: string;
|
13689
|
+
surname: string;
|
13690
13690
|
middlename?: string | null | undefined;
|
13691
13691
|
} | {
|
13692
13692
|
country: string;
|
@@ -13737,8 +13737,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13737
13737
|
street?: string | null | undefined;
|
13738
13738
|
zipCode?: string | null | undefined;
|
13739
13739
|
} | {
|
13740
|
-
firstname
|
13741
|
-
surname
|
13740
|
+
firstname: string;
|
13741
|
+
surname: string;
|
13742
13742
|
middlename?: string | null | undefined;
|
13743
13743
|
} | {
|
13744
13744
|
country: string;
|
@@ -13782,8 +13782,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13782
13782
|
street?: string | null | undefined;
|
13783
13783
|
zipCode?: string | null | undefined;
|
13784
13784
|
} | {
|
13785
|
-
firstname
|
13786
|
-
surname
|
13785
|
+
firstname: string;
|
13786
|
+
surname: string;
|
13787
13787
|
middlename?: string | null | undefined;
|
13788
13788
|
} | {
|
13789
13789
|
country: string;
|
@@ -13939,16 +13939,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13939
13939
|
addressLine3?: string | null | undefined;
|
13940
13940
|
postcodeOrZip?: string | null | undefined;
|
13941
13941
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13942
|
-
firstname: z.
|
13943
|
-
surname: z.
|
13942
|
+
firstname: z.ZodString;
|
13943
|
+
surname: z.ZodString;
|
13944
13944
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13945
13945
|
}, "strip", z.ZodTypeAny, {
|
13946
|
-
firstname
|
13947
|
-
surname
|
13946
|
+
firstname: string;
|
13947
|
+
surname: string;
|
13948
13948
|
middlename?: string | null | undefined;
|
13949
13949
|
}, {
|
13950
|
-
firstname
|
13951
|
-
surname
|
13950
|
+
firstname: string;
|
13951
|
+
surname: string;
|
13952
13952
|
middlename?: string | null | undefined;
|
13953
13953
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
13954
13954
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -14074,16 +14074,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
14074
14074
|
addressLine3?: string | null | undefined;
|
14075
14075
|
postcodeOrZip?: string | null | undefined;
|
14076
14076
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
14077
|
-
firstname: z.
|
14078
|
-
surname: z.
|
14077
|
+
firstname: z.ZodString;
|
14078
|
+
surname: z.ZodString;
|
14079
14079
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
14080
14080
|
}, "strip", z.ZodTypeAny, {
|
14081
|
-
firstname
|
14082
|
-
surname
|
14081
|
+
firstname: string;
|
14082
|
+
surname: string;
|
14083
14083
|
middlename?: string | null | undefined;
|
14084
14084
|
}, {
|
14085
|
-
firstname
|
14086
|
-
surname
|
14085
|
+
firstname: string;
|
14086
|
+
surname: string;
|
14087
14087
|
middlename?: string | null | undefined;
|
14088
14088
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
14089
14089
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
@@ -14109,8 +14109,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
14109
14109
|
street?: string | null | undefined;
|
14110
14110
|
zipCode?: string | null | undefined;
|
14111
14111
|
} | {
|
14112
|
-
firstname
|
14113
|
-
surname
|
14112
|
+
firstname: string;
|
14113
|
+
surname: string;
|
14114
14114
|
middlename?: string | null | undefined;
|
14115
14115
|
} | {
|
14116
14116
|
country: string;
|
@@ -14155,8 +14155,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
14155
14155
|
street?: string | null | undefined;
|
14156
14156
|
zipCode?: string | null | undefined;
|
14157
14157
|
} | {
|
14158
|
-
firstname
|
14159
|
-
surname
|
14158
|
+
firstname: string;
|
14159
|
+
surname: string;
|
14160
14160
|
middlename?: string | null | undefined;
|
14161
14161
|
} | {
|
14162
14162
|
country: string;
|
@@ -14206,8 +14206,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
14206
14206
|
street?: string | null | undefined;
|
14207
14207
|
zipCode?: string | null | undefined;
|
14208
14208
|
} | {
|
14209
|
-
firstname
|
14210
|
-
surname
|
14209
|
+
firstname: string;
|
14210
|
+
surname: string;
|
14211
14211
|
middlename?: string | null | undefined;
|
14212
14212
|
} | {
|
14213
14213
|
country: string;
|
@@ -14251,8 +14251,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
14251
14251
|
street?: string | null | undefined;
|
14252
14252
|
zipCode?: string | null | undefined;
|
14253
14253
|
} | {
|
14254
|
-
firstname
|
14255
|
-
surname
|
14254
|
+
firstname: string;
|
14255
|
+
surname: string;
|
14256
14256
|
middlename?: string | null | undefined;
|
14257
14257
|
} | {
|
14258
14258
|
country: string;
|