@opencrvs/toolkit 1.8.1-rc.e23b224 → 1.8.1-rc.e59d03c

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/dist/commons/api/router.d.ts +433 -410
  2. package/dist/commons/conditionals/validate.d.ts +11 -2
  3. package/dist/commons/events/ActionConfig.d.ts +2004 -366
  4. package/dist/commons/events/ActionDocument.d.ts +795 -759
  5. package/dist/commons/events/ActionInput.d.ts +650 -614
  6. package/dist/commons/events/AdvancedSearchConfig.d.ts +83 -65
  7. package/dist/commons/events/CompositeFieldValue.d.ts +6 -6
  8. package/dist/commons/events/CountryConfigQueryInput.d.ts +88 -88
  9. package/dist/commons/events/Draft.d.ts +48 -48
  10. package/dist/commons/events/EventConfig.d.ts +695 -168
  11. package/dist/commons/events/EventDocument.d.ts +471 -445
  12. package/dist/commons/events/EventIndex.d.ts +184 -62
  13. package/dist/commons/events/EventMetadata.d.ts +9 -9
  14. package/dist/commons/events/FieldConfig.d.ts +254 -43
  15. package/dist/commons/events/FieldTypeMapping.d.ts +16 -16
  16. package/dist/commons/events/FieldValue.d.ts +12 -12
  17. package/dist/commons/events/FormConfig.d.ts +1032 -246
  18. package/dist/commons/events/PageConfig.d.ts +264 -46
  19. package/dist/commons/events/WorkqueueConfig.d.ts +288 -164
  20. package/dist/commons/events/defineConfig.d.ts +129 -30
  21. package/dist/commons/events/event.d.ts +68 -6
  22. package/dist/commons/events/field.d.ts +14 -0
  23. package/dist/commons/events/test.utils.d.ts +17 -13
  24. package/dist/commons/events/utils.d.ts +236 -60
  25. package/dist/conditionals/index.js +3 -2
  26. package/dist/events/index.js +260 -99
  27. package/package.json +1 -1
  28. package/tsconfig.json +1 -1
  29. package/dist/commons/conditionals/conditionals.test.d.ts +0 -2
  30. package/dist/commons/conditionals/validate-address.test.d.ts +0 -2
  31. package/dist/commons/conditionals/validate.test.d.ts +0 -2
  32. package/dist/commons/events/utils.test.d.ts +0 -2
