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