@opencrvs/toolkit 1.8.1-rc.baeb06c → 1.8.1-rc.bbdfdc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/build.sh +5 -0
  2. package/dist/commons/api/router.d.ts +433 -392
  3. package/dist/commons/conditionals/validate.d.ts +11 -2
  4. package/dist/commons/events/ActionConfig.d.ts +2004 -366
  5. package/dist/commons/events/ActionDocument.d.ts +1319 -747
  6. package/dist/commons/events/ActionInput.d.ts +662 -600
  7. package/dist/commons/events/AdvancedSearchConfig.d.ts +83 -65
  8. package/dist/commons/events/CompositeFieldValue.d.ts +6 -6
  9. package/dist/commons/events/CountryConfigQueryInput.d.ts +88 -88
  10. package/dist/commons/events/Draft.d.ts +48 -48
  11. package/dist/commons/events/EventConfig.d.ts +695 -168
  12. package/dist/commons/events/EventDocument.d.ts +477 -432
  13. package/dist/commons/events/EventIndex.d.ts +184 -62
  14. package/dist/commons/events/EventMetadata.d.ts +9 -9
  15. package/dist/commons/events/FieldConfig.d.ts +254 -43
  16. package/dist/commons/events/FieldTypeMapping.d.ts +16 -16
  17. package/dist/commons/events/FieldValue.d.ts +12 -12
  18. package/dist/commons/events/FormConfig.d.ts +1032 -246
  19. package/dist/commons/events/PageConfig.d.ts +264 -46
  20. package/dist/commons/events/WorkqueueConfig.d.ts +288 -164
  21. package/dist/commons/events/defineConfig.d.ts +129 -30
  22. package/dist/commons/events/event.d.ts +68 -6
  23. package/dist/commons/events/field.d.ts +14 -0
  24. package/dist/commons/events/test.utils.d.ts +17 -13
  25. package/dist/commons/events/utils.d.ts +236 -60
  26. package/dist/commons/notification/UserNotifications.d.ts +547 -0
  27. package/dist/commons/notification/index.d.ts +2 -0
  28. package/dist/conditionals/index.js +3 -2
  29. package/dist/events/index.js +265 -95
  30. package/dist/notification/index.d.ts +2 -0
  31. package/dist/notification/index.d.ts.map +1 -0
  32. package/dist/notification/index.js +5362 -0
  33. package/package.json +3 -2
  34. package/tsconfig.json +3 -2
  35. package/tsconfig.tsbuildinfo +1 -1
  36. package/dist/commons/conditionals/conditionals.test.d.ts +0 -2
  37. package/dist/commons/conditionals/validate-address.test.d.ts +0 -2
  38. package/dist/commons/conditionals/validate.test.d.ts +0 -2
  39. 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,22 +2615,29 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2615
2615
  addressLine3?: string | null | undefined;
2616
2616
  postcodeOrZip?: string | null | undefined;
2617
2617
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2618
- firstname: z.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
+ content: z.ZodOptional<z.ZodObject<{
2635
+ templateId: z.ZodOptional<z.ZodString>;
2636
+ }, "strip", z.ZodTypeAny, {
2637
+ templateId?: string | undefined;
2638
+ }, {
2639
+ templateId?: string | undefined;
2640
+ }>>;
2634
2641
  }>, "strip", z.ZodTypeAny, {
2635
2642
  type: "PRINT_CERTIFICATE";
2636
2643
  transactionId: string;
@@ -2650,8 +2657,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2650
2657
  street?: string | null | undefined;
2651
2658
  zipCode?: string | null | undefined;
2652
2659
  } | {
2653
- firstname?: string | null | undefined;
2654
- surname?: string | null | undefined;
2660
+ firstname: string;
2661
+ surname: string;
2655
2662
  middlename?: string | null | undefined;
2656
2663
  } | {
2657
2664
  country: string;
@@ -2680,6 +2687,9 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2680
2687
  end: string;
2681
2688
  } | null | undefined>;
2682
2689
  eventId: string & z.BRAND<"UUID">;