@@ -125,16 +125,16 @@ export declare const BaseActionInput: z.ZodObject<{
125
125
  addressLine3?: string | null | undefined;
126
126
  postcodeOrZip?: string | null | undefined;
127
127
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
128
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
129
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
128
+ firstname: z.ZodString;
129
+ surname: z.ZodString;
130
130
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
131
131
  }, "strip", z.ZodTypeAny, {
132
- firstname?: string | null | undefined;
133
- surname?: string | null | undefined;
132
+ firstname: string;
133
+ surname: string;
134
134
  middlename?: string | null | undefined;
135
135
  }, {
136
- firstname?: string | null | undefined;
137
- surname?: string | null | undefined;
136
+ firstname: string;
137
+ surname: string;
138
138
  middlename?: string | null | undefined;
139
139
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
140
140
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -260,16 +260,16 @@ export declare const BaseActionInput: z.ZodObject<{
260
260
  addressLine3?: string | null | undefined;
261
261
  postcodeOrZip?: string | null | undefined;
262
262
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
263
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
264
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
263
+ firstname: z.ZodString;
264
+ surname: z.ZodString;
265
265
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
266
266
  }, "strip", z.ZodTypeAny, {
267
- firstname?: string | null | undefined;
268
- surname?: string | null | undefined;
267
+ firstname: string;
268
+ surname: string;
269
269
  middlename?: string | null | undefined;
270
270
  }, {
271
- firstname?: string | null | undefined;
272
- surname?: string | null | undefined;
271
+ firstname: string;
272
+ surname: string;
273
273
  middlename?: string | null | undefined;
274
274
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
275
275
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -292,8 +292,8 @@ export declare const BaseActionInput: z.ZodObject<{
292
292
  street?: string | null | undefined;
293
293
  zipCode?: string | null | undefined;
294
294
  } | {
295
- firstname?: string | null | undefined;
296
- surname?: string | null | undefined;
295
+ firstname: string;
296
+ surname: string;
297
297
  middlename?: string | null | undefined;
298
298
  } | {
299
299
  country: string;
@@ -338,8 +338,8 @@ export declare const BaseActionInput: z.ZodObject<{
338
338
  street?: string | null | undefined;
339
339
  zipCode?: string | null | undefined;
340
340
  } | {
341
- firstname?: string | null | undefined;
342
- surname?: string | null | undefined;
341
+ firstname: string;
342
+ surname: string;
343
343
  middlename?: string | null | undefined;
344
344
  } | {
345
345
  country: string;
@@ -388,8 +388,8 @@ export declare const BaseActionInput: z.ZodObject<{
388
388
  street?: string | null | undefined;
389
389
  zipCode?: string | null | undefined;
390
390
  } | {
391
- firstname?: string | null | undefined;
392
- surname?: string | null | undefined;
391
+ firstname: string;
392
+ surname: string;
393
393
  middlename?: string | null | undefined;
394
394
  } | {
395
395
  country: string;
@@ -433,8 +433,8 @@ export declare const BaseActionInput: z.ZodObject<{
433
433
  street?: string | null | undefined;
434
434
  zipCode?: string | null | undefined;
435
435
  } | {
436
- firstname?: string | null | undefined;
437
- surname?: string | null | undefined;
436
+ firstname: string;
437
+ surname: string;
438
438
  middlename?: string | null | undefined;
439
439
  } | {
440
440
  country: string;
@@ -591,16 +591,16 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
591
591
  addressLine3?: string | null | undefined;
592
592
  postcodeOrZip?: string | null | undefined;
593
593
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
594
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
595
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
594
+ firstname: z.ZodString;
595
+ surname: z.ZodString;
596
596
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
597
597
  }, "strip", z.ZodTypeAny, {
598
- firstname?: string | null | undefined;
599
- surname?: string | null | undefined;
598
+ firstname: string;
599
+ surname: string;
600
600
  middlename?: string | null | undefined;
601
601
  }, {
602
- firstname?: string | null | undefined;
603
- surname?: string | null | undefined;
602
+ firstname: string;
603
+ surname: string;
604
604
  middlename?: string | null | undefined;
605
605
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
606
606
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -726,16 +726,16 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
726
726
  addressLine3?: string | null | undefined;
727
727
  postcodeOrZip?: string | null | undefined;
728
728
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
729
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
730
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
729
+ firstname: z.ZodString;
730
+ surname: z.ZodString;
731
731
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
732
732
  }, "strip", z.ZodTypeAny, {
733
- firstname?: string | null | undefined;
734
- surname?: string | null | undefined;
733
+ firstname: string;
734
+ surname: string;
735
735
  middlename?: string | null | undefined;
736
736
  }, {
737
- firstname?: string | null | undefined;
738
- surname?: string | null | undefined;
737
+ firstname: string;
738
+ surname: string;
739
739
  middlename?: string | null | undefined;
740
740
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
741
741
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -762,8 +762,8 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
762
762
  street?: string | null | undefined;
763
763
  zipCode?: string | null | undefined;
764
764
  } | {
765
- firstname?: string | null | undefined;
766
- surname?: string | null | undefined;
765
+ firstname: string;
766
+ surname: string;
767
767
  middlename?: string | null | undefined;
768
768
  } | {
769
769
  country: string;
@@ -808,8 +808,8 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
808
808
  street?: string | null | undefined;
809
809
  zipCode?: string | null | undefined;
810
810
  } | {
811
- firstname?: string | null | undefined;
812
- surname?: string | null | undefined;
811
+ firstname: string;
812
+ surname: string;
813
813
  middlename?: string | null | undefined;
814
814
  } | {
815
815
  country: string;
@@ -860,8 +860,8 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
860
860
  street?: string | null | undefined;
861
861
  zipCode?: string | null | undefined;
862
862
  } | {
863
- firstname?: string | null | undefined;
864
- surname?: string | null | undefined;
863
+ firstname: string;
864
+ surname: string;
865
865
  middlename?: string | null | undefined;
866
866
  } | {
867
867
  country: string;
@@ -905,8 +905,8 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
905
905
  street?: string | null | undefined;
906
906
  zipCode?: string | null | undefined;
907
907
  } | {
908
- firstname?: string | null | undefined;
909
- surname?: string | null | undefined;
908
+ firstname: string;
909
+ surname: string;
910
910
  middlename?: string | null | undefined;
911
911
  } | {
912
912
  country: string;
@@ -1065,16 +1065,16 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1065
1065
  addressLine3?: string | null | undefined;
1066
1066
  postcodeOrZip?: string | null | undefined;
1067
1067
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1068
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1069
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1068
+ firstname: z.ZodString;
1069
+ surname: z.ZodString;
1070
1070
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1071
1071
  }, "strip", z.ZodTypeAny, {
1072
- firstname?: string | null | undefined;
1073
- surname?: string | null | undefined;
1072
+ firstname: string;
1073
+ surname: string;
1074
1074
  middlename?: string | null | undefined;
1075
1075
  }, {
1076
- firstname?: string | null | undefined;
1077
- surname?: string | null | undefined;
1076
+ firstname: string;
1077
+ surname: string;
1078
1078
  middlename?: string | null | undefined;
1079
1079
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
1080
1080
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -1200,16 +1200,16 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1200
1200
  addressLine3?: string | null | undefined;
1201
1201
  postcodeOrZip?: string | null | undefined;
1202
1202
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1203
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1204
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1203
+ firstname: z.ZodString;
1204
+ surname: z.ZodString;
1205
1205
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1206
1206
  }, "strip", z.ZodTypeAny, {
1207
- firstname?: string | null | undefined;
1208
- surname?: string | null | undefined;
1207
+ firstname: string;
1208
+ surname: string;
1209
1209
  middlename?: string | null | undefined;
1210
1210
  }, {
1211
- firstname?: string | null | undefined;
1212
- surname?: string | null | undefined;
1211
+ firstname: string;
1212
+ surname: string;
1213
1213
  middlename?: string | null | undefined;
1214
1214
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
1215
1215
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -1236,8 +1236,8 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1236
1236
  street?: string | null | undefined;
1237
1237
  zipCode?: string | null | undefined;
1238
1238
  } | {
1239
- firstname?: string | null | undefined;
1240
- surname?: string | null | undefined;
1239
+ firstname: string;
1240
+ surname: string;
1241
1241
  middlename?: string | null | undefined;
1242
1242
  } | {
1243
1243
  country: string;
@@ -1283,8 +1283,8 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1283
1283
  street?: string | null | undefined;
1284
1284
  zipCode?: string | null | undefined;
1285
1285
  } | {
1286
- firstname?: string | null | undefined;
1287
- surname?: string | null | undefined;
1286
+ firstname: string;
1287
+ surname: string;
1288
1288
  middlename?: string | null | undefined;
1289
1289
  } | {
1290
1290
  country: string;
@@ -1335,8 +1335,8 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1335
1335
  street?: string | null | undefined;
1336
1336
  zipCode?: string | null | undefined;
1337
1337
  } | {
1338
- firstname?: string | null | undefined;
1339
- surname?: string | null | undefined;
1338
+ firstname: string;
1339
+ surname: string;
1340
1340
  middlename?: string | null | undefined;
1341
1341
  } | {
1342
1342
  country: string;
@@ -1380,8 +1380,8 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1380
1380
  street?: string | null | undefined;
1381
1381
  zipCode?: string | null | undefined;
1382
1382
  } | {
1383
- firstname?: string | null | undefined;
1384
- surname?: string | null | undefined;
1383
+ firstname: string;
1384
+ surname: string;
1385
1385
  middlename?: string | null | undefined;
1386
1386
  } | {
1387
1387
  country: string;
@@ -1539,16 +1539,16 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1539
1539
  addressLine3?: string | null | undefined;
1540
1540
  postcodeOrZip?: string | null | undefined;
1541
1541
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1542
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1543
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1542
+ firstname: z.ZodString;
1543
+ surname: z.ZodString;
1544
1544
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1545
1545
  }, "strip", z.ZodTypeAny, {
1546
- firstname?: string | null | undefined;
1547
- surname?: string | null | undefined;
1546
+ firstname: string;
1547
+ surname: string;
1548
1548
  middlename?: string | null | undefined;
1549
1549
  }, {
1550
- firstname?: string | null | undefined;
1551
- surname?: string | null | undefined;
1550
+ firstname: string;
1551
+ surname: string;
1552
1552
  middlename?: string | null | undefined;
1553
1553
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
1554
1554
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -1674,16 +1674,16 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1674
1674
  addressLine3?: string | null | undefined;
1675
1675
  postcodeOrZip?: string | null | undefined;
1676
1676
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1677
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1678
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1677
+ firstname: z.ZodString;
1678
+ surname: z.ZodString;
1679
1679
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1680
1680
  }, "strip", z.ZodTypeAny, {
1681
- firstname?: string | null | undefined;
1682
- surname?: string | null | undefined;
1681
+ firstname: string;
1682
+ surname: string;
1683
1683
  middlename?: string | null | undefined;
1684
1684
  }, {
1685
- firstname?: string | null | undefined;
1686
- surname?: string | null | undefined;
1685
+ firstname: string;
1686
+ surname: string;
1687
1687
  middlename?: string | null | undefined;
1688
1688
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
1689
1689
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -1709,8 +1709,8 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1709
1709
  street?: string | null | undefined;
1710
1710
  zipCode?: string | null | undefined;
1711
1711
  } | {
1712
- firstname?: string | null | undefined;
1713
- surname?: string | null | undefined;
1712
+ firstname: string;
1713
+ surname: string;
1714
1714
  middlename?: string | null | undefined;
1715
1715
  } | {
1716
1716
  country: string;
@@ -1755,8 +1755,8 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1755
1755
  street?: string | null | undefined;
1756
1756
  zipCode?: string | null | undefined;
1757
1757
  } | {
1758
- firstname?: string | null | undefined;
1759
- surname?: string | null | undefined;
1758
+ firstname: string;
1759
+ surname: string;
1760
1760
  middlename?: string | null | undefined;
1761
1761
  } | {
1762
1762
  country: string;
@@ -1806,8 +1806,8 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1806
1806
  street?: string | null | undefined;
1807
1807
  zipCode?: string | null | undefined;
1808
1808
  } | {
1809
- firstname?: string | null | undefined;
1810
- surname?: string | null | undefined;
1809
+ firstname: string;
1810
+ surname: string;
1811
1811
  middlename?: string | null | undefined;
1812
1812
  } | {
1813
1813
  country: string;
@@ -1851,8 +1851,8 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1851
1851
  street?: string | null | undefined;
1852
1852
  zipCode?: string | null | undefined;
1853
1853
  } | {
1854
- firstname?: string | null | undefined;
1855
- surname?: string | null | undefined;
1854
+ firstname: string;
1855
+ surname: string;
1856
1856
  middlename?: string | null | undefined;
1857
1857
  } | {
1858
1858
  country: string;
@@ -2010,16 +2010,16 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2010
2010
  addressLine3?: string | null | undefined;
2011
2011
  postcodeOrZip?: string | null | undefined;
2012
2012
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2013
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2014
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2013
+ firstname: z.ZodString;
2014
+ surname: z.ZodString;
2015
2015
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2016
2016
  }, "strip", z.ZodTypeAny, {
2017
- firstname?: string | null | undefined;
2018
- surname?: string | null | undefined;
2017
+ firstname: string;
2018
+ surname: string;
2019
2019
  middlename?: string | null | undefined;
2020
2020
  }, {
2021
- firstname?: string | null | undefined;
2022
- surname?: string | null | undefined;
2021
+ firstname: string;
2022
+ surname: string;
2023
2023
  middlename?: string | null | undefined;
2024
2024
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2025
2025
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -2145,16 +2145,16 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2145
2145
  addressLine3?: string | null | undefined;
2146
2146
  postcodeOrZip?: string | null | undefined;
2147
2147
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2148
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2149
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2148
+ firstname: z.ZodString;
2149
+ surname: z.ZodString;
2150
2150
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2151
2151
  }, "strip", z.ZodTypeAny, {
2152
- firstname?: string | null | undefined;
2153
- surname?: string | null | undefined;
2152
+ firstname: string;
2153
+ surname: string;
2154
2154
  middlename?: string | null | undefined;
2155
2155
  }, {
2156
- firstname?: string | null | undefined;
2157
- surname?: string | null | undefined;
2156
+ firstname: string;
2157
+ surname: string;
2158
2158
  middlename?: string | null | undefined;
2159
2159
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2160
2160
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -2180,8 +2180,8 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2180
2180
  street?: string | null | undefined;
2181
2181
  zipCode?: string | null | undefined;
2182
2182
  } | {
2183
- firstname?: string | null | undefined;
2184
- surname?: string | null | undefined;
2183
+ firstname: string;
2184
+ surname: string;
2185
2185
  middlename?: string | null | undefined;
2186
2186
  } | {
2187
2187
  country: string;
@@ -2226,8 +2226,8 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2226
2226
  street?: string | null | undefined;
2227
2227
  zipCode?: string | null | undefined;
2228
2228
  } | {
2229
- firstname?: string | null | undefined;
2230
- surname?: string | null | undefined;
2229
+ firstname: string;
2230
+ surname: string;
2231
2231
  middlename?: string | null | undefined;
2232
2232
  } | {
2233
2233
  country: string;
@@ -2277,8 +2277,8 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2277
2277
  street?: string | null | undefined;
2278
2278
  zipCode?: string | null | undefined;
2279
2279
  } | {
2280
- firstname?: string | null | undefined;
2281
- surname?: string | null | undefined;
2280
+ firstname: string;
2281
+ surname: string;
2282
2282
  middlename?: string | null | undefined;
2283
2283
  } | {
2284
2284
  country: string;
@@ -2322,8 +2322,8 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2322
2322
  street?: string | null | undefined;
2323
2323
  zipCode?: string | null | undefined;
2324
2324
  } | {
2325
- firstname?: string | null | undefined;
2326
- surname?: string | null | undefined;
2325
+ firstname: string;
2326
+ surname: string;
2327
2327
  middlename?: string | null | undefined;
2328
2328
  } | {
2329
2329
  country: string;
@@ -2480,16 +2480,16 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2480
2480
  addressLine3?: string | null | undefined;
2481
2481
  postcodeOrZip?: string | null | undefined;
2482
2482
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2483
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2484
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2483
+ firstname: z.ZodString;
2484
+ surname: z.ZodString;
2485
2485
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2486
2486
  }, "strip", z.ZodTypeAny, {
2487
- firstname?: string | null | undefined;
2488
- surname?: string | null | undefined;
2487
+ firstname: string;
2488
+ surname: string;
2489
2489
  middlename?: string | null | undefined;
2490
2490
  }, {
2491
- firstname?: string | null | undefined;
2492
- surname?: string | null | undefined;
2491
+ firstname: string;
2492
+ surname: string;
2493
2493
  middlename?: string | null | undefined;
2494
2494
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2495
2495
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -2615,23 +2615,23 @@ 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.ZodOptional<z.ZodNullable<z.ZodString>>;
2619
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2618
+ firstname: z.ZodString;
2619
+ surname: z.ZodString;
2620
2620
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2621
2621
  }, "strip", z.ZodTypeAny, {
2622
- firstname?: string | null | undefined;
2623
- surname?: string | null | undefined;
2622
+ firstname: string;
2623
+ surname: string;
2624
2624
  middlename?: string | null | undefined;
2625
2625
  }, {
2626
- firstname?: string | null | undefined;
2627
- surname?: string | null | undefined;
2626
+ firstname: string;
2627
+ surname: string;
2628
2628
  middlename?: string | null | undefined;
2629
2629
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2630
2630
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
2631
2631
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
2632
2632
  }, {
2633
2633
  type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
2634
- actionDetails: z.ZodOptional<z.ZodObject<{
2634
+ content: z.ZodOptional<z.ZodObject<{
2635
2635
  templateId: z.ZodOptional<z.ZodString>;
2636
2636
  }, "strip", z.ZodTypeAny, {
2637
2637
  templateId?: string | undefined;
@@ -2657,8 +2657,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2657
2657
  street?: string | null | undefined;
2658
2658
  zipCode?: string | null | undefined;
2659
2659
  } | {
2660
- firstname?: string | null | undefined;
2661
- surname?: string | null | undefined;
2660
+ firstname: string;
2661
+ surname: string;
2662
2662
  middlename?: string | null | undefined;
2663
2663
  } | {
2664
2664
  country: string;
@@ -2687,6 +2687,9 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2687
2687
  end: string;
2688
2688
  } | null | undefined>;
2689
2689
  eventId: string & z.BRAND<"UUID">;
2690
+ content?: {
2691
+ templateId?: string | undefined;
2692
+ } | undefined;
2690
2693
  annotation?: Record<string, string | number | boolean | {
2691
2694
  type: string;
2692
2695
  path: string;
@@ -2703,8 +2706,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2703
2706
  street?: string | null | undefined;
2704
2707
  zipCode?: string | null | undefined;
2705
2708
  } | {
2706
- firstname?: string | null | undefined;
2707
- surname?: string | null | undefined;
2709
+ firstname: string;
2710
+ surname: string;
2708
2711
  middlename?: string | null | undefined;
2709
2712
  } | {
2710
2713
  country: string;
@@ -2733,14 +2736,14 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2733
2736
  end: string;
2734
2737
  } | null | undefined> | undefined;
2735
2738
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
2736
- actionDetails?: {
2737
- templateId?: string | undefined;
2738
- } | undefined;
2739
2739
  keepAssignment?: boolean | undefined;
2740
2740
  }, {
2741
2741
  transactionId: string;
2742
2742
  eventId: string;
2743
2743
  type?: "PRINT_CERTIFICATE" | undefined;
2744
+ content?: {
2745
+ templateId?: string | undefined;
2746
+ } | undefined;
2744
2747
  declaration?: Record<string, string | number | boolean | {
2745
2748
  type: string;
2746
2749
  path: string;
@@ -2757,8 +2760,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2757
2760
  street?: string | null | undefined;
2758
2761
  zipCode?: string | null | undefined;
2759
2762
  } | {
2760
- firstname?: string | null | undefined;
2761
- surname?: string | null | undefined;
2763
+ firstname: string;
2764
+ surname: string;
2762
2765
  middlename?: string | null | undefined;
2763
2766
  } | {
2764
2767
  country: string;
@@ -2802,8 +2805,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2802
2805
  street?: string | null | undefined;
2803
2806
  zipCode?: string | null | undefined;
2804
2807
  } | {
2805
- firstname?: string | null | undefined;
2806
- surname?: string | null | undefined;
2808
+ firstname: string;
2809
+ surname: string;
2807
2810
  middlename?: string | null | undefined;
2808
2811
  } | {
2809
2812
  country: string;
@@ -2832,9 +2835,6 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2832
2835
  end: string;
2833
2836
  } | null | undefined> | undefined;
2834
2837
  originalActionId?: string | undefined;
2835
- actionDetails?: {
2836
- templateId?: string | undefined;
2837
- } | undefined;
2838
2838
  keepAssignment?: boolean | undefined;
2839
2839
  }>;
2840
2840
  export type DeclareActionInput = z.infer<typeof DeclareActionInput>;
@@ -2964,16 +2964,16 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2964
2964
  addressLine3?: string | null | undefined;
2965
2965
  postcodeOrZip?: string | null | undefined;
2966
2966
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2967
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2968
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2967
+ firstname: z.ZodString;
2968
+ surname: z.ZodString;
2969
2969
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2970
2970
  }, "strip", z.ZodTypeAny, {
2971
- firstname?: string | null | undefined;
2972
- surname?: string | null | undefined;
2971
+ firstname: string;
2972
+ surname: string;
2973
2973
  middlename?: string | null | undefined;
2974
2974
  }, {
2975
- firstname?: string | null | undefined;
2976
- surname?: string | null | undefined;
2975
+ firstname: string;
2976
+ surname: string;
2977
2977
  middlename?: string | null | undefined;
2978
2978
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2979
2979
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -3099,16 +3099,16 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
3099
3099
  addressLine3?: string | null | undefined;
3100
3100
  postcodeOrZip?: string | null | undefined;
3101
3101
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3102
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3103
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3102
+ firstname: z.ZodString;
3103
+ surname: z.ZodString;
3104
3104
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3105
3105
  }, "strip", z.ZodTypeAny, {
3106
- firstname?: string | null | undefined;
3107
- surname?: string | null | undefined;
3106
+ firstname: string;
3107
+ surname: string;
3108
3108
  middlename?: string | null | undefined;
3109
3109
  }, {
3110
- firstname?: string | null | undefined;
3111
- surname?: string | null | undefined;
3110
+ firstname: string;
3111
+ surname: string;
3112
3112
  middlename?: string | null | undefined;
3113
3113
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
3114
3114
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -3148,8 +3148,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
3148
3148
  street?: string | null | undefined;
3149
3149
  zipCode?: string | null | undefined;
3150
3150
  } | {
3151
- firstname?: string | null | undefined;
3152
- surname?: string | null | undefined;
3151
+ firstname: string;
3152
+ surname: string;
3153
3153
  middlename?: string | null | undefined;
3154
3154
  } | {
3155
3155
  country: string;
@@ -3194,8 +3194,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
3194
3194
  street?: string | null | undefined;
3195
3195
  zipCode?: string | null | undefined;
3196
3196
  } | {
3197
- firstname?: string | null | undefined;
3198
- surname?: string | null | undefined;
3197
+ firstname: string;
3198
+ surname: string;
3199
3199
  middlename?: string | null | undefined;
3200
3200
  } | {
3201
3201
  country: string;
@@ -3249,8 +3249,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
3249
3249
  street?: string | null | undefined;
3250
3250
  zipCode?: string | null | undefined;
3251
3251
  } | {
3252
- firstname?: string | null | undefined;
3253
- surname?: string | null | undefined;
3252
+ firstname: string;
3253
+ surname: string;
3254
3254
  middlename?: string | null | undefined;
3255
3255
  } | {
3256
3256
  country: string;
@@ -3294,8 +3294,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
3294
3294
  street?: string | null | undefined;
3295
3295
  zipCode?: string | null | undefined;
3296
3296
  } | {
3297
- firstname?: string | null | undefined;
3298
- surname?: string | null | undefined;
3297
+ firstname: string;
3298
+ surname: string;
3299
3299
  middlename?: string | null | undefined;
3300
3300
  } | {
3301
3301
  country: string;
@@ -3453,16 +3453,16 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3453
3453
  addressLine3?: string | null | undefined;
3454
3454
  postcodeOrZip?: string | null | undefined;
3455
3455
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3456
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3457
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3456
+ firstname: z.ZodString;
3457
+ surname: z.ZodString;
3458
3458
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3459
3459
  }, "strip", z.ZodTypeAny, {
3460
- firstname?: string | null | undefined;
3461
- surname?: string | null | undefined;
3460
+ firstname: string;
3461
+ surname: string;
3462
3462
  middlename?: string | null | undefined;
3463
3463
  }, {
3464
- firstname?: string | null | undefined;
3465
- surname?: string | null | undefined;
3464
+ firstname: string;
3465
+ surname: string;
3466
3466
  middlename?: string | null | undefined;
3467
3467
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
3468
3468
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -3588,16 +3588,16 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3588
3588
  addressLine3?: string | null | undefined;
3589
3589
  postcodeOrZip?: string | null | undefined;
3590
3590
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3591
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3592
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3591
+ firstname: z.ZodString;
3592
+ surname: z.ZodString;
3593
3593
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3594
3594
  }, "strip", z.ZodTypeAny, {
3595
- firstname?: string | null | undefined;
3596
- surname?: string | null | undefined;
3595
+ firstname: string;
3596
+ surname: string;
3597
3597
  middlename?: string | null | undefined;
3598
3598
  }, {
3599
- firstname?: string | null | undefined;
3600
- surname?: string | null | undefined;
3599
+ firstname: string;
3600
+ surname: string;
3601
3601
  middlename?: string | null | undefined;
3602
3602
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
3603
3603
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -3623,8 +3623,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3623
3623
  street?: string | null | undefined;
3624
3624
  zipCode?: string | null | undefined;
3625
3625
  } | {
3626
- firstname?: string | null | undefined;
3627
- surname?: string | null | undefined;
3626
+ firstname: string;
3627
+ surname: string;
3628
3628
  middlename?: string | null | undefined;
3629
3629
  } | {
3630
3630
  country: string;
@@ -3669,8 +3669,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3669
3669
  street?: string | null | undefined;
3670
3670
  zipCode?: string | null | undefined;
3671
3671
  } | {
3672
- firstname?: string | null | undefined;
3673
- surname?: string | null | undefined;
3672
+ firstname: string;
3673
+ surname: string;
3674
3674
  middlename?: string | null | undefined;
3675
3675
  } | {
3676
3676
  country: string;
@@ -3720,8 +3720,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3720
3720
  street?: string | null | undefined;
3721
3721
  zipCode?: string | null | undefined;
3722
3722
  } | {
3723
- firstname?: string | null | undefined;
3724
- surname?: string | null | undefined;
3723
+ firstname: string;
3724
+ surname: string;
3725
3725
  middlename?: string | null | undefined;
3726
3726
  } | {
3727
3727
  country: string;
@@ -3765,8 +3765,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3765
3765
  street?: string | null | undefined;
3766
3766
  zipCode?: string | null | undefined;
3767
3767
  } | {
3768
- firstname?: string | null | undefined;
3769
- surname?: string | null | undefined;
3768
+ firstname: string;
3769
+ surname: string;
3770
3770
  middlename?: string | null | undefined;
3771
3771
  } | {
3772
3772
  country: string;
@@ -3924,16 +3924,16 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3924
3924
  addressLine3?: string | null | undefined;
3925
3925
  postcodeOrZip?: string | null | undefined;
3926
3926
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3927
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3928
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3927
+ firstname: z.ZodString;
3928
+ surname: z.ZodString;
3929
3929
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3930
3930
  }, "strip", z.ZodTypeAny, {
3931
- firstname?: string | null | undefined;
3932
- surname?: string | null | undefined;
3931
+ firstname: string;
3932
+ surname: string;
3933
3933
  middlename?: string | null | undefined;
3934
3934
  }, {
3935
- firstname?: string | null | undefined;
3936
- surname?: string | null | undefined;
3935
+ firstname: string;
3936
+ surname: string;
3937
3937
  middlename?: string | null | undefined;
3938
3938
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
3939
3939
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -4059,16 +4059,16 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
4059
4059
  addressLine3?: string | null | undefined;
4060
4060
  postcodeOrZip?: string | null | undefined;
4061
4061
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4062
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4063
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4062
+ firstname: z.ZodString;
4063
+ surname: z.ZodString;
4064
4064
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4065
4065
  }, "strip", z.ZodTypeAny, {
4066
- firstname?: string | null | undefined;
4067
- surname?: string | null | undefined;
4066
+ firstname: string;
4067
+ surname: string;
4068
4068
  middlename?: string | null | undefined;
4069
4069
  }, {
4070
- firstname?: string | null | undefined;
4071
- surname?: string | null | undefined;
4070
+ firstname: string;
4071
+ surname: string;
4072
4072
  middlename?: string | null | undefined;
4073
4073
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
4074
4074
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -4108,8 +4108,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
4108
4108
  street?: string | null | undefined;
4109
4109
  zipCode?: string | null | undefined;
4110
4110
  } | {
4111
- firstname?: string | null | undefined;
4112
- surname?: string | null | undefined;
4111
+ firstname: string;
4112
+ surname: string;
4113
4113
  middlename?: string | null | undefined;
4114
4114
  } | {
4115
4115
  country: string;
@@ -4154,8 +4154,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
4154
4154
  street?: string | null | undefined;
4155
4155
  zipCode?: string | null | undefined;
4156
4156
  } | {
4157
- firstname?: string | null | undefined;
4158
- surname?: string | null | undefined;
4157
+ firstname: string;
4158
+ surname: string;
4159
4159
  middlename?: string | null | undefined;
4160
4160
  } | {
4161
4161
  country: string;
@@ -4209,8 +4209,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
4209
4209
  street?: string | null | undefined;
4210
4210
  zipCode?: string | null | undefined;
4211
4211
  } | {
4212
- firstname?: string | null | undefined;
4213
- surname?: string | null | undefined;
4212
+ firstname: string;
4213
+ surname: string;
4214
4214
  middlename?: string | null | undefined;
4215
4215
  } | {
4216
4216
  country: string;
@@ -4254,8 +4254,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
4254
4254
  street?: string | null | undefined;
4255
4255
  zipCode?: string | null | undefined;
4256
4256
  } | {
4257
- firstname?: string | null | undefined;
4258
- surname?: string | null | undefined;
4257
+ firstname: string;
4258
+ surname: string;
4259
4259
  middlename?: string | null | undefined;
4260
4260
  } | {
4261
4261
  country: string;
@@ -4413,16 +4413,16 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4413
4413
  addressLine3?: string | null | undefined;
4414
4414
  postcodeOrZip?: string | null | undefined;
4415
4415
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4416
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4417
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4416
+ firstname: z.ZodString;
4417
+ surname: z.ZodString;
4418
4418
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4419
4419
  }, "strip", z.ZodTypeAny, {
4420
- firstname?: string | null | undefined;
4421
- surname?: string | null | undefined;
4420
+ firstname: string;
4421
+ surname: string;
4422
4422
  middlename?: string | null | undefined;
4423
4423
  }, {
4424
- firstname?: string | null | undefined;
4425
- surname?: string | null | undefined;
4424
+ firstname: string;
4425
+ surname: string;
4426
4426
  middlename?: string | null | undefined;
4427
4427
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
4428
4428
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -4548,16 +4548,16 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4548
4548
  addressLine3?: string | null | undefined;
4549
4549
  postcodeOrZip?: string | null | undefined;
4550
4550
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4551
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4552
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4551
+ firstname: z.ZodString;
4552
+ surname: z.ZodString;
4553
4553
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4554
4554
  }, "strip", z.ZodTypeAny, {
4555
- firstname?: string | null | undefined;
4556
- surname?: string | null | undefined;
4555
+ firstname: string;
4556
+ surname: string;
4557
4557
  middlename?: string | null | undefined;
4558
4558
  }, {
4559
- firstname?: string | null | undefined;
4560
- surname?: string | null | undefined;
4559
+ firstname: string;
4560
+ surname: string;
4561
4561
  middlename?: string | null | undefined;
4562
4562
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
4563
4563
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -4584,8 +4584,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4584
4584
  street?: string | null | undefined;
4585
4585
  zipCode?: string | null | undefined;
4586
4586
  } | {
4587
- firstname?: string | null | undefined;
4588
- surname?: string | null | undefined;
4587
+ firstname: string;
4588
+ surname: string;
4589
4589
  middlename?: string | null | undefined;
4590
4590
  } | {
4591
4591
  country: string;
@@ -4631,8 +4631,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4631
4631
  street?: string | null | undefined;
4632
4632
  zipCode?: string | null | undefined;
4633
4633
  } | {
4634
- firstname?: string | null | undefined;
4635
- surname?: string | null | undefined;
4634
+ firstname: string;
4635
+ surname: string;
4636
4636
  middlename?: string | null | undefined;
4637
4637
  } | {
4638
4638
  country: string;
@@ -4683,8 +4683,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4683
4683
  street?: string | null | undefined;
4684
4684
  zipCode?: string | null | undefined;
4685
4685
  } | {
4686
- firstname?: string | null | undefined;
4687
- surname?: string | null | undefined;
4686
+ firstname: string;
4687
+ surname: string;
4688
4688
  middlename?: string | null | undefined;
4689
4689
  } | {
4690
4690
  country: string;
@@ -4728,8 +4728,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4728
4728
  street?: string | null | undefined;
4729
4729
  zipCode?: string | null | undefined;
4730
4730
  } | {
4731
- firstname?: string | null | undefined;
4732
- surname?: string | null | undefined;
4731
+ firstname: string;
4732
+ surname: string;
4733
4733
  middlename?: string | null | undefined;
4734
4734
  } | {
4735
4735
  country: string;
@@ -4887,16 +4887,16 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4887
4887
  addressLine3?: string | null | undefined;
4888
4888
  postcodeOrZip?: string | null | undefined;
4889
4889
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4890
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4891
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4890
+ firstname: z.ZodString;
4891
+ surname: z.ZodString;
4892
4892
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4893
4893
  }, "strip", z.ZodTypeAny, {
4894
- firstname?: string | null | undefined;
4895
- surname?: string | null | undefined;
4894
+ firstname: string;
4895
+ surname: string;
4896
4896
  middlename?: string | null | undefined;
4897
4897
  }, {
4898
- firstname?: string | null | undefined;
4899
- surname?: string | null | undefined;
4898
+ firstname: string;
4899
+ surname: string;
4900
4900
  middlename?: string | null | undefined;
4901
4901
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
4902
4902
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -5022,16 +5022,16 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
5022
5022
  addressLine3?: string | null | undefined;
5023
5023
  postcodeOrZip?: string | null | undefined;
5024
5024
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5025
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5026
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5025
+ firstname: z.ZodString;
5026
+ surname: z.ZodString;
5027
5027
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5028
5028
  }, "strip", z.ZodTypeAny, {
5029
- firstname?: string | null | undefined;
5030
- surname?: string | null | undefined;
5029
+ firstname: string;
5030
+ surname: string;
5031
5031
  middlename?: string | null | undefined;
5032
5032
  }, {
5033
- firstname?: string | null | undefined;
5034
- surname?: string | null | undefined;
5033
+ firstname: string;
5034
+ surname: string;
5035
5035
  middlename?: string | null | undefined;
5036
5036
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5037
5037
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -5058,8 +5058,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
5058
5058
  street?: string | null | undefined;
5059
5059
  zipCode?: string | null | undefined;
5060
5060
  } | {
5061
- firstname?: string | null | undefined;
5062
- surname?: string | null | undefined;
5061
+ firstname: string;
5062
+ surname: string;
5063
5063
  middlename?: string | null | undefined;
5064
5064
  } | {
5065
5065
  country: string;
@@ -5105,8 +5105,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
5105
5105
  street?: string | null | undefined;
5106
5106
  zipCode?: string | null | undefined;
5107
5107
  } | {
5108
- firstname?: string | null | undefined;
5109
- surname?: string | null | undefined;
5108
+ firstname: string;
5109
+ surname: string;
5110
5110
  middlename?: string | null | undefined;
5111
5111
  } | {
5112
5112
  country: string;
@@ -5156,8 +5156,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
5156
5156
  street?: string | null | undefined;
5157
5157
  zipCode?: string | null | undefined;
5158
5158
  } | {
5159
- firstname?: string | null | undefined;
5160
- surname?: string | null | undefined;
5159
+ firstname: string;
5160
+ surname: string;
5161
5161
  middlename?: string | null | undefined;
5162
5162
  } | {
5163
5163
  country: string;
@@ -5201,8 +5201,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
5201
5201
  street?: string | null | undefined;
5202
5202
  zipCode?: string | null | undefined;
5203
5203
  } | {
5204
- firstname?: string | null | undefined;
5205
- surname?: string | null | undefined;
5204
+ firstname: string;
5205
+ surname: string;
5206
5206
  middlename?: string | null | undefined;
5207
5207
  } | {
5208
5208
  country: string;
@@ -5361,16 +5361,16 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5361
5361
  addressLine3?: string | null | undefined;
5362
5362
  postcodeOrZip?: string | null | undefined;
5363
5363
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5364
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5365
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5364
+ firstname: z.ZodString;
5365
+ surname: z.ZodString;
5366
5366
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5367
5367
  }, "strip", z.ZodTypeAny, {
5368
- firstname?: string | null | undefined;
5369
- surname?: string | null | undefined;
5368
+ firstname: string;
5369
+ surname: string;
5370
5370
  middlename?: string | null | undefined;
5371
5371
  }, {
5372
- firstname?: string | null | undefined;
5373
- surname?: string | null | undefined;
5372
+ firstname: string;
5373
+ surname: string;
5374
5374
  middlename?: string | null | undefined;
5375
5375
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5376
5376
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -5496,16 +5496,16 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5496
5496
  addressLine3?: string | null | undefined;
5497
5497
  postcodeOrZip?: string | null | undefined;
5498
5498
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5499
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5500
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5499
+ firstname: z.ZodString;
5500
+ surname: z.ZodString;
5501
5501
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5502
5502
  }, "strip", z.ZodTypeAny, {
5503
- firstname?: string | null | undefined;
5504
- surname?: string | null | undefined;
5503
+ firstname: string;
5504
+ surname: string;
5505
5505
  middlename?: string | null | undefined;
5506
5506
  }, {
5507
- firstname?: string | null | undefined;
5508
- surname?: string | null | undefined;
5507
+ firstname: string;
5508
+ surname: string;
5509
5509
  middlename?: string | null | undefined;
5510
5510
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5511
5511
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -5531,8 +5531,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5531
5531
  street?: string | null | undefined;
5532
5532
  zipCode?: string | null | undefined;
5533
5533
  } | {
5534
- firstname?: string | null | undefined;
5535
- surname?: string | null | undefined;
5534
+ firstname: string;
5535
+ surname: string;
5536
5536
  middlename?: string | null | undefined;
5537
5537
  } | {
5538
5538
  country: string;
@@ -5577,8 +5577,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5577
5577
  street?: string | null | undefined;
5578
5578
  zipCode?: string | null | undefined;
5579
5579
  } | {
5580
- firstname?: string | null | undefined;
5581
- surname?: string | null | undefined;
5580
+ firstname: string;
5581
+ surname: string;
5582
5582
  middlename?: string | null | undefined;
5583
5583
  } | {
5584
5584
  country: string;
@@ -5628,8 +5628,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5628
5628
  street?: string | null | undefined;
5629
5629
  zipCode?: string | null | undefined;
5630
5630
  } | {
5631
- firstname?: string | null | undefined;
5632
- surname?: string | null | undefined;
5631
+ firstname: string;
5632
+ surname: string;
5633
5633
  middlename?: string | null | undefined;
5634
5634
  } | {
5635
5635
  country: string;
@@ -5673,8 +5673,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5673
5673
  street?: string | null | undefined;
5674
5674
  zipCode?: string | null | undefined;
5675
5675
  } | {
5676
- firstname?: string | null | undefined;
5677
- surname?: string | null | undefined;
5676
+ firstname: string;
5677
+ surname: string;
5678
5678
  middlename?: string | null | undefined;
5679
5679
  } | {
5680
5680
  country: string;
@@ -5832,16 +5832,16 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5832
5832
  addressLine3?: string | null | undefined;
5833
5833
  postcodeOrZip?: string | null | undefined;
5834
5834
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5835
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5836
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5835
+ firstname: z.ZodString;
5836
+ surname: z.ZodString;
5837
5837
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5838
5838
  }, "strip", z.ZodTypeAny, {
5839
- firstname?: string | null | undefined;
5840
- surname?: string | null | undefined;
5839
+ firstname: string;
5840
+ surname: string;
5841
5841
  middlename?: string | null | undefined;
5842
5842
  }, {
5843
- firstname?: string | null | undefined;
5844
- surname?: string | null | undefined;
5843
+ firstname: string;
5844
+ surname: string;
5845
5845
  middlename?: string | null | undefined;
5846
5846
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5847
5847
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -5967,16 +5967,16 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5967
5967
  addressLine3?: string | null | undefined;
5968
5968
  postcodeOrZip?: string | null | undefined;
5969
5969
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5970
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5971
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5970
+ firstname: z.ZodString;
5971
+ surname: z.ZodString;
5972
5972
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5973
5973
  }, "strip", z.ZodTypeAny, {
5974
- firstname?: string | null | undefined;
5975
- surname?: string | null | undefined;
5974
+ firstname: string;
5975
+ surname: string;
5976
5976
  middlename?: string | null | undefined;
5977
5977
  }, {
5978
- firstname?: string | null | undefined;
5979
- surname?: string | null | undefined;
5978
+ firstname: string;
5979
+ surname: string;
5980
5980
  middlename?: string | null | undefined;
5981
5981
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5982
5982
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -5984,8 +5984,22 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5984
5984
  }, {
5985
5985
  requestId: z.ZodString;
5986
5986
  type: z.ZodDefault<z.ZodLiteral<"REJECT_CORRECTION">>;
5987
+ reason: z.ZodObject<{
5988
+ message: z.ZodString;
5989
+ isDuplicate: z.ZodOptional<z.ZodBoolean>;
5990
+ }, "strip", z.ZodTypeAny, {
5991
+ message: string;
5992
+ isDuplicate?: boolean | undefined;
5993
+ }, {
5994
+ message: string;
5995
+ isDuplicate?: boolean | undefined;
5996
+ }>;
5987
5997
  }>, "strip", z.ZodTypeAny, {
5988
5998
  type: "REJECT_CORRECTION";
5999
+ reason: {
6000
+ message: string;
6001
+ isDuplicate?: boolean | undefined;
6002
+ };
5989
6003
  transactionId: string;
5990
6004
  declaration: Record<string, string | number | boolean | {
5991
6005
  type: string;
@@ -6003,8 +6017,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
6003
6017
  street?: string | null | undefined;
6004
6018
  zipCode?: string | null | undefined;
6005
6019
  } | {
6006
- firstname?: string | null | undefined;
6007
- surname?: string | null | undefined;
6020
+ firstname: string;
6021
+ surname: string;
6008
6022
  middlename?: string | null | undefined;
6009
6023
  } | {
6010
6024
  country: string;
@@ -6050,8 +6064,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
6050
6064
  street?: string | null | undefined;
6051
6065
  zipCode?: string | null | undefined;
6052
6066
  } | {
6053
- firstname?: string | null | undefined;
6054
- surname?: string | null | undefined;
6067
+ firstname: string;
6068
+ surname: string;
6055
6069
  middlename?: string | null | undefined;
6056
6070
  } | {
6057
6071
  country: string;
@@ -6082,6 +6096,10 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
6082
6096
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
6083
6097
  keepAssignment?: boolean | undefined;
6084
6098
  }, {
6099
+ reason: {
6100
+ message: string;
6101
+ isDuplicate?: boolean | undefined;
6102
+ };
6085
6103
  transactionId: string;
6086
6104
  requestId: string;
6087
6105
  eventId: string;
@@ -6102,8 +6120,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
6102
6120
  street?: string | null | undefined;
6103
6121
  zipCode?: string | null | undefined;
6104
6122
  } | {
6105
- firstname?: string | null | undefined;
6106
- surname?: string | null | undefined;
6123
+ firstname: string;
6124
+ surname: string;
6107
6125
  middlename?: string | null | undefined;
6108
6126
  } | {
6109
6127
  country: string;
@@ -6147,8 +6165,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
6147
6165
  street?: string | null | undefined;
6148
6166
  zipCode?: string | null | undefined;
6149
6167
  } | {
6150
- firstname?: string | null | undefined;
6151
- surname?: string | null | undefined;
6168
+ firstname: string;
6169
+ surname: string;
6152
6170
  middlename?: string | null | undefined;
6153
6171
  } | {
6154
6172
  country: string;
@@ -6306,16 +6324,16 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6306
6324
  addressLine3?: string | null | undefined;
6307
6325
  postcodeOrZip?: string | null | undefined;
6308
6326
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6309
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6310
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6327
+ firstname: z.ZodString;
6328
+ surname: z.ZodString;
6311
6329
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6312
6330
  }, "strip", z.ZodTypeAny, {
6313
- firstname?: string | null | undefined;
6314
- surname?: string | null | undefined;
6331
+ firstname: string;
6332
+ surname: string;
6315
6333
  middlename?: string | null | undefined;
6316
6334
  }, {
6317
- firstname?: string | null | undefined;
6318
- surname?: string | null | undefined;
6335
+ firstname: string;
6336
+ surname: string;
6319
6337
  middlename?: string | null | undefined;
6320
6338
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6321
6339
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -6441,16 +6459,16 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6441
6459
  addressLine3?: string | null | undefined;
6442
6460
  postcodeOrZip?: string | null | undefined;
6443
6461
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6444
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6445
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6462
+ firstname: z.ZodString;
6463
+ surname: z.ZodString;
6446
6464
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6447
6465
  }, "strip", z.ZodTypeAny, {
6448
- firstname?: string | null | undefined;
6449
- surname?: string | null | undefined;
6466
+ firstname: string;
6467
+ surname: string;
6450
6468
  middlename?: string | null | undefined;
6451
6469
  }, {
6452
- firstname?: string | null | undefined;
6453
- surname?: string | null | undefined;
6470
+ firstname: string;
6471
+ surname: string;
6454
6472
  middlename?: string | null | undefined;
6455
6473
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6456
6474
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -6477,8 +6495,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6477
6495
  street?: string | null | undefined;
6478
6496
  zipCode?: string | null | undefined;
6479
6497
  } | {
6480
- firstname?: string | null | undefined;
6481
- surname?: string | null | undefined;
6498
+ firstname: string;
6499
+ surname: string;
6482
6500
  middlename?: string | null | undefined;
6483
6501
  } | {
6484
6502
  country: string;
@@ -6524,8 +6542,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6524
6542
  street?: string | null | undefined;
6525
6543
  zipCode?: string | null | undefined;
6526
6544
  } | {
6527
- firstname?: string | null | undefined;
6528
- surname?: string | null | undefined;
6545
+ firstname: string;
6546
+ surname: string;
6529
6547
  middlename?: string | null | undefined;
6530
6548
  } | {
6531
6549
  country: string;
@@ -6576,8 +6594,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6576
6594
  street?: string | null | undefined;
6577
6595
  zipCode?: string | null | undefined;
6578
6596
  } | {
6579
- firstname?: string | null | undefined;
6580
- surname?: string | null | undefined;
6597
+ firstname: string;
6598
+ surname: string;
6581
6599
  middlename?: string | null | undefined;
6582
6600
  } | {
6583
6601
  country: string;
@@ -6621,8 +6639,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6621
6639
  street?: string | null | undefined;
6622
6640
  zipCode?: string | null | undefined;
6623
6641
  } | {
6624
- firstname?: string | null | undefined;
6625
- surname?: string | null | undefined;
6642
+ firstname: string;
6643
+ surname: string;
6626
6644
  middlename?: string | null | undefined;
6627
6645
  } | {
6628
6646
  country: string;
@@ -6780,16 +6798,16 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
6780
6798
  addressLine3?: string | null | undefined;
6781
6799
  postcodeOrZip?: string | null | undefined;
6782
6800
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6783
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6784
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6801
+ firstname: z.ZodString;
6802
+ surname: z.ZodString;
6785
6803
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6786
6804
  }, "strip", z.ZodTypeAny, {
6787
- firstname?: string | null | undefined;
6788
- surname?: string | null | undefined;
6805
+ firstname: string;
6806
+ surname: string;
6789
6807
  middlename?: string | null | undefined;
6790
6808
  }, {
6791
- firstname?: string | null | undefined;
6792
- surname?: string | null | undefined;
6809
+ firstname: string;
6810
+ surname: string;
6793
6811
  middlename?: string | null | undefined;
6794
6812
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6795
6813
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -6915,16 +6933,16 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
6915
6933
  addressLine3?: string | null | undefined;
6916
6934
  postcodeOrZip?: string | null | undefined;
6917
6935
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6918
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6919
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6936
+ firstname: z.ZodString;
6937
+ surname: z.ZodString;
6920
6938
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6921
6939
  }, "strip", z.ZodTypeAny, {
6922
- firstname?: string | null | undefined;
6923
- surname?: string | null | undefined;
6940
+ firstname: string;
6941
+ surname: string;
6924
6942
  middlename?: string | null | undefined;
6925
6943
  }, {
6926
- firstname?: string | null | undefined;
6927
- surname?: string | null | undefined;
6944
+ firstname: string;
6945
+ surname: string;
6928
6946
  middlename?: string | null | undefined;
6929
6947
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6930
6948
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -6950,8 +6968,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
6950
6968
  street?: string | null | undefined;
6951
6969
  zipCode?: string | null | undefined;
6952
6970
  } | {
6953
- firstname?: string | null | undefined;
6954
- surname?: string | null | undefined;
6971
+ firstname: string;
6972
+ surname: string;
6955
6973
  middlename?: string | null | undefined;
6956
6974
  } | {
6957
6975
  country: string;
@@ -6996,8 +7014,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
6996
7014
  street?: string | null | undefined;
6997
7015
  zipCode?: string | null | undefined;
6998
7016
  } | {
6999
- firstname?: string | null | undefined;
7000
- surname?: string | null | undefined;
7017
+ firstname: string;
7018
+ surname: string;
7001
7019
  middlename?: string | null | undefined;
7002
7020
  } | {
7003
7021
  country: string;
@@ -7047,8 +7065,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
7047
7065
  street?: string | null | undefined;
7048
7066
  zipCode?: string | null | undefined;
7049
7067
  } | {
7050
- firstname?: string | null | undefined;
7051
- surname?: string | null | undefined;
7068
+ firstname: string;
7069
+ surname: string;
7052
7070
  middlename?: string | null | undefined;
7053
7071
  } | {
7054
7072
  country: string;
@@ -7092,8 +7110,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
7092
7110
  street?: string | null | undefined;
7093
7111
  zipCode?: string | null | undefined;
7094
7112
  } | {
7095
- firstname?: string | null | undefined;
7096
- surname?: string | null | undefined;
7113
+ firstname: string;
7114
+ surname: string;
7097
7115
  middlename?: string | null | undefined;
7098
7116
  } | {
7099
7117
  country: string;
@@ -7267,16 +7285,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7267
7285
  addressLine3?: string | null | undefined;
7268
7286
  postcodeOrZip?: string | null | undefined;
7269
7287
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7270
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7271
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7288
+ firstname: z.ZodString;
7289
+ surname: z.ZodString;
7272
7290
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7273
7291
  }, "strip", z.ZodTypeAny, {
7274
- firstname?: string | null | undefined;
7275
- surname?: string | null | undefined;
7292
+ firstname: string;
7293
+ surname: string;
7276
7294
  middlename?: string | null | undefined;
7277
7295
  }, {
7278
- firstname?: string | null | undefined;
7279
- surname?: string | null | undefined;
7296
+ firstname: string;
7297
+ surname: string;
7280
7298
  middlename?: string | null | undefined;
7281
7299
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7282
7300
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -7402,16 +7420,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7402
7420
  addressLine3?: string | null | undefined;
7403
7421
  postcodeOrZip?: string | null | undefined;
7404
7422
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7405
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7406
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7423
+ firstname: z.ZodString;
7424
+ surname: z.ZodString;
7407
7425
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7408
7426
  }, "strip", z.ZodTypeAny, {
7409
- firstname?: string | null | undefined;
7410
- surname?: string | null | undefined;
7427
+ firstname: string;
7428
+ surname: string;
7411
7429
  middlename?: string | null | undefined;
7412
7430
  }, {
7413
- firstname?: string | null | undefined;
7414
- surname?: string | null | undefined;
7431
+ firstname: string;
7432
+ surname: string;
7415
7433
  middlename?: string | null | undefined;
7416
7434
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7417
7435
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -7438,8 +7456,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7438
7456
  street?: string | null | undefined;
7439
7457
  zipCode?: string | null | undefined;
7440
7458
  } | {
7441
- firstname?: string | null | undefined;
7442
- surname?: string | null | undefined;
7459
+ firstname: string;
7460
+ surname: string;
7443
7461
  middlename?: string | null | undefined;
7444
7462
  } | {
7445
7463
  country: string;
@@ -7485,8 +7503,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7485
7503
  street?: string | null | undefined;
7486
7504
  zipCode?: string | null | undefined;
7487
7505
  } | {
7488
- firstname?: string | null | undefined;
7489
- surname?: string | null | undefined;
7506
+ firstname: string;
7507
+ surname: string;
7490
7508
  middlename?: string | null | undefined;
7491
7509
  } | {
7492
7510
  country: string;
@@ -7537,8 +7555,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7537
7555
  street?: string | null | undefined;
7538
7556
  zipCode?: string | null | undefined;
7539
7557
  } | {
7540
- firstname?: string | null | undefined;
7541
- surname?: string | null | undefined;
7558
+ firstname: string;
7559
+ surname: string;
7542
7560
  middlename?: string | null | undefined;
7543
7561
  } | {
7544
7562
  country: string;
@@ -7582,8 +7600,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7582
7600
  street?: string | null | undefined;
7583
7601
  zipCode?: string | null | undefined;
7584
7602
  } | {
7585
- firstname?: string | null | undefined;
7586
- surname?: string | null | undefined;
7603
+ firstname: string;
7604
+ surname: string;
7587
7605
  middlename?: string | null | undefined;
7588
7606
  } | {
7589
7607
  country: string;
@@ -7739,16 +7757,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7739
7757
  addressLine3?: string | null | undefined;
7740
7758
  postcodeOrZip?: string | null | undefined;
7741
7759
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7742
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7743
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7760
+ firstname: z.ZodString;
7761
+ surname: z.ZodString;
7744
7762
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7745
7763
  }, "strip", z.ZodTypeAny, {
7746
- firstname?: string | null | undefined;
7747
- surname?: string | null | undefined;
7764
+ firstname: string;
7765
+ surname: string;
7748
7766
  middlename?: string | null | undefined;
7749
7767
  }, {
7750
- firstname?: string | null | undefined;
7751
- surname?: string | null | undefined;
7768
+ firstname: string;
7769
+ surname: string;
7752
7770
  middlename?: string | null | undefined;
7753
7771
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7754
7772
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -7874,16 +7892,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7874
7892
  addressLine3?: string | null | undefined;
7875
7893
  postcodeOrZip?: string | null | undefined;
7876
7894
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7877
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7878
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7895
+ firstname: z.ZodString;
7896
+ surname: z.ZodString;
7879
7897
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7880
7898
  }, "strip", z.ZodTypeAny, {
7881
- firstname?: string | null | undefined;
7882
- surname?: string | null | undefined;
7899
+ firstname: string;
7900
+ surname: string;
7883
7901
  middlename?: string | null | undefined;
7884
7902
  }, {
7885
- firstname?: string | null | undefined;
7886
- surname?: string | null | undefined;
7903
+ firstname: string;
7904
+ surname: string;
7887
7905
  middlename?: string | null | undefined;
7888
7906
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7889
7907
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -7910,8 +7928,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7910
7928
  street?: string | null | undefined;
7911
7929
  zipCode?: string | null | undefined;
7912
7930
  } | {
7913
- firstname?: string | null | undefined;
7914
- surname?: string | null | undefined;
7931
+ firstname: string;
7932
+ surname: string;
7915
7933
  middlename?: string | null | undefined;
7916
7934
  } | {
7917
7935
  country: string;
@@ -7957,8 +7975,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7957
7975
  street?: string | null | undefined;
7958
7976
  zipCode?: string | null | undefined;
7959
7977
  } | {
7960
- firstname?: string | null | undefined;
7961
- surname?: string | null | undefined;
7978
+ firstname: string;
7979
+ surname: string;
7962
7980
  middlename?: string | null | undefined;
7963
7981
  } | {
7964
7982
  country: string;
@@ -8009,8 +8027,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8009
8027
  street?: string | null | undefined;
8010
8028
  zipCode?: string | null | undefined;
8011
8029
  } | {
8012
- firstname?: string | null | undefined;
8013
- surname?: string | null | undefined;
8030
+ firstname: string;
8031
+ surname: string;
8014
8032
  middlename?: string | null | undefined;
8015
8033
  } | {
8016
8034
  country: string;
@@ -8054,8 +8072,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8054
8072
  street?: string | null | undefined;
8055
8073
  zipCode?: string | null | undefined;
8056
8074
  } | {
8057
- firstname?: string | null | undefined;
8058
- surname?: string | null | undefined;
8075
+ firstname: string;
8076
+ surname: string;
8059
8077
  middlename?: string | null | undefined;
8060
8078
  } | {
8061
8079
  country: string;
@@ -8211,16 +8229,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8211
8229
  addressLine3?: string | null | undefined;
8212
8230
  postcodeOrZip?: string | null | undefined;
8213
8231
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8214
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8215
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8232
+ firstname: z.ZodString;
8233
+ surname: z.ZodString;
8216
8234
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8217
8235
  }, "strip", z.ZodTypeAny, {
8218
- firstname?: string | null | undefined;
8219
- surname?: string | null | undefined;
8236
+ firstname: string;
8237
+ surname: string;
8220
8238
  middlename?: string | null | undefined;
8221
8239
  }, {
8222
- firstname?: string | null | undefined;
8223
- surname?: string | null | undefined;
8240
+ firstname: string;
8241
+ surname: string;
8224
8242
  middlename?: string | null | undefined;
8225
8243
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8226
8244
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -8346,16 +8364,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8346
8364
  addressLine3?: string | null | undefined;
8347
8365
  postcodeOrZip?: string | null | undefined;
8348
8366
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8349
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8350
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8367
+ firstname: z.ZodString;
8368
+ surname: z.ZodString;
8351
8369
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8352
8370
  }, "strip", z.ZodTypeAny, {
8353
- firstname?: string | null | undefined;
8354
- surname?: string | null | undefined;
8371
+ firstname: string;
8372
+ surname: string;
8355
8373
  middlename?: string | null | undefined;
8356
8374
  }, {
8357
- firstname?: string | null | undefined;
8358
- surname?: string | null | undefined;
8375
+ firstname: string;
8376
+ surname: string;
8359
8377
  middlename?: string | null | undefined;
8360
8378
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8361
8379
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -8382,8 +8400,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8382
8400
  street?: string | null | undefined;
8383
8401
  zipCode?: string | null | undefined;
8384
8402
  } | {
8385
- firstname?: string | null | undefined;
8386
- surname?: string | null | undefined;
8403
+ firstname: string;
8404
+ surname: string;
8387
8405
  middlename?: string | null | undefined;
8388
8406
  } | {
8389
8407
  country: string;
@@ -8428,8 +8446,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8428
8446
  street?: string | null | undefined;
8429
8447
  zipCode?: string | null | undefined;
8430
8448
  } | {
8431
- firstname?: string | null | undefined;
8432
- surname?: string | null | undefined;
8449
+ firstname: string;
8450
+ surname: string;
8433
8451
  middlename?: string | null | undefined;
8434
8452
  } | {
8435
8453
  country: string;
@@ -8480,8 +8498,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8480
8498
  street?: string | null | undefined;
8481
8499
  zipCode?: string | null | undefined;
8482
8500
  } | {
8483
- firstname?: string | null | undefined;
8484
- surname?: string | null | undefined;
8501
+ firstname: string;
8502
+ surname: string;
8485
8503
  middlename?: string | null | undefined;
8486
8504
  } | {
8487
8505
  country: string;
@@ -8525,8 +8543,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8525
8543
  street?: string | null | undefined;
8526
8544
  zipCode?: string | null | undefined;
8527
8545
  } | {
8528
- firstname?: string | null | undefined;
8529
- surname?: string | null | undefined;
8546
+ firstname: string;
8547
+ surname: string;
8530
8548
  middlename?: string | null | undefined;
8531
8549
  } | {
8532
8550
  country: string;
@@ -8683,16 +8701,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8683
8701
  addressLine3?: string | null | undefined;
8684
8702
  postcodeOrZip?: string | null | undefined;
8685
8703
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8686
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8687
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8704
+ firstname: z.ZodString;
8705
+ surname: z.ZodString;
8688
8706
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8689
8707
  }, "strip", z.ZodTypeAny, {
8690
- firstname?: string | null | undefined;
8691
- surname?: string | null | undefined;
8708
+ firstname: string;
8709
+ surname: string;
8692
8710
  middlename?: string | null | undefined;
8693
8711
  }, {
8694
- firstname?: string | null | undefined;
8695
- surname?: string | null | undefined;
8712
+ firstname: string;
8713
+ surname: string;
8696
8714
  middlename?: string | null | undefined;
8697
8715
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8698
8716
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -8818,16 +8836,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8818
8836
  addressLine3?: string | null | undefined;
8819
8837
  postcodeOrZip?: string | null | undefined;
8820
8838
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8821
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8822
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8839
+ firstname: z.ZodString;
8840
+ surname: z.ZodString;
8823
8841
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8824
8842
  }, "strip", z.ZodTypeAny, {
8825
- firstname?: string | null | undefined;
8826
- surname?: string | null | undefined;
8843
+ firstname: string;
8844
+ surname: string;
8827
8845
  middlename?: string | null | undefined;
8828
8846
  }, {
8829
- firstname?: string | null | undefined;
8830
- surname?: string | null | undefined;
8847
+ firstname: string;
8848
+ surname: string;
8831
8849
  middlename?: string | null | undefined;
8832
8850
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8833
8851
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -8853,8 +8871,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8853
8871
  street?: string | null | undefined;
8854
8872
  zipCode?: string | null | undefined;
8855
8873
  } | {
8856
- firstname?: string | null | undefined;
8857
- surname?: string | null | undefined;
8874
+ firstname: string;
8875
+ surname: string;
8858
8876
  middlename?: string | null | undefined;
8859
8877
  } | {
8860
8878
  country: string;
@@ -8899,8 +8917,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8899
8917
  street?: string | null | undefined;
8900
8918
  zipCode?: string | null | undefined;
8901
8919
  } | {
8902
- firstname?: string | null | undefined;
8903
- surname?: string | null | undefined;
8920
+ firstname: string;
8921
+ surname: string;
8904
8922
  middlename?: string | null | undefined;
8905
8923
  } | {
8906
8924
  country: string;
@@ -8950,8 +8968,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8950
8968
  street?: string | null | undefined;
8951
8969
  zipCode?: string | null | undefined;
8952
8970
  } | {
8953
- firstname?: string | null | undefined;
8954
- surname?: string | null | undefined;
8971
+ firstname: string;
8972
+ surname: string;
8955
8973
  middlename?: string | null | undefined;
8956
8974
  } | {
8957
8975
  country: string;
@@ -8995,8 +9013,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8995
9013
  street?: string | null | undefined;
8996
9014
  zipCode?: string | null | undefined;
8997
9015
  } | {
8998
- firstname?: string | null | undefined;
8999
- surname?: string | null | undefined;
9016
+ firstname: string;
9017
+ surname: string;
9000
9018
  middlename?: string | null | undefined;
9001
9019
  } | {
9002
9020
  country: string;
@@ -9152,16 +9170,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9152
9170
  addressLine3?: string | null | undefined;
9153
9171
  postcodeOrZip?: string | null | undefined;
9154
9172
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9155
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9156
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9173
+ firstname: z.ZodString;
9174
+ surname: z.ZodString;
9157
9175
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9158
9176
  }, "strip", z.ZodTypeAny, {
9159
- firstname?: string | null | undefined;
9160
- surname?: string | null | undefined;
9177
+ firstname: string;
9178
+ surname: string;
9161
9179
  middlename?: string | null | undefined;
9162
9180
  }, {
9163
- firstname?: string | null | undefined;
9164
- surname?: string | null | undefined;
9181
+ firstname: string;
9182
+ surname: string;
9165
9183
  middlename?: string | null | undefined;
9166
9184
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9167
9185
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -9287,16 +9305,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9287
9305
  addressLine3?: string | null | undefined;
9288
9306
  postcodeOrZip?: string | null | undefined;
9289
9307
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9290
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9291
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9308
+ firstname: z.ZodString;
9309
+ surname: z.ZodString;
9292
9310
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9293
9311
  }, "strip", z.ZodTypeAny, {
9294
- firstname?: string | null | undefined;
9295
- surname?: string | null | undefined;
9312
+ firstname: string;
9313
+ surname: string;
9296
9314
  middlename?: string | null | undefined;
9297
9315
  }, {
9298
- firstname?: string | null | undefined;
9299
- surname?: string | null | undefined;
9316
+ firstname: string;
9317
+ surname: string;
9300
9318
  middlename?: string | null | undefined;
9301
9319
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9302
9320
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -9322,8 +9340,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9322
9340
  street?: string | null | undefined;
9323
9341
  zipCode?: string | null | undefined;
9324
9342
  } | {
9325
- firstname?: string | null | undefined;
9326
- surname?: string | null | undefined;
9343
+ firstname: string;
9344
+ surname: string;
9327
9345
  middlename?: string | null | undefined;
9328
9346
  } | {
9329
9347
  country: string;
@@ -9368,8 +9386,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9368
9386
  street?: string | null | undefined;
9369
9387
  zipCode?: string | null | undefined;
9370
9388
  } | {
9371
- firstname?: string | null | undefined;
9372
- surname?: string | null | undefined;
9389
+ firstname: string;
9390
+ surname: string;
9373
9391
  middlename?: string | null | undefined;
9374
9392
  } | {
9375
9393
  country: string;
@@ -9419,8 +9437,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9419
9437
  street?: string | null | undefined;
9420
9438
  zipCode?: string | null | undefined;
9421
9439
  } | {
9422
- firstname?: string | null | undefined;
9423
- surname?: string | null | undefined;
9440
+ firstname: string;
9441
+ surname: string;
9424
9442
  middlename?: string | null | undefined;
9425
9443
  } | {
9426
9444
  country: string;
@@ -9464,8 +9482,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9464
9482
  street?: string | null | undefined;
9465
9483
  zipCode?: string | null | undefined;
9466
9484
  } | {
9467
- firstname?: string | null | undefined;
9468
- surname?: string | null | undefined;
9485
+ firstname: string;
9486
+ surname: string;
9469
9487
  middlename?: string | null | undefined;
9470
9488
  } | {
9471
9489
  country: string;
@@ -9621,16 +9639,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9621
9639
  addressLine3?: string | null | undefined;
9622
9640
  postcodeOrZip?: string | null | undefined;
9623
9641
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9624
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9625
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9642
+ firstname: z.ZodString;
9643
+ surname: z.ZodString;
9626
9644
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9627
9645
  }, "strip", z.ZodTypeAny, {
9628
- firstname?: string | null | undefined;
9629
- surname?: string | null | undefined;
9646
+ firstname: string;
9647
+ surname: string;
9630
9648
  middlename?: string | null | undefined;
9631
9649
  }, {
9632
- firstname?: string | null | undefined;
9633
- surname?: string | null | undefined;
9650
+ firstname: string;
9651
+ surname: string;
9634
9652
  middlename?: string | null | undefined;
9635
9653
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9636
9654
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -9756,16 +9774,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9756
9774
  addressLine3?: string | null | undefined;
9757
9775
  postcodeOrZip?: string | null | undefined;
9758
9776
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9759
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9760
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9777
+ firstname: z.ZodString;
9778
+ surname: z.ZodString;
9761
9779
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9762
9780
  }, "strip", z.ZodTypeAny, {
9763
- firstname?: string | null | undefined;
9764
- surname?: string | null | undefined;
9781
+ firstname: string;
9782
+ surname: string;
9765
9783
  middlename?: string | null | undefined;
9766
9784
  }, {
9767
- firstname?: string | null | undefined;
9768
- surname?: string | null | undefined;
9785
+ firstname: string;
9786
+ surname: string;
9769
9787
  middlename?: string | null | undefined;
9770
9788
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9771
9789
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -9805,8 +9823,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9805
9823
  street?: string | null | undefined;
9806
9824
  zipCode?: string | null | undefined;
9807
9825
  } | {
9808
- firstname?: string | null | undefined;
9809
- surname?: string | null | undefined;
9826
+ firstname: string;
9827
+ surname: string;
9810
9828
  middlename?: string | null | undefined;
9811
9829
  } | {
9812
9830
  country: string;
@@ -9851,8 +9869,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9851
9869
  street?: string | null | undefined;
9852
9870
  zipCode?: string | null | undefined;
9853
9871
  } | {
9854
- firstname?: string | null | undefined;
9855
- surname?: string | null | undefined;
9872
+ firstname: string;
9873
+ surname: string;
9856
9874
  middlename?: string | null | undefined;
9857
9875
  } | {
9858
9876
  country: string;
@@ -9906,8 +9924,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9906
9924
  street?: string | null | undefined;
9907
9925
  zipCode?: string | null | undefined;
9908
9926
  } | {
9909
- firstname?: string | null | undefined;
9910
- surname?: string | null | undefined;
9927
+ firstname: string;
9928
+ surname: string;
9911
9929
  middlename?: string | null | undefined;
9912
9930
  } | {
9913
9931
  country: string;
@@ -9951,8 +9969,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9951
9969
  street?: string | null | undefined;
9952
9970
  zipCode?: string | null | undefined;
9953
9971
  } | {
9954
- firstname?: string | null | undefined;
9955
- surname?: string | null | undefined;
9972
+ firstname: string;
9973
+ surname: string;
9956
9974
  middlename?: string | null | undefined;
9957
9975
  } | {
9958
9976
  country: string;
@@ -10108,16 +10126,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10108
10126
  addressLine3?: string | null | undefined;
10109
10127
  postcodeOrZip?: string | null | undefined;
10110
10128
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10111
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10112
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10129
+ firstname: z.ZodString;
10130
+ surname: z.ZodString;
10113
10131
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10114
10132
  }, "strip", z.ZodTypeAny, {
10115
- firstname?: string | null | undefined;
10116
- surname?: string | null | undefined;
10133
+ firstname: string;
10134
+ surname: string;
10117
10135
  middlename?: string | null | undefined;
10118
10136
  }, {
10119
- firstname?: string | null | undefined;
10120
- surname?: string | null | undefined;
10137
+ firstname: string;
10138
+ surname: string;
10121
10139
  middlename?: string | null | undefined;
10122
10140
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10123
10141
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -10243,16 +10261,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10243
10261
  addressLine3?: string | null | undefined;
10244
10262
  postcodeOrZip?: string | null | undefined;
10245
10263
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10246
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10247
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10264
+ firstname: z.ZodString;
10265
+ surname: z.ZodString;
10248
10266
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10249
10267
  }, "strip", z.ZodTypeAny, {
10250
- firstname?: string | null | undefined;
10251
- surname?: string | null | undefined;
10268
+ firstname: string;
10269
+ surname: string;
10252
10270
  middlename?: string | null | undefined;
10253
10271
  }, {
10254
- firstname?: string | null | undefined;
10255
- surname?: string | null | undefined;
10272
+ firstname: string;
10273
+ surname: string;
10256
10274
  middlename?: string | null | undefined;
10257
10275
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10258
10276
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -10278,8 +10296,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10278
10296
  street?: string | null | undefined;
10279
10297
  zipCode?: string | null | undefined;
10280
10298
  } | {
10281
- firstname?: string | null | undefined;
10282
- surname?: string | null | undefined;
10299
+ firstname: string;
10300
+ surname: string;
10283
10301
  middlename?: string | null | undefined;
10284
10302
  } | {
10285
10303
  country: string;
@@ -10324,8 +10342,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10324
10342
  street?: string | null | undefined;
10325
10343
  zipCode?: string | null | undefined;
10326
10344
  } | {
10327
- firstname?: string | null | undefined;
10328
- surname?: string | null | undefined;
10345
+ firstname: string;
10346
+ surname: string;
10329
10347
  middlename?: string | null | undefined;
10330
10348
  } | {
10331
10349
  country: string;
@@ -10375,8 +10393,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10375
10393
  street?: string | null | undefined;
10376
10394
  zipCode?: string | null | undefined;
10377
10395
  } | {
10378
- firstname?: string | null | undefined;
10379
- surname?: string | null | undefined;
10396
+ firstname: string;
10397
+ surname: string;
10380
10398
  middlename?: string | null | undefined;
10381
10399
  } | {
10382
10400
  country: string;
@@ -10420,8 +10438,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10420
10438
  street?: string | null | undefined;
10421
10439
  zipCode?: string | null | undefined;
10422
10440
  } | {
10423
- firstname?: string | null | undefined;
10424
- surname?: string | null | undefined;
10441
+ firstname: string;
10442
+ surname: string;
10425
10443
  middlename?: string | null | undefined;
10426
10444
  } | {
10427
10445
  country: string;
@@ -10577,16 +10595,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10577
10595
  addressLine3?: string | null | undefined;
10578
10596
  postcodeOrZip?: string | null | undefined;
10579
10597
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10580
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10581
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10598
+ firstname: z.ZodString;
10599
+ surname: z.ZodString;
10582
10600
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10583
10601
  }, "strip", z.ZodTypeAny, {
10584
- firstname?: string | null | undefined;
10585
- surname?: string | null | undefined;
10602
+ firstname: string;
10603
+ surname: string;
10586
10604
  middlename?: string | null | undefined;
10587
10605
  }, {
10588
- firstname?: string | null | undefined;
10589
- surname?: string | null | undefined;
10606
+ firstname: string;
10607
+ surname: string;
10590
10608
  middlename?: string | null | undefined;
10591
10609
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10592
10610
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -10712,16 +10730,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10712
10730
  addressLine3?: string | null | undefined;
10713
10731
  postcodeOrZip?: string | null | undefined;
10714
10732
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10715
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10716
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10733
+ firstname: z.ZodString;
10734
+ surname: z.ZodString;
10717
10735
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10718
10736
  }, "strip", z.ZodTypeAny, {
10719
- firstname?: string | null | undefined;
10720
- surname?: string | null | undefined;
10737
+ firstname: string;
10738
+ surname: string;
10721
10739
  middlename?: string | null | undefined;
10722
10740
  }, {
10723
- firstname?: string | null | undefined;
10724
- surname?: string | null | undefined;
10741
+ firstname: string;
10742
+ surname: string;
10725
10743
  middlename?: string | null | undefined;
10726
10744
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10727
10745
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -10761,8 +10779,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10761
10779
  street?: string | null | undefined;
10762
10780
  zipCode?: string | null | undefined;
10763
10781
  } | {
10764
- firstname?: string | null | undefined;
10765
- surname?: string | null | undefined;
10782
+ firstname: string;
10783
+ surname: string;
10766
10784
  middlename?: string | null | undefined;
10767
10785
  } | {
10768
10786
  country: string;
@@ -10807,8 +10825,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10807
10825
  street?: string | null | undefined;
10808
10826
  zipCode?: string | null | undefined;
10809
10827
  } | {
10810
- firstname?: string | null | undefined;
10811
- surname?: string | null | undefined;
10828
+ firstname: string;
10829
+ surname: string;
10812
10830
  middlename?: string | null | undefined;
10813
10831
  } | {
10814
10832
  country: string;
@@ -10862,8 +10880,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10862
10880
  street?: string | null | undefined;
10863
10881
  zipCode?: string | null | undefined;
10864
10882
  } | {
10865
- firstname?: string | null | undefined;
10866
- surname?: string | null | undefined;
10883
+ firstname: string;
10884
+ surname: string;
10867
10885
  middlename?: string | null | undefined;
10868
10886
  } | {
10869
10887
  country: string;
@@ -10907,8 +10925,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10907
10925
  street?: string | null | undefined;
10908
10926
  zipCode?: string | null | undefined;
10909
10927
  } | {
10910
- firstname?: string | null | undefined;
10911
- surname?: string | null | undefined;
10928
+ firstname: string;
10929
+ surname: string;
10912
10930
  middlename?: string | null | undefined;
10913
10931
  } | {
10914
10932
  country: string;
@@ -11064,16 +11082,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11064
11082
  addressLine3?: string | null | undefined;
11065
11083
  postcodeOrZip?: string | null | undefined;
11066
11084
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11067
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11068
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11085
+ firstname: z.ZodString;
11086
+ surname: z.ZodString;
11069
11087
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11070
11088
  }, "strip", z.ZodTypeAny, {
11071
- firstname?: string | null | undefined;
11072
- surname?: string | null | undefined;
11089
+ firstname: string;
11090
+ surname: string;
11073
11091
  middlename?: string | null | undefined;
11074
11092
  }, {
11075
- firstname?: string | null | undefined;
11076
- surname?: string | null | undefined;
11093
+ firstname: string;
11094
+ surname: string;
11077
11095
  middlename?: string | null | undefined;
11078
11096
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11079
11097
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -11199,16 +11217,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11199
11217
  addressLine3?: string | null | undefined;
11200
11218
  postcodeOrZip?: string | null | undefined;
11201
11219
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11202
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11203
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11220
+ firstname: z.ZodString;
11221
+ surname: z.ZodString;
11204
11222
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11205
11223
  }, "strip", z.ZodTypeAny, {
11206
- firstname?: string | null | undefined;
11207
- surname?: string | null | undefined;
11224
+ firstname: string;
11225
+ surname: string;
11208
11226
  middlename?: string | null | undefined;
11209
11227
  }, {
11210
- firstname?: string | null | undefined;
11211
- surname?: string | null | undefined;
11228
+ firstname: string;
11229
+ surname: string;
11212
11230
  middlename?: string | null | undefined;
11213
11231
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11214
11232
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -11235,8 +11253,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11235
11253
  street?: string | null | undefined;
11236
11254
  zipCode?: string | null | undefined;
11237
11255
  } | {
11238
- firstname?: string | null | undefined;
11239
- surname?: string | null | undefined;
11256
+ firstname: string;
11257
+ surname: string;
11240
11258
  middlename?: string | null | undefined;
11241
11259
  } | {
11242
11260
  country: string;
@@ -11282,8 +11300,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11282
11300
  street?: string | null | undefined;
11283
11301
  zipCode?: string | null | undefined;
11284
11302
  } | {
11285
- firstname?: string | null | undefined;
11286
- surname?: string | null | undefined;
11303
+ firstname: string;
11304
+ surname: string;
11287
11305
  middlename?: string | null | undefined;
11288
11306
  } | {
11289
11307
  country: string;
@@ -11334,8 +11352,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11334
11352
  street?: string | null | undefined;
11335
11353
  zipCode?: string | null | undefined;
11336
11354
  } | {
11337
- firstname?: string | null | undefined;
11338
- surname?: string | null | undefined;
11355
+ firstname: string;
11356
+ surname: string;
11339
11357
  middlename?: string | null | undefined;
11340
11358
  } | {
11341
11359
  country: string;
@@ -11379,8 +11397,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11379
11397
  street?: string | null | undefined;
11380
11398
  zipCode?: string | null | undefined;
11381
11399
  } | {
11382
- firstname?: string | null | undefined;
11383
- surname?: string | null | undefined;
11400
+ firstname: string;
11401
+ surname: string;
11384
11402
  middlename?: string | null | undefined;
11385
11403
  } | {
11386
11404
  country: string;
@@ -11536,16 +11554,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11536
11554
  addressLine3?: string | null | undefined;
11537
11555
  postcodeOrZip?: string | null | undefined;
11538
11556
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11539
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11540
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11557
+ firstname: z.ZodString;
11558
+ surname: z.ZodString;
11541
11559
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11542
11560
  }, "strip", z.ZodTypeAny, {
11543
- firstname?: string | null | undefined;
11544
- surname?: string | null | undefined;
11561
+ firstname: string;
11562
+ surname: string;
11545
11563
  middlename?: string | null | undefined;
11546
11564
  }, {
11547
- firstname?: string | null | undefined;
11548
- surname?: string | null | undefined;
11565
+ firstname: string;
11566
+ surname: string;
11549
11567
  middlename?: string | null | undefined;
11550
11568
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11551
11569
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -11671,16 +11689,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11671
11689
  addressLine3?: string | null | undefined;
11672
11690
  postcodeOrZip?: string | null | undefined;
11673
11691
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11674
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11675
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11692
+ firstname: z.ZodString;
11693
+ surname: z.ZodString;
11676
11694
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11677
11695
  }, "strip", z.ZodTypeAny, {
11678
- firstname?: string | null | undefined;
11679
- surname?: string | null | undefined;
11696
+ firstname: string;
11697
+ surname: string;
11680
11698
  middlename?: string | null | undefined;
11681
11699
  }, {
11682
- firstname?: string | null | undefined;
11683
- surname?: string | null | undefined;
11700
+ firstname: string;
11701
+ surname: string;
11684
11702
  middlename?: string | null | undefined;
11685
11703
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11686
11704
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -11707,8 +11725,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11707
11725
  street?: string | null | undefined;
11708
11726
  zipCode?: string | null | undefined;
11709
11727
  } | {
11710
- firstname?: string | null | undefined;
11711
- surname?: string | null | undefined;
11728
+ firstname: string;
11729
+ surname: string;
11712
11730
  middlename?: string | null | undefined;
11713
11731
  } | {
11714
11732
  country: string;
@@ -11754,8 +11772,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11754
11772
  street?: string | null | undefined;
11755
11773
  zipCode?: string | null | undefined;
11756
11774
  } | {
11757
- firstname?: string | null | undefined;
11758
- surname?: string | null | undefined;
11775
+ firstname: string;
11776
+ surname: string;
11759
11777
  middlename?: string | null | undefined;
11760
11778
  } | {
11761
11779
  country: string;
@@ -11805,8 +11823,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11805
11823
  street?: string | null | undefined;
11806
11824
  zipCode?: string | null | undefined;
11807
11825
  } | {
11808
- firstname?: string | null | undefined;
11809
- surname?: string | null | undefined;
11826
+ firstname: string;
11827
+ surname: string;
11810
11828
  middlename?: string | null | undefined;
11811
11829
  } | {
11812
11830
  country: string;
@@ -11850,8 +11868,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11850
11868
  street?: string | null | undefined;
11851
11869
  zipCode?: string | null | undefined;
11852
11870
  } | {
11853
- firstname?: string | null | undefined;
11854
- surname?: string | null | undefined;
11871
+ firstname: string;
11872
+ surname: string;
11855
11873
  middlename?: string | null | undefined;
11856
11874
  } | {
11857
11875
  country: string;
@@ -12008,16 +12026,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12008
12026
  addressLine3?: string | null | undefined;
12009
12027
  postcodeOrZip?: string | null | undefined;
12010
12028
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12011
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12012
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12029
+ firstname: z.ZodString;
12030
+ surname: z.ZodString;
12013
12031
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12014
12032
  }, "strip", z.ZodTypeAny, {
12015
- firstname?: string | null | undefined;
12016
- surname?: string | null | undefined;
12033
+ firstname: string;
12034
+ surname: string;
12017
12035
  middlename?: string | null | undefined;
12018
12036
  }, {
12019
- firstname?: string | null | undefined;
12020
- surname?: string | null | undefined;
12037
+ firstname: string;
12038
+ surname: string;
12021
12039
  middlename?: string | null | undefined;
12022
12040
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12023
12041
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -12143,23 +12161,23 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12143
12161
  addressLine3?: string | null | undefined;
12144
12162
  postcodeOrZip?: string | null | undefined;
12145
12163
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12146
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12147
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12164
+ firstname: z.ZodString;
12165
+ surname: z.ZodString;
12148
12166
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12149
12167
  }, "strip", z.ZodTypeAny, {
12150
- firstname?: string | null | undefined;
12151
- surname?: string | null | undefined;
12168
+ firstname: string;
12169
+ surname: string;
12152
12170
  middlename?: string | null | undefined;
12153
12171
  }, {
12154
- firstname?: string | null | undefined;
12155
- surname?: string | null | undefined;
12172
+ firstname: string;
12173
+ surname: string;
12156
12174
  middlename?: string | null | undefined;
12157
12175
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12158
12176
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
12159
12177
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
12160
12178
  }, {
12161
12179
  type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
12162
- actionDetails: z.ZodOptional<z.ZodObject<{
12180
+ content: z.ZodOptional<z.ZodObject<{
12163
12181
  templateId: z.ZodOptional<z.ZodString>;
12164
12182
  }, "strip", z.ZodTypeAny, {
12165
12183
  templateId?: string | undefined;
@@ -12185,8 +12203,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12185
12203
  street?: string | null | undefined;
12186
12204
  zipCode?: string | null | undefined;
12187
12205
  } | {
12188
- firstname?: string | null | undefined;
12189
- surname?: string | null | undefined;
12206
+ firstname: string;
12207
+ surname: string;
12190
12208
  middlename?: string | null | undefined;
12191
12209
  } | {
12192
12210
  country: string;
@@ -12215,6 +12233,9 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12215
12233
  end: string;
12216
12234
  } | null | undefined>;
12217
12235
  eventId: string & z.BRAND<"UUID">;
12236
+ content?: {
12237
+ templateId?: string | undefined;
12238
+ } | undefined;
12218
12239
  annotation?: Record<string, string | number | boolean | {
12219
12240
  type: string;
12220
12241
  path: string;
@@ -12231,8 +12252,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12231
12252
  street?: string | null | undefined;
12232
12253
  zipCode?: string | null | undefined;
12233
12254
  } | {
12234
- firstname?: string | null | undefined;
12235
- surname?: string | null | undefined;
12255
+ firstname: string;
12256
+ surname: string;
12236
12257
  middlename?: string | null | undefined;
12237
12258
  } | {
12238
12259
  country: string;
@@ -12261,14 +12282,14 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12261
12282
  end: string;
12262
12283
  } | null | undefined> | undefined;
12263
12284
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
12264
- actionDetails?: {
12265
- templateId?: string | undefined;
12266
- } | undefined;
12267
12285
  keepAssignment?: boolean | undefined;
12268
12286
  }, {
12269
12287
  transactionId: string;
12270
12288
  eventId: string;
12271
12289
  type?: "PRINT_CERTIFICATE" | undefined;
12290
+ content?: {
12291
+ templateId?: string | undefined;
12292
+ } | undefined;
12272
12293
  declaration?: Record<string, string | number | boolean | {
12273
12294
  type: string;
12274
12295
  path: string;
@@ -12285,8 +12306,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12285
12306
  street?: string | null | undefined;
12286
12307
  zipCode?: string | null | undefined;
12287
12308
  } | {
12288
- firstname?: string | null | undefined;
12289
- surname?: string | null | undefined;
12309
+ firstname: string;
12310
+ surname: string;
12290
12311
  middlename?: string | null | undefined;
12291
12312
  } | {
12292
12313
  country: string;
@@ -12330,8 +12351,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12330
12351
  street?: string | null | undefined;
12331
12352
  zipCode?: string | null | undefined;
12332
12353
  } | {
12333
- firstname?: string | null | undefined;
12334
- surname?: string | null | undefined;
12354
+ firstname: string;
12355
+ surname: string;
12335
12356
  middlename?: string | null | undefined;
12336
12357
  } | {
12337
12358
  country: string;
@@ -12360,9 +12381,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12360
12381
  end: string;
12361
12382
  } | null | undefined> | undefined;
12362
12383
  originalActionId?: string | undefined;
12363
- actionDetails?: {
12364
- templateId?: string | undefined;
12365
- } | undefined;
12366
12384
  keepAssignment?: boolean | undefined;
12367
12385
  }>, z.ZodObject<z.objectUtil.extendShape<{
12368
12386
  eventId: z.ZodBranded<z.ZodString, "UUID">;
@@ -12490,16 +12508,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12490
12508
  addressLine3?: string | null | undefined;
12491
12509
  postcodeOrZip?: string | null | undefined;
12492
12510
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12493
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12494
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12511
+ firstname: z.ZodString;
12512
+ surname: z.ZodString;
12495
12513
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12496
12514
  }, "strip", z.ZodTypeAny, {
12497
- firstname?: string | null | undefined;
12498
- surname?: string | null | undefined;
12515
+ firstname: string;
12516
+ surname: string;
12499
12517
  middlename?: string | null | undefined;
12500
12518
  }, {
12501
- firstname?: string | null | undefined;
12502
- surname?: string | null | undefined;
12519
+ firstname: string;
12520
+ surname: string;
12503
12521
  middlename?: string | null | undefined;
12504
12522
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12505
12523
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -12625,16 +12643,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12625
12643
  addressLine3?: string | null | undefined;
12626
12644
  postcodeOrZip?: string | null | undefined;
12627
12645
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12628
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12629
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12646
+ firstname: z.ZodString;
12647
+ surname: z.ZodString;
12630
12648
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12631
12649
  }, "strip", z.ZodTypeAny, {
12632
- firstname?: string | null | undefined;
12633
- surname?: string | null | undefined;
12650
+ firstname: string;
12651
+ surname: string;
12634
12652
  middlename?: string | null | undefined;
12635
12653
  }, {
12636
- firstname?: string | null | undefined;
12637
- surname?: string | null | undefined;
12654
+ firstname: string;
12655
+ surname: string;
12638
12656
  middlename?: string | null | undefined;
12639
12657
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12640
12658
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -12660,8 +12678,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12660
12678
  street?: string | null | undefined;
12661
12679
  zipCode?: string | null | undefined;
12662
12680
  } | {
12663
- firstname?: string | null | undefined;
12664
- surname?: string | null | undefined;
12681
+ firstname: string;
12682
+ surname: string;
12665
12683
  middlename?: string | null | undefined;
12666
12684
  } | {
12667
12685
  country: string;
@@ -12706,8 +12724,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12706
12724
  street?: string | null | undefined;
12707
12725
  zipCode?: string | null | undefined;
12708
12726
  } | {
12709
- firstname?: string | null | undefined;
12710
- surname?: string | null | undefined;
12727
+ firstname: string;
12728
+ surname: string;
12711
12729
  middlename?: string | null | undefined;
12712
12730
  } | {
12713
12731
  country: string;
@@ -12757,8 +12775,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12757
12775
  street?: string | null | undefined;
12758
12776
  zipCode?: string | null | undefined;
12759
12777
  } | {
12760
- firstname?: string | null | undefined;
12761
- surname?: string | null | undefined;
12778
+ firstname: string;
12779
+ surname: string;
12762
12780
  middlename?: string | null | undefined;
12763
12781
  } | {
12764
12782
  country: string;
@@ -12802,8 +12820,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12802
12820
  street?: string | null | undefined;
12803
12821
  zipCode?: string | null | undefined;
12804
12822
  } | {
12805
- firstname?: string | null | undefined;
12806
- surname?: string | null | undefined;
12823
+ firstname: string;
12824
+ surname: string;
12807
12825
  middlename?: string | null | undefined;
12808
12826
  } | {
12809
12827
  country: string;
@@ -12959,16 +12977,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12959
12977
  addressLine3?: string | null | undefined;
12960
12978
  postcodeOrZip?: string | null | undefined;
12961
12979
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12962
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12963
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12980
+ firstname: z.ZodString;
12981
+ surname: z.ZodString;
12964
12982
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12965
12983
  }, "strip", z.ZodTypeAny, {
12966
- firstname?: string | null | undefined;
12967
- surname?: string | null | undefined;
12984
+ firstname: string;
12985
+ surname: string;
12968
12986
  middlename?: string | null | undefined;
12969
12987
  }, {
12970
- firstname?: string | null | undefined;
12971
- surname?: string | null | undefined;
12988
+ firstname: string;
12989
+ surname: string;
12972
12990
  middlename?: string | null | undefined;
12973
12991
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12974
12992
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -13094,16 +13112,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13094
13112
  addressLine3?: string | null | undefined;
13095
13113
  postcodeOrZip?: string | null | undefined;
13096
13114
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13097
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13098
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13115
+ firstname: z.ZodString;
13116
+ surname: z.ZodString;
13099
13117
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13100
13118
  }, "strip", z.ZodTypeAny, {
13101
- firstname?: string | null | undefined;
13102
- surname?: string | null | undefined;
13119
+ firstname: string;
13120
+ surname: string;
13103
13121
  middlename?: string | null | undefined;
13104
13122
  }, {
13105
- firstname?: string | null | undefined;
13106
- surname?: string | null | undefined;
13123
+ firstname: string;
13124
+ surname: string;
13107
13125
  middlename?: string | null | undefined;
13108
13126
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
13109
13127
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -13111,8 +13129,22 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13111
13129
  }, {
13112
13130
  requestId: z.ZodString;
13113
13131
  type: z.ZodDefault<z.ZodLiteral<"REJECT_CORRECTION">>;
13132
+ reason: z.ZodObject<{
13133
+ message: z.ZodString;
13134
+ isDuplicate: z.ZodOptional<z.ZodBoolean>;
13135
+ }, "strip", z.ZodTypeAny, {
13136
+ message: string;
13137
+ isDuplicate?: boolean | undefined;
13138
+ }, {
13139
+ message: string;
13140
+ isDuplicate?: boolean | undefined;
13141
+ }>;
13114
13142
  }>, "strip", z.ZodTypeAny, {
13115
13143
  type: "REJECT_CORRECTION";
13144
+ reason: {
13145
+ message: string;
13146
+ isDuplicate?: boolean | undefined;
13147
+ };
13116
13148
  transactionId: string;
13117
13149
  declaration: Record<string, string | number | boolean | {
13118
13150
  type: string;
@@ -13130,8 +13162,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13130
13162
  street?: string | null | undefined;
13131
13163
  zipCode?: string | null | undefined;
13132
13164
  } | {
13133
- firstname?: string | null | undefined;
13134
- surname?: string | null | undefined;
13165
+ firstname: string;
13166
+ surname: string;
13135
13167
  middlename?: string | null | undefined;
13136
13168
  } | {
13137
13169
  country: string;
@@ -13177,8 +13209,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13177
13209
  street?: string | null | undefined;
13178
13210
  zipCode?: string | null | undefined;
13179
13211
  } | {
13180
- firstname?: string | null | undefined;
13181
- surname?: string | null | undefined;
13212
+ firstname: string;
13213
+ surname: string;
13182
13214
  middlename?: string | null | undefined;
13183
13215
  } | {
13184
13216
  country: string;
@@ -13209,6 +13241,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13209
13241
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
13210
13242
  keepAssignment?: boolean | undefined;
13211
13243
  }, {
13244
+ reason: {
13245
+ message: string;
13246
+ isDuplicate?: boolean | undefined;
13247
+ };
13212
13248
  transactionId: string;
13213
13249
  requestId: string;
13214
13250
  eventId: string;
@@ -13229,8 +13265,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13229
13265
  street?: string | null | undefined;
13230
13266
  zipCode?: string | null | undefined;
13231
13267
  } | {
13232
- firstname?: string | null | undefined;
13233
- surname?: string | null | undefined;
13268
+ firstname: string;
13269
+ surname: string;
13234
13270
  middlename?: string | null | undefined;
13235
13271
  } | {
13236
13272
  country: string;
@@ -13274,8 +13310,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13274
13310
  street?: string | null | undefined;
13275
13311
  zipCode?: string | null | undefined;
13276
13312
  } | {
13277
- firstname?: string | null | undefined;
13278
- surname?: string | null | undefined;
13313
+ firstname: string;
13314
+ surname: string;
13279
13315
  middlename?: string | null | undefined;
13280
13316
  } | {
13281
13317
  country: string;
@@ -13431,16 +13467,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13431
13467
  addressLine3?: string | null | undefined;
13432
13468
  postcodeOrZip?: string | null | undefined;
13433
13469
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13434
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13435
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13470
+ firstname: z.ZodString;
13471
+ surname: z.ZodString;
13436
13472
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13437
13473
  }, "strip", z.ZodTypeAny, {
13438
- firstname?: string | null | undefined;
13439
- surname?: string | null | undefined;
13474
+ firstname: string;
13475
+ surname: string;
13440
13476
  middlename?: string | null | undefined;
13441
13477
  }, {
13442
- firstname?: string | null | undefined;
13443
- surname?: string | null | undefined;
13478
+ firstname: string;
13479
+ surname: string;
13444
13480
  middlename?: string | null | undefined;
13445
13481
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
13446
13482
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -13566,16 +13602,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13566
13602
  addressLine3?: string | null | undefined;
13567
13603
  postcodeOrZip?: string | null | undefined;
13568
13604
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13569
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13570
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13605
+ firstname: z.ZodString;
13606
+ surname: z.ZodString;
13571
13607
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13572
13608
  }, "strip", z.ZodTypeAny, {
13573
- firstname?: string | null | undefined;
13574
- surname?: string | null | undefined;
13609
+ firstname: string;
13610
+ surname: string;
13575
13611
  middlename?: string | null | undefined;
13576
13612
  }, {
13577
- firstname?: string | null | undefined;
13578
- surname?: string | null | undefined;
13613
+ firstname: string;
13614
+ surname: string;
13579
13615
  middlename?: string | null | undefined;
13580
13616
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
13581
13617
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -13602,8 +13638,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13602
13638
  street?: string | null | undefined;
13603
13639
  zipCode?: string | null | undefined;
13604
13640
  } | {
13605
- firstname?: string | null | undefined;
13606
- surname?: string | null | undefined;
13641
+ firstname: string;
13642
+ surname: string;
13607
13643
  middlename?: string | null | undefined;
13608
13644
  } | {
13609
13645
  country: string;
@@ -13649,8 +13685,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13649
13685
  street?: string | null | undefined;
13650
13686
  zipCode?: string | null | undefined;
13651
13687
  } | {
13652
- firstname?: string | null | undefined;
13653
- surname?: string | null | undefined;
13688
+ firstname: string;
13689
+ surname: string;
13654
13690
  middlename?: string | null | undefined;
13655
13691
  } | {
13656
13692
  country: string;
@@ -13701,8 +13737,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13701
13737
  street?: string | null | undefined;
13702
13738
  zipCode?: string | null | undefined;
13703
13739
  } | {
13704
- firstname?: string | null | undefined;
13705
- surname?: string | null | undefined;
13740
+ firstname: string;
13741
+ surname: string;
13706
13742
  middlename?: string | null | undefined;
13707
13743
  } | {
13708
13744
  country: string;
@@ -13746,8 +13782,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13746
13782
  street?: string | null | undefined;
13747
13783
  zipCode?: string | null | undefined;
13748
13784
  } | {
13749
- firstname?: string | null | undefined;
13750
- surname?: string | null | undefined;
13785
+ firstname: string;
13786
+ surname: string;
13751
13787
  middlename?: string | null | undefined;
13752
13788
  } | {
13753
13789
  country: string;
@@ -13903,16 +13939,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13903
13939
  addressLine3?: string | null | undefined;
13904
13940
  postcodeOrZip?: string | null | undefined;
13905
13941
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13906
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13907
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13942
+ firstname: z.ZodString;
13943
+ surname: z.ZodString;
13908
13944
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13909
13945
  }, "strip", z.ZodTypeAny, {
13910
- firstname?: string | null | undefined;
13911
- surname?: string | null | undefined;
13946
+ firstname: string;
13947
+ surname: string;
13912
13948
  middlename?: string | null | undefined;
13913
13949
  }, {
13914
- firstname?: string | null | undefined;
13915
- surname?: string | null | undefined;
13950
+ firstname: string;
13951
+ surname: string;
13916
13952
  middlename?: string | null | undefined;
13917
13953
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
13918
13954
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -14038,16 +14074,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14038
14074
  addressLine3?: string | null | undefined;
14039
14075
  postcodeOrZip?: string | null | undefined;
14040
14076
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
14041
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14042
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14077
+ firstname: z.ZodString;
14078
+ surname: z.ZodString;
14043
14079
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14044
14080
  }, "strip", z.ZodTypeAny, {
14045
- firstname?: string | null | undefined;
14046
- surname?: string | null | undefined;
14081
+ firstname: string;
14082
+ surname: string;
14047
14083
  middlename?: string | null | undefined;
14048
14084
  }, {
14049
- firstname?: string | null | undefined;
14050
- surname?: string | null | undefined;
14085
+ firstname: string;
14086
+ surname: string;
14051
14087
  middlename?: string | null | undefined;
14052
14088
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
14053
14089
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -14073,8 +14109,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14073
14109
  street?: string | null | undefined;
14074
14110
  zipCode?: string | null | undefined;
14075
14111
  } | {
14076
- firstname?: string | null | undefined;
14077
- surname?: string | null | undefined;
14112
+ firstname: string;
14113
+ surname: string;
14078
14114
  middlename?: string | null | undefined;
14079
14115
  } | {
14080
14116
  country: string;
@@ -14119,8 +14155,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14119
14155
  street?: string | null | undefined;
14120
14156
  zipCode?: string | null | undefined;
14121
14157
  } | {
14122
- firstname?: string | null | undefined;
14123
- surname?: string | null | undefined;
14158
+ firstname: string;
14159
+ surname: string;
14124
14160
  middlename?: string | null | undefined;
14125
14161
  } | {
14126
14162
  country: string;
@@ -14170,8 +14206,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14170
14206
  street?: string | null | undefined;
14171
14207
  zipCode?: string | null | undefined;
14172
14208
  } | {
14173
- firstname?: string | null | undefined;
14174
- surname?: string | null | undefined;
14209
+ firstname: string;
14210
+ surname: string;
14175
14211
  middlename?: string | null | undefined;
14176
14212
  } | {
14177
14213
  country: string;
@@ -14215,8 +14251,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14215
14251
  street?: string | null | undefined;
14216
14252
  zipCode?: string | null | undefined;
14217
14253
  } | {
14218
- firstname?: string | null | undefined;
14219
- surname?: string | null | undefined;
14254
+ firstname: string;
14255
+ surname: string;
14220
14256
  middlename?: string | null | undefined;
14221
14257
  } | {
14222
14258
  country: string;