2690
+ content?: {
2691
+ templateId?: string | undefined;
2692
+ } | undefined;
2683
2693
  annotation?: Record<string, string | number | boolean | {
2684
2694
  type: string;
2685
2695
  path: string;
@@ -2696,8 +2706,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2696
2706
  street?: string | null | undefined;
2697
2707
  zipCode?: string | null | undefined;
2698
2708
  } | {
2699
- firstname?: string | null | undefined;
2700
- surname?: string | null | undefined;
2709
+ firstname: string;
2710
+ surname: string;
2701
2711
  middlename?: string | null | undefined;
2702
2712
  } | {
2703
2713
  country: string;
@@ -2731,6 +2741,9 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2731
2741
  transactionId: string;
2732
2742
  eventId: string;
2733
2743
  type?: "PRINT_CERTIFICATE" | undefined;
2744
+ content?: {
2745
+ templateId?: string | undefined;
2746
+ } | undefined;
2734
2747
  declaration?: Record<string, string | number | boolean | {
2735
2748
  type: string;
2736
2749
  path: string;
@@ -2747,8 +2760,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2747
2760
  street?: string | null | undefined;
2748
2761
  zipCode?: string | null | undefined;
2749
2762
  } | {
2750
- firstname?: string | null | undefined;
2751
- surname?: string | null | undefined;
2763
+ firstname: string;
2764
+ surname: string;
2752
2765
  middlename?: string | null | undefined;
2753
2766
  } | {
2754
2767
  country: string;
@@ -2792,8 +2805,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2792
2805
  street?: string | null | undefined;
2793
2806
  zipCode?: string | null | undefined;
2794
2807
  } | {
2795
- firstname?: string | null | undefined;
2796
- surname?: string | null | undefined;
2808
+ firstname: string;
2809
+ surname: string;
2797
2810
  middlename?: string | null | undefined;
2798
2811
  } | {
2799
2812
  country: string;
@@ -2951,16 +2964,16 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
2951
2964
  addressLine3?: string | null | undefined;
2952
2965
  postcodeOrZip?: string | null | undefined;
2953
2966
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2954
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2955
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2967
+ firstname: z.ZodString;
2968
+ surname: z.ZodString;
2956
2969
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2957
2970
  }, "strip", z.ZodTypeAny, {
2958
- firstname?: string | null | undefined;
2959
- surname?: string | null | undefined;
2971
+ firstname: string;
2972
+ surname: string;
2960
2973
  middlename?: string | null | undefined;
2961
2974
  }, {
2962
- firstname?: string | null | undefined;
2963
- surname?: string | null | undefined;
2975
+ firstname: string;
2976
+ surname: string;
2964
2977
  middlename?: string | null | undefined;
2965
2978
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2966
2979
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -3086,16 +3099,16 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
3086
3099
  addressLine3?: string | null | undefined;
3087
3100
  postcodeOrZip?: string | null | undefined;
3088
3101
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3089
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3090
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3102
+ firstname: z.ZodString;
3103
+ surname: z.ZodString;
3091
3104
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3092
3105
  }, "strip", z.ZodTypeAny, {
3093
- firstname?: string | null | undefined;
3094
- surname?: string | null | undefined;
3106
+ firstname: string;
3107
+ surname: string;
3095
3108
  middlename?: string | null | undefined;
3096
3109
  }, {
3097
- firstname?: string | null | undefined;
3098
- surname?: string | null | undefined;
3110
+ firstname: string;
3111
+ surname: string;
3099
3112
  middlename?: string | null | undefined;
3100
3113
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
3101
3114
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -3135,8 +3148,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
3135
3148
  street?: string | null | undefined;
3136
3149
  zipCode?: string | null | undefined;
3137
3150
  } | {
3138
- firstname?: string | null | undefined;
3139
- surname?: string | null | undefined;
3151
+ firstname: string;
3152
+ surname: string;
3140
3153
  middlename?: string | null | undefined;
3141
3154
  } | {
3142
3155
  country: string;
@@ -3181,8 +3194,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
3181
3194
  street?: string | null | undefined;
3182
3195
  zipCode?: string | null | undefined;
3183
3196
  } | {
3184
- firstname?: string | null | undefined;
3185
- surname?: string | null | undefined;
3197
+ firstname: string;
3198
+ surname: string;
3186
3199
  middlename?: string | null | undefined;
3187
3200
  } | {
3188
3201
  country: string;
@@ -3236,8 +3249,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
3236
3249
  street?: string | null | undefined;
3237
3250
  zipCode?: string | null | undefined;
3238
3251
  } | {
3239
- firstname?: string | null | undefined;
3240
- surname?: string | null | undefined;
3252
+ firstname: string;
3253
+ surname: string;
3241
3254
  middlename?: string | null | undefined;
3242
3255
  } | {
3243
3256
  country: string;
@@ -3281,8 +3294,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
3281
3294
  street?: string | null | undefined;
3282
3295
  zipCode?: string | null | undefined;
3283
3296
  } | {
3284
- firstname?: string | null | undefined;
3285
- surname?: string | null | undefined;
3297
+ firstname: string;
3298
+ surname: string;
3286
3299
  middlename?: string | null | undefined;
3287
3300
  } | {
3288
3301
  country: string;
@@ -3440,16 +3453,16 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3440
3453
  addressLine3?: string | null | undefined;
3441
3454
  postcodeOrZip?: string | null | undefined;
3442
3455
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3443
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3444
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3456
+ firstname: z.ZodString;
3457
+ surname: z.ZodString;
3445
3458
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3446
3459
  }, "strip", z.ZodTypeAny, {
3447
- firstname?: string | null | undefined;
3448
- surname?: string | null | undefined;
3460
+ firstname: string;
3461
+ surname: string;
3449
3462
  middlename?: string | null | undefined;
3450
3463
  }, {
3451
- firstname?: string | null | undefined;
3452
- surname?: string | null | undefined;
3464
+ firstname: string;
3465
+ surname: string;
3453
3466
  middlename?: string | null | undefined;
3454
3467
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
3455
3468
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -3575,16 +3588,16 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3575
3588
  addressLine3?: string | null | undefined;
3576
3589
  postcodeOrZip?: string | null | undefined;
3577
3590
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3578
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3579
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3591
+ firstname: z.ZodString;
3592
+ surname: z.ZodString;
3580
3593
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3581
3594
  }, "strip", z.ZodTypeAny, {
3582
- firstname?: string | null | undefined;
3583
- surname?: string | null | undefined;
3595
+ firstname: string;
3596
+ surname: string;
3584
3597
  middlename?: string | null | undefined;
3585
3598
  }, {
3586
- firstname?: string | null | undefined;
3587
- surname?: string | null | undefined;
3599
+ firstname: string;
3600
+ surname: string;
3588
3601
  middlename?: string | null | undefined;
3589
3602
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
3590
3603
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -3610,8 +3623,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3610
3623
  street?: string | null | undefined;
3611
3624
  zipCode?: string | null | undefined;
3612
3625
  } | {
3613
- firstname?: string | null | undefined;
3614
- surname?: string | null | undefined;
3626
+ firstname: string;
3627
+ surname: string;
3615
3628
  middlename?: string | null | undefined;
3616
3629
  } | {
3617
3630
  country: string;
@@ -3656,8 +3669,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3656
3669
  street?: string | null | undefined;
3657
3670
  zipCode?: string | null | undefined;
3658
3671
  } | {
3659
- firstname?: string | null | undefined;
3660
- surname?: string | null | undefined;
3672
+ firstname: string;
3673
+ surname: string;
3661
3674
  middlename?: string | null | undefined;
3662
3675
  } | {
3663
3676
  country: string;
@@ -3707,8 +3720,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3707
3720
  street?: string | null | undefined;
3708
3721
  zipCode?: string | null | undefined;
3709
3722
  } | {
3710
- firstname?: string | null | undefined;
3711
- surname?: string | null | undefined;
3723
+ firstname: string;
3724
+ surname: string;
3712
3725
  middlename?: string | null | undefined;
3713
3726
  } | {
3714
3727
  country: string;
@@ -3752,8 +3765,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3752
3765
  street?: string | null | undefined;
3753
3766
  zipCode?: string | null | undefined;
3754
3767
  } | {
3755
- firstname?: string | null | undefined;
3756
- surname?: string | null | undefined;
3768
+ firstname: string;
3769
+ surname: string;
3757
3770
  middlename?: string | null | undefined;
3758
3771
  } | {
3759
3772
  country: string;
@@ -3911,16 +3924,16 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
3911
3924
  addressLine3?: string | null | undefined;
3912
3925
  postcodeOrZip?: string | null | undefined;
3913
3926
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3914
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3915
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3927
+ firstname: z.ZodString;
3928
+ surname: z.ZodString;
3916
3929
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3917
3930
  }, "strip", z.ZodTypeAny, {
3918
- firstname?: string | null | undefined;
3919
- surname?: string | null | undefined;
3931
+ firstname: string;
3932
+ surname: string;
3920
3933
  middlename?: string | null | undefined;
3921
3934
  }, {
3922
- firstname?: string | null | undefined;
3923
- surname?: string | null | undefined;
3935
+ firstname: string;
3936
+ surname: string;
3924
3937
  middlename?: string | null | undefined;
3925
3938
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
3926
3939
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -4046,16 +4059,16 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
4046
4059
  addressLine3?: string | null | undefined;
4047
4060
  postcodeOrZip?: string | null | undefined;
4048
4061
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4049
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4050
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4062
+ firstname: z.ZodString;
4063
+ surname: z.ZodString;
4051
4064
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4052
4065
  }, "strip", z.ZodTypeAny, {
4053
- firstname?: string | null | undefined;
4054
- surname?: string | null | undefined;
4066
+ firstname: string;
4067
+ surname: string;
4055
4068
  middlename?: string | null | undefined;
4056
4069
  }, {
4057
- firstname?: string | null | undefined;
4058
- surname?: string | null | undefined;
4070
+ firstname: string;
4071
+ surname: string;
4059
4072
  middlename?: string | null | undefined;
4060
4073
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
4061
4074
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -4095,8 +4108,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
4095
4108
  street?: string | null | undefined;
4096
4109
  zipCode?: string | null | undefined;
4097
4110
  } | {
4098
- firstname?: string | null | undefined;
4099
- surname?: string | null | undefined;
4111
+ firstname: string;
4112
+ surname: string;
4100
4113
  middlename?: string | null | undefined;
4101
4114
  } | {
4102
4115
  country: string;
@@ -4141,8 +4154,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
4141
4154
  street?: string | null | undefined;
4142
4155
  zipCode?: string | null | undefined;
4143
4156
  } | {
4144
- firstname?: string | null | undefined;
4145
- surname?: string | null | undefined;
4157
+ firstname: string;
4158
+ surname: string;
4146
4159
  middlename?: string | null | undefined;
4147
4160
  } | {
4148
4161
  country: string;
@@ -4196,8 +4209,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
4196
4209
  street?: string | null | undefined;
4197
4210
  zipCode?: string | null | undefined;
4198
4211
  } | {
4199
- firstname?: string | null | undefined;
4200
- surname?: string | null | undefined;
4212
+ firstname: string;
4213
+ surname: string;
4201
4214
  middlename?: string | null | undefined;
4202
4215
  } | {
4203
4216
  country: string;
@@ -4241,8 +4254,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
4241
4254
  street?: string | null | undefined;
4242
4255
  zipCode?: string | null | undefined;
4243
4256
  } | {
4244
- firstname?: string | null | undefined;
4245
- surname?: string | null | undefined;
4257
+ firstname: string;
4258
+ surname: string;
4246
4259
  middlename?: string | null | undefined;
4247
4260
  } | {
4248
4261
  country: string;
@@ -4400,16 +4413,16 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4400
4413
  addressLine3?: string | null | undefined;
4401
4414
  postcodeOrZip?: string | null | undefined;
4402
4415
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4403
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4404
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4416
+ firstname: z.ZodString;
4417
+ surname: z.ZodString;
4405
4418
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4406
4419
  }, "strip", z.ZodTypeAny, {
4407
- firstname?: string | null | undefined;
4408
- surname?: string | null | undefined;
4420
+ firstname: string;
4421
+ surname: string;
4409
4422
  middlename?: string | null | undefined;
4410
4423
  }, {
4411
- firstname?: string | null | undefined;
4412
- surname?: string | null | undefined;
4424
+ firstname: string;
4425
+ surname: string;
4413
4426
  middlename?: string | null | undefined;
4414
4427
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
4415
4428
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -4535,16 +4548,16 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4535
4548
  addressLine3?: string | null | undefined;
4536
4549
  postcodeOrZip?: string | null | undefined;
4537
4550
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4538
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4539
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4551
+ firstname: z.ZodString;
4552
+ surname: z.ZodString;
4540
4553
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4541
4554
  }, "strip", z.ZodTypeAny, {
4542
- firstname?: string | null | undefined;
4543
- surname?: string | null | undefined;
4555
+ firstname: string;
4556
+ surname: string;
4544
4557
  middlename?: string | null | undefined;
4545
4558
  }, {
4546
- firstname?: string | null | undefined;
4547
- surname?: string | null | undefined;
4559
+ firstname: string;
4560
+ surname: string;
4548
4561
  middlename?: string | null | undefined;
4549
4562
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
4550
4563
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -4571,8 +4584,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4571
4584
  street?: string | null | undefined;
4572
4585
  zipCode?: string | null | undefined;
4573
4586
  } | {
4574
- firstname?: string | null | undefined;
4575
- surname?: string | null | undefined;
4587
+ firstname: string;
4588
+ surname: string;
4576
4589
  middlename?: string | null | undefined;
4577
4590
  } | {
4578
4591
  country: string;
@@ -4618,8 +4631,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4618
4631
  street?: string | null | undefined;
4619
4632
  zipCode?: string | null | undefined;
4620
4633
  } | {
4621
- firstname?: string | null | undefined;
4622
- surname?: string | null | undefined;
4634
+ firstname: string;
4635
+ surname: string;
4623
4636
  middlename?: string | null | undefined;
4624
4637
  } | {
4625
4638
  country: string;
@@ -4670,8 +4683,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4670
4683
  street?: string | null | undefined;
4671
4684
  zipCode?: string | null | undefined;
4672
4685
  } | {
4673
- firstname?: string | null | undefined;
4674
- surname?: string | null | undefined;
4686
+ firstname: string;
4687
+ surname: string;
4675
4688
  middlename?: string | null | undefined;
4676
4689
  } | {
4677
4690
  country: string;
@@ -4715,8 +4728,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4715
4728
  street?: string | null | undefined;
4716
4729
  zipCode?: string | null | undefined;
4717
4730
  } | {
4718
- firstname?: string | null | undefined;
4719
- surname?: string | null | undefined;
4731
+ firstname: string;
4732
+ surname: string;
4720
4733
  middlename?: string | null | undefined;
4721
4734
  } | {
4722
4735
  country: string;
@@ -4874,16 +4887,16 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4874
4887
  addressLine3?: string | null | undefined;
4875
4888
  postcodeOrZip?: string | null | undefined;
4876
4889
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4877
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4878
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4890
+ firstname: z.ZodString;
4891
+ surname: z.ZodString;
4879
4892
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4880
4893
  }, "strip", z.ZodTypeAny, {
4881
- firstname?: string | null | undefined;
4882
- surname?: string | null | undefined;
4894
+ firstname: string;
4895
+ surname: string;
4883
4896
  middlename?: string | null | undefined;
4884
4897
  }, {
4885
- firstname?: string | null | undefined;
4886
- surname?: string | null | undefined;
4898
+ firstname: string;
4899
+ surname: string;
4887
4900
  middlename?: string | null | undefined;
4888
4901
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
4889
4902
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -5009,16 +5022,16 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
5009
5022
  addressLine3?: string | null | undefined;
5010
5023
  postcodeOrZip?: string | null | undefined;
5011
5024
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5012
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5013
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5025
+ firstname: z.ZodString;
5026
+ surname: z.ZodString;
5014
5027
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5015
5028
  }, "strip", z.ZodTypeAny, {
5016
- firstname?: string | null | undefined;
5017
- surname?: string | null | undefined;
5029
+ firstname: string;
5030
+ surname: string;
5018
5031
  middlename?: string | null | undefined;
5019
5032
  }, {
5020
- firstname?: string | null | undefined;
5021
- surname?: string | null | undefined;
5033
+ firstname: string;
5034
+ surname: string;
5022
5035
  middlename?: string | null | undefined;
5023
5036
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5024
5037
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -5045,8 +5058,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
5045
5058
  street?: string | null | undefined;
5046
5059
  zipCode?: string | null | undefined;
5047
5060
  } | {
5048
- firstname?: string | null | undefined;
5049
- surname?: string | null | undefined;
5061
+ firstname: string;
5062
+ surname: string;
5050
5063
  middlename?: string | null | undefined;
5051
5064
  } | {
5052
5065
  country: string;
@@ -5092,8 +5105,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
5092
5105
  street?: string | null | undefined;
5093
5106
  zipCode?: string | null | undefined;
5094
5107
  } | {
5095
- firstname?: string | null | undefined;
5096
- surname?: string | null | undefined;
5108
+ firstname: string;
5109
+ surname: string;
5097
5110
  middlename?: string | null | undefined;
5098
5111
  } | {
5099
5112
  country: string;
@@ -5143,8 +5156,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
5143
5156
  street?: string | null | undefined;
5144
5157
  zipCode?: string | null | undefined;
5145
5158
  } | {
5146
- firstname?: string | null | undefined;
5147
- surname?: string | null | undefined;
5159
+ firstname: string;
5160
+ surname: string;
5148
5161
  middlename?: string | null | undefined;
5149
5162
  } | {
5150
5163
  country: string;
@@ -5188,8 +5201,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
5188
5201
  street?: string | null | undefined;
5189
5202
  zipCode?: string | null | undefined;
5190
5203
  } | {
5191
- firstname?: string | null | undefined;
5192
- surname?: string | null | undefined;
5204
+ firstname: string;
5205
+ surname: string;
5193
5206
  middlename?: string | null | undefined;
5194
5207
  } | {
5195
5208
  country: string;
@@ -5348,16 +5361,16 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5348
5361
  addressLine3?: string | null | undefined;
5349
5362
  postcodeOrZip?: string | null | undefined;
5350
5363
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5351
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5352
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5364
+ firstname: z.ZodString;
5365
+ surname: z.ZodString;
5353
5366
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5354
5367
  }, "strip", z.ZodTypeAny, {
5355
- firstname?: string | null | undefined;
5356
- surname?: string | null | undefined;
5368
+ firstname: string;
5369
+ surname: string;
5357
5370
  middlename?: string | null | undefined;
5358
5371
  }, {
5359
- firstname?: string | null | undefined;
5360
- surname?: string | null | undefined;
5372
+ firstname: string;
5373
+ surname: string;
5361
5374
  middlename?: string | null | undefined;
5362
5375
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5363
5376
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -5483,16 +5496,16 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5483
5496
  addressLine3?: string | null | undefined;
5484
5497
  postcodeOrZip?: string | null | undefined;
5485
5498
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5486
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5487
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5499
+ firstname: z.ZodString;
5500
+ surname: z.ZodString;
5488
5501
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5489
5502
  }, "strip", z.ZodTypeAny, {
5490
- firstname?: string | null | undefined;
5491
- surname?: string | null | undefined;
5503
+ firstname: string;
5504
+ surname: string;
5492
5505
  middlename?: string | null | undefined;
5493
5506
  }, {
5494
- firstname?: string | null | undefined;
5495
- surname?: string | null | undefined;
5507
+ firstname: string;
5508
+ surname: string;
5496
5509
  middlename?: string | null | undefined;
5497
5510
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5498
5511
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -5518,8 +5531,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5518
5531
  street?: string | null | undefined;
5519
5532
  zipCode?: string | null | undefined;
5520
5533
  } | {
5521
- firstname?: string | null | undefined;
5522
- surname?: string | null | undefined;
5534
+ firstname: string;
5535
+ surname: string;
5523
5536
  middlename?: string | null | undefined;
5524
5537
  } | {
5525
5538
  country: string;
@@ -5564,8 +5577,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5564
5577
  street?: string | null | undefined;
5565
5578
  zipCode?: string | null | undefined;
5566
5579
  } | {
5567
- firstname?: string | null | undefined;
5568
- surname?: string | null | undefined;
5580
+ firstname: string;
5581
+ surname: string;
5569
5582
  middlename?: string | null | undefined;
5570
5583
  } | {
5571
5584
  country: string;
@@ -5615,8 +5628,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5615
5628
  street?: string | null | undefined;
5616
5629
  zipCode?: string | null | undefined;
5617
5630
  } | {
5618
- firstname?: string | null | undefined;
5619
- surname?: string | null | undefined;
5631
+ firstname: string;
5632
+ surname: string;
5620
5633
  middlename?: string | null | undefined;
5621
5634
  } | {
5622
5635
  country: string;
@@ -5660,8 +5673,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5660
5673
  street?: string | null | undefined;
5661
5674
  zipCode?: string | null | undefined;
5662
5675
  } | {
5663
- firstname?: string | null | undefined;
5664
- surname?: string | null | undefined;
5676
+ firstname: string;
5677
+ surname: string;
5665
5678
  middlename?: string | null | undefined;
5666
5679
  } | {
5667
5680
  country: string;
@@ -5819,16 +5832,16 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5819
5832
  addressLine3?: string | null | undefined;
5820
5833
  postcodeOrZip?: string | null | undefined;
5821
5834
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5822
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5823
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5835
+ firstname: z.ZodString;
5836
+ surname: z.ZodString;
5824
5837
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5825
5838
  }, "strip", z.ZodTypeAny, {
5826
- firstname?: string | null | undefined;
5827
- surname?: string | null | undefined;
5839
+ firstname: string;
5840
+ surname: string;
5828
5841
  middlename?: string | null | undefined;
5829
5842
  }, {
5830
- firstname?: string | null | undefined;
5831
- surname?: string | null | undefined;
5843
+ firstname: string;
5844
+ surname: string;
5832
5845
  middlename?: string | null | undefined;
5833
5846
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5834
5847
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -5954,16 +5967,16 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5954
5967
  addressLine3?: string | null | undefined;
5955
5968
  postcodeOrZip?: string | null | undefined;
5956
5969
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5957
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5958
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5970
+ firstname: z.ZodString;
5971
+ surname: z.ZodString;
5959
5972
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5960
5973
  }, "strip", z.ZodTypeAny, {
5961
- firstname?: string | null | undefined;
5962
- surname?: string | null | undefined;
5974
+ firstname: string;
5975
+ surname: string;
5963
5976
  middlename?: string | null | undefined;
5964
5977
  }, {
5965
- firstname?: string | null | undefined;
5966
- surname?: string | null | undefined;
5978
+ firstname: string;
5979
+ surname: string;
5967
5980
  middlename?: string | null | undefined;
5968
5981
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5969
5982
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -5971,8 +5984,22 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5971
5984
  }, {
5972
5985
  requestId: z.ZodString;
5973
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
+ }>;
5974
5997
  }>, "strip", z.ZodTypeAny, {
5975
5998
  type: "REJECT_CORRECTION";
5999
+ reason: {
6000
+ message: string;
6001
+ isDuplicate?: boolean | undefined;
6002
+ };
5976
6003
  transactionId: string;
5977
6004
  declaration: Record<string, string | number | boolean | {
5978
6005
  type: string;
@@ -5990,8 +6017,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
5990
6017
  street?: string | null | undefined;
5991
6018
  zipCode?: string | null | undefined;
5992
6019
  } | {
5993
- firstname?: string | null | undefined;
5994
- surname?: string | null | undefined;
6020
+ firstname: string;
6021
+ surname: string;
5995
6022
  middlename?: string | null | undefined;
5996
6023
  } | {
5997
6024
  country: string;
@@ -6037,8 +6064,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
6037
6064
  street?: string | null | undefined;
6038
6065
  zipCode?: string | null | undefined;
6039
6066
  } | {
6040
- firstname?: string | null | undefined;
6041
- surname?: string | null | undefined;
6067
+ firstname: string;
6068
+ surname: string;
6042
6069
  middlename?: string | null | undefined;
6043
6070
  } | {
6044
6071
  country: string;
@@ -6069,6 +6096,10 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
6069
6096
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
6070
6097
  keepAssignment?: boolean | undefined;
6071
6098
  }, {
6099
+ reason: {
6100
+ message: string;
6101
+ isDuplicate?: boolean | undefined;
6102
+ };
6072
6103
  transactionId: string;
6073
6104
  requestId: string;
6074
6105
  eventId: string;
@@ -6089,8 +6120,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
6089
6120
  street?: string | null | undefined;
6090
6121
  zipCode?: string | null | undefined;
6091
6122
  } | {
6092
- firstname?: string | null | undefined;
6093
- surname?: string | null | undefined;
6123
+ firstname: string;
6124
+ surname: string;
6094
6125
  middlename?: string | null | undefined;
6095
6126
  } | {
6096
6127
  country: string;
@@ -6134,8 +6165,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
6134
6165
  street?: string | null | undefined;
6135
6166
  zipCode?: string | null | undefined;
6136
6167
  } | {
6137
- firstname?: string | null | undefined;
6138
- surname?: string | null | undefined;
6168
+ firstname: string;
6169
+ surname: string;
6139
6170
  middlename?: string | null | undefined;
6140
6171
  } | {
6141
6172
  country: string;
@@ -6293,16 +6324,16 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6293
6324
  addressLine3?: string | null | undefined;
6294
6325
  postcodeOrZip?: string | null | undefined;
6295
6326
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6296
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6297
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6327
+ firstname: z.ZodString;
6328
+ surname: z.ZodString;
6298
6329
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6299
6330
  }, "strip", z.ZodTypeAny, {
6300
- firstname?: string | null | undefined;
6301
- surname?: string | null | undefined;
6331
+ firstname: string;
6332
+ surname: string;
6302
6333
  middlename?: string | null | undefined;
6303
6334
  }, {
6304
- firstname?: string | null | undefined;
6305
- surname?: string | null | undefined;
6335
+ firstname: string;
6336
+ surname: string;
6306
6337
  middlename?: string | null | undefined;
6307
6338
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6308
6339
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -6428,16 +6459,16 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6428
6459
  addressLine3?: string | null | undefined;
6429
6460
  postcodeOrZip?: string | null | undefined;
6430
6461
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6431
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6432
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6462
+ firstname: z.ZodString;
6463
+ surname: z.ZodString;
6433
6464
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6434
6465
  }, "strip", z.ZodTypeAny, {
6435
- firstname?: string | null | undefined;
6436
- surname?: string | null | undefined;
6466
+ firstname: string;
6467
+ surname: string;
6437
6468
  middlename?: string | null | undefined;
6438
6469
  }, {
6439
- firstname?: string | null | undefined;
6440
- surname?: string | null | undefined;
6470
+ firstname: string;
6471
+ surname: string;
6441
6472
  middlename?: string | null | undefined;
6442
6473
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6443
6474
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -6464,8 +6495,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6464
6495
  street?: string | null | undefined;
6465
6496
  zipCode?: string | null | undefined;
6466
6497
  } | {
6467
- firstname?: string | null | undefined;
6468
- surname?: string | null | undefined;
6498
+ firstname: string;
6499
+ surname: string;
6469
6500
  middlename?: string | null | undefined;
6470
6501
  } | {
6471
6502
  country: string;
@@ -6511,8 +6542,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6511
6542
  street?: string | null | undefined;
6512
6543
  zipCode?: string | null | undefined;
6513
6544
  } | {
6514
- firstname?: string | null | undefined;
6515
- surname?: string | null | undefined;
6545
+ firstname: string;
6546
+ surname: string;
6516
6547
  middlename?: string | null | undefined;
6517
6548
  } | {
6518
6549
  country: string;
@@ -6563,8 +6594,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6563
6594
  street?: string | null | undefined;
6564
6595
  zipCode?: string | null | undefined;
6565
6596
  } | {
6566
- firstname?: string | null | undefined;
6567
- surname?: string | null | undefined;
6597
+ firstname: string;
6598
+ surname: string;
6568
6599
  middlename?: string | null | undefined;
6569
6600
  } | {
6570
6601
  country: string;
@@ -6608,8 +6639,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6608
6639
  street?: string | null | undefined;
6609
6640
  zipCode?: string | null | undefined;
6610
6641
  } | {
6611
- firstname?: string | null | undefined;
6612
- surname?: string | null | undefined;
6642
+ firstname: string;
6643
+ surname: string;
6613
6644
  middlename?: string | null | undefined;
6614
6645
  } | {
6615
6646
  country: string;
@@ -6767,16 +6798,16 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
6767
6798
  addressLine3?: string | null | undefined;
6768
6799
  postcodeOrZip?: string | null | undefined;
6769
6800
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6770
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6771
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6801
+ firstname: z.ZodString;
6802
+ surname: z.ZodString;
6772
6803
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6773
6804
  }, "strip", z.ZodTypeAny, {
6774
- firstname?: string | null | undefined;
6775
- surname?: string | null | undefined;
6805
+ firstname: string;
6806
+ surname: string;
6776
6807
  middlename?: string | null | undefined;
6777
6808
  }, {
6778
- firstname?: string | null | undefined;
6779
- surname?: string | null | undefined;
6809
+ firstname: string;
6810
+ surname: string;
6780
6811
  middlename?: string | null | undefined;
6781
6812
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6782
6813
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -6902,16 +6933,16 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
6902
6933
  addressLine3?: string | null | undefined;
6903
6934
  postcodeOrZip?: string | null | undefined;
6904
6935
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6905
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6906
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6936
+ firstname: z.ZodString;
6937
+ surname: z.ZodString;
6907
6938
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6908
6939
  }, "strip", z.ZodTypeAny, {
6909
- firstname?: string | null | undefined;
6910
- surname?: string | null | undefined;
6940
+ firstname: string;
6941
+ surname: string;
6911
6942
  middlename?: string | null | undefined;
6912
6943
  }, {
6913
- firstname?: string | null | undefined;
6914
- surname?: string | null | undefined;
6944
+ firstname: string;
6945
+ surname: string;
6915
6946
  middlename?: string | null | undefined;
6916
6947
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6917
6948
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -6937,8 +6968,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
6937
6968
  street?: string | null | undefined;
6938
6969
  zipCode?: string | null | undefined;
6939
6970
  } | {
6940
- firstname?: string | null | undefined;
6941
- surname?: string | null | undefined;
6971
+ firstname: string;
6972
+ surname: string;
6942
6973
  middlename?: string | null | undefined;
6943
6974
  } | {
6944
6975
  country: string;
@@ -6983,8 +7014,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
6983
7014
  street?: string | null | undefined;
6984
7015
  zipCode?: string | null | undefined;
6985
7016
  } | {
6986
- firstname?: string | null | undefined;
6987
- surname?: string | null | undefined;
7017
+ firstname: string;
7018
+ surname: string;
6988
7019
  middlename?: string | null | undefined;
6989
7020
  } | {
6990
7021
  country: string;
@@ -7034,8 +7065,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
7034
7065
  street?: string | null | undefined;
7035
7066
  zipCode?: string | null | undefined;
7036
7067
  } | {
7037
- firstname?: string | null | undefined;
7038
- surname?: string | null | undefined;
7068
+ firstname: string;
7069
+ surname: string;
7039
7070
  middlename?: string | null | undefined;
7040
7071
  } | {
7041
7072
  country: string;
@@ -7079,8 +7110,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
7079
7110
  street?: string | null | undefined;
7080
7111
  zipCode?: string | null | undefined;
7081
7112
  } | {
7082
- firstname?: string | null | undefined;
7083
- surname?: string | null | undefined;
7113
+ firstname: string;
7114
+ surname: string;
7084
7115
  middlename?: string | null | undefined;
7085
7116
  } | {
7086
7117
  country: string;
@@ -7254,16 +7285,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7254
7285
  addressLine3?: string | null | undefined;
7255
7286
  postcodeOrZip?: string | null | undefined;
7256
7287
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7257
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7258
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7288
+ firstname: z.ZodString;
7289
+ surname: z.ZodString;
7259
7290
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7260
7291
  }, "strip", z.ZodTypeAny, {
7261
- firstname?: string | null | undefined;
7262
- surname?: string | null | undefined;
7292
+ firstname: string;
7293
+ surname: string;
7263
7294
  middlename?: string | null | undefined;
7264
7295
  }, {
7265
- firstname?: string | null | undefined;
7266
- surname?: string | null | undefined;
7296
+ firstname: string;
7297
+ surname: string;
7267
7298
  middlename?: string | null | undefined;
7268
7299
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7269
7300
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -7389,16 +7420,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7389
7420
  addressLine3?: string | null | undefined;
7390
7421
  postcodeOrZip?: string | null | undefined;
7391
7422
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7392
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7393
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7423
+ firstname: z.ZodString;
7424
+ surname: z.ZodString;
7394
7425
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7395
7426
  }, "strip", z.ZodTypeAny, {
7396
- firstname?: string | null | undefined;
7397
- surname?: string | null | undefined;
7427
+ firstname: string;
7428
+ surname: string;
7398
7429
  middlename?: string | null | undefined;
7399
7430
  }, {
7400
- firstname?: string | null | undefined;
7401
- surname?: string | null | undefined;
7431
+ firstname: string;
7432
+ surname: string;
7402
7433
  middlename?: string | null | undefined;
7403
7434
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7404
7435
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -7425,8 +7456,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7425
7456
  street?: string | null | undefined;
7426
7457
  zipCode?: string | null | undefined;
7427
7458
  } | {
7428
- firstname?: string | null | undefined;
7429
- surname?: string | null | undefined;
7459
+ firstname: string;
7460
+ surname: string;
7430
7461
  middlename?: string | null | undefined;
7431
7462
  } | {
7432
7463
  country: string;
@@ -7472,8 +7503,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7472
7503
  street?: string | null | undefined;
7473
7504
  zipCode?: string | null | undefined;
7474
7505
  } | {
7475
- firstname?: string | null | undefined;
7476
- surname?: string | null | undefined;
7506
+ firstname: string;
7507
+ surname: string;
7477
7508
  middlename?: string | null | undefined;
7478
7509
  } | {
7479
7510
  country: string;
@@ -7524,8 +7555,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7524
7555
  street?: string | null | undefined;
7525
7556
  zipCode?: string | null | undefined;
7526
7557
  } | {
7527
- firstname?: string | null | undefined;
7528
- surname?: string | null | undefined;
7558
+ firstname: string;
7559
+ surname: string;
7529
7560
  middlename?: string | null | undefined;
7530
7561
  } | {
7531
7562
  country: string;
@@ -7569,8 +7600,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7569
7600
  street?: string | null | undefined;
7570
7601
  zipCode?: string | null | undefined;
7571
7602
  } | {
7572
- firstname?: string | null | undefined;
7573
- surname?: string | null | undefined;
7603
+ firstname: string;
7604
+ surname: string;
7574
7605
  middlename?: string | null | undefined;
7575
7606
  } | {
7576
7607
  country: string;
@@ -7726,16 +7757,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7726
7757
  addressLine3?: string | null | undefined;
7727
7758
  postcodeOrZip?: string | null | undefined;
7728
7759
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7729
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7730
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7760
+ firstname: z.ZodString;
7761
+ surname: z.ZodString;
7731
7762
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7732
7763
  }, "strip", z.ZodTypeAny, {
7733
- firstname?: string | null | undefined;
7734
- surname?: string | null | undefined;
7764
+ firstname: string;
7765
+ surname: string;
7735
7766
  middlename?: string | null | undefined;
7736
7767
  }, {
7737
- firstname?: string | null | undefined;
7738
- surname?: string | null | undefined;
7768
+ firstname: string;
7769
+ surname: string;
7739
7770
  middlename?: string | null | undefined;
7740
7771
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7741
7772
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -7861,16 +7892,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7861
7892
  addressLine3?: string | null | undefined;
7862
7893
  postcodeOrZip?: string | null | undefined;
7863
7894
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7864
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7865
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7895
+ firstname: z.ZodString;
7896
+ surname: z.ZodString;
7866
7897
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7867
7898
  }, "strip", z.ZodTypeAny, {
7868
- firstname?: string | null | undefined;
7869
- surname?: string | null | undefined;
7899
+ firstname: string;
7900
+ surname: string;
7870
7901
  middlename?: string | null | undefined;
7871
7902
  }, {
7872
- firstname?: string | null | undefined;
7873
- surname?: string | null | undefined;
7903
+ firstname: string;
7904
+ surname: string;
7874
7905
  middlename?: string | null | undefined;
7875
7906
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7876
7907
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -7897,8 +7928,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7897
7928
  street?: string | null | undefined;
7898
7929
  zipCode?: string | null | undefined;
7899
7930
  } | {
7900
- firstname?: string | null | undefined;
7901
- surname?: string | null | undefined;
7931
+ firstname: string;
7932
+ surname: string;
7902
7933
  middlename?: string | null | undefined;
7903
7934
  } | {
7904
7935
  country: string;
@@ -7944,8 +7975,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7944
7975
  street?: string | null | undefined;
7945
7976
  zipCode?: string | null | undefined;
7946
7977
  } | {
7947
- firstname?: string | null | undefined;
7948
- surname?: string | null | undefined;
7978
+ firstname: string;
7979
+ surname: string;
7949
7980
  middlename?: string | null | undefined;
7950
7981
  } | {
7951
7982
  country: string;
@@ -7996,8 +8027,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7996
8027
  street?: string | null | undefined;
7997
8028
  zipCode?: string | null | undefined;
7998
8029
  } | {
7999
- firstname?: string | null | undefined;
8000
- surname?: string | null | undefined;
8030
+ firstname: string;
8031
+ surname: string;
8001
8032
  middlename?: string | null | undefined;
8002
8033
  } | {
8003
8034
  country: string;
@@ -8041,8 +8072,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8041
8072
  street?: string | null | undefined;
8042
8073
  zipCode?: string | null | undefined;
8043
8074
  } | {
8044
- firstname?: string | null | undefined;
8045
- surname?: string | null | undefined;
8075
+ firstname: string;
8076
+ surname: string;
8046
8077
  middlename?: string | null | undefined;
8047
8078
  } | {
8048
8079
  country: string;
@@ -8198,16 +8229,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8198
8229
  addressLine3?: string | null | undefined;
8199
8230
  postcodeOrZip?: string | null | undefined;
8200
8231
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8201
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8202
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8232
+ firstname: z.ZodString;
8233
+ surname: z.ZodString;
8203
8234
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8204
8235
  }, "strip", z.ZodTypeAny, {
8205
- firstname?: string | null | undefined;
8206
- surname?: string | null | undefined;
8236
+ firstname: string;
8237
+ surname: string;
8207
8238
  middlename?: string | null | undefined;
8208
8239
  }, {
8209
- firstname?: string | null | undefined;
8210
- surname?: string | null | undefined;
8240
+ firstname: string;
8241
+ surname: string;
8211
8242
  middlename?: string | null | undefined;
8212
8243
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8213
8244
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -8333,16 +8364,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8333
8364
  addressLine3?: string | null | undefined;
8334
8365
  postcodeOrZip?: string | null | undefined;
8335
8366
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8336
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8337
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8367
+ firstname: z.ZodString;
8368
+ surname: z.ZodString;
8338
8369
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8339
8370
  }, "strip", z.ZodTypeAny, {
8340
- firstname?: string | null | undefined;
8341
- surname?: string | null | undefined;
8371
+ firstname: string;
8372
+ surname: string;
8342
8373
  middlename?: string | null | undefined;
8343
8374
  }, {
8344
- firstname?: string | null | undefined;
8345
- surname?: string | null | undefined;
8375
+ firstname: string;
8376
+ surname: string;
8346
8377
  middlename?: string | null | undefined;
8347
8378
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8348
8379
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -8369,8 +8400,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8369
8400
  street?: string | null | undefined;
8370
8401
  zipCode?: string | null | undefined;
8371
8402
  } | {
8372
- firstname?: string | null | undefined;
8373
- surname?: string | null | undefined;
8403
+ firstname: string;
8404
+ surname: string;
8374
8405
  middlename?: string | null | undefined;
8375
8406
  } | {
8376
8407
  country: string;
@@ -8415,8 +8446,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8415
8446
  street?: string | null | undefined;
8416
8447
  zipCode?: string | null | undefined;
8417
8448
  } | {
8418
- firstname?: string | null | undefined;
8419
- surname?: string | null | undefined;
8449
+ firstname: string;
8450
+ surname: string;
8420
8451
  middlename?: string | null | undefined;
8421
8452
  } | {
8422
8453
  country: string;
@@ -8467,8 +8498,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8467
8498
  street?: string | null | undefined;
8468
8499
  zipCode?: string | null | undefined;
8469
8500
  } | {
8470
- firstname?: string | null | undefined;
8471
- surname?: string | null | undefined;
8501
+ firstname: string;
8502
+ surname: string;
8472
8503
  middlename?: string | null | undefined;
8473
8504
  } | {
8474
8505
  country: string;
@@ -8512,8 +8543,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8512
8543
  street?: string | null | undefined;
8513
8544
  zipCode?: string | null | undefined;
8514
8545
  } | {
8515
- firstname?: string | null | undefined;
8516
- surname?: string | null | undefined;
8546
+ firstname: string;
8547
+ surname: string;
8517
8548
  middlename?: string | null | undefined;
8518
8549
  } | {
8519
8550
  country: string;
@@ -8670,16 +8701,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8670
8701
  addressLine3?: string | null | undefined;
8671
8702
  postcodeOrZip?: string | null | undefined;
8672
8703
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8673
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8674
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8704
+ firstname: z.ZodString;
8705
+ surname: z.ZodString;
8675
8706
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8676
8707
  }, "strip", z.ZodTypeAny, {
8677
- firstname?: string | null | undefined;
8678
- surname?: string | null | undefined;
8708
+ firstname: string;
8709
+ surname: string;
8679
8710
  middlename?: string | null | undefined;
8680
8711
  }, {
8681
- firstname?: string | null | undefined;
8682
- surname?: string | null | undefined;
8712
+ firstname: string;
8713
+ surname: string;
8683
8714
  middlename?: string | null | undefined;
8684
8715
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8685
8716
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -8805,16 +8836,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8805
8836
  addressLine3?: string | null | undefined;
8806
8837
  postcodeOrZip?: string | null | undefined;
8807
8838
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8808
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8809
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8839
+ firstname: z.ZodString;
8840
+ surname: z.ZodString;
8810
8841
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8811
8842
  }, "strip", z.ZodTypeAny, {
8812
- firstname?: string | null | undefined;
8813
- surname?: string | null | undefined;
8843
+ firstname: string;
8844
+ surname: string;
8814
8845
  middlename?: string | null | undefined;
8815
8846
  }, {
8816
- firstname?: string | null | undefined;
8817
- surname?: string | null | undefined;
8847
+ firstname: string;
8848
+ surname: string;
8818
8849
  middlename?: string | null | undefined;
8819
8850
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8820
8851
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -8840,8 +8871,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8840
8871
  street?: string | null | undefined;
8841
8872
  zipCode?: string | null | undefined;
8842
8873
  } | {
8843
- firstname?: string | null | undefined;
8844
- surname?: string | null | undefined;
8874
+ firstname: string;
8875
+ surname: string;
8845
8876
  middlename?: string | null | undefined;
8846
8877
  } | {
8847
8878
  country: string;
@@ -8886,8 +8917,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8886
8917
  street?: string | null | undefined;
8887
8918
  zipCode?: string | null | undefined;
8888
8919
  } | {
8889
- firstname?: string | null | undefined;
8890
- surname?: string | null | undefined;
8920
+ firstname: string;
8921
+ surname: string;
8891
8922
  middlename?: string | null | undefined;
8892
8923
  } | {
8893
8924
  country: string;
@@ -8937,8 +8968,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8937
8968
  street?: string | null | undefined;
8938
8969
  zipCode?: string | null | undefined;
8939
8970
  } | {
8940
- firstname?: string | null | undefined;
8941
- surname?: string | null | undefined;
8971
+ firstname: string;
8972
+ surname: string;
8942
8973
  middlename?: string | null | undefined;
8943
8974
  } | {
8944
8975
  country: string;
@@ -8982,8 +9013,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8982
9013
  street?: string | null | undefined;
8983
9014
  zipCode?: string | null | undefined;
8984
9015
  } | {
8985
- firstname?: string | null | undefined;
8986
- surname?: string | null | undefined;
9016
+ firstname: string;
9017
+ surname: string;
8987
9018
  middlename?: string | null | undefined;
8988
9019
  } | {
8989
9020
  country: string;
@@ -9139,16 +9170,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9139
9170
  addressLine3?: string | null | undefined;
9140
9171
  postcodeOrZip?: string | null | undefined;
9141
9172
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9142
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9143
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9173
+ firstname: z.ZodString;
9174
+ surname: z.ZodString;
9144
9175
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9145
9176
  }, "strip", z.ZodTypeAny, {
9146
- firstname?: string | null | undefined;
9147
- surname?: string | null | undefined;
9177
+ firstname: string;
9178
+ surname: string;
9148
9179
  middlename?: string | null | undefined;
9149
9180
  }, {
9150
- firstname?: string | null | undefined;
9151
- surname?: string | null | undefined;
9181
+ firstname: string;
9182
+ surname: string;
9152
9183
  middlename?: string | null | undefined;
9153
9184
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9154
9185
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -9274,16 +9305,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9274
9305
  addressLine3?: string | null | undefined;
9275
9306
  postcodeOrZip?: string | null | undefined;
9276
9307
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9277
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9278
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9308
+ firstname: z.ZodString;
9309
+ surname: z.ZodString;
9279
9310
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9280
9311
  }, "strip", z.ZodTypeAny, {
9281
- firstname?: string | null | undefined;
9282
- surname?: string | null | undefined;
9312
+ firstname: string;
9313
+ surname: string;
9283
9314
  middlename?: string | null | undefined;
9284
9315
  }, {
9285
- firstname?: string | null | undefined;
9286
- surname?: string | null | undefined;
9316
+ firstname: string;
9317
+ surname: string;
9287
9318
  middlename?: string | null | undefined;
9288
9319
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9289
9320
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -9309,8 +9340,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9309
9340
  street?: string | null | undefined;
9310
9341
  zipCode?: string | null | undefined;
9311
9342
  } | {
9312
- firstname?: string | null | undefined;
9313
- surname?: string | null | undefined;
9343
+ firstname: string;
9344
+ surname: string;
9314
9345
  middlename?: string | null | undefined;
9315
9346
  } | {
9316
9347
  country: string;
@@ -9355,8 +9386,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9355
9386
  street?: string | null | undefined;
9356
9387
  zipCode?: string | null | undefined;
9357
9388
  } | {
9358
- firstname?: string | null | undefined;
9359
- surname?: string | null | undefined;
9389
+ firstname: string;
9390
+ surname: string;
9360
9391
  middlename?: string | null | undefined;
9361
9392
  } | {
9362
9393
  country: string;
@@ -9406,8 +9437,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9406
9437
  street?: string | null | undefined;
9407
9438
  zipCode?: string | null | undefined;
9408
9439
  } | {
9409
- firstname?: string | null | undefined;
9410
- surname?: string | null | undefined;
9440
+ firstname: string;
9441
+ surname: string;
9411
9442
  middlename?: string | null | undefined;
9412
9443
  } | {
9413
9444
  country: string;
@@ -9451,8 +9482,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9451
9482
  street?: string | null | undefined;
9452
9483
  zipCode?: string | null | undefined;
9453
9484
  } | {
9454
- firstname?: string | null | undefined;
9455
- surname?: string | null | undefined;
9485
+ firstname: string;
9486
+ surname: string;
9456
9487
  middlename?: string | null | undefined;
9457
9488
  } | {
9458
9489
  country: string;
@@ -9608,16 +9639,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9608
9639
  addressLine3?: string | null | undefined;
9609
9640
  postcodeOrZip?: string | null | undefined;
9610
9641
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9611
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9612
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9642
+ firstname: z.ZodString;
9643
+ surname: z.ZodString;
9613
9644
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9614
9645
  }, "strip", z.ZodTypeAny, {
9615
- firstname?: string | null | undefined;
9616
- surname?: string | null | undefined;
9646
+ firstname: string;
9647
+ surname: string;
9617
9648
  middlename?: string | null | undefined;
9618
9649
  }, {
9619
- firstname?: string | null | undefined;
9620
- surname?: string | null | undefined;
9650
+ firstname: string;
9651
+ surname: string;
9621
9652
  middlename?: string | null | undefined;
9622
9653
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9623
9654
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -9743,16 +9774,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9743
9774
  addressLine3?: string | null | undefined;
9744
9775
  postcodeOrZip?: string | null | undefined;
9745
9776
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9746
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9747
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9777
+ firstname: z.ZodString;
9778
+ surname: z.ZodString;
9748
9779
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9749
9780
  }, "strip", z.ZodTypeAny, {
9750
- firstname?: string | null | undefined;
9751
- surname?: string | null | undefined;
9781
+ firstname: string;
9782
+ surname: string;
9752
9783
  middlename?: string | null | undefined;
9753
9784
  }, {
9754
- firstname?: string | null | undefined;
9755
- surname?: string | null | undefined;
9785
+ firstname: string;
9786
+ surname: string;
9756
9787
  middlename?: string | null | undefined;
9757
9788
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9758
9789
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -9792,8 +9823,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9792
9823
  street?: string | null | undefined;
9793
9824
  zipCode?: string | null | undefined;
9794
9825
  } | {
9795
- firstname?: string | null | undefined;
9796
- surname?: string | null | undefined;
9826
+ firstname: string;
9827
+ surname: string;
9797
9828
  middlename?: string | null | undefined;
9798
9829
  } | {
9799
9830
  country: string;
@@ -9838,8 +9869,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9838
9869
  street?: string | null | undefined;
9839
9870
  zipCode?: string | null | undefined;
9840
9871
  } | {
9841
- firstname?: string | null | undefined;
9842
- surname?: string | null | undefined;
9872
+ firstname: string;
9873
+ surname: string;
9843
9874
  middlename?: string | null | undefined;
9844
9875
  } | {
9845
9876
  country: string;
@@ -9893,8 +9924,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9893
9924
  street?: string | null | undefined;
9894
9925
  zipCode?: string | null | undefined;
9895
9926
  } | {
9896
- firstname?: string | null | undefined;
9897
- surname?: string | null | undefined;
9927
+ firstname: string;
9928
+ surname: string;
9898
9929
  middlename?: string | null | undefined;
9899
9930
  } | {
9900
9931
  country: string;
@@ -9938,8 +9969,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9938
9969
  street?: string | null | undefined;
9939
9970
  zipCode?: string | null | undefined;
9940
9971
  } | {
9941
- firstname?: string | null | undefined;
9942
- surname?: string | null | undefined;
9972
+ firstname: string;
9973
+ surname: string;
9943
9974
  middlename?: string | null | undefined;
9944
9975
  } | {
9945
9976
  country: string;
@@ -10095,16 +10126,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10095
10126
  addressLine3?: string | null | undefined;
10096
10127
  postcodeOrZip?: string | null | undefined;
10097
10128
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10098
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10099
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10129
+ firstname: z.ZodString;
10130
+ surname: z.ZodString;
10100
10131
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10101
10132
  }, "strip", z.ZodTypeAny, {
10102
- firstname?: string | null | undefined;
10103
- surname?: string | null | undefined;
10133
+ firstname: string;
10134
+ surname: string;
10104
10135
  middlename?: string | null | undefined;
10105
10136
  }, {
10106
- firstname?: string | null | undefined;
10107
- surname?: string | null | undefined;
10137
+ firstname: string;
10138
+ surname: string;
10108
10139
  middlename?: string | null | undefined;
10109
10140
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10110
10141
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -10230,16 +10261,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10230
10261
  addressLine3?: string | null | undefined;
10231
10262
  postcodeOrZip?: string | null | undefined;
10232
10263
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10233
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10234
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10264
+ firstname: z.ZodString;
10265
+ surname: z.ZodString;
10235
10266
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10236
10267
  }, "strip", z.ZodTypeAny, {
10237
- firstname?: string | null | undefined;
10238
- surname?: string | null | undefined;
10268
+ firstname: string;
10269
+ surname: string;
10239
10270
  middlename?: string | null | undefined;
10240
10271
  }, {
10241
- firstname?: string | null | undefined;
10242
- surname?: string | null | undefined;
10272
+ firstname: string;
10273
+ surname: string;
10243
10274
  middlename?: string | null | undefined;
10244
10275
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10245
10276
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -10265,8 +10296,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10265
10296
  street?: string | null | undefined;
10266
10297
  zipCode?: string | null | undefined;
10267
10298
  } | {
10268
- firstname?: string | null | undefined;
10269
- surname?: string | null | undefined;
10299
+ firstname: string;
10300
+ surname: string;
10270
10301
  middlename?: string | null | undefined;
10271
10302
  } | {
10272
10303
  country: string;
@@ -10311,8 +10342,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10311
10342
  street?: string | null | undefined;
10312
10343
  zipCode?: string | null | undefined;
10313
10344
  } | {
10314
- firstname?: string | null | undefined;
10315
- surname?: string | null | undefined;
10345
+ firstname: string;
10346
+ surname: string;
10316
10347
  middlename?: string | null | undefined;
10317
10348
  } | {
10318
10349
  country: string;
@@ -10362,8 +10393,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10362
10393
  street?: string | null | undefined;
10363
10394
  zipCode?: string | null | undefined;
10364
10395
  } | {
10365
- firstname?: string | null | undefined;
10366
- surname?: string | null | undefined;
10396
+ firstname: string;
10397
+ surname: string;
10367
10398
  middlename?: string | null | undefined;
10368
10399
  } | {
10369
10400
  country: string;
@@ -10407,8 +10438,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10407
10438
  street?: string | null | undefined;
10408
10439
  zipCode?: string | null | undefined;
10409
10440
  } | {
10410
- firstname?: string | null | undefined;
10411
- surname?: string | null | undefined;
10441
+ firstname: string;
10442
+ surname: string;
10412
10443
  middlename?: string | null | undefined;
10413
10444
  } | {
10414
10445
  country: string;
@@ -10564,16 +10595,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10564
10595
  addressLine3?: string | null | undefined;
10565
10596
  postcodeOrZip?: string | null | undefined;
10566
10597
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10567
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10568
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10598
+ firstname: z.ZodString;
10599
+ surname: z.ZodString;
10569
10600
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10570
10601
  }, "strip", z.ZodTypeAny, {
10571
- firstname?: string | null | undefined;
10572
- surname?: string | null | undefined;
10602
+ firstname: string;
10603
+ surname: string;
10573
10604
  middlename?: string | null | undefined;
10574
10605
  }, {
10575
- firstname?: string | null | undefined;
10576
- surname?: string | null | undefined;
10606
+ firstname: string;
10607
+ surname: string;
10577
10608
  middlename?: string | null | undefined;
10578
10609
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10579
10610
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -10699,16 +10730,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10699
10730
  addressLine3?: string | null | undefined;
10700
10731
  postcodeOrZip?: string | null | undefined;
10701
10732
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10702
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10703
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10733
+ firstname: z.ZodString;
10734
+ surname: z.ZodString;
10704
10735
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10705
10736
  }, "strip", z.ZodTypeAny, {
10706
- firstname?: string | null | undefined;
10707
- surname?: string | null | undefined;
10737
+ firstname: string;
10738
+ surname: string;
10708
10739
  middlename?: string | null | undefined;
10709
10740
  }, {
10710
- firstname?: string | null | undefined;
10711
- surname?: string | null | undefined;
10741
+ firstname: string;
10742
+ surname: string;
10712
10743
  middlename?: string | null | undefined;
10713
10744
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10714
10745
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -10748,8 +10779,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10748
10779
  street?: string | null | undefined;
10749
10780
  zipCode?: string | null | undefined;
10750
10781
  } | {
10751
- firstname?: string | null | undefined;
10752
- surname?: string | null | undefined;
10782
+ firstname: string;
10783
+ surname: string;
10753
10784
  middlename?: string | null | undefined;
10754
10785
  } | {
10755
10786
  country: string;
@@ -10794,8 +10825,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10794
10825
  street?: string | null | undefined;
10795
10826
  zipCode?: string | null | undefined;
10796
10827
  } | {
10797
- firstname?: string | null | undefined;
10798
- surname?: string | null | undefined;
10828
+ firstname: string;
10829
+ surname: string;
10799
10830
  middlename?: string | null | undefined;
10800
10831
  } | {
10801
10832
  country: string;
@@ -10849,8 +10880,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10849
10880
  street?: string | null | undefined;
10850
10881
  zipCode?: string | null | undefined;
10851
10882
  } | {
10852
- firstname?: string | null | undefined;
10853
- surname?: string | null | undefined;
10883
+ firstname: string;
10884
+ surname: string;
10854
10885
  middlename?: string | null | undefined;
10855
10886
  } | {
10856
10887
  country: string;
@@ -10894,8 +10925,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10894
10925
  street?: string | null | undefined;
10895
10926
  zipCode?: string | null | undefined;
10896
10927
  } | {
10897
- firstname?: string | null | undefined;
10898
- surname?: string | null | undefined;
10928
+ firstname: string;
10929
+ surname: string;
10899
10930
  middlename?: string | null | undefined;
10900
10931
  } | {
10901
10932
  country: string;
@@ -11051,16 +11082,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11051
11082
  addressLine3?: string | null | undefined;
11052
11083
  postcodeOrZip?: string | null | undefined;
11053
11084
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11054
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11055
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11085
+ firstname: z.ZodString;
11086
+ surname: z.ZodString;
11056
11087
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11057
11088
  }, "strip", z.ZodTypeAny, {
11058
- firstname?: string | null | undefined;
11059
- surname?: string | null | undefined;
11089
+ firstname: string;
11090
+ surname: string;
11060
11091
  middlename?: string | null | undefined;
11061
11092
  }, {
11062
- firstname?: string | null | undefined;
11063
- surname?: string | null | undefined;
11093
+ firstname: string;
11094
+ surname: string;
11064
11095
  middlename?: string | null | undefined;
11065
11096
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11066
11097
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -11186,16 +11217,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11186
11217
  addressLine3?: string | null | undefined;
11187
11218
  postcodeOrZip?: string | null | undefined;
11188
11219
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11189
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11190
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11220
+ firstname: z.ZodString;
11221
+ surname: z.ZodString;
11191
11222
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11192
11223
  }, "strip", z.ZodTypeAny, {
11193
- firstname?: string | null | undefined;
11194
- surname?: string | null | undefined;
11224
+ firstname: string;
11225
+ surname: string;
11195
11226
  middlename?: string | null | undefined;
11196
11227
  }, {
11197
- firstname?: string | null | undefined;
11198
- surname?: string | null | undefined;
11228
+ firstname: string;
11229
+ surname: string;
11199
11230
  middlename?: string | null | undefined;
11200
11231
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11201
11232
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -11222,8 +11253,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11222
11253
  street?: string | null | undefined;
11223
11254
  zipCode?: string | null | undefined;
11224
11255
  } | {
11225
- firstname?: string | null | undefined;
11226
- surname?: string | null | undefined;
11256
+ firstname: string;
11257
+ surname: string;
11227
11258
  middlename?: string | null | undefined;
11228
11259
  } | {
11229
11260
  country: string;
@@ -11269,8 +11300,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11269
11300
  street?: string | null | undefined;
11270
11301
  zipCode?: string | null | undefined;
11271
11302
  } | {
11272
- firstname?: string | null | undefined;
11273
- surname?: string | null | undefined;
11303
+ firstname: string;
11304
+ surname: string;
11274
11305
  middlename?: string | null | undefined;
11275
11306
  } | {
11276
11307
  country: string;
@@ -11321,8 +11352,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11321
11352
  street?: string | null | undefined;
11322
11353
  zipCode?: string | null | undefined;
11323
11354
  } | {
11324
- firstname?: string | null | undefined;
11325
- surname?: string | null | undefined;
11355
+ firstname: string;
11356
+ surname: string;
11326
11357
  middlename?: string | null | undefined;
11327
11358
  } | {
11328
11359
  country: string;
@@ -11366,8 +11397,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11366
11397
  street?: string | null | undefined;
11367
11398
  zipCode?: string | null | undefined;
11368
11399
  } | {
11369
- firstname?: string | null | undefined;
11370
- surname?: string | null | undefined;
11400
+ firstname: string;
11401
+ surname: string;
11371
11402
  middlename?: string | null | undefined;
11372
11403
  } | {
11373
11404
  country: string;
@@ -11523,16 +11554,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11523
11554
  addressLine3?: string | null | undefined;
11524
11555
  postcodeOrZip?: string | null | undefined;
11525
11556
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11526
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11527
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11557
+ firstname: z.ZodString;
11558
+ surname: z.ZodString;
11528
11559
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11529
11560
  }, "strip", z.ZodTypeAny, {
11530
- firstname?: string | null | undefined;
11531
- surname?: string | null | undefined;
11561
+ firstname: string;
11562
+ surname: string;
11532
11563
  middlename?: string | null | undefined;
11533
11564
  }, {
11534
- firstname?: string | null | undefined;
11535
- surname?: string | null | undefined;
11565
+ firstname: string;
11566
+ surname: string;
11536
11567
  middlename?: string | null | undefined;
11537
11568
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11538
11569
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -11658,16 +11689,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11658
11689
  addressLine3?: string | null | undefined;
11659
11690
  postcodeOrZip?: string | null | undefined;
11660
11691
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11661
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11662
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11692
+ firstname: z.ZodString;
11693
+ surname: z.ZodString;
11663
11694
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11664
11695
  }, "strip", z.ZodTypeAny, {
11665
- firstname?: string | null | undefined;
11666
- surname?: string | null | undefined;
11696
+ firstname: string;
11697
+ surname: string;
11667
11698
  middlename?: string | null | undefined;
11668
11699
  }, {
11669
- firstname?: string | null | undefined;
11670
- surname?: string | null | undefined;
11700
+ firstname: string;
11701
+ surname: string;
11671
11702
  middlename?: string | null | undefined;
11672
11703
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11673
11704
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -11694,8 +11725,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11694
11725
  street?: string | null | undefined;
11695
11726
  zipCode?: string | null | undefined;
11696
11727
  } | {
11697
- firstname?: string | null | undefined;
11698
- surname?: string | null | undefined;
11728
+ firstname: string;
11729
+ surname: string;
11699
11730
  middlename?: string | null | undefined;
11700
11731
  } | {
11701
11732
  country: string;
@@ -11741,8 +11772,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11741
11772
  street?: string | null | undefined;
11742
11773
  zipCode?: string | null | undefined;
11743
11774
  } | {
11744
- firstname?: string | null | undefined;
11745
- surname?: string | null | undefined;
11775
+ firstname: string;
11776
+ surname: string;
11746
11777
  middlename?: string | null | undefined;
11747
11778
  } | {
11748
11779
  country: string;
@@ -11792,8 +11823,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11792
11823
  street?: string | null | undefined;
11793
11824
  zipCode?: string | null | undefined;
11794
11825
  } | {
11795
- firstname?: string | null | undefined;
11796
- surname?: string | null | undefined;
11826
+ firstname: string;
11827
+ surname: string;
11797
11828
  middlename?: string | null | undefined;
11798
11829
  } | {
11799
11830
  country: string;
@@ -11837,8 +11868,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11837
11868
  street?: string | null | undefined;
11838
11869
  zipCode?: string | null | undefined;
11839
11870
  } | {
11840
- firstname?: string | null | undefined;
11841
- surname?: string | null | undefined;
11871
+ firstname: string;
11872
+ surname: string;
11842
11873
  middlename?: string | null | undefined;
11843
11874
  } | {
11844
11875
  country: string;
@@ -11995,16 +12026,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11995
12026
  addressLine3?: string | null | undefined;
11996
12027
  postcodeOrZip?: string | null | undefined;
11997
12028
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11998
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11999
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12029
+ firstname: z.ZodString;
12030
+ surname: z.ZodString;
12000
12031
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12001
12032
  }, "strip", z.ZodTypeAny, {
12002
- firstname?: string | null | undefined;
12003
- surname?: string | null | undefined;
12033
+ firstname: string;
12034
+ surname: string;
12004
12035
  middlename?: string | null | undefined;
12005
12036
  }, {
12006
- firstname?: string | null | undefined;
12007
- surname?: string | null | undefined;
12037
+ firstname: string;
12038
+ surname: string;
12008
12039
  middlename?: string | null | undefined;
12009
12040
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12010
12041
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -12130,22 +12161,29 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12130
12161
  addressLine3?: string | null | undefined;
12131
12162
  postcodeOrZip?: string | null | undefined;
12132
12163
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12133
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12134
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12164
+ firstname: z.ZodString;
12165
+ surname: z.ZodString;
12135
12166
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12136
12167
  }, "strip", z.ZodTypeAny, {
12137
- firstname?: string | null | undefined;
12138
- surname?: string | null | undefined;
12168
+ firstname: string;
12169
+ surname: string;
12139
12170
  middlename?: string | null | undefined;
12140
12171
  }, {
12141
- firstname?: string | null | undefined;
12142
- surname?: string | null | undefined;
12172
+ firstname: string;
12173
+ surname: string;
12143
12174
  middlename?: string | null | undefined;
12144
12175
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12145
12176
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
12146
12177
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
12147
12178
  }, {
12148
12179
  type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
12180
+ content: z.ZodOptional<z.ZodObject<{
12181
+ templateId: z.ZodOptional<z.ZodString>;
12182
+ }, "strip", z.ZodTypeAny, {
12183
+ templateId?: string | undefined;
12184
+ }, {
12185
+ templateId?: string | undefined;
12186
+ }>>;
12149
12187
  }>, "strip", z.ZodTypeAny, {
12150
12188
  type: "PRINT_CERTIFICATE";
12151
12189
  transactionId: string;
@@ -12165,8 +12203,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12165
12203
  street?: string | null | undefined;
12166
12204
  zipCode?: string | null | undefined;
12167
12205
  } | {
12168
- firstname?: string | null | undefined;
12169
- surname?: string | null | undefined;
12206
+ firstname: string;
12207
+ surname: string;
12170
12208
  middlename?: string | null | undefined;
12171
12209
  } | {
12172
12210
  country: string;
@@ -12195,6 +12233,9 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12195
12233
  end: string;
12196
12234
  } | null | undefined>;
12197
12235
  eventId: string & z.BRAND<"UUID">;
12236
+ content?: {
12237
+ templateId?: string | undefined;
12238
+ } | undefined;
12198
12239
  annotation?: Record<string, string | number | boolean | {
12199
12240
  type: string;
12200
12241
  path: string;
@@ -12211,8 +12252,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12211
12252
  street?: string | null | undefined;
12212
12253
  zipCode?: string | null | undefined;
12213
12254
  } | {
12214
- firstname?: string | null | undefined;
12215
- surname?: string | null | undefined;
12255
+ firstname: string;
12256
+ surname: string;
12216
12257
  middlename?: string | null | undefined;
12217
12258
  } | {
12218
12259
  country: string;
@@ -12246,6 +12287,9 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12246
12287
  transactionId: string;
12247
12288
  eventId: string;
12248
12289
  type?: "PRINT_CERTIFICATE" | undefined;
12290
+ content?: {
12291
+ templateId?: string | undefined;
12292
+ } | undefined;
12249
12293
  declaration?: Record<string, string | number | boolean | {
12250
12294
  type: string;
12251
12295
  path: string;
@@ -12262,8 +12306,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12262
12306
  street?: string | null | undefined;
12263
12307
  zipCode?: string | null | undefined;
12264
12308
  } | {
12265
- firstname?: string | null | undefined;
12266
- surname?: string | null | undefined;
12309
+ firstname: string;
12310
+ surname: string;
12267
12311
  middlename?: string | null | undefined;
12268
12312
  } | {
12269
12313
  country: string;
@@ -12307,8 +12351,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12307
12351
  street?: string | null | undefined;
12308
12352
  zipCode?: string | null | undefined;
12309
12353
  } | {
12310
- firstname?: string | null | undefined;
12311
- surname?: string | null | undefined;
12354
+ firstname: string;
12355
+ surname: string;
12312
12356
  middlename?: string | null | undefined;
12313
12357
  } | {
12314
12358
  country: string;
@@ -12464,16 +12508,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12464
12508
  addressLine3?: string | null | undefined;
12465
12509
  postcodeOrZip?: string | null | undefined;
12466
12510
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12467
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12468
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12511
+ firstname: z.ZodString;
12512
+ surname: z.ZodString;
12469
12513
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12470
12514
  }, "strip", z.ZodTypeAny, {
12471
- firstname?: string | null | undefined;
12472
- surname?: string | null | undefined;
12515
+ firstname: string;
12516
+ surname: string;
12473
12517
  middlename?: string | null | undefined;
12474
12518
  }, {
12475
- firstname?: string | null | undefined;
12476
- surname?: string | null | undefined;
12519
+ firstname: string;
12520
+ surname: string;
12477
12521
  middlename?: string | null | undefined;
12478
12522
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12479
12523
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -12599,16 +12643,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12599
12643
  addressLine3?: string | null | undefined;
12600
12644
  postcodeOrZip?: string | null | undefined;
12601
12645
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12602
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12603
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12646
+ firstname: z.ZodString;
12647
+ surname: z.ZodString;
12604
12648
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12605
12649
  }, "strip", z.ZodTypeAny, {
12606
- firstname?: string | null | undefined;
12607
- surname?: string | null | undefined;
12650
+ firstname: string;
12651
+ surname: string;
12608
12652
  middlename?: string | null | undefined;
12609
12653
  }, {
12610
- firstname?: string | null | undefined;
12611
- surname?: string | null | undefined;
12654
+ firstname: string;
12655
+ surname: string;
12612
12656
  middlename?: string | null | undefined;
12613
12657
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12614
12658
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -12634,8 +12678,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12634
12678
  street?: string | null | undefined;
12635
12679
  zipCode?: string | null | undefined;
12636
12680
  } | {
12637
- firstname?: string | null | undefined;
12638
- surname?: string | null | undefined;
12681
+ firstname: string;
12682
+ surname: string;
12639
12683
  middlename?: string | null | undefined;
12640
12684
  } | {
12641
12685
  country: string;
@@ -12680,8 +12724,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12680
12724
  street?: string | null | undefined;
12681
12725
  zipCode?: string | null | undefined;
12682
12726
  } | {
12683
- firstname?: string | null | undefined;
12684
- surname?: string | null | undefined;
12727
+ firstname: string;
12728
+ surname: string;
12685
12729
  middlename?: string | null | undefined;
12686
12730
  } | {
12687
12731
  country: string;
@@ -12731,8 +12775,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12731
12775
  street?: string | null | undefined;
12732
12776
  zipCode?: string | null | undefined;
12733
12777
  } | {
12734
- firstname?: string | null | undefined;
12735
- surname?: string | null | undefined;
12778
+ firstname: string;
12779
+ surname: string;
12736
12780
  middlename?: string | null | undefined;
12737
12781
  } | {
12738
12782
  country: string;
@@ -12776,8 +12820,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12776
12820
  street?: string | null | undefined;
12777
12821
  zipCode?: string | null | undefined;
12778
12822
  } | {
12779
- firstname?: string | null | undefined;
12780
- surname?: string | null | undefined;
12823
+ firstname: string;
12824
+ surname: string;
12781
12825
  middlename?: string | null | undefined;
12782
12826
  } | {
12783
12827
  country: string;
@@ -12933,16 +12977,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12933
12977
  addressLine3?: string | null | undefined;
12934
12978
  postcodeOrZip?: string | null | undefined;
12935
12979
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12936
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12937
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12980
+ firstname: z.ZodString;
12981
+ surname: z.ZodString;
12938
12982
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12939
12983
  }, "strip", z.ZodTypeAny, {
12940
- firstname?: string | null | undefined;
12941
- surname?: string | null | undefined;
12984
+ firstname: string;
12985
+ surname: string;
12942
12986
  middlename?: string | null | undefined;
12943
12987
  }, {
12944
- firstname?: string | null | undefined;
12945
- surname?: string | null | undefined;
12988
+ firstname: string;
12989
+ surname: string;
12946
12990
  middlename?: string | null | undefined;
12947
12991
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12948
12992
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -13068,16 +13112,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13068
13112
  addressLine3?: string | null | undefined;
13069
13113
  postcodeOrZip?: string | null | undefined;
13070
13114
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13071
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13072
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13115
+ firstname: z.ZodString;
13116
+ surname: z.ZodString;
13073
13117
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13074
13118
  }, "strip", z.ZodTypeAny, {
13075
- firstname?: string | null | undefined;
13076
- surname?: string | null | undefined;
13119
+ firstname: string;
13120
+ surname: string;
13077
13121
  middlename?: string | null | undefined;
13078
13122
  }, {
13079
- firstname?: string | null | undefined;
13080
- surname?: string | null | undefined;
13123
+ firstname: string;
13124
+ surname: string;
13081
13125
  middlename?: string | null | undefined;
13082
13126
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
13083
13127
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -13085,8 +13129,22 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13085
13129
  }, {
13086
13130
  requestId: z.ZodString;
13087
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
+ }>;
13088
13142
  }>, "strip", z.ZodTypeAny, {
13089
13143
  type: "REJECT_CORRECTION";
13144
+ reason: {
13145
+ message: string;
13146
+ isDuplicate?: boolean | undefined;
13147
+ };
13090
13148
  transactionId: string;
13091
13149
  declaration: Record<string, string | number | boolean | {
13092
13150
  type: string;
@@ -13104,8 +13162,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13104
13162
  street?: string | null | undefined;
13105
13163
  zipCode?: string | null | undefined;
13106
13164
  } | {
13107
- firstname?: string | null | undefined;
13108
- surname?: string | null | undefined;
13165
+ firstname: string;
13166
+ surname: string;
13109
13167
  middlename?: string | null | undefined;
13110
13168
  } | {
13111
13169
  country: string;
@@ -13151,8 +13209,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13151
13209
  street?: string | null | undefined;
13152
13210
  zipCode?: string | null | undefined;
13153
13211
  } | {
13154
- firstname?: string | null | undefined;
13155
- surname?: string | null | undefined;
13212
+ firstname: string;
13213
+ surname: string;
13156
13214
  middlename?: string | null | undefined;
13157
13215
  } | {
13158
13216
  country: string;
@@ -13183,6 +13241,10 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13183
13241
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
13184
13242
  keepAssignment?: boolean | undefined;
13185
13243
  }, {
13244
+ reason: {
13245
+ message: string;
13246
+ isDuplicate?: boolean | undefined;
13247
+ };
13186
13248
  transactionId: string;
13187
13249
  requestId: string;
13188
13250
  eventId: string;
@@ -13203,8 +13265,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13203
13265
  street?: string | null | undefined;
13204
13266
  zipCode?: string | null | undefined;
13205
13267
  } | {
13206
- firstname?: string | null | undefined;
13207
- surname?: string | null | undefined;
13268
+ firstname: string;
13269
+ surname: string;
13208
13270
  middlename?: string | null | undefined;
13209
13271
  } | {
13210
13272
  country: string;
@@ -13248,8 +13310,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13248
13310
  street?: string | null | undefined;
13249
13311
  zipCode?: string | null | undefined;
13250
13312
  } | {
13251
- firstname?: string | null | undefined;
13252
- surname?: string | null | undefined;
13313
+ firstname: string;
13314
+ surname: string;
13253
13315
  middlename?: string | null | undefined;
13254
13316
  } | {
13255
13317
  country: string;
@@ -13405,16 +13467,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13405
13467
  addressLine3?: string | null | undefined;
13406
13468
  postcodeOrZip?: string | null | undefined;
13407
13469
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13408
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13409
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13470
+ firstname: z.ZodString;
13471
+ surname: z.ZodString;
13410
13472
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13411
13473
  }, "strip", z.ZodTypeAny, {
13412
- firstname?: string | null | undefined;
13413
- surname?: string | null | undefined;
13474
+ firstname: string;
13475
+ surname: string;
13414
13476
  middlename?: string | null | undefined;
13415
13477
  }, {
13416
- firstname?: string | null | undefined;
13417
- surname?: string | null | undefined;
13478
+ firstname: string;
13479
+ surname: string;
13418
13480
  middlename?: string | null | undefined;
13419
13481
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
13420
13482
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -13540,16 +13602,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13540
13602
  addressLine3?: string | null | undefined;
13541
13603
  postcodeOrZip?: string | null | undefined;
13542
13604
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13543
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13544
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13605
+ firstname: z.ZodString;
13606
+ surname: z.ZodString;
13545
13607
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13546
13608
  }, "strip", z.ZodTypeAny, {
13547
- firstname?: string | null | undefined;
13548
- surname?: string | null | undefined;
13609
+ firstname: string;
13610
+ surname: string;
13549
13611
  middlename?: string | null | undefined;
13550
13612
  }, {
13551
- firstname?: string | null | undefined;
13552
- surname?: string | null | undefined;
13613
+ firstname: string;
13614
+ surname: string;
13553
13615
  middlename?: string | null | undefined;
13554
13616
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
13555
13617
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -13576,8 +13638,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13576
13638
  street?: string | null | undefined;
13577
13639
  zipCode?: string | null | undefined;
13578
13640
  } | {
13579
- firstname?: string | null | undefined;
13580
- surname?: string | null | undefined;
13641
+ firstname: string;
13642
+ surname: string;
13581
13643
  middlename?: string | null | undefined;
13582
13644
  } | {
13583
13645
  country: string;
@@ -13623,8 +13685,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13623
13685
  street?: string | null | undefined;
13624
13686
  zipCode?: string | null | undefined;
13625
13687
  } | {
13626
- firstname?: string | null | undefined;
13627
- surname?: string | null | undefined;
13688
+ firstname: string;
13689
+ surname: string;
13628
13690
  middlename?: string | null | undefined;
13629
13691
  } | {
13630
13692
  country: string;
@@ -13675,8 +13737,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13675
13737
  street?: string | null | undefined;
13676
13738
  zipCode?: string | null | undefined;
13677
13739
  } | {
13678
- firstname?: string | null | undefined;
13679
- surname?: string | null | undefined;
13740
+ firstname: string;
13741
+ surname: string;
13680
13742
  middlename?: string | null | undefined;
13681
13743
  } | {
13682
13744
  country: string;
@@ -13720,8 +13782,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13720
13782
  street?: string | null | undefined;
13721
13783
  zipCode?: string | null | undefined;
13722
13784
  } | {
13723
- firstname?: string | null | undefined;
13724
- surname?: string | null | undefined;
13785
+ firstname: string;
13786
+ surname: string;
13725
13787
  middlename?: string | null | undefined;
13726
13788
  } | {
13727
13789
  country: string;
@@ -13877,16 +13939,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13877
13939
  addressLine3?: string | null | undefined;
13878
13940
  postcodeOrZip?: string | null | undefined;
13879
13941
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13880
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13881
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13942
+ firstname: z.ZodString;
13943
+ surname: z.ZodString;
13882
13944
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13883
13945
  }, "strip", z.ZodTypeAny, {
13884
- firstname?: string | null | undefined;
13885
- surname?: string | null | undefined;
13946
+ firstname: string;
13947
+ surname: string;
13886
13948
  middlename?: string | null | undefined;
13887
13949
  }, {
13888
- firstname?: string | null | undefined;
13889
- surname?: string | null | undefined;
13950
+ firstname: string;
13951
+ surname: string;
13890
13952
  middlename?: string | null | undefined;
13891
13953
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
13892
13954
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -14012,16 +14074,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14012
14074
  addressLine3?: string | null | undefined;
14013
14075
  postcodeOrZip?: string | null | undefined;
14014
14076
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
14015
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14016
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14077
+ firstname: z.ZodString;
14078
+ surname: z.ZodString;
14017
14079
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14018
14080
  }, "strip", z.ZodTypeAny, {
14019
- firstname?: string | null | undefined;
14020
- surname?: string | null | undefined;
14081
+ firstname: string;
14082
+ surname: string;
14021
14083
  middlename?: string | null | undefined;
14022
14084
  }, {
14023
- firstname?: string | null | undefined;
14024
- surname?: string | null | undefined;
14085
+ firstname: string;
14086
+ surname: string;
14025
14087
  middlename?: string | null | undefined;
14026
14088
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
14027
14089
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
@@ -14047,8 +14109,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14047
14109
  street?: string | null | undefined;
14048
14110
  zipCode?: string | null | undefined;
14049
14111
  } | {
14050
- firstname?: string | null | undefined;
14051
- surname?: string | null | undefined;
14112
+ firstname: string;
14113
+ surname: string;
14052
14114
  middlename?: string | null | undefined;
14053
14115
  } | {
14054
14116
  country: string;
@@ -14093,8 +14155,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14093
14155
  street?: string | null | undefined;
14094
14156
  zipCode?: string | null | undefined;
14095
14157
  } | {
14096
- firstname?: string | null | undefined;
14097
- surname?: string | null | undefined;
14158
+ firstname: string;
14159
+ surname: string;
14098
14160
  middlename?: string | null | undefined;
14099
14161
  } | {
14100
14162
  country: string;
@@ -14144,8 +14206,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14144
14206
  street?: string | null | undefined;
14145
14207
  zipCode?: string | null | undefined;
14146
14208
  } | {
14147
- firstname?: string | null | undefined;
14148
- surname?: string | null | undefined;
14209
+ firstname: string;
14210
+ surname: string;
14149
14211
  middlename?: string | null | undefined;
14150
14212
  } | {
14151
14213
  country: string;
@@ -14189,8 +14251,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14189
14251
  street?: string | null | undefined;
14190
14252
  zipCode?: string | null | undefined;
14191
14253
  } | {
14192
- firstname?: string | null | undefined;
14193
- surname?: string | null | undefined;
14254
+ firstname: string;
14255
+ surname: string;
14194
14256
  middlename?: string | null | undefined;
14195
14257
  } | {
14196
14258
  country: string;