@opencrvs/toolkit 1.8.1-rc.5c415ba → 1.8.1-rc.60d51af

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/dist/commons/api/router.d.ts +409 -800
  2. package/dist/commons/conditionals/validate.d.ts +8 -0
  3. package/dist/commons/events/ActionConfig.d.ts +2004 -366
  4. package/dist/commons/events/ActionDocument.d.ts +1264 -1387
  5. package/dist/commons/events/ActionInput.d.ts +622 -1136
  6. package/dist/commons/events/AdvancedSearchConfig.d.ts +83 -65
  7. package/dist/commons/events/CompositeFieldValue.d.ts +6 -6
  8. package/dist/commons/events/CountryConfigQueryInput.d.ts +88 -88
  9. package/dist/commons/events/Draft.d.ts +48 -92
  10. package/dist/commons/events/EventConfig.d.ts +695 -168
  11. package/dist/commons/events/EventDocument.d.ts +449 -846
  12. package/dist/commons/events/EventIndex.d.ts +184 -68
  13. package/dist/commons/events/EventMetadata.d.ts +9 -15
  14. package/dist/commons/events/FieldConfig.d.ts +254 -43
  15. package/dist/commons/events/FieldTypeMapping.d.ts +16 -16
  16. package/dist/commons/events/FieldValue.d.ts +12 -12
  17. package/dist/commons/events/FormConfig.d.ts +1032 -246
  18. package/dist/commons/events/PageConfig.d.ts +264 -46
  19. package/dist/commons/events/WorkqueueConfig.d.ts +288 -164
  20. package/dist/commons/events/defineConfig.d.ts +129 -30
  21. package/dist/commons/events/event.d.ts +14 -6
  22. package/dist/commons/events/field.d.ts +14 -0
  23. package/dist/commons/events/test.utils.d.ts +12 -12
  24. package/dist/commons/events/utils.d.ts +236 -64
  25. package/dist/conditionals/index.js +3 -2
  26. package/dist/events/index.js +153 -82
  27. package/package.json +1 -1
  28. package/tsconfig.json +1 -1
  29. package/dist/commons/conditionals/conditionals.test.d.ts +0 -2
  30. package/dist/commons/conditionals/validate-address.test.d.ts +0 -2
  31. package/dist/commons/conditionals/validate.test.d.ts +0 -2
  32. package/dist/commons/events/utils.test.d.ts +0 -2
@@ -125,16 +125,16 @@ export declare const BaseActionInput: z.ZodObject<{
125
125
  addressLine3?: string | null | undefined;
126
126
  postcodeOrZip?: string | null | undefined;
127
127
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
128
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
129
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
128
+ firstname: z.ZodString;
129
+ surname: z.ZodString;
130
130
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
131
131
  }, "strip", z.ZodTypeAny, {
132
- firstname?: string | null | undefined;
133
- surname?: string | null | undefined;
132
+ firstname: string;
133
+ surname: string;
134
134
  middlename?: string | null | undefined;
135
135
  }, {
136
- firstname?: string | null | undefined;
137
- surname?: string | null | undefined;
136
+ firstname: string;
137
+ surname: string;
138
138
  middlename?: string | null | undefined;
139
139
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
140
140
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -260,28 +260,18 @@ 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
- actionDetails: z.ZodOptional<z.ZodObject<{
276
- templateId: z.ZodOptional<z.ZodString>;
277
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
278
- }, "strip", z.ZodTypeAny, {
279
- templateId?: string | undefined;
280
- isImmediateCorrection?: boolean | undefined;
281
- }, {
282
- templateId?: string | undefined;
283
- isImmediateCorrection?: boolean | undefined;
284
- }>>;
285
275
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
286
276
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
287
277
  }, "strip", z.ZodTypeAny, {
@@ -302,8 +292,8 @@ export declare const BaseActionInput: z.ZodObject<{
302
292
  street?: string | null | undefined;
303
293
  zipCode?: string | null | undefined;
304
294
  } | {
305
- firstname?: string | null | undefined;
306
- surname?: string | null | undefined;
295
+ firstname: string;
296
+ surname: string;
307
297
  middlename?: string | null | undefined;
308
298
  } | {
309
299
  country: string;
@@ -348,8 +338,8 @@ export declare const BaseActionInput: z.ZodObject<{
348
338
  street?: string | null | undefined;
349
339
  zipCode?: string | null | undefined;
350
340
  } | {
351
- firstname?: string | null | undefined;
352
- surname?: string | null | undefined;
341
+ firstname: string;
342
+ surname: string;
353
343
  middlename?: string | null | undefined;
354
344
  } | {
355
345
  country: string;
@@ -377,10 +367,6 @@ export declare const BaseActionInput: z.ZodObject<{
377
367
  start: string;
378
368
  end: string;
379
369
  } | null | undefined> | undefined;
380
- actionDetails?: {
381
- templateId?: string | undefined;
382
- isImmediateCorrection?: boolean | undefined;
383
- } | undefined;
384
370
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
385
371
  keepAssignment?: boolean | undefined;
386
372
  }, {
@@ -402,8 +388,8 @@ export declare const BaseActionInput: z.ZodObject<{
402
388
  street?: string | null | undefined;
403
389
  zipCode?: string | null | undefined;
404
390
  } | {
405
- firstname?: string | null | undefined;
406
- surname?: string | null | undefined;
391
+ firstname: string;
392
+ surname: string;
407
393
  middlename?: string | null | undefined;
408
394
  } | {
409
395
  country: string;
@@ -447,8 +433,8 @@ export declare const BaseActionInput: z.ZodObject<{
447
433
  street?: string | null | undefined;
448
434
  zipCode?: string | null | undefined;
449
435
  } | {
450
- firstname?: string | null | undefined;
451
- surname?: string | null | undefined;
436
+ firstname: string;
437
+ surname: string;
452
438
  middlename?: string | null | undefined;
453
439
  } | {
454
440
  country: string;
@@ -476,10 +462,6 @@ export declare const BaseActionInput: z.ZodObject<{
476
462
  start: string;
477
463
  end: string;
478
464
  } | null | undefined> | undefined;
479
- actionDetails?: {
480
- templateId?: string | undefined;
481
- isImmediateCorrection?: boolean | undefined;
482
- } | undefined;
483
465
  originalActionId?: string | undefined;
484
466
  keepAssignment?: boolean | undefined;
485
467
  }>;
@@ -609,16 +591,16 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
609
591
  addressLine3?: string | null | undefined;
610
592
  postcodeOrZip?: string | null | undefined;
611
593
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
612
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
613
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
594
+ firstname: z.ZodString;
595
+ surname: z.ZodString;
614
596
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
615
597
  }, "strip", z.ZodTypeAny, {
616
- firstname?: string | null | undefined;
617
- surname?: string | null | undefined;
598
+ firstname: string;
599
+ surname: string;
618
600
  middlename?: string | null | undefined;
619
601
  }, {
620
- firstname?: string | null | undefined;
621
- surname?: string | null | undefined;
602
+ firstname: string;
603
+ surname: string;
622
604
  middlename?: string | null | undefined;
623
605
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
624
606
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -744,28 +726,18 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
744
726
  addressLine3?: string | null | undefined;
745
727
  postcodeOrZip?: string | null | undefined;
746
728
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
747
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
748
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
729
+ firstname: z.ZodString;
730
+ surname: z.ZodString;
749
731
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
750
732
  }, "strip", z.ZodTypeAny, {
751
- firstname?: string | null | undefined;
752
- surname?: string | null | undefined;
733
+ firstname: string;
734
+ surname: string;
753
735
  middlename?: string | null | undefined;
754
736
  }, {
755
- firstname?: string | null | undefined;
756
- surname?: string | null | undefined;
737
+ firstname: string;
738
+ surname: string;
757
739
  middlename?: string | null | undefined;
758
740
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
759
- actionDetails: z.ZodOptional<z.ZodObject<{
760
- templateId: z.ZodOptional<z.ZodString>;
761
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
762
- }, "strip", z.ZodTypeAny, {
763
- templateId?: string | undefined;
764
- isImmediateCorrection?: boolean | undefined;
765
- }, {
766
- templateId?: string | undefined;
767
- isImmediateCorrection?: boolean | undefined;
768
- }>>;
769
741
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
770
742
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
771
743
  }, {
@@ -790,8 +762,8 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
790
762
  street?: string | null | undefined;
791
763
  zipCode?: string | null | undefined;
792
764
  } | {
793
- firstname?: string | null | undefined;
794
- surname?: string | null | undefined;
765
+ firstname: string;
766
+ surname: string;
795
767
  middlename?: string | null | undefined;
796
768
  } | {
797
769
  country: string;
@@ -836,8 +808,8 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
836
808
  street?: string | null | undefined;
837
809
  zipCode?: string | null | undefined;
838
810
  } | {
839
- firstname?: string | null | undefined;
840
- surname?: string | null | undefined;
811
+ firstname: string;
812
+ surname: string;
841
813
  middlename?: string | null | undefined;
842
814
  } | {
843
815
  country: string;
@@ -865,10 +837,6 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
865
837
  start: string;
866
838
  end: string;
867
839
  } | null | undefined> | undefined;
868
- actionDetails?: {
869
- templateId?: string | undefined;
870
- isImmediateCorrection?: boolean | undefined;
871
- } | undefined;
872
840
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
873
841
  registrationNumber?: string | undefined;
874
842
  keepAssignment?: boolean | undefined;
@@ -892,8 +860,8 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
892
860
  street?: string | null | undefined;
893
861
  zipCode?: string | null | undefined;
894
862
  } | {
895
- firstname?: string | null | undefined;
896
- surname?: string | null | undefined;
863
+ firstname: string;
864
+ surname: string;
897
865
  middlename?: string | null | undefined;
898
866
  } | {
899
867
  country: string;
@@ -937,8 +905,8 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
937
905
  street?: string | null | undefined;
938
906
  zipCode?: string | null | undefined;
939
907
  } | {
940
- firstname?: string | null | undefined;
941
- surname?: string | null | undefined;
908
+ firstname: string;
909
+ surname: string;
942
910
  middlename?: string | null | undefined;
943
911
  } | {
944
912
  country: string;
@@ -966,10 +934,6 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
966
934
  start: string;
967
935
  end: string;
968
936
  } | null | undefined> | undefined;
969
- actionDetails?: {
970
- templateId?: string | undefined;
971
- isImmediateCorrection?: boolean | undefined;
972
- } | undefined;
973
937
  originalActionId?: string | undefined;
974
938
  registrationNumber?: string | undefined;
975
939
  keepAssignment?: boolean | undefined;
@@ -1101,16 +1065,16 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1101
1065
  addressLine3?: string | null | undefined;
1102
1066
  postcodeOrZip?: string | null | undefined;
1103
1067
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1104
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1105
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1068
+ firstname: z.ZodString;
1069
+ surname: z.ZodString;
1106
1070
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1107
1071
  }, "strip", z.ZodTypeAny, {
1108
- firstname?: string | null | undefined;
1109
- surname?: string | null | undefined;
1072
+ firstname: string;
1073
+ surname: string;
1110
1074
  middlename?: string | null | undefined;
1111
1075
  }, {
1112
- firstname?: string | null | undefined;
1113
- surname?: string | null | undefined;
1076
+ firstname: string;
1077
+ surname: string;
1114
1078
  middlename?: string | null | undefined;
1115
1079
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
1116
1080
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -1236,28 +1200,18 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1236
1200
  addressLine3?: string | null | undefined;
1237
1201
  postcodeOrZip?: string | null | undefined;
1238
1202
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1239
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1240
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1203
+ firstname: z.ZodString;
1204
+ surname: z.ZodString;
1241
1205
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1242
1206
  }, "strip", z.ZodTypeAny, {
1243
- firstname?: string | null | undefined;
1244
- surname?: string | null | undefined;
1207
+ firstname: string;
1208
+ surname: string;
1245
1209
  middlename?: string | null | undefined;
1246
1210
  }, {
1247
- firstname?: string | null | undefined;
1248
- surname?: string | null | undefined;
1211
+ firstname: string;
1212
+ surname: string;
1249
1213
  middlename?: string | null | undefined;
1250
1214
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
1251
- actionDetails: z.ZodOptional<z.ZodObject<{
1252
- templateId: z.ZodOptional<z.ZodString>;
1253
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
1254
- }, "strip", z.ZodTypeAny, {
1255
- templateId?: string | undefined;
1256
- isImmediateCorrection?: boolean | undefined;
1257
- }, {
1258
- templateId?: string | undefined;
1259
- isImmediateCorrection?: boolean | undefined;
1260
- }>>;
1261
1215
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
1262
1216
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
1263
1217
  }, {
@@ -1282,8 +1236,8 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1282
1236
  street?: string | null | undefined;
1283
1237
  zipCode?: string | null | undefined;
1284
1238
  } | {
1285
- firstname?: string | null | undefined;
1286
- surname?: string | null | undefined;
1239
+ firstname: string;
1240
+ surname: string;
1287
1241
  middlename?: string | null | undefined;
1288
1242
  } | {
1289
1243
  country: string;
@@ -1329,8 +1283,8 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1329
1283
  street?: string | null | undefined;
1330
1284
  zipCode?: string | null | undefined;
1331
1285
  } | {
1332
- firstname?: string | null | undefined;
1333
- surname?: string | null | undefined;
1286
+ firstname: string;
1287
+ surname: string;
1334
1288
  middlename?: string | null | undefined;
1335
1289
  } | {
1336
1290
  country: string;
@@ -1358,10 +1312,6 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1358
1312
  start: string;
1359
1313
  end: string;
1360
1314
  } | null | undefined> | undefined;
1361
- actionDetails?: {
1362
- templateId?: string | undefined;
1363
- isImmediateCorrection?: boolean | undefined;
1364
- } | undefined;
1365
1315
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
1366
1316
  keepAssignment?: boolean | undefined;
1367
1317
  }, {
@@ -1385,8 +1335,8 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1385
1335
  street?: string | null | undefined;
1386
1336
  zipCode?: string | null | undefined;
1387
1337
  } | {
1388
- firstname?: string | null | undefined;
1389
- surname?: string | null | undefined;
1338
+ firstname: string;
1339
+ surname: string;
1390
1340
  middlename?: string | null | undefined;
1391
1341
  } | {
1392
1342
  country: string;
@@ -1430,8 +1380,8 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1430
1380
  street?: string | null | undefined;
1431
1381
  zipCode?: string | null | undefined;
1432
1382
  } | {
1433
- firstname?: string | null | undefined;
1434
- surname?: string | null | undefined;
1383
+ firstname: string;
1384
+ surname: string;
1435
1385
  middlename?: string | null | undefined;
1436
1386
  } | {
1437
1387
  country: string;
@@ -1459,10 +1409,6 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
1459
1409
  start: string;
1460
1410
  end: string;
1461
1411
  } | null | undefined> | undefined;
1462
- actionDetails?: {
1463
- templateId?: string | undefined;
1464
- isImmediateCorrection?: boolean | undefined;
1465
- } | undefined;
1466
1412
  originalActionId?: string | undefined;
1467
1413
  keepAssignment?: boolean | undefined;
1468
1414
  }>;
@@ -1593,16 +1539,16 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1593
1539
  addressLine3?: string | null | undefined;
1594
1540
  postcodeOrZip?: string | null | undefined;
1595
1541
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1596
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1597
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1542
+ firstname: z.ZodString;
1543
+ surname: z.ZodString;
1598
1544
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1599
1545
  }, "strip", z.ZodTypeAny, {
1600
- firstname?: string | null | undefined;
1601
- surname?: string | null | undefined;
1546
+ firstname: string;
1547
+ surname: string;
1602
1548
  middlename?: string | null | undefined;
1603
1549
  }, {
1604
- firstname?: string | null | undefined;
1605
- surname?: string | null | undefined;
1550
+ firstname: string;
1551
+ surname: string;
1606
1552
  middlename?: string | null | undefined;
1607
1553
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
1608
1554
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -1728,28 +1674,18 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1728
1674
  addressLine3?: string | null | undefined;
1729
1675
  postcodeOrZip?: string | null | undefined;
1730
1676
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1731
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1732
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1677
+ firstname: z.ZodString;
1678
+ surname: z.ZodString;
1733
1679
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1734
1680
  }, "strip", z.ZodTypeAny, {
1735
- firstname?: string | null | undefined;
1736
- surname?: string | null | undefined;
1681
+ firstname: string;
1682
+ surname: string;
1737
1683
  middlename?: string | null | undefined;
1738
1684
  }, {
1739
- firstname?: string | null | undefined;
1740
- surname?: string | null | undefined;
1685
+ firstname: string;
1686
+ surname: string;
1741
1687
  middlename?: string | null | undefined;
1742
1688
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
1743
- actionDetails: z.ZodOptional<z.ZodObject<{
1744
- templateId: z.ZodOptional<z.ZodString>;
1745
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
1746
- }, "strip", z.ZodTypeAny, {
1747
- templateId?: string | undefined;
1748
- isImmediateCorrection?: boolean | undefined;
1749
- }, {
1750
- templateId?: string | undefined;
1751
- isImmediateCorrection?: boolean | undefined;
1752
- }>>;
1753
1689
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
1754
1690
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
1755
1691
  }, {
@@ -1773,8 +1709,8 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1773
1709
  street?: string | null | undefined;
1774
1710
  zipCode?: string | null | undefined;
1775
1711
  } | {
1776
- firstname?: string | null | undefined;
1777
- surname?: string | null | undefined;
1712
+ firstname: string;
1713
+ surname: string;
1778
1714
  middlename?: string | null | undefined;
1779
1715
  } | {
1780
1716
  country: string;
@@ -1819,8 +1755,8 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1819
1755
  street?: string | null | undefined;
1820
1756
  zipCode?: string | null | undefined;
1821
1757
  } | {
1822
- firstname?: string | null | undefined;
1823
- surname?: string | null | undefined;
1758
+ firstname: string;
1759
+ surname: string;
1824
1760
  middlename?: string | null | undefined;
1825
1761
  } | {
1826
1762
  country: string;
@@ -1848,10 +1784,6 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1848
1784
  start: string;
1849
1785
  end: string;
1850
1786
  } | null | undefined> | undefined;
1851
- actionDetails?: {
1852
- templateId?: string | undefined;
1853
- isImmediateCorrection?: boolean | undefined;
1854
- } | undefined;
1855
1787
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
1856
1788
  keepAssignment?: boolean | undefined;
1857
1789
  }, {
@@ -1874,8 +1806,8 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1874
1806
  street?: string | null | undefined;
1875
1807
  zipCode?: string | null | undefined;
1876
1808
  } | {
1877
- firstname?: string | null | undefined;
1878
- surname?: string | null | undefined;
1809
+ firstname: string;
1810
+ surname: string;
1879
1811
  middlename?: string | null | undefined;
1880
1812
  } | {
1881
1813
  country: string;
@@ -1919,8 +1851,8 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1919
1851
  street?: string | null | undefined;
1920
1852
  zipCode?: string | null | undefined;
1921
1853
  } | {
1922
- firstname?: string | null | undefined;
1923
- surname?: string | null | undefined;
1854
+ firstname: string;
1855
+ surname: string;
1924
1856
  middlename?: string | null | undefined;
1925
1857
  } | {
1926
1858
  country: string;
@@ -1948,10 +1880,6 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
1948
1880
  start: string;
1949
1881
  end: string;
1950
1882
  } | null | undefined> | undefined;
1951
- actionDetails?: {
1952
- templateId?: string | undefined;
1953
- isImmediateCorrection?: boolean | undefined;
1954
- } | undefined;
1955
1883
  originalActionId?: string | undefined;
1956
1884
  keepAssignment?: boolean | undefined;
1957
1885
  }>;
@@ -2082,16 +2010,16 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2082
2010
  addressLine3?: string | null | undefined;
2083
2011
  postcodeOrZip?: string | null | undefined;
2084
2012
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2085
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2086
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2013
+ firstname: z.ZodString;
2014
+ surname: z.ZodString;
2087
2015
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2088
2016
  }, "strip", z.ZodTypeAny, {
2089
- firstname?: string | null | undefined;
2090
- surname?: string | null | undefined;
2017
+ firstname: string;
2018
+ surname: string;
2091
2019
  middlename?: string | null | undefined;
2092
2020
  }, {
2093
- firstname?: string | null | undefined;
2094
- surname?: string | null | undefined;
2021
+ firstname: string;
2022
+ surname: string;
2095
2023
  middlename?: string | null | undefined;
2096
2024
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2097
2025
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -2217,28 +2145,18 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2217
2145
  addressLine3?: string | null | undefined;
2218
2146
  postcodeOrZip?: string | null | undefined;
2219
2147
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2220
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2221
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2148
+ firstname: z.ZodString;
2149
+ surname: z.ZodString;
2222
2150
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2223
2151
  }, "strip", z.ZodTypeAny, {
2224
- firstname?: string | null | undefined;
2225
- surname?: string | null | undefined;
2152
+ firstname: string;
2153
+ surname: string;
2226
2154
  middlename?: string | null | undefined;
2227
2155
  }, {
2228
- firstname?: string | null | undefined;
2229
- surname?: string | null | undefined;
2156
+ firstname: string;
2157
+ surname: string;
2230
2158
  middlename?: string | null | undefined;
2231
2159
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2232
- actionDetails: z.ZodOptional<z.ZodObject<{
2233
- templateId: z.ZodOptional<z.ZodString>;
2234
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
2235
- }, "strip", z.ZodTypeAny, {
2236
- templateId?: string | undefined;
2237
- isImmediateCorrection?: boolean | undefined;
2238
- }, {
2239
- templateId?: string | undefined;
2240
- isImmediateCorrection?: boolean | undefined;
2241
- }>>;
2242
2160
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
2243
2161
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
2244
2162
  }, {
@@ -2262,8 +2180,8 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2262
2180
  street?: string | null | undefined;
2263
2181
  zipCode?: string | null | undefined;
2264
2182
  } | {
2265
- firstname?: string | null | undefined;
2266
- surname?: string | null | undefined;
2183
+ firstname: string;
2184
+ surname: string;
2267
2185
  middlename?: string | null | undefined;
2268
2186
  } | {
2269
2187
  country: string;
@@ -2308,8 +2226,8 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2308
2226
  street?: string | null | undefined;
2309
2227
  zipCode?: string | null | undefined;
2310
2228
  } | {
2311
- firstname?: string | null | undefined;
2312
- surname?: string | null | undefined;
2229
+ firstname: string;
2230
+ surname: string;
2313
2231
  middlename?: string | null | undefined;
2314
2232
  } | {
2315
2233
  country: string;
@@ -2337,10 +2255,6 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2337
2255
  start: string;
2338
2256
  end: string;
2339
2257
  } | null | undefined> | undefined;
2340
- actionDetails?: {
2341
- templateId?: string | undefined;
2342
- isImmediateCorrection?: boolean | undefined;
2343
- } | undefined;
2344
2258
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
2345
2259
  keepAssignment?: boolean | undefined;
2346
2260
  }, {
@@ -2363,8 +2277,8 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2363
2277
  street?: string | null | undefined;
2364
2278
  zipCode?: string | null | undefined;
2365
2279
  } | {
2366
- firstname?: string | null | undefined;
2367
- surname?: string | null | undefined;
2280
+ firstname: string;
2281
+ surname: string;
2368
2282
  middlename?: string | null | undefined;
2369
2283
  } | {
2370
2284
  country: string;
@@ -2408,8 +2322,8 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2408
2322
  street?: string | null | undefined;
2409
2323
  zipCode?: string | null | undefined;
2410
2324
  } | {
2411
- firstname?: string | null | undefined;
2412
- surname?: string | null | undefined;
2325
+ firstname: string;
2326
+ surname: string;
2413
2327
  middlename?: string | null | undefined;
2414
2328
  } | {
2415
2329
  country: string;
@@ -2437,10 +2351,6 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
2437
2351
  start: string;
2438
2352
  end: string;
2439
2353
  } | null | undefined> | undefined;
2440
- actionDetails?: {
2441
- templateId?: string | undefined;
2442
- isImmediateCorrection?: boolean | undefined;
2443
- } | undefined;
2444
2354
  originalActionId?: string | undefined;
2445
2355
  keepAssignment?: boolean | undefined;
2446
2356
  }>;
@@ -2570,16 +2480,16 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2570
2480
  addressLine3?: string | null | undefined;
2571
2481
  postcodeOrZip?: string | null | undefined;
2572
2482
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2573
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2574
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2483
+ firstname: z.ZodString;
2484
+ surname: z.ZodString;
2575
2485
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2576
2486
  }, "strip", z.ZodTypeAny, {
2577
- firstname?: string | null | undefined;
2578
- surname?: string | null | undefined;
2487
+ firstname: string;
2488
+ surname: string;
2579
2489
  middlename?: string | null | undefined;
2580
2490
  }, {
2581
- firstname?: string | null | undefined;
2582
- surname?: string | null | undefined;
2491
+ firstname: string;
2492
+ surname: string;
2583
2493
  middlename?: string | null | undefined;
2584
2494
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2585
2495
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -2705,32 +2615,29 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2705
2615
  addressLine3?: string | null | undefined;
2706
2616
  postcodeOrZip?: string | null | undefined;
2707
2617
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2708
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2709
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2618
+ firstname: z.ZodString;
2619
+ surname: z.ZodString;
2710
2620
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2711
2621
  }, "strip", z.ZodTypeAny, {
2712
- firstname?: string | null | undefined;
2713
- surname?: string | null | undefined;
2622
+ firstname: string;
2623
+ surname: string;
2714
2624
  middlename?: string | null | undefined;
2715
2625
  }, {
2716
- firstname?: string | null | undefined;
2717
- surname?: string | null | undefined;
2626
+ firstname: string;
2627
+ surname: string;
2718
2628
  middlename?: string | null | undefined;
2719
2629
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
2720
- actionDetails: z.ZodOptional<z.ZodObject<{
2630
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
2631
+ keepAssignment: z.ZodOptional<z.ZodBoolean>;
2632
+ }, {
2633
+ type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
2634
+ content: z.ZodOptional<z.ZodObject<{
2721
2635
  templateId: z.ZodOptional<z.ZodString>;
2722
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
2723
2636
  }, "strip", z.ZodTypeAny, {
2724
2637
  templateId?: string | undefined;
2725
- isImmediateCorrection?: boolean | undefined;
2726
2638
  }, {
2727
2639
  templateId?: string | undefined;
2728
- isImmediateCorrection?: boolean | undefined;
2729
2640
  }>>;
2730
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
2731
- keepAssignment: z.ZodOptional<z.ZodBoolean>;
2732
- }, {
2733
- type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
2734
2641
  }>, "strip", z.ZodTypeAny, {
2735
2642
  type: "PRINT_CERTIFICATE";
2736
2643
  transactionId: string;
@@ -2750,8 +2657,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2750
2657
  street?: string | null | undefined;
2751
2658
  zipCode?: string | null | undefined;
2752
2659
  } | {
2753
- firstname?: string | null | undefined;
2754
- surname?: string | null | undefined;
2660
+ firstname: string;
2661
+ surname: string;
2755
2662
  middlename?: string | null | undefined;
2756
2663
  } | {
2757
2664
  country: string;
@@ -2780,6 +2687,9 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2780
2687
  end: string;
2781
2688
  } | null | undefined>;
2782
2689
  eventId: string & z.BRAND<"UUID">;
2690
+ content?: {
2691
+ templateId?: string | undefined;
2692
+ } | undefined;
2783
2693
  annotation?: Record<string, string | number | boolean | {
2784
2694
  type: string;
2785
2695
  path: string;
@@ -2796,8 +2706,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2796
2706
  street?: string | null | undefined;
2797
2707
  zipCode?: string | null | undefined;
2798
2708
  } | {
2799
- firstname?: string | null | undefined;
2800
- surname?: string | null | undefined;
2709
+ firstname: string;
2710
+ surname: string;
2801
2711
  middlename?: string | null | undefined;
2802
2712
  } | {
2803
2713
  country: string;
@@ -2825,16 +2735,15 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2825
2735
  start: string;
2826
2736
  end: string;
2827
2737
  } | null | undefined> | undefined;
2828
- actionDetails?: {
2829
- templateId?: string | undefined;
2830
- isImmediateCorrection?: boolean | undefined;
2831
- } | undefined;
2832
2738
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
2833
2739
  keepAssignment?: boolean | undefined;
2834
2740
  }, {
2835
2741
  transactionId: string;
2836
2742
  eventId: string;
2837
2743
  type?: "PRINT_CERTIFICATE" | undefined;
2744
+ content?: {
2745
+ templateId?: string | undefined;
2746
+ } | undefined;
2838
2747
  declaration?: Record<string, string | number | boolean | {
2839
2748
  type: string;
2840
2749
  path: string;
@@ -2851,8 +2760,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2851
2760
  street?: string | null | undefined;
2852
2761
  zipCode?: string | null | undefined;
2853
2762
  } | {
2854
- firstname?: string | null | undefined;
2855
- surname?: string | null | undefined;
2763
+ firstname: string;
2764
+ surname: string;
2856
2765
  middlename?: string | null | undefined;
2857
2766
  } | {
2858
2767
  country: string;
@@ -2896,8 +2805,8 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2896
2805
  street?: string | null | undefined;
2897
2806
  zipCode?: string | null | undefined;
2898
2807
  } | {
2899
- firstname?: string | null | undefined;
2900
- surname?: string | null | undefined;
2808
+ firstname: string;
2809
+ surname: string;
2901
2810
  middlename?: string | null | undefined;
2902
2811
  } | {
2903
2812
  country: string;
@@ -2925,10 +2834,6 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
2925
2834
  start: string;
2926
2835
  end: string;
2927
2836
  } | null | undefined> | undefined;
2928
- actionDetails?: {
2929
- templateId?: string | undefined;
2930
- isImmediateCorrection?: boolean | undefined;
2931
- } | undefined;
2932
2837
  originalActionId?: string | undefined;
2933
2838
  keepAssignment?: boolean | undefined;
2934
2839
  }>;
@@ -3059,16 +2964,16 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
3059
2964
  addressLine3?: string | null | undefined;
3060
2965
  postcodeOrZip?: string | null | undefined;
3061
2966
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3062
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3063
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2967
+ firstname: z.ZodString;
2968
+ surname: z.ZodString;
3064
2969
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3065
2970
  }, "strip", z.ZodTypeAny, {
3066
- firstname?: string | null | undefined;
3067
- surname?: string | null | undefined;
2971
+ firstname: string;
2972
+ surname: string;
3068
2973
  middlename?: string | null | undefined;
3069
2974
  }, {
3070
- firstname?: string | null | undefined;
3071
- surname?: string | null | undefined;
2975
+ firstname: string;
2976
+ surname: string;
3072
2977
  middlename?: string | null | undefined;
3073
2978
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
3074
2979
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -3194,28 +3099,18 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
3194
3099
  addressLine3?: string | null | undefined;
3195
3100
  postcodeOrZip?: string | null | undefined;
3196
3101
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3197
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3198
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3102
+ firstname: z.ZodString;
3103
+ surname: z.ZodString;
3199
3104
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3200
3105
  }, "strip", z.ZodTypeAny, {
3201
- firstname?: string | null | undefined;
3202
- surname?: string | null | undefined;
3106
+ firstname: string;
3107
+ surname: string;
3203
3108
  middlename?: string | null | undefined;
3204
3109
  }, {
3205
- firstname?: string | null | undefined;
3206
- surname?: string | null | undefined;
3110
+ firstname: string;
3111
+ surname: string;
3207
3112
  middlename?: string | null | undefined;
3208
3113
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
3209
- actionDetails: z.ZodOptional<z.ZodObject<{
3210
- templateId: z.ZodOptional<z.ZodString>;
3211
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
3212
- }, "strip", z.ZodTypeAny, {
3213
- templateId?: string | undefined;
3214
- isImmediateCorrection?: boolean | undefined;
3215
- }, {
3216
- templateId?: string | undefined;
3217
- isImmediateCorrection?: boolean | undefined;
3218
- }>>;
3219
3114
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
3220
3115
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
3221
3116
  }, {
@@ -3253,8 +3148,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
3253
3148
  street?: string | null | undefined;
3254
3149
  zipCode?: string | null | undefined;
3255
3150
  } | {
3256
- firstname?: string | null | undefined;
3257
- surname?: string | null | undefined;
3151
+ firstname: string;
3152
+ surname: string;
3258
3153
  middlename?: string | null | undefined;
3259
3154
  } | {
3260
3155
  country: string;
@@ -3299,8 +3194,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
3299
3194
  street?: string | null | undefined;
3300
3195
  zipCode?: string | null | undefined;
3301
3196
  } | {
3302
- firstname?: string | null | undefined;
3303
- surname?: string | null | undefined;
3197
+ firstname: string;
3198
+ surname: string;
3304
3199
  middlename?: string | null | undefined;
3305
3200
  } | {
3306
3201
  country: string;
@@ -3328,10 +3223,6 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
3328
3223
  start: string;
3329
3224
  end: string;
3330
3225
  } | null | undefined> | undefined;
3331
- actionDetails?: {
3332
- templateId?: string | undefined;
3333
- isImmediateCorrection?: boolean | undefined;
3334
- } | undefined;
3335
3226
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
3336
3227
  keepAssignment?: boolean | undefined;
3337
3228
  }, {
@@ -3358,8 +3249,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
3358
3249
  street?: string | null | undefined;
3359
3250
  zipCode?: string | null | undefined;
3360
3251
  } | {
3361
- firstname?: string | null | undefined;
3362
- surname?: string | null | undefined;
3252
+ firstname: string;
3253
+ surname: string;
3363
3254
  middlename?: string | null | undefined;
3364
3255
  } | {
3365
3256
  country: string;
@@ -3403,8 +3294,8 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
3403
3294
  street?: string | null | undefined;
3404
3295
  zipCode?: string | null | undefined;
3405
3296
  } | {
3406
- firstname?: string | null | undefined;
3407
- surname?: string | null | undefined;
3297
+ firstname: string;
3298
+ surname: string;
3408
3299
  middlename?: string | null | undefined;
3409
3300
  } | {
3410
3301
  country: string;
@@ -3432,10 +3323,6 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
3432
3323
  start: string;
3433
3324
  end: string;
3434
3325
  } | null | undefined> | undefined;
3435
- actionDetails?: {
3436
- templateId?: string | undefined;
3437
- isImmediateCorrection?: boolean | undefined;
3438
- } | undefined;
3439
3326
  originalActionId?: string | undefined;
3440
3327
  keepAssignment?: boolean | undefined;
3441
3328
  }>;
@@ -3566,16 +3453,16 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3566
3453
  addressLine3?: string | null | undefined;
3567
3454
  postcodeOrZip?: string | null | undefined;
3568
3455
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3569
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3570
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3456
+ firstname: z.ZodString;
3457
+ surname: z.ZodString;
3571
3458
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3572
3459
  }, "strip", z.ZodTypeAny, {
3573
- firstname?: string | null | undefined;
3574
- surname?: string | null | undefined;
3460
+ firstname: string;
3461
+ surname: string;
3575
3462
  middlename?: string | null | undefined;
3576
3463
  }, {
3577
- firstname?: string | null | undefined;
3578
- surname?: string | null | undefined;
3464
+ firstname: string;
3465
+ surname: string;
3579
3466
  middlename?: string | null | undefined;
3580
3467
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
3581
3468
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -3701,28 +3588,18 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3701
3588
  addressLine3?: string | null | undefined;
3702
3589
  postcodeOrZip?: string | null | undefined;
3703
3590
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3704
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3705
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3591
+ firstname: z.ZodString;
3592
+ surname: z.ZodString;
3706
3593
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3707
3594
  }, "strip", z.ZodTypeAny, {
3708
- firstname?: string | null | undefined;
3709
- surname?: string | null | undefined;
3595
+ firstname: string;
3596
+ surname: string;
3710
3597
  middlename?: string | null | undefined;
3711
3598
  }, {
3712
- firstname?: string | null | undefined;
3713
- surname?: string | null | undefined;
3599
+ firstname: string;
3600
+ surname: string;
3714
3601
  middlename?: string | null | undefined;
3715
3602
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
3716
- actionDetails: z.ZodOptional<z.ZodObject<{
3717
- templateId: z.ZodOptional<z.ZodString>;
3718
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
3719
- }, "strip", z.ZodTypeAny, {
3720
- templateId?: string | undefined;
3721
- isImmediateCorrection?: boolean | undefined;
3722
- }, {
3723
- templateId?: string | undefined;
3724
- isImmediateCorrection?: boolean | undefined;
3725
- }>>;
3726
3603
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
3727
3604
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
3728
3605
  }, {
@@ -3746,8 +3623,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3746
3623
  street?: string | null | undefined;
3747
3624
  zipCode?: string | null | undefined;
3748
3625
  } | {
3749
- firstname?: string | null | undefined;
3750
- surname?: string | null | undefined;
3626
+ firstname: string;
3627
+ surname: string;
3751
3628
  middlename?: string | null | undefined;
3752
3629
  } | {
3753
3630
  country: string;
@@ -3792,8 +3669,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3792
3669
  street?: string | null | undefined;
3793
3670
  zipCode?: string | null | undefined;
3794
3671
  } | {
3795
- firstname?: string | null | undefined;
3796
- surname?: string | null | undefined;
3672
+ firstname: string;
3673
+ surname: string;
3797
3674
  middlename?: string | null | undefined;
3798
3675
  } | {
3799
3676
  country: string;
@@ -3821,10 +3698,6 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3821
3698
  start: string;
3822
3699
  end: string;
3823
3700
  } | null | undefined> | undefined;
3824
- actionDetails?: {
3825
- templateId?: string | undefined;
3826
- isImmediateCorrection?: boolean | undefined;
3827
- } | undefined;
3828
3701
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
3829
3702
  keepAssignment?: boolean | undefined;
3830
3703
  }, {
@@ -3847,8 +3720,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3847
3720
  street?: string | null | undefined;
3848
3721
  zipCode?: string | null | undefined;
3849
3722
  } | {
3850
- firstname?: string | null | undefined;
3851
- surname?: string | null | undefined;
3723
+ firstname: string;
3724
+ surname: string;
3852
3725
  middlename?: string | null | undefined;
3853
3726
  } | {
3854
3727
  country: string;
@@ -3892,8 +3765,8 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3892
3765
  street?: string | null | undefined;
3893
3766
  zipCode?: string | null | undefined;
3894
3767
  } | {
3895
- firstname?: string | null | undefined;
3896
- surname?: string | null | undefined;
3768
+ firstname: string;
3769
+ surname: string;
3897
3770
  middlename?: string | null | undefined;
3898
3771
  } | {
3899
3772
  country: string;
@@ -3921,10 +3794,6 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
3921
3794
  start: string;
3922
3795
  end: string;
3923
3796
  } | null | undefined> | undefined;
3924
- actionDetails?: {
3925
- templateId?: string | undefined;
3926
- isImmediateCorrection?: boolean | undefined;
3927
- } | undefined;
3928
3797
  originalActionId?: string | undefined;
3929
3798
  keepAssignment?: boolean | undefined;
3930
3799
  }>;
@@ -4055,16 +3924,16 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
4055
3924
  addressLine3?: string | null | undefined;
4056
3925
  postcodeOrZip?: string | null | undefined;
4057
3926
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4058
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4059
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3927
+ firstname: z.ZodString;
3928
+ surname: z.ZodString;
4060
3929
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4061
3930
  }, "strip", z.ZodTypeAny, {
4062
- firstname?: string | null | undefined;
4063
- surname?: string | null | undefined;
3931
+ firstname: string;
3932
+ surname: string;
4064
3933
  middlename?: string | null | undefined;
4065
3934
  }, {
4066
- firstname?: string | null | undefined;
4067
- surname?: string | null | undefined;
3935
+ firstname: string;
3936
+ surname: string;
4068
3937
  middlename?: string | null | undefined;
4069
3938
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
4070
3939
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -4190,28 +4059,18 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
4190
4059
  addressLine3?: string | null | undefined;
4191
4060
  postcodeOrZip?: string | null | undefined;
4192
4061
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4193
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4194
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4062
+ firstname: z.ZodString;
4063
+ surname: z.ZodString;
4195
4064
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4196
4065
  }, "strip", z.ZodTypeAny, {
4197
- firstname?: string | null | undefined;
4198
- surname?: string | null | undefined;
4066
+ firstname: string;
4067
+ surname: string;
4199
4068
  middlename?: string | null | undefined;
4200
4069
  }, {
4201
- firstname?: string | null | undefined;
4202
- surname?: string | null | undefined;
4070
+ firstname: string;
4071
+ surname: string;
4203
4072
  middlename?: string | null | undefined;
4204
4073
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
4205
- actionDetails: z.ZodOptional<z.ZodObject<{
4206
- templateId: z.ZodOptional<z.ZodString>;
4207
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
4208
- }, "strip", z.ZodTypeAny, {
4209
- templateId?: string | undefined;
4210
- isImmediateCorrection?: boolean | undefined;
4211
- }, {
4212
- templateId?: string | undefined;
4213
- isImmediateCorrection?: boolean | undefined;
4214
- }>>;
4215
4074
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
4216
4075
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
4217
4076
  }, {
@@ -4249,8 +4108,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
4249
4108
  street?: string | null | undefined;
4250
4109
  zipCode?: string | null | undefined;
4251
4110
  } | {
4252
- firstname?: string | null | undefined;
4253
- surname?: string | null | undefined;
4111
+ firstname: string;
4112
+ surname: string;
4254
4113
  middlename?: string | null | undefined;
4255
4114
  } | {
4256
4115
  country: string;
@@ -4295,8 +4154,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
4295
4154
  street?: string | null | undefined;
4296
4155
  zipCode?: string | null | undefined;
4297
4156
  } | {
4298
- firstname?: string | null | undefined;
4299
- surname?: string | null | undefined;
4157
+ firstname: string;
4158
+ surname: string;
4300
4159
  middlename?: string | null | undefined;
4301
4160
  } | {
4302
4161
  country: string;
@@ -4324,10 +4183,6 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
4324
4183
  start: string;
4325
4184
  end: string;
4326
4185
  } | null | undefined> | undefined;
4327
- actionDetails?: {
4328
- templateId?: string | undefined;
4329
- isImmediateCorrection?: boolean | undefined;
4330
- } | undefined;
4331
4186
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
4332
4187
  keepAssignment?: boolean | undefined;
4333
4188
  }, {
@@ -4354,8 +4209,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
4354
4209
  street?: string | null | undefined;
4355
4210
  zipCode?: string | null | undefined;
4356
4211
  } | {
4357
- firstname?: string | null | undefined;
4358
- surname?: string | null | undefined;
4212
+ firstname: string;
4213
+ surname: string;
4359
4214
  middlename?: string | null | undefined;
4360
4215
  } | {
4361
4216
  country: string;
@@ -4399,8 +4254,8 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
4399
4254
  street?: string | null | undefined;
4400
4255
  zipCode?: string | null | undefined;
4401
4256
  } | {
4402
- firstname?: string | null | undefined;
4403
- surname?: string | null | undefined;
4257
+ firstname: string;
4258
+ surname: string;
4404
4259
  middlename?: string | null | undefined;
4405
4260
  } | {
4406
4261
  country: string;
@@ -4428,10 +4283,6 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
4428
4283
  start: string;
4429
4284
  end: string;
4430
4285
  } | null | undefined> | undefined;
4431
- actionDetails?: {
4432
- templateId?: string | undefined;
4433
- isImmediateCorrection?: boolean | undefined;
4434
- } | undefined;
4435
4286
  originalActionId?: string | undefined;
4436
4287
  keepAssignment?: boolean | undefined;
4437
4288
  }>;
@@ -4562,16 +4413,16 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4562
4413
  addressLine3?: string | null | undefined;
4563
4414
  postcodeOrZip?: string | null | undefined;
4564
4415
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4565
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4566
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4416
+ firstname: z.ZodString;
4417
+ surname: z.ZodString;
4567
4418
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4568
4419
  }, "strip", z.ZodTypeAny, {
4569
- firstname?: string | null | undefined;
4570
- surname?: string | null | undefined;
4420
+ firstname: string;
4421
+ surname: string;
4571
4422
  middlename?: string | null | undefined;
4572
4423
  }, {
4573
- firstname?: string | null | undefined;
4574
- surname?: string | null | undefined;
4424
+ firstname: string;
4425
+ surname: string;
4575
4426
  middlename?: string | null | undefined;
4576
4427
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
4577
4428
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -4697,28 +4548,18 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4697
4548
  addressLine3?: string | null | undefined;
4698
4549
  postcodeOrZip?: string | null | undefined;
4699
4550
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4700
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4701
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4551
+ firstname: z.ZodString;
4552
+ surname: z.ZodString;
4702
4553
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4703
4554
  }, "strip", z.ZodTypeAny, {
4704
- firstname?: string | null | undefined;
4705
- surname?: string | null | undefined;
4555
+ firstname: string;
4556
+ surname: string;
4706
4557
  middlename?: string | null | undefined;
4707
4558
  }, {
4708
- firstname?: string | null | undefined;
4709
- surname?: string | null | undefined;
4559
+ firstname: string;
4560
+ surname: string;
4710
4561
  middlename?: string | null | undefined;
4711
4562
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
4712
- actionDetails: z.ZodOptional<z.ZodObject<{
4713
- templateId: z.ZodOptional<z.ZodString>;
4714
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
4715
- }, "strip", z.ZodTypeAny, {
4716
- templateId?: string | undefined;
4717
- isImmediateCorrection?: boolean | undefined;
4718
- }, {
4719
- templateId?: string | undefined;
4720
- isImmediateCorrection?: boolean | undefined;
4721
- }>>;
4722
4563
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
4723
4564
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
4724
4565
  }, {
@@ -4743,8 +4584,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4743
4584
  street?: string | null | undefined;
4744
4585
  zipCode?: string | null | undefined;
4745
4586
  } | {
4746
- firstname?: string | null | undefined;
4747
- surname?: string | null | undefined;
4587
+ firstname: string;
4588
+ surname: string;
4748
4589
  middlename?: string | null | undefined;
4749
4590
  } | {
4750
4591
  country: string;
@@ -4790,8 +4631,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4790
4631
  street?: string | null | undefined;
4791
4632
  zipCode?: string | null | undefined;
4792
4633
  } | {
4793
- firstname?: string | null | undefined;
4794
- surname?: string | null | undefined;
4634
+ firstname: string;
4635
+ surname: string;
4795
4636
  middlename?: string | null | undefined;
4796
4637
  } | {
4797
4638
  country: string;
@@ -4819,10 +4660,6 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4819
4660
  start: string;
4820
4661
  end: string;
4821
4662
  } | null | undefined> | undefined;
4822
- actionDetails?: {
4823
- templateId?: string | undefined;
4824
- isImmediateCorrection?: boolean | undefined;
4825
- } | undefined;
4826
4663
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
4827
4664
  keepAssignment?: boolean | undefined;
4828
4665
  }, {
@@ -4846,8 +4683,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4846
4683
  street?: string | null | undefined;
4847
4684
  zipCode?: string | null | undefined;
4848
4685
  } | {
4849
- firstname?: string | null | undefined;
4850
- surname?: string | null | undefined;
4686
+ firstname: string;
4687
+ surname: string;
4851
4688
  middlename?: string | null | undefined;
4852
4689
  } | {
4853
4690
  country: string;
@@ -4891,8 +4728,8 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4891
4728
  street?: string | null | undefined;
4892
4729
  zipCode?: string | null | undefined;
4893
4730
  } | {
4894
- firstname?: string | null | undefined;
4895
- surname?: string | null | undefined;
4731
+ firstname: string;
4732
+ surname: string;
4896
4733
  middlename?: string | null | undefined;
4897
4734
  } | {
4898
4735
  country: string;
@@ -4920,10 +4757,6 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
4920
4757
  start: string;
4921
4758
  end: string;
4922
4759
  } | null | undefined> | undefined;
4923
- actionDetails?: {
4924
- templateId?: string | undefined;
4925
- isImmediateCorrection?: boolean | undefined;
4926
- } | undefined;
4927
4760
  originalActionId?: string | undefined;
4928
4761
  keepAssignment?: boolean | undefined;
4929
4762
  }>;
@@ -5054,16 +4887,16 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
5054
4887
  addressLine3?: string | null | undefined;
5055
4888
  postcodeOrZip?: string | null | undefined;
5056
4889
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5057
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5058
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4890
+ firstname: z.ZodString;
4891
+ surname: z.ZodString;
5059
4892
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5060
4893
  }, "strip", z.ZodTypeAny, {
5061
- firstname?: string | null | undefined;
5062
- surname?: string | null | undefined;
4894
+ firstname: string;
4895
+ surname: string;
5063
4896
  middlename?: string | null | undefined;
5064
4897
  }, {
5065
- firstname?: string | null | undefined;
5066
- surname?: string | null | undefined;
4898
+ firstname: string;
4899
+ surname: string;
5067
4900
  middlename?: string | null | undefined;
5068
4901
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5069
4902
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -5189,28 +5022,18 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
5189
5022
  addressLine3?: string | null | undefined;
5190
5023
  postcodeOrZip?: string | null | undefined;
5191
5024
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5192
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5193
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5025
+ firstname: z.ZodString;
5026
+ surname: z.ZodString;
5194
5027
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5195
5028
  }, "strip", z.ZodTypeAny, {
5196
- firstname?: string | null | undefined;
5197
- surname?: string | null | undefined;
5029
+ firstname: string;
5030
+ surname: string;
5198
5031
  middlename?: string | null | undefined;
5199
5032
  }, {
5200
- firstname?: string | null | undefined;
5201
- surname?: string | null | undefined;
5033
+ firstname: string;
5034
+ surname: string;
5202
5035
  middlename?: string | null | undefined;
5203
5036
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5204
- actionDetails: z.ZodOptional<z.ZodObject<{
5205
- templateId: z.ZodOptional<z.ZodString>;
5206
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
5207
- }, "strip", z.ZodTypeAny, {
5208
- templateId?: string | undefined;
5209
- isImmediateCorrection?: boolean | undefined;
5210
- }, {
5211
- templateId?: string | undefined;
5212
- isImmediateCorrection?: boolean | undefined;
5213
- }>>;
5214
5037
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
5215
5038
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
5216
5039
  }, {
@@ -5235,8 +5058,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
5235
5058
  street?: string | null | undefined;
5236
5059
  zipCode?: string | null | undefined;
5237
5060
  } | {
5238
- firstname?: string | null | undefined;
5239
- surname?: string | null | undefined;
5061
+ firstname: string;
5062
+ surname: string;
5240
5063
  middlename?: string | null | undefined;
5241
5064
  } | {
5242
5065
  country: string;
@@ -5282,8 +5105,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
5282
5105
  street?: string | null | undefined;
5283
5106
  zipCode?: string | null | undefined;
5284
5107
  } | {
5285
- firstname?: string | null | undefined;
5286
- surname?: string | null | undefined;
5108
+ firstname: string;
5109
+ surname: string;
5287
5110
  middlename?: string | null | undefined;
5288
5111
  } | {
5289
5112
  country: string;
@@ -5311,10 +5134,6 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
5311
5134
  start: string;
5312
5135
  end: string;
5313
5136
  } | null | undefined> | undefined;
5314
- actionDetails?: {
5315
- templateId?: string | undefined;
5316
- isImmediateCorrection?: boolean | undefined;
5317
- } | undefined;
5318
5137
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
5319
5138
  keepAssignment?: boolean | undefined;
5320
5139
  }, {
@@ -5337,8 +5156,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
5337
5156
  street?: string | null | undefined;
5338
5157
  zipCode?: string | null | undefined;
5339
5158
  } | {
5340
- firstname?: string | null | undefined;
5341
- surname?: string | null | undefined;
5159
+ firstname: string;
5160
+ surname: string;
5342
5161
  middlename?: string | null | undefined;
5343
5162
  } | {
5344
5163
  country: string;
@@ -5382,8 +5201,8 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
5382
5201
  street?: string | null | undefined;
5383
5202
  zipCode?: string | null | undefined;
5384
5203
  } | {
5385
- firstname?: string | null | undefined;
5386
- surname?: string | null | undefined;
5204
+ firstname: string;
5205
+ surname: string;
5387
5206
  middlename?: string | null | undefined;
5388
5207
  } | {
5389
5208
  country: string;
@@ -5411,10 +5230,6 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
5411
5230
  start: string;
5412
5231
  end: string;
5413
5232
  } | null | undefined> | undefined;
5414
- actionDetails?: {
5415
- templateId?: string | undefined;
5416
- isImmediateCorrection?: boolean | undefined;
5417
- } | undefined;
5418
5233
  originalActionId?: string | undefined;
5419
5234
  assignedTo?: null | undefined;
5420
5235
  keepAssignment?: boolean | undefined;
@@ -5546,16 +5361,16 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5546
5361
  addressLine3?: string | null | undefined;
5547
5362
  postcodeOrZip?: string | null | undefined;
5548
5363
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5549
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5550
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5364
+ firstname: z.ZodString;
5365
+ surname: z.ZodString;
5551
5366
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5552
5367
  }, "strip", z.ZodTypeAny, {
5553
- firstname?: string | null | undefined;
5554
- surname?: string | null | undefined;
5368
+ firstname: string;
5369
+ surname: string;
5555
5370
  middlename?: string | null | undefined;
5556
5371
  }, {
5557
- firstname?: string | null | undefined;
5558
- surname?: string | null | undefined;
5372
+ firstname: string;
5373
+ surname: string;
5559
5374
  middlename?: string | null | undefined;
5560
5375
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5561
5376
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -5681,28 +5496,18 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5681
5496
  addressLine3?: string | null | undefined;
5682
5497
  postcodeOrZip?: string | null | undefined;
5683
5498
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5684
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5685
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5499
+ firstname: z.ZodString;
5500
+ surname: z.ZodString;
5686
5501
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5687
5502
  }, "strip", z.ZodTypeAny, {
5688
- firstname?: string | null | undefined;
5689
- surname?: string | null | undefined;
5503
+ firstname: string;
5504
+ surname: string;
5690
5505
  middlename?: string | null | undefined;
5691
5506
  }, {
5692
- firstname?: string | null | undefined;
5693
- surname?: string | null | undefined;
5507
+ firstname: string;
5508
+ surname: string;
5694
5509
  middlename?: string | null | undefined;
5695
5510
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
5696
- actionDetails: z.ZodOptional<z.ZodObject<{
5697
- templateId: z.ZodOptional<z.ZodString>;
5698
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
5699
- }, "strip", z.ZodTypeAny, {
5700
- templateId?: string | undefined;
5701
- isImmediateCorrection?: boolean | undefined;
5702
- }, {
5703
- templateId?: string | undefined;
5704
- isImmediateCorrection?: boolean | undefined;
5705
- }>>;
5706
5511
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
5707
5512
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
5708
5513
  }, {
@@ -5726,8 +5531,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5726
5531
  street?: string | null | undefined;
5727
5532
  zipCode?: string | null | undefined;
5728
5533
  } | {
5729
- firstname?: string | null | undefined;
5730
- surname?: string | null | undefined;
5534
+ firstname: string;
5535
+ surname: string;
5731
5536
  middlename?: string | null | undefined;
5732
5537
  } | {
5733
5538
  country: string;
@@ -5772,8 +5577,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5772
5577
  street?: string | null | undefined;
5773
5578
  zipCode?: string | null | undefined;
5774
5579
  } | {
5775
- firstname?: string | null | undefined;
5776
- surname?: string | null | undefined;
5580
+ firstname: string;
5581
+ surname: string;
5777
5582
  middlename?: string | null | undefined;
5778
5583
  } | {
5779
5584
  country: string;
@@ -5801,10 +5606,6 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5801
5606
  start: string;
5802
5607
  end: string;
5803
5608
  } | null | undefined> | undefined;
5804
- actionDetails?: {
5805
- templateId?: string | undefined;
5806
- isImmediateCorrection?: boolean | undefined;
5807
- } | undefined;
5808
5609
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
5809
5610
  keepAssignment?: boolean | undefined;
5810
5611
  }, {
@@ -5827,8 +5628,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5827
5628
  street?: string | null | undefined;
5828
5629
  zipCode?: string | null | undefined;
5829
5630
  } | {
5830
- firstname?: string | null | undefined;
5831
- surname?: string | null | undefined;
5631
+ firstname: string;
5632
+ surname: string;
5832
5633
  middlename?: string | null | undefined;
5833
5634
  } | {
5834
5635
  country: string;
@@ -5872,8 +5673,8 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5872
5673
  street?: string | null | undefined;
5873
5674
  zipCode?: string | null | undefined;
5874
5675
  } | {
5875
- firstname?: string | null | undefined;
5876
- surname?: string | null | undefined;
5676
+ firstname: string;
5677
+ surname: string;
5877
5678
  middlename?: string | null | undefined;
5878
5679
  } | {
5879
5680
  country: string;
@@ -5901,10 +5702,6 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
5901
5702
  start: string;
5902
5703
  end: string;
5903
5704
  } | null | undefined> | undefined;
5904
- actionDetails?: {
5905
- templateId?: string | undefined;
5906
- isImmediateCorrection?: boolean | undefined;
5907
- } | undefined;
5908
5705
  originalActionId?: string | undefined;
5909
5706
  keepAssignment?: boolean | undefined;
5910
5707
  }>;
@@ -6035,16 +5832,16 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
6035
5832
  addressLine3?: string | null | undefined;
6036
5833
  postcodeOrZip?: string | null | undefined;
6037
5834
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6038
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6039
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5835
+ firstname: z.ZodString;
5836
+ surname: z.ZodString;
6040
5837
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6041
5838
  }, "strip", z.ZodTypeAny, {
6042
- firstname?: string | null | undefined;
6043
- surname?: string | null | undefined;
5839
+ firstname: string;
5840
+ surname: string;
6044
5841
  middlename?: string | null | undefined;
6045
5842
  }, {
6046
- firstname?: string | null | undefined;
6047
- surname?: string | null | undefined;
5843
+ firstname: string;
5844
+ surname: string;
6048
5845
  middlename?: string | null | undefined;
6049
5846
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6050
5847
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -6170,28 +5967,18 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
6170
5967
  addressLine3?: string | null | undefined;
6171
5968
  postcodeOrZip?: string | null | undefined;
6172
5969
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6173
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6174
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5970
+ firstname: z.ZodString;
5971
+ surname: z.ZodString;
6175
5972
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6176
5973
  }, "strip", z.ZodTypeAny, {
6177
- firstname?: string | null | undefined;
6178
- surname?: string | null | undefined;
5974
+ firstname: string;
5975
+ surname: string;
6179
5976
  middlename?: string | null | undefined;
6180
5977
  }, {
6181
- firstname?: string | null | undefined;
6182
- surname?: string | null | undefined;
5978
+ firstname: string;
5979
+ surname: string;
6183
5980
  middlename?: string | null | undefined;
6184
5981
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6185
- actionDetails: z.ZodOptional<z.ZodObject<{
6186
- templateId: z.ZodOptional<z.ZodString>;
6187
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
6188
- }, "strip", z.ZodTypeAny, {
6189
- templateId?: string | undefined;
6190
- isImmediateCorrection?: boolean | undefined;
6191
- }, {
6192
- templateId?: string | undefined;
6193
- isImmediateCorrection?: boolean | undefined;
6194
- }>>;
6195
5982
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
6196
5983
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
6197
5984
  }, {
@@ -6230,8 +6017,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
6230
6017
  street?: string | null | undefined;
6231
6018
  zipCode?: string | null | undefined;
6232
6019
  } | {
6233
- firstname?: string | null | undefined;
6234
- surname?: string | null | undefined;
6020
+ firstname: string;
6021
+ surname: string;
6235
6022
  middlename?: string | null | undefined;
6236
6023
  } | {
6237
6024
  country: string;
@@ -6277,8 +6064,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
6277
6064
  street?: string | null | undefined;
6278
6065
  zipCode?: string | null | undefined;
6279
6066
  } | {
6280
- firstname?: string | null | undefined;
6281
- surname?: string | null | undefined;
6067
+ firstname: string;
6068
+ surname: string;
6282
6069
  middlename?: string | null | undefined;
6283
6070
  } | {
6284
6071
  country: string;
@@ -6306,10 +6093,6 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
6306
6093
  start: string;
6307
6094
  end: string;
6308
6095
  } | null | undefined> | undefined;
6309
- actionDetails?: {
6310
- templateId?: string | undefined;
6311
- isImmediateCorrection?: boolean | undefined;
6312
- } | undefined;
6313
6096
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
6314
6097
  keepAssignment?: boolean | undefined;
6315
6098
  }, {
@@ -6337,8 +6120,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
6337
6120
  street?: string | null | undefined;
6338
6121
  zipCode?: string | null | undefined;
6339
6122
  } | {
6340
- firstname?: string | null | undefined;
6341
- surname?: string | null | undefined;
6123
+ firstname: string;
6124
+ surname: string;
6342
6125
  middlename?: string | null | undefined;
6343
6126
  } | {
6344
6127
  country: string;
@@ -6382,8 +6165,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
6382
6165
  street?: string | null | undefined;
6383
6166
  zipCode?: string | null | undefined;
6384
6167
  } | {
6385
- firstname?: string | null | undefined;
6386
- surname?: string | null | undefined;
6168
+ firstname: string;
6169
+ surname: string;
6387
6170
  middlename?: string | null | undefined;
6388
6171
  } | {
6389
6172
  country: string;
@@ -6411,10 +6194,6 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
6411
6194
  start: string;
6412
6195
  end: string;
6413
6196
  } | null | undefined> | undefined;
6414
- actionDetails?: {
6415
- templateId?: string | undefined;
6416
- isImmediateCorrection?: boolean | undefined;
6417
- } | undefined;
6418
6197
  originalActionId?: string | undefined;
6419
6198
  keepAssignment?: boolean | undefined;
6420
6199
  }>;
@@ -6545,16 +6324,16 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6545
6324
  addressLine3?: string | null | undefined;
6546
6325
  postcodeOrZip?: string | null | undefined;
6547
6326
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6548
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6549
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6327
+ firstname: z.ZodString;
6328
+ surname: z.ZodString;
6550
6329
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6551
6330
  }, "strip", z.ZodTypeAny, {
6552
- firstname?: string | null | undefined;
6553
- surname?: string | null | undefined;
6331
+ firstname: string;
6332
+ surname: string;
6554
6333
  middlename?: string | null | undefined;
6555
6334
  }, {
6556
- firstname?: string | null | undefined;
6557
- surname?: string | null | undefined;
6335
+ firstname: string;
6336
+ surname: string;
6558
6337
  middlename?: string | null | undefined;
6559
6338
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6560
6339
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -6680,28 +6459,18 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6680
6459
  addressLine3?: string | null | undefined;
6681
6460
  postcodeOrZip?: string | null | undefined;
6682
6461
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6683
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6684
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6462
+ firstname: z.ZodString;
6463
+ surname: z.ZodString;
6685
6464
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6686
6465
  }, "strip", z.ZodTypeAny, {
6687
- firstname?: string | null | undefined;
6688
- surname?: string | null | undefined;
6466
+ firstname: string;
6467
+ surname: string;
6689
6468
  middlename?: string | null | undefined;
6690
6469
  }, {
6691
- firstname?: string | null | undefined;
6692
- surname?: string | null | undefined;
6470
+ firstname: string;
6471
+ surname: string;
6693
6472
  middlename?: string | null | undefined;
6694
6473
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6695
- actionDetails: z.ZodOptional<z.ZodObject<{
6696
- templateId: z.ZodOptional<z.ZodString>;
6697
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
6698
- }, "strip", z.ZodTypeAny, {
6699
- templateId?: string | undefined;
6700
- isImmediateCorrection?: boolean | undefined;
6701
- }, {
6702
- templateId?: string | undefined;
6703
- isImmediateCorrection?: boolean | undefined;
6704
- }>>;
6705
6474
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
6706
6475
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
6707
6476
  }, {
@@ -6726,8 +6495,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6726
6495
  street?: string | null | undefined;
6727
6496
  zipCode?: string | null | undefined;
6728
6497
  } | {
6729
- firstname?: string | null | undefined;
6730
- surname?: string | null | undefined;
6498
+ firstname: string;
6499
+ surname: string;
6731
6500
  middlename?: string | null | undefined;
6732
6501
  } | {
6733
6502
  country: string;
@@ -6773,8 +6542,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6773
6542
  street?: string | null | undefined;
6774
6543
  zipCode?: string | null | undefined;
6775
6544
  } | {
6776
- firstname?: string | null | undefined;
6777
- surname?: string | null | undefined;
6545
+ firstname: string;
6546
+ surname: string;
6778
6547
  middlename?: string | null | undefined;
6779
6548
  } | {
6780
6549
  country: string;
@@ -6802,10 +6571,6 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6802
6571
  start: string;
6803
6572
  end: string;
6804
6573
  } | null | undefined> | undefined;
6805
- actionDetails?: {
6806
- templateId?: string | undefined;
6807
- isImmediateCorrection?: boolean | undefined;
6808
- } | undefined;
6809
6574
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
6810
6575
  keepAssignment?: boolean | undefined;
6811
6576
  }, {
@@ -6829,8 +6594,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6829
6594
  street?: string | null | undefined;
6830
6595
  zipCode?: string | null | undefined;
6831
6596
  } | {
6832
- firstname?: string | null | undefined;
6833
- surname?: string | null | undefined;
6597
+ firstname: string;
6598
+ surname: string;
6834
6599
  middlename?: string | null | undefined;
6835
6600
  } | {
6836
6601
  country: string;
@@ -6874,8 +6639,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6874
6639
  street?: string | null | undefined;
6875
6640
  zipCode?: string | null | undefined;
6876
6641
  } | {
6877
- firstname?: string | null | undefined;
6878
- surname?: string | null | undefined;
6642
+ firstname: string;
6643
+ surname: string;
6879
6644
  middlename?: string | null | undefined;
6880
6645
  } | {
6881
6646
  country: string;
@@ -6903,10 +6668,6 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6903
6668
  start: string;
6904
6669
  end: string;
6905
6670
  } | null | undefined> | undefined;
6906
- actionDetails?: {
6907
- templateId?: string | undefined;
6908
- isImmediateCorrection?: boolean | undefined;
6909
- } | undefined;
6910
6671
  originalActionId?: string | undefined;
6911
6672
  keepAssignment?: boolean | undefined;
6912
6673
  }>;
@@ -7037,16 +6798,16 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
7037
6798
  addressLine3?: string | null | undefined;
7038
6799
  postcodeOrZip?: string | null | undefined;
7039
6800
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7040
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7041
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6801
+ firstname: z.ZodString;
6802
+ surname: z.ZodString;
7042
6803
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7043
6804
  }, "strip", z.ZodTypeAny, {
7044
- firstname?: string | null | undefined;
7045
- surname?: string | null | undefined;
6805
+ firstname: string;
6806
+ surname: string;
7046
6807
  middlename?: string | null | undefined;
7047
6808
  }, {
7048
- firstname?: string | null | undefined;
7049
- surname?: string | null | undefined;
6809
+ firstname: string;
6810
+ surname: string;
7050
6811
  middlename?: string | null | undefined;
7051
6812
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7052
6813
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -7172,28 +6933,18 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
7172
6933
  addressLine3?: string | null | undefined;
7173
6934
  postcodeOrZip?: string | null | undefined;
7174
6935
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7175
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7176
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6936
+ firstname: z.ZodString;
6937
+ surname: z.ZodString;
7177
6938
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7178
6939
  }, "strip", z.ZodTypeAny, {
7179
- firstname?: string | null | undefined;
7180
- surname?: string | null | undefined;
6940
+ firstname: string;
6941
+ surname: string;
7181
6942
  middlename?: string | null | undefined;
7182
6943
  }, {
7183
- firstname?: string | null | undefined;
7184
- surname?: string | null | undefined;
6944
+ firstname: string;
6945
+ surname: string;
7185
6946
  middlename?: string | null | undefined;
7186
6947
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7187
- actionDetails: z.ZodOptional<z.ZodObject<{
7188
- templateId: z.ZodOptional<z.ZodString>;
7189
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
7190
- }, "strip", z.ZodTypeAny, {
7191
- templateId?: string | undefined;
7192
- isImmediateCorrection?: boolean | undefined;
7193
- }, {
7194
- templateId?: string | undefined;
7195
- isImmediateCorrection?: boolean | undefined;
7196
- }>>;
7197
6948
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
7198
6949
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
7199
6950
  }, {
@@ -7217,8 +6968,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
7217
6968
  street?: string | null | undefined;
7218
6969
  zipCode?: string | null | undefined;
7219
6970
  } | {
7220
- firstname?: string | null | undefined;
7221
- surname?: string | null | undefined;
6971
+ firstname: string;
6972
+ surname: string;
7222
6973
  middlename?: string | null | undefined;
7223
6974
  } | {
7224
6975
  country: string;
@@ -7263,8 +7014,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
7263
7014
  street?: string | null | undefined;
7264
7015
  zipCode?: string | null | undefined;
7265
7016
  } | {
7266
- firstname?: string | null | undefined;
7267
- surname?: string | null | undefined;
7017
+ firstname: string;
7018
+ surname: string;
7268
7019
  middlename?: string | null | undefined;
7269
7020
  } | {
7270
7021
  country: string;
@@ -7292,10 +7043,6 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
7292
7043
  start: string;
7293
7044
  end: string;
7294
7045
  } | null | undefined> | undefined;
7295
- actionDetails?: {
7296
- templateId?: string | undefined;
7297
- isImmediateCorrection?: boolean | undefined;
7298
- } | undefined;
7299
7046
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
7300
7047
  keepAssignment?: boolean | undefined;
7301
7048
  }, {
@@ -7318,8 +7065,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
7318
7065
  street?: string | null | undefined;
7319
7066
  zipCode?: string | null | undefined;
7320
7067
  } | {
7321
- firstname?: string | null | undefined;
7322
- surname?: string | null | undefined;
7068
+ firstname: string;
7069
+ surname: string;
7323
7070
  middlename?: string | null | undefined;
7324
7071
  } | {
7325
7072
  country: string;
@@ -7363,8 +7110,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
7363
7110
  street?: string | null | undefined;
7364
7111
  zipCode?: string | null | undefined;
7365
7112
  } | {
7366
- firstname?: string | null | undefined;
7367
- surname?: string | null | undefined;
7113
+ firstname: string;
7114
+ surname: string;
7368
7115
  middlename?: string | null | undefined;
7369
7116
  } | {
7370
7117
  country: string;
@@ -7392,10 +7139,6 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
7392
7139
  start: string;
7393
7140
  end: string;
7394
7141
  } | null | undefined> | undefined;
7395
- actionDetails?: {
7396
- templateId?: string | undefined;
7397
- isImmediateCorrection?: boolean | undefined;
7398
- } | undefined;
7399
7142
  originalActionId?: string | undefined;
7400
7143
  keepAssignment?: boolean | undefined;
7401
7144
  }>;
@@ -7542,16 +7285,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7542
7285
  addressLine3?: string | null | undefined;
7543
7286
  postcodeOrZip?: string | null | undefined;
7544
7287
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7545
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7546
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7288
+ firstname: z.ZodString;
7289
+ surname: z.ZodString;
7547
7290
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7548
7291
  }, "strip", z.ZodTypeAny, {
7549
- firstname?: string | null | undefined;
7550
- surname?: string | null | undefined;
7292
+ firstname: string;
7293
+ surname: string;
7551
7294
  middlename?: string | null | undefined;
7552
7295
  }, {
7553
- firstname?: string | null | undefined;
7554
- surname?: string | null | undefined;
7296
+ firstname: string;
7297
+ surname: string;
7555
7298
  middlename?: string | null | undefined;
7556
7299
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7557
7300
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -7677,28 +7420,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7677
7420
  addressLine3?: string | null | undefined;
7678
7421
  postcodeOrZip?: string | null | undefined;
7679
7422
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7680
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7681
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7423
+ firstname: z.ZodString;
7424
+ surname: z.ZodString;
7682
7425
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7683
7426
  }, "strip", z.ZodTypeAny, {
7684
- firstname?: string | null | undefined;
7685
- surname?: string | null | undefined;
7427
+ firstname: string;
7428
+ surname: string;
7686
7429
  middlename?: string | null | undefined;
7687
7430
  }, {
7688
- firstname?: string | null | undefined;
7689
- surname?: string | null | undefined;
7431
+ firstname: string;
7432
+ surname: string;
7690
7433
  middlename?: string | null | undefined;
7691
7434
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7692
- actionDetails: z.ZodOptional<z.ZodObject<{
7693
- templateId: z.ZodOptional<z.ZodString>;
7694
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
7695
- }, "strip", z.ZodTypeAny, {
7696
- templateId?: string | undefined;
7697
- isImmediateCorrection?: boolean | undefined;
7698
- }, {
7699
- templateId?: string | undefined;
7700
- isImmediateCorrection?: boolean | undefined;
7701
- }>>;
7702
7435
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
7703
7436
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
7704
7437
  }, {
@@ -7723,8 +7456,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7723
7456
  street?: string | null | undefined;
7724
7457
  zipCode?: string | null | undefined;
7725
7458
  } | {
7726
- firstname?: string | null | undefined;
7727
- surname?: string | null | undefined;
7459
+ firstname: string;
7460
+ surname: string;
7728
7461
  middlename?: string | null | undefined;
7729
7462
  } | {
7730
7463
  country: string;
@@ -7770,8 +7503,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7770
7503
  street?: string | null | undefined;
7771
7504
  zipCode?: string | null | undefined;
7772
7505
  } | {
7773
- firstname?: string | null | undefined;
7774
- surname?: string | null | undefined;
7506
+ firstname: string;
7507
+ surname: string;
7775
7508
  middlename?: string | null | undefined;
7776
7509
  } | {
7777
7510
  country: string;
@@ -7799,10 +7532,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7799
7532
  start: string;
7800
7533
  end: string;
7801
7534
  } | null | undefined> | undefined;
7802
- actionDetails?: {
7803
- templateId?: string | undefined;
7804
- isImmediateCorrection?: boolean | undefined;
7805
- } | undefined;
7806
7535
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
7807
7536
  keepAssignment?: boolean | undefined;
7808
7537
  }, {
@@ -7826,8 +7555,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7826
7555
  street?: string | null | undefined;
7827
7556
  zipCode?: string | null | undefined;
7828
7557
  } | {
7829
- firstname?: string | null | undefined;
7830
- surname?: string | null | undefined;
7558
+ firstname: string;
7559
+ surname: string;
7831
7560
  middlename?: string | null | undefined;
7832
7561
  } | {
7833
7562
  country: string;
@@ -7871,8 +7600,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7871
7600
  street?: string | null | undefined;
7872
7601
  zipCode?: string | null | undefined;
7873
7602
  } | {
7874
- firstname?: string | null | undefined;
7875
- surname?: string | null | undefined;
7603
+ firstname: string;
7604
+ surname: string;
7876
7605
  middlename?: string | null | undefined;
7877
7606
  } | {
7878
7607
  country: string;
@@ -7900,10 +7629,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7900
7629
  start: string;
7901
7630
  end: string;
7902
7631
  } | null | undefined> | undefined;
7903
- actionDetails?: {
7904
- templateId?: string | undefined;
7905
- isImmediateCorrection?: boolean | undefined;
7906
- } | undefined;
7907
7632
  originalActionId?: string | undefined;
7908
7633
  keepAssignment?: boolean | undefined;
7909
7634
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -8032,16 +7757,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8032
7757
  addressLine3?: string | null | undefined;
8033
7758
  postcodeOrZip?: string | null | undefined;
8034
7759
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8035
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8036
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7760
+ firstname: z.ZodString;
7761
+ surname: z.ZodString;
8037
7762
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8038
7763
  }, "strip", z.ZodTypeAny, {
8039
- firstname?: string | null | undefined;
8040
- surname?: string | null | undefined;
7764
+ firstname: string;
7765
+ surname: string;
8041
7766
  middlename?: string | null | undefined;
8042
7767
  }, {
8043
- firstname?: string | null | undefined;
8044
- surname?: string | null | undefined;
7768
+ firstname: string;
7769
+ surname: string;
8045
7770
  middlename?: string | null | undefined;
8046
7771
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8047
7772
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -8167,28 +7892,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8167
7892
  addressLine3?: string | null | undefined;
8168
7893
  postcodeOrZip?: string | null | undefined;
8169
7894
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8170
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8171
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7895
+ firstname: z.ZodString;
7896
+ surname: z.ZodString;
8172
7897
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8173
7898
  }, "strip", z.ZodTypeAny, {
8174
- firstname?: string | null | undefined;
8175
- surname?: string | null | undefined;
7899
+ firstname: string;
7900
+ surname: string;
8176
7901
  middlename?: string | null | undefined;
8177
7902
  }, {
8178
- firstname?: string | null | undefined;
8179
- surname?: string | null | undefined;
7903
+ firstname: string;
7904
+ surname: string;
8180
7905
  middlename?: string | null | undefined;
8181
7906
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8182
- actionDetails: z.ZodOptional<z.ZodObject<{
8183
- templateId: z.ZodOptional<z.ZodString>;
8184
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
8185
- }, "strip", z.ZodTypeAny, {
8186
- templateId?: string | undefined;
8187
- isImmediateCorrection?: boolean | undefined;
8188
- }, {
8189
- templateId?: string | undefined;
8190
- isImmediateCorrection?: boolean | undefined;
8191
- }>>;
8192
7907
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
8193
7908
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
8194
7909
  }, {
@@ -8213,8 +7928,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8213
7928
  street?: string | null | undefined;
8214
7929
  zipCode?: string | null | undefined;
8215
7930
  } | {
8216
- firstname?: string | null | undefined;
8217
- surname?: string | null | undefined;
7931
+ firstname: string;
7932
+ surname: string;
8218
7933
  middlename?: string | null | undefined;
8219
7934
  } | {
8220
7935
  country: string;
@@ -8260,8 +7975,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8260
7975
  street?: string | null | undefined;
8261
7976
  zipCode?: string | null | undefined;
8262
7977
  } | {
8263
- firstname?: string | null | undefined;
8264
- surname?: string | null | undefined;
7978
+ firstname: string;
7979
+ surname: string;
8265
7980
  middlename?: string | null | undefined;
8266
7981
  } | {
8267
7982
  country: string;
@@ -8289,10 +8004,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8289
8004
  start: string;
8290
8005
  end: string;
8291
8006
  } | null | undefined> | undefined;
8292
- actionDetails?: {
8293
- templateId?: string | undefined;
8294
- isImmediateCorrection?: boolean | undefined;
8295
- } | undefined;
8296
8007
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
8297
8008
  keepAssignment?: boolean | undefined;
8298
8009
  }, {
@@ -8316,8 +8027,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8316
8027
  street?: string | null | undefined;
8317
8028
  zipCode?: string | null | undefined;
8318
8029
  } | {
8319
- firstname?: string | null | undefined;
8320
- surname?: string | null | undefined;
8030
+ firstname: string;
8031
+ surname: string;
8321
8032
  middlename?: string | null | undefined;
8322
8033
  } | {
8323
8034
  country: string;
@@ -8361,8 +8072,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8361
8072
  street?: string | null | undefined;
8362
8073
  zipCode?: string | null | undefined;
8363
8074
  } | {
8364
- firstname?: string | null | undefined;
8365
- surname?: string | null | undefined;
8075
+ firstname: string;
8076
+ surname: string;
8366
8077
  middlename?: string | null | undefined;
8367
8078
  } | {
8368
8079
  country: string;
@@ -8390,10 +8101,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8390
8101
  start: string;
8391
8102
  end: string;
8392
8103
  } | null | undefined> | undefined;
8393
- actionDetails?: {
8394
- templateId?: string | undefined;
8395
- isImmediateCorrection?: boolean | undefined;
8396
- } | undefined;
8397
8104
  originalActionId?: string | undefined;
8398
8105
  keepAssignment?: boolean | undefined;
8399
8106
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -8522,16 +8229,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8522
8229
  addressLine3?: string | null | undefined;
8523
8230
  postcodeOrZip?: string | null | undefined;
8524
8231
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8525
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8526
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8232
+ firstname: z.ZodString;
8233
+ surname: z.ZodString;
8527
8234
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8528
8235
  }, "strip", z.ZodTypeAny, {
8529
- firstname?: string | null | undefined;
8530
- surname?: string | null | undefined;
8236
+ firstname: string;
8237
+ surname: string;
8531
8238
  middlename?: string | null | undefined;
8532
8239
  }, {
8533
- firstname?: string | null | undefined;
8534
- surname?: string | null | undefined;
8240
+ firstname: string;
8241
+ surname: string;
8535
8242
  middlename?: string | null | undefined;
8536
8243
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8537
8244
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -8657,28 +8364,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8657
8364
  addressLine3?: string | null | undefined;
8658
8365
  postcodeOrZip?: string | null | undefined;
8659
8366
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8660
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8661
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8367
+ firstname: z.ZodString;
8368
+ surname: z.ZodString;
8662
8369
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8663
8370
  }, "strip", z.ZodTypeAny, {
8664
- firstname?: string | null | undefined;
8665
- surname?: string | null | undefined;
8371
+ firstname: string;
8372
+ surname: string;
8666
8373
  middlename?: string | null | undefined;
8667
8374
  }, {
8668
- firstname?: string | null | undefined;
8669
- surname?: string | null | undefined;
8375
+ firstname: string;
8376
+ surname: string;
8670
8377
  middlename?: string | null | undefined;
8671
8378
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8672
- actionDetails: z.ZodOptional<z.ZodObject<{
8673
- templateId: z.ZodOptional<z.ZodString>;
8674
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
8675
- }, "strip", z.ZodTypeAny, {
8676
- templateId?: string | undefined;
8677
- isImmediateCorrection?: boolean | undefined;
8678
- }, {
8679
- templateId?: string | undefined;
8680
- isImmediateCorrection?: boolean | undefined;
8681
- }>>;
8682
8379
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
8683
8380
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
8684
8381
  }, {
@@ -8703,8 +8400,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8703
8400
  street?: string | null | undefined;
8704
8401
  zipCode?: string | null | undefined;
8705
8402
  } | {
8706
- firstname?: string | null | undefined;
8707
- surname?: string | null | undefined;
8403
+ firstname: string;
8404
+ surname: string;
8708
8405
  middlename?: string | null | undefined;
8709
8406
  } | {
8710
8407
  country: string;
@@ -8749,8 +8446,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8749
8446
  street?: string | null | undefined;
8750
8447
  zipCode?: string | null | undefined;
8751
8448
  } | {
8752
- firstname?: string | null | undefined;
8753
- surname?: string | null | undefined;
8449
+ firstname: string;
8450
+ surname: string;
8754
8451
  middlename?: string | null | undefined;
8755
8452
  } | {
8756
8453
  country: string;
@@ -8778,10 +8475,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8778
8475
  start: string;
8779
8476
  end: string;
8780
8477
  } | null | undefined> | undefined;
8781
- actionDetails?: {
8782
- templateId?: string | undefined;
8783
- isImmediateCorrection?: boolean | undefined;
8784
- } | undefined;
8785
8478
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
8786
8479
  registrationNumber?: string | undefined;
8787
8480
  keepAssignment?: boolean | undefined;
@@ -8805,8 +8498,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8805
8498
  street?: string | null | undefined;
8806
8499
  zipCode?: string | null | undefined;
8807
8500
  } | {
8808
- firstname?: string | null | undefined;
8809
- surname?: string | null | undefined;
8501
+ firstname: string;
8502
+ surname: string;
8810
8503
  middlename?: string | null | undefined;
8811
8504
  } | {
8812
8505
  country: string;
@@ -8850,8 +8543,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8850
8543
  street?: string | null | undefined;
8851
8544
  zipCode?: string | null | undefined;
8852
8545
  } | {
8853
- firstname?: string | null | undefined;
8854
- surname?: string | null | undefined;
8546
+ firstname: string;
8547
+ surname: string;
8855
8548
  middlename?: string | null | undefined;
8856
8549
  } | {
8857
8550
  country: string;
@@ -8879,10 +8572,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8879
8572
  start: string;
8880
8573
  end: string;
8881
8574
  } | null | undefined> | undefined;
8882
- actionDetails?: {
8883
- templateId?: string | undefined;
8884
- isImmediateCorrection?: boolean | undefined;
8885
- } | undefined;
8886
8575
  originalActionId?: string | undefined;
8887
8576
  registrationNumber?: string | undefined;
8888
8577
  keepAssignment?: boolean | undefined;
@@ -9012,16 +8701,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9012
8701
  addressLine3?: string | null | undefined;
9013
8702
  postcodeOrZip?: string | null | undefined;
9014
8703
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9015
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9016
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8704
+ firstname: z.ZodString;
8705
+ surname: z.ZodString;
9017
8706
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9018
8707
  }, "strip", z.ZodTypeAny, {
9019
- firstname?: string | null | undefined;
9020
- surname?: string | null | undefined;
8708
+ firstname: string;
8709
+ surname: string;
9021
8710
  middlename?: string | null | undefined;
9022
8711
  }, {
9023
- firstname?: string | null | undefined;
9024
- surname?: string | null | undefined;
8712
+ firstname: string;
8713
+ surname: string;
9025
8714
  middlename?: string | null | undefined;
9026
8715
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9027
8716
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -9147,28 +8836,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9147
8836
  addressLine3?: string | null | undefined;
9148
8837
  postcodeOrZip?: string | null | undefined;
9149
8838
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9150
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9151
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8839
+ firstname: z.ZodString;
8840
+ surname: z.ZodString;
9152
8841
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9153
8842
  }, "strip", z.ZodTypeAny, {
9154
- firstname?: string | null | undefined;
9155
- surname?: string | null | undefined;
8843
+ firstname: string;
8844
+ surname: string;
9156
8845
  middlename?: string | null | undefined;
9157
8846
  }, {
9158
- firstname?: string | null | undefined;
9159
- surname?: string | null | undefined;
8847
+ firstname: string;
8848
+ surname: string;
9160
8849
  middlename?: string | null | undefined;
9161
8850
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9162
- actionDetails: z.ZodOptional<z.ZodObject<{
9163
- templateId: z.ZodOptional<z.ZodString>;
9164
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
9165
- }, "strip", z.ZodTypeAny, {
9166
- templateId?: string | undefined;
9167
- isImmediateCorrection?: boolean | undefined;
9168
- }, {
9169
- templateId?: string | undefined;
9170
- isImmediateCorrection?: boolean | undefined;
9171
- }>>;
9172
8851
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
9173
8852
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
9174
8853
  }, {
@@ -9192,8 +8871,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9192
8871
  street?: string | null | undefined;
9193
8872
  zipCode?: string | null | undefined;
9194
8873
  } | {
9195
- firstname?: string | null | undefined;
9196
- surname?: string | null | undefined;
8874
+ firstname: string;
8875
+ surname: string;
9197
8876
  middlename?: string | null | undefined;
9198
8877
  } | {
9199
8878
  country: string;
@@ -9238,8 +8917,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9238
8917
  street?: string | null | undefined;
9239
8918
  zipCode?: string | null | undefined;
9240
8919
  } | {
9241
- firstname?: string | null | undefined;
9242
- surname?: string | null | undefined;
8920
+ firstname: string;
8921
+ surname: string;
9243
8922
  middlename?: string | null | undefined;
9244
8923
  } | {
9245
8924
  country: string;
@@ -9267,10 +8946,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9267
8946
  start: string;
9268
8947
  end: string;
9269
8948
  } | null | undefined> | undefined;
9270
- actionDetails?: {
9271
- templateId?: string | undefined;
9272
- isImmediateCorrection?: boolean | undefined;
9273
- } | undefined;
9274
8949
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
9275
8950
  keepAssignment?: boolean | undefined;
9276
8951
  }, {
@@ -9293,8 +8968,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9293
8968
  street?: string | null | undefined;
9294
8969
  zipCode?: string | null | undefined;
9295
8970
  } | {
9296
- firstname?: string | null | undefined;
9297
- surname?: string | null | undefined;
8971
+ firstname: string;
8972
+ surname: string;
9298
8973
  middlename?: string | null | undefined;
9299
8974
  } | {
9300
8975
  country: string;
@@ -9338,8 +9013,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9338
9013
  street?: string | null | undefined;
9339
9014
  zipCode?: string | null | undefined;
9340
9015
  } | {
9341
- firstname?: string | null | undefined;
9342
- surname?: string | null | undefined;
9016
+ firstname: string;
9017
+ surname: string;
9343
9018
  middlename?: string | null | undefined;
9344
9019
  } | {
9345
9020
  country: string;
@@ -9367,10 +9042,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9367
9042
  start: string;
9368
9043
  end: string;
9369
9044
  } | null | undefined> | undefined;
9370
- actionDetails?: {
9371
- templateId?: string | undefined;
9372
- isImmediateCorrection?: boolean | undefined;
9373
- } | undefined;
9374
9045
  originalActionId?: string | undefined;
9375
9046
  keepAssignment?: boolean | undefined;
9376
9047
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -9499,16 +9170,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9499
9170
  addressLine3?: string | null | undefined;
9500
9171
  postcodeOrZip?: string | null | undefined;
9501
9172
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9502
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9503
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9173
+ firstname: z.ZodString;
9174
+ surname: z.ZodString;
9504
9175
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9505
9176
  }, "strip", z.ZodTypeAny, {
9506
- firstname?: string | null | undefined;
9507
- surname?: string | null | undefined;
9177
+ firstname: string;
9178
+ surname: string;
9508
9179
  middlename?: string | null | undefined;
9509
9180
  }, {
9510
- firstname?: string | null | undefined;
9511
- surname?: string | null | undefined;
9181
+ firstname: string;
9182
+ surname: string;
9512
9183
  middlename?: string | null | undefined;
9513
9184
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9514
9185
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -9634,28 +9305,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9634
9305
  addressLine3?: string | null | undefined;
9635
9306
  postcodeOrZip?: string | null | undefined;
9636
9307
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9637
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9638
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9308
+ firstname: z.ZodString;
9309
+ surname: z.ZodString;
9639
9310
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9640
9311
  }, "strip", z.ZodTypeAny, {
9641
- firstname?: string | null | undefined;
9642
- surname?: string | null | undefined;
9312
+ firstname: string;
9313
+ surname: string;
9643
9314
  middlename?: string | null | undefined;
9644
9315
  }, {
9645
- firstname?: string | null | undefined;
9646
- surname?: string | null | undefined;
9316
+ firstname: string;
9317
+ surname: string;
9647
9318
  middlename?: string | null | undefined;
9648
9319
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9649
- actionDetails: z.ZodOptional<z.ZodObject<{
9650
- templateId: z.ZodOptional<z.ZodString>;
9651
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
9652
- }, "strip", z.ZodTypeAny, {
9653
- templateId?: string | undefined;
9654
- isImmediateCorrection?: boolean | undefined;
9655
- }, {
9656
- templateId?: string | undefined;
9657
- isImmediateCorrection?: boolean | undefined;
9658
- }>>;
9659
9320
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
9660
9321
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
9661
9322
  }, {
@@ -9679,8 +9340,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9679
9340
  street?: string | null | undefined;
9680
9341
  zipCode?: string | null | undefined;
9681
9342
  } | {
9682
- firstname?: string | null | undefined;
9683
- surname?: string | null | undefined;
9343
+ firstname: string;
9344
+ surname: string;
9684
9345
  middlename?: string | null | undefined;
9685
9346
  } | {
9686
9347
  country: string;
@@ -9725,8 +9386,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9725
9386
  street?: string | null | undefined;
9726
9387
  zipCode?: string | null | undefined;
9727
9388
  } | {
9728
- firstname?: string | null | undefined;
9729
- surname?: string | null | undefined;
9389
+ firstname: string;
9390
+ surname: string;
9730
9391
  middlename?: string | null | undefined;
9731
9392
  } | {
9732
9393
  country: string;
@@ -9754,10 +9415,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9754
9415
  start: string;
9755
9416
  end: string;
9756
9417
  } | null | undefined> | undefined;
9757
- actionDetails?: {
9758
- templateId?: string | undefined;
9759
- isImmediateCorrection?: boolean | undefined;
9760
- } | undefined;
9761
9418
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
9762
9419
  keepAssignment?: boolean | undefined;
9763
9420
  }, {
@@ -9780,8 +9437,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9780
9437
  street?: string | null | undefined;
9781
9438
  zipCode?: string | null | undefined;
9782
9439
  } | {
9783
- firstname?: string | null | undefined;
9784
- surname?: string | null | undefined;
9440
+ firstname: string;
9441
+ surname: string;
9785
9442
  middlename?: string | null | undefined;
9786
9443
  } | {
9787
9444
  country: string;
@@ -9825,8 +9482,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9825
9482
  street?: string | null | undefined;
9826
9483
  zipCode?: string | null | undefined;
9827
9484
  } | {
9828
- firstname?: string | null | undefined;
9829
- surname?: string | null | undefined;
9485
+ firstname: string;
9486
+ surname: string;
9830
9487
  middlename?: string | null | undefined;
9831
9488
  } | {
9832
9489
  country: string;
@@ -9854,10 +9511,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9854
9511
  start: string;
9855
9512
  end: string;
9856
9513
  } | null | undefined> | undefined;
9857
- actionDetails?: {
9858
- templateId?: string | undefined;
9859
- isImmediateCorrection?: boolean | undefined;
9860
- } | undefined;
9861
9514
  originalActionId?: string | undefined;
9862
9515
  keepAssignment?: boolean | undefined;
9863
9516
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -9986,16 +9639,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9986
9639
  addressLine3?: string | null | undefined;
9987
9640
  postcodeOrZip?: string | null | undefined;
9988
9641
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9989
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9990
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9642
+ firstname: z.ZodString;
9643
+ surname: z.ZodString;
9991
9644
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9992
9645
  }, "strip", z.ZodTypeAny, {
9993
- firstname?: string | null | undefined;
9994
- surname?: string | null | undefined;
9646
+ firstname: string;
9647
+ surname: string;
9995
9648
  middlename?: string | null | undefined;
9996
9649
  }, {
9997
- firstname?: string | null | undefined;
9998
- surname?: string | null | undefined;
9650
+ firstname: string;
9651
+ surname: string;
9999
9652
  middlename?: string | null | undefined;
10000
9653
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10001
9654
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -10121,28 +9774,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10121
9774
  addressLine3?: string | null | undefined;
10122
9775
  postcodeOrZip?: string | null | undefined;
10123
9776
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10124
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10125
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9777
+ firstname: z.ZodString;
9778
+ surname: z.ZodString;
10126
9779
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10127
9780
  }, "strip", z.ZodTypeAny, {
10128
- firstname?: string | null | undefined;
10129
- surname?: string | null | undefined;
9781
+ firstname: string;
9782
+ surname: string;
10130
9783
  middlename?: string | null | undefined;
10131
9784
  }, {
10132
- firstname?: string | null | undefined;
10133
- surname?: string | null | undefined;
9785
+ firstname: string;
9786
+ surname: string;
10134
9787
  middlename?: string | null | undefined;
10135
9788
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10136
- actionDetails: z.ZodOptional<z.ZodObject<{
10137
- templateId: z.ZodOptional<z.ZodString>;
10138
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
10139
- }, "strip", z.ZodTypeAny, {
10140
- templateId?: string | undefined;
10141
- isImmediateCorrection?: boolean | undefined;
10142
- }, {
10143
- templateId?: string | undefined;
10144
- isImmediateCorrection?: boolean | undefined;
10145
- }>>;
10146
9789
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
10147
9790
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
10148
9791
  }, {
@@ -10180,8 +9823,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10180
9823
  street?: string | null | undefined;
10181
9824
  zipCode?: string | null | undefined;
10182
9825
  } | {
10183
- firstname?: string | null | undefined;
10184
- surname?: string | null | undefined;
9826
+ firstname: string;
9827
+ surname: string;
10185
9828
  middlename?: string | null | undefined;
10186
9829
  } | {
10187
9830
  country: string;
@@ -10226,8 +9869,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10226
9869
  street?: string | null | undefined;
10227
9870
  zipCode?: string | null | undefined;
10228
9871
  } | {
10229
- firstname?: string | null | undefined;
10230
- surname?: string | null | undefined;
9872
+ firstname: string;
9873
+ surname: string;
10231
9874
  middlename?: string | null | undefined;
10232
9875
  } | {
10233
9876
  country: string;
@@ -10255,10 +9898,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10255
9898
  start: string;
10256
9899
  end: string;
10257
9900
  } | null | undefined> | undefined;
10258
- actionDetails?: {
10259
- templateId?: string | undefined;
10260
- isImmediateCorrection?: boolean | undefined;
10261
- } | undefined;
10262
9901
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
10263
9902
  keepAssignment?: boolean | undefined;
10264
9903
  }, {
@@ -10285,8 +9924,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10285
9924
  street?: string | null | undefined;
10286
9925
  zipCode?: string | null | undefined;
10287
9926
  } | {
10288
- firstname?: string | null | undefined;
10289
- surname?: string | null | undefined;
9927
+ firstname: string;
9928
+ surname: string;
10290
9929
  middlename?: string | null | undefined;
10291
9930
  } | {
10292
9931
  country: string;
@@ -10330,8 +9969,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10330
9969
  street?: string | null | undefined;
10331
9970
  zipCode?: string | null | undefined;
10332
9971
  } | {
10333
- firstname?: string | null | undefined;
10334
- surname?: string | null | undefined;
9972
+ firstname: string;
9973
+ surname: string;
10335
9974
  middlename?: string | null | undefined;
10336
9975
  } | {
10337
9976
  country: string;
@@ -10359,10 +9998,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10359
9998
  start: string;
10360
9999
  end: string;
10361
10000
  } | null | undefined> | undefined;
10362
- actionDetails?: {
10363
- templateId?: string | undefined;
10364
- isImmediateCorrection?: boolean | undefined;
10365
- } | undefined;
10366
10001
  originalActionId?: string | undefined;
10367
10002
  keepAssignment?: boolean | undefined;
10368
10003
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -10491,16 +10126,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10491
10126
  addressLine3?: string | null | undefined;
10492
10127
  postcodeOrZip?: string | null | undefined;
10493
10128
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10494
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10495
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10129
+ firstname: z.ZodString;
10130
+ surname: z.ZodString;
10496
10131
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10497
10132
  }, "strip", z.ZodTypeAny, {
10498
- firstname?: string | null | undefined;
10499
- surname?: string | null | undefined;
10133
+ firstname: string;
10134
+ surname: string;
10500
10135
  middlename?: string | null | undefined;
10501
10136
  }, {
10502
- firstname?: string | null | undefined;
10503
- surname?: string | null | undefined;
10137
+ firstname: string;
10138
+ surname: string;
10504
10139
  middlename?: string | null | undefined;
10505
10140
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10506
10141
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -10626,28 +10261,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10626
10261
  addressLine3?: string | null | undefined;
10627
10262
  postcodeOrZip?: string | null | undefined;
10628
10263
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10629
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10630
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10264
+ firstname: z.ZodString;
10265
+ surname: z.ZodString;
10631
10266
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10632
10267
  }, "strip", z.ZodTypeAny, {
10633
- firstname?: string | null | undefined;
10634
- surname?: string | null | undefined;
10268
+ firstname: string;
10269
+ surname: string;
10635
10270
  middlename?: string | null | undefined;
10636
10271
  }, {
10637
- firstname?: string | null | undefined;
10638
- surname?: string | null | undefined;
10272
+ firstname: string;
10273
+ surname: string;
10639
10274
  middlename?: string | null | undefined;
10640
10275
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10641
- actionDetails: z.ZodOptional<z.ZodObject<{
10642
- templateId: z.ZodOptional<z.ZodString>;
10643
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
10644
- }, "strip", z.ZodTypeAny, {
10645
- templateId?: string | undefined;
10646
- isImmediateCorrection?: boolean | undefined;
10647
- }, {
10648
- templateId?: string | undefined;
10649
- isImmediateCorrection?: boolean | undefined;
10650
- }>>;
10651
10276
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
10652
10277
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
10653
10278
  }, {
@@ -10671,8 +10296,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10671
10296
  street?: string | null | undefined;
10672
10297
  zipCode?: string | null | undefined;
10673
10298
  } | {
10674
- firstname?: string | null | undefined;
10675
- surname?: string | null | undefined;
10299
+ firstname: string;
10300
+ surname: string;
10676
10301
  middlename?: string | null | undefined;
10677
10302
  } | {
10678
10303
  country: string;
@@ -10717,8 +10342,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10717
10342
  street?: string | null | undefined;
10718
10343
  zipCode?: string | null | undefined;
10719
10344
  } | {
10720
- firstname?: string | null | undefined;
10721
- surname?: string | null | undefined;
10345
+ firstname: string;
10346
+ surname: string;
10722
10347
  middlename?: string | null | undefined;
10723
10348
  } | {
10724
10349
  country: string;
@@ -10746,10 +10371,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10746
10371
  start: string;
10747
10372
  end: string;
10748
10373
  } | null | undefined> | undefined;
10749
- actionDetails?: {
10750
- templateId?: string | undefined;
10751
- isImmediateCorrection?: boolean | undefined;
10752
- } | undefined;
10753
10374
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
10754
10375
  keepAssignment?: boolean | undefined;
10755
10376
  }, {
@@ -10772,8 +10393,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10772
10393
  street?: string | null | undefined;
10773
10394
  zipCode?: string | null | undefined;
10774
10395
  } | {
10775
- firstname?: string | null | undefined;
10776
- surname?: string | null | undefined;
10396
+ firstname: string;
10397
+ surname: string;
10777
10398
  middlename?: string | null | undefined;
10778
10399
  } | {
10779
10400
  country: string;
@@ -10817,8 +10438,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10817
10438
  street?: string | null | undefined;
10818
10439
  zipCode?: string | null | undefined;
10819
10440
  } | {
10820
- firstname?: string | null | undefined;
10821
- surname?: string | null | undefined;
10441
+ firstname: string;
10442
+ surname: string;
10822
10443
  middlename?: string | null | undefined;
10823
10444
  } | {
10824
10445
  country: string;
@@ -10846,10 +10467,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10846
10467
  start: string;
10847
10468
  end: string;
10848
10469
  } | null | undefined> | undefined;
10849
- actionDetails?: {
10850
- templateId?: string | undefined;
10851
- isImmediateCorrection?: boolean | undefined;
10852
- } | undefined;
10853
10470
  originalActionId?: string | undefined;
10854
10471
  keepAssignment?: boolean | undefined;
10855
10472
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -10978,16 +10595,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10978
10595
  addressLine3?: string | null | undefined;
10979
10596
  postcodeOrZip?: string | null | undefined;
10980
10597
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10981
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10982
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10598
+ firstname: z.ZodString;
10599
+ surname: z.ZodString;
10983
10600
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10984
10601
  }, "strip", z.ZodTypeAny, {
10985
- firstname?: string | null | undefined;
10986
- surname?: string | null | undefined;
10602
+ firstname: string;
10603
+ surname: string;
10987
10604
  middlename?: string | null | undefined;
10988
10605
  }, {
10989
- firstname?: string | null | undefined;
10990
- surname?: string | null | undefined;
10606
+ firstname: string;
10607
+ surname: string;
10991
10608
  middlename?: string | null | undefined;
10992
10609
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10993
10610
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -11113,28 +10730,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11113
10730
  addressLine3?: string | null | undefined;
11114
10731
  postcodeOrZip?: string | null | undefined;
11115
10732
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11116
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11117
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10733
+ firstname: z.ZodString;
10734
+ surname: z.ZodString;
11118
10735
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11119
10736
  }, "strip", z.ZodTypeAny, {
11120
- firstname?: string | null | undefined;
11121
- surname?: string | null | undefined;
10737
+ firstname: string;
10738
+ surname: string;
11122
10739
  middlename?: string | null | undefined;
11123
10740
  }, {
11124
- firstname?: string | null | undefined;
11125
- surname?: string | null | undefined;
10741
+ firstname: string;
10742
+ surname: string;
11126
10743
  middlename?: string | null | undefined;
11127
10744
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11128
- actionDetails: z.ZodOptional<z.ZodObject<{
11129
- templateId: z.ZodOptional<z.ZodString>;
11130
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
11131
- }, "strip", z.ZodTypeAny, {
11132
- templateId?: string | undefined;
11133
- isImmediateCorrection?: boolean | undefined;
11134
- }, {
11135
- templateId?: string | undefined;
11136
- isImmediateCorrection?: boolean | undefined;
11137
- }>>;
11138
10745
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
11139
10746
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
11140
10747
  }, {
@@ -11172,8 +10779,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11172
10779
  street?: string | null | undefined;
11173
10780
  zipCode?: string | null | undefined;
11174
10781
  } | {
11175
- firstname?: string | null | undefined;
11176
- surname?: string | null | undefined;
10782
+ firstname: string;
10783
+ surname: string;
11177
10784
  middlename?: string | null | undefined;
11178
10785
  } | {
11179
10786
  country: string;
@@ -11218,8 +10825,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11218
10825
  street?: string | null | undefined;
11219
10826
  zipCode?: string | null | undefined;
11220
10827
  } | {
11221
- firstname?: string | null | undefined;
11222
- surname?: string | null | undefined;
10828
+ firstname: string;
10829
+ surname: string;
11223
10830
  middlename?: string | null | undefined;
11224
10831
  } | {
11225
10832
  country: string;
@@ -11247,10 +10854,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11247
10854
  start: string;
11248
10855
  end: string;
11249
10856
  } | null | undefined> | undefined;
11250
- actionDetails?: {
11251
- templateId?: string | undefined;
11252
- isImmediateCorrection?: boolean | undefined;
11253
- } | undefined;
11254
10857
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
11255
10858
  keepAssignment?: boolean | undefined;
11256
10859
  }, {
@@ -11277,8 +10880,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11277
10880
  street?: string | null | undefined;
11278
10881
  zipCode?: string | null | undefined;
11279
10882
  } | {
11280
- firstname?: string | null | undefined;
11281
- surname?: string | null | undefined;
10883
+ firstname: string;
10884
+ surname: string;
11282
10885
  middlename?: string | null | undefined;
11283
10886
  } | {
11284
10887
  country: string;
@@ -11322,8 +10925,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11322
10925
  street?: string | null | undefined;
11323
10926
  zipCode?: string | null | undefined;
11324
10927
  } | {
11325
- firstname?: string | null | undefined;
11326
- surname?: string | null | undefined;
10928
+ firstname: string;
10929
+ surname: string;
11327
10930
  middlename?: string | null | undefined;
11328
10931
  } | {
11329
10932
  country: string;
@@ -11351,10 +10954,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11351
10954
  start: string;
11352
10955
  end: string;
11353
10956
  } | null | undefined> | undefined;
11354
- actionDetails?: {
11355
- templateId?: string | undefined;
11356
- isImmediateCorrection?: boolean | undefined;
11357
- } | undefined;
11358
10957
  originalActionId?: string | undefined;
11359
10958
  keepAssignment?: boolean | undefined;
11360
10959
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -11483,16 +11082,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11483
11082
  addressLine3?: string | null | undefined;
11484
11083
  postcodeOrZip?: string | null | undefined;
11485
11084
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11486
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11487
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11085
+ firstname: z.ZodString;
11086
+ surname: z.ZodString;
11488
11087
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11489
11088
  }, "strip", z.ZodTypeAny, {
11490
- firstname?: string | null | undefined;
11491
- surname?: string | null | undefined;
11089
+ firstname: string;
11090
+ surname: string;
11492
11091
  middlename?: string | null | undefined;
11493
11092
  }, {
11494
- firstname?: string | null | undefined;
11495
- surname?: string | null | undefined;
11093
+ firstname: string;
11094
+ surname: string;
11496
11095
  middlename?: string | null | undefined;
11497
11096
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11498
11097
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -11618,28 +11217,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11618
11217
  addressLine3?: string | null | undefined;
11619
11218
  postcodeOrZip?: string | null | undefined;
11620
11219
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11621
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11622
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11220
+ firstname: z.ZodString;
11221
+ surname: z.ZodString;
11623
11222
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11624
11223
  }, "strip", z.ZodTypeAny, {
11625
- firstname?: string | null | undefined;
11626
- surname?: string | null | undefined;
11224
+ firstname: string;
11225
+ surname: string;
11627
11226
  middlename?: string | null | undefined;
11628
11227
  }, {
11629
- firstname?: string | null | undefined;
11630
- surname?: string | null | undefined;
11228
+ firstname: string;
11229
+ surname: string;
11631
11230
  middlename?: string | null | undefined;
11632
11231
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11633
- actionDetails: z.ZodOptional<z.ZodObject<{
11634
- templateId: z.ZodOptional<z.ZodString>;
11635
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
11636
- }, "strip", z.ZodTypeAny, {
11637
- templateId?: string | undefined;
11638
- isImmediateCorrection?: boolean | undefined;
11639
- }, {
11640
- templateId?: string | undefined;
11641
- isImmediateCorrection?: boolean | undefined;
11642
- }>>;
11643
11232
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
11644
11233
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
11645
11234
  }, {
@@ -11664,8 +11253,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11664
11253
  street?: string | null | undefined;
11665
11254
  zipCode?: string | null | undefined;
11666
11255
  } | {
11667
- firstname?: string | null | undefined;
11668
- surname?: string | null | undefined;
11256
+ firstname: string;
11257
+ surname: string;
11669
11258
  middlename?: string | null | undefined;
11670
11259
  } | {
11671
11260
  country: string;
@@ -11711,8 +11300,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11711
11300
  street?: string | null | undefined;
11712
11301
  zipCode?: string | null | undefined;
11713
11302
  } | {
11714
- firstname?: string | null | undefined;
11715
- surname?: string | null | undefined;
11303
+ firstname: string;
11304
+ surname: string;
11716
11305
  middlename?: string | null | undefined;
11717
11306
  } | {
11718
11307
  country: string;
@@ -11740,10 +11329,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11740
11329
  start: string;
11741
11330
  end: string;
11742
11331
  } | null | undefined> | undefined;
11743
- actionDetails?: {
11744
- templateId?: string | undefined;
11745
- isImmediateCorrection?: boolean | undefined;
11746
- } | undefined;
11747
11332
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
11748
11333
  keepAssignment?: boolean | undefined;
11749
11334
  }, {
@@ -11767,8 +11352,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11767
11352
  street?: string | null | undefined;
11768
11353
  zipCode?: string | null | undefined;
11769
11354
  } | {
11770
- firstname?: string | null | undefined;
11771
- surname?: string | null | undefined;
11355
+ firstname: string;
11356
+ surname: string;
11772
11357
  middlename?: string | null | undefined;
11773
11358
  } | {
11774
11359
  country: string;
@@ -11812,8 +11397,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11812
11397
  street?: string | null | undefined;
11813
11398
  zipCode?: string | null | undefined;
11814
11399
  } | {
11815
- firstname?: string | null | undefined;
11816
- surname?: string | null | undefined;
11400
+ firstname: string;
11401
+ surname: string;
11817
11402
  middlename?: string | null | undefined;
11818
11403
  } | {
11819
11404
  country: string;
@@ -11841,10 +11426,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11841
11426
  start: string;
11842
11427
  end: string;
11843
11428
  } | null | undefined> | undefined;
11844
- actionDetails?: {
11845
- templateId?: string | undefined;
11846
- isImmediateCorrection?: boolean | undefined;
11847
- } | undefined;
11848
11429
  originalActionId?: string | undefined;
11849
11430
  keepAssignment?: boolean | undefined;
11850
11431
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -11973,16 +11554,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11973
11554
  addressLine3?: string | null | undefined;
11974
11555
  postcodeOrZip?: string | null | undefined;
11975
11556
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11976
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11977
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11557
+ firstname: z.ZodString;
11558
+ surname: z.ZodString;
11978
11559
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11979
11560
  }, "strip", z.ZodTypeAny, {
11980
- firstname?: string | null | undefined;
11981
- surname?: string | null | undefined;
11561
+ firstname: string;
11562
+ surname: string;
11982
11563
  middlename?: string | null | undefined;
11983
11564
  }, {
11984
- firstname?: string | null | undefined;
11985
- surname?: string | null | undefined;
11565
+ firstname: string;
11566
+ surname: string;
11986
11567
  middlename?: string | null | undefined;
11987
11568
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11988
11569
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -12108,28 +11689,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12108
11689
  addressLine3?: string | null | undefined;
12109
11690
  postcodeOrZip?: string | null | undefined;
12110
11691
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12111
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12112
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11692
+ firstname: z.ZodString;
11693
+ surname: z.ZodString;
12113
11694
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12114
11695
  }, "strip", z.ZodTypeAny, {
12115
- firstname?: string | null | undefined;
12116
- surname?: string | null | undefined;
11696
+ firstname: string;
11697
+ surname: string;
12117
11698
  middlename?: string | null | undefined;
12118
11699
  }, {
12119
- firstname?: string | null | undefined;
12120
- surname?: string | null | undefined;
11700
+ firstname: string;
11701
+ surname: string;
12121
11702
  middlename?: string | null | undefined;
12122
11703
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12123
- actionDetails: z.ZodOptional<z.ZodObject<{
12124
- templateId: z.ZodOptional<z.ZodString>;
12125
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
12126
- }, "strip", z.ZodTypeAny, {
12127
- templateId?: string | undefined;
12128
- isImmediateCorrection?: boolean | undefined;
12129
- }, {
12130
- templateId?: string | undefined;
12131
- isImmediateCorrection?: boolean | undefined;
12132
- }>>;
12133
11704
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
12134
11705
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
12135
11706
  }, {
@@ -12154,8 +11725,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12154
11725
  street?: string | null | undefined;
12155
11726
  zipCode?: string | null | undefined;
12156
11727
  } | {
12157
- firstname?: string | null | undefined;
12158
- surname?: string | null | undefined;
11728
+ firstname: string;
11729
+ surname: string;
12159
11730
  middlename?: string | null | undefined;
12160
11731
  } | {
12161
11732
  country: string;
@@ -12201,8 +11772,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12201
11772
  street?: string | null | undefined;
12202
11773
  zipCode?: string | null | undefined;
12203
11774
  } | {
12204
- firstname?: string | null | undefined;
12205
- surname?: string | null | undefined;
11775
+ firstname: string;
11776
+ surname: string;
12206
11777
  middlename?: string | null | undefined;
12207
11778
  } | {
12208
11779
  country: string;
@@ -12230,10 +11801,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12230
11801
  start: string;
12231
11802
  end: string;
12232
11803
  } | null | undefined> | undefined;
12233
- actionDetails?: {
12234
- templateId?: string | undefined;
12235
- isImmediateCorrection?: boolean | undefined;
12236
- } | undefined;
12237
11804
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
12238
11805
  keepAssignment?: boolean | undefined;
12239
11806
  }, {
@@ -12256,8 +11823,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12256
11823
  street?: string | null | undefined;
12257
11824
  zipCode?: string | null | undefined;
12258
11825
  } | {
12259
- firstname?: string | null | undefined;
12260
- surname?: string | null | undefined;
11826
+ firstname: string;
11827
+ surname: string;
12261
11828
  middlename?: string | null | undefined;
12262
11829
  } | {
12263
11830
  country: string;
@@ -12301,8 +11868,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12301
11868
  street?: string | null | undefined;
12302
11869
  zipCode?: string | null | undefined;
12303
11870
  } | {
12304
- firstname?: string | null | undefined;
12305
- surname?: string | null | undefined;
11871
+ firstname: string;
11872
+ surname: string;
12306
11873
  middlename?: string | null | undefined;
12307
11874
  } | {
12308
11875
  country: string;
@@ -12330,10 +11897,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12330
11897
  start: string;
12331
11898
  end: string;
12332
11899
  } | null | undefined> | undefined;
12333
- actionDetails?: {
12334
- templateId?: string | undefined;
12335
- isImmediateCorrection?: boolean | undefined;
12336
- } | undefined;
12337
11900
  originalActionId?: string | undefined;
12338
11901
  assignedTo?: null | undefined;
12339
11902
  keepAssignment?: boolean | undefined;
@@ -12463,16 +12026,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12463
12026
  addressLine3?: string | null | undefined;
12464
12027
  postcodeOrZip?: string | null | undefined;
12465
12028
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12466
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12467
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12029
+ firstname: z.ZodString;
12030
+ surname: z.ZodString;
12468
12031
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12469
12032
  }, "strip", z.ZodTypeAny, {
12470
- firstname?: string | null | undefined;
12471
- surname?: string | null | undefined;
12033
+ firstname: string;
12034
+ surname: string;
12472
12035
  middlename?: string | null | undefined;
12473
12036
  }, {
12474
- firstname?: string | null | undefined;
12475
- surname?: string | null | undefined;
12037
+ firstname: string;
12038
+ surname: string;
12476
12039
  middlename?: string | null | undefined;
12477
12040
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12478
12041
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -12598,32 +12161,29 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12598
12161
  addressLine3?: string | null | undefined;
12599
12162
  postcodeOrZip?: string | null | undefined;
12600
12163
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12601
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12602
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12164
+ firstname: z.ZodString;
12165
+ surname: z.ZodString;
12603
12166
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12604
12167
  }, "strip", z.ZodTypeAny, {
12605
- firstname?: string | null | undefined;
12606
- surname?: string | null | undefined;
12168
+ firstname: string;
12169
+ surname: string;
12607
12170
  middlename?: string | null | undefined;
12608
12171
  }, {
12609
- firstname?: string | null | undefined;
12610
- surname?: string | null | undefined;
12172
+ firstname: string;
12173
+ surname: string;
12611
12174
  middlename?: string | null | undefined;
12612
12175
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12613
- actionDetails: z.ZodOptional<z.ZodObject<{
12176
+ originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
12177
+ keepAssignment: z.ZodOptional<z.ZodBoolean>;
12178
+ }, {
12179
+ type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
12180
+ content: z.ZodOptional<z.ZodObject<{
12614
12181
  templateId: z.ZodOptional<z.ZodString>;
12615
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
12616
12182
  }, "strip", z.ZodTypeAny, {
12617
12183
  templateId?: string | undefined;
12618
- isImmediateCorrection?: boolean | undefined;
12619
12184
  }, {
12620
12185
  templateId?: string | undefined;
12621
- isImmediateCorrection?: boolean | undefined;
12622
12186
  }>>;
12623
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
12624
- keepAssignment: z.ZodOptional<z.ZodBoolean>;
12625
- }, {
12626
- type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
12627
12187
  }>, "strip", z.ZodTypeAny, {
12628
12188
  type: "PRINT_CERTIFICATE";
12629
12189
  transactionId: string;
@@ -12643,8 +12203,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12643
12203
  street?: string | null | undefined;
12644
12204
  zipCode?: string | null | undefined;
12645
12205
  } | {
12646
- firstname?: string | null | undefined;
12647
- surname?: string | null | undefined;
12206
+ firstname: string;
12207
+ surname: string;
12648
12208
  middlename?: string | null | undefined;
12649
12209
  } | {
12650
12210
  country: string;
@@ -12673,6 +12233,9 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12673
12233
  end: string;
12674
12234
  } | null | undefined>;
12675
12235
  eventId: string & z.BRAND<"UUID">;
12236
+ content?: {
12237
+ templateId?: string | undefined;
12238
+ } | undefined;
12676
12239
  annotation?: Record<string, string | number | boolean | {
12677
12240
  type: string;
12678
12241
  path: string;
@@ -12689,8 +12252,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12689
12252
  street?: string | null | undefined;
12690
12253
  zipCode?: string | null | undefined;
12691
12254
  } | {
12692
- firstname?: string | null | undefined;
12693
- surname?: string | null | undefined;
12255
+ firstname: string;
12256
+ surname: string;
12694
12257
  middlename?: string | null | undefined;
12695
12258
  } | {
12696
12259
  country: string;
@@ -12718,16 +12281,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12718
12281
  start: string;
12719
12282
  end: string;
12720
12283
  } | null | undefined> | undefined;
12721
- actionDetails?: {
12722
- templateId?: string | undefined;
12723
- isImmediateCorrection?: boolean | undefined;
12724
- } | undefined;
12725
12284
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
12726
12285
  keepAssignment?: boolean | undefined;
12727
12286
  }, {
12728
12287
  transactionId: string;
12729
12288
  eventId: string;
12730
12289
  type?: "PRINT_CERTIFICATE" | undefined;
12290
+ content?: {
12291
+ templateId?: string | undefined;
12292
+ } | undefined;
12731
12293
  declaration?: Record<string, string | number | boolean | {
12732
12294
  type: string;
12733
12295
  path: string;
@@ -12744,8 +12306,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12744
12306
  street?: string | null | undefined;
12745
12307
  zipCode?: string | null | undefined;
12746
12308
  } | {
12747
- firstname?: string | null | undefined;
12748
- surname?: string | null | undefined;
12309
+ firstname: string;
12310
+ surname: string;
12749
12311
  middlename?: string | null | undefined;
12750
12312
  } | {
12751
12313
  country: string;
@@ -12789,8 +12351,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12789
12351
  street?: string | null | undefined;
12790
12352
  zipCode?: string | null | undefined;
12791
12353
  } | {
12792
- firstname?: string | null | undefined;
12793
- surname?: string | null | undefined;
12354
+ firstname: string;
12355
+ surname: string;
12794
12356
  middlename?: string | null | undefined;
12795
12357
  } | {
12796
12358
  country: string;
@@ -12818,10 +12380,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12818
12380
  start: string;
12819
12381
  end: string;
12820
12382
  } | null | undefined> | undefined;
12821
- actionDetails?: {
12822
- templateId?: string | undefined;
12823
- isImmediateCorrection?: boolean | undefined;
12824
- } | undefined;
12825
12383
  originalActionId?: string | undefined;
12826
12384
  keepAssignment?: boolean | undefined;
12827
12385
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -12950,16 +12508,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12950
12508
  addressLine3?: string | null | undefined;
12951
12509
  postcodeOrZip?: string | null | undefined;
12952
12510
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12953
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12954
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12511
+ firstname: z.ZodString;
12512
+ surname: z.ZodString;
12955
12513
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12956
12514
  }, "strip", z.ZodTypeAny, {
12957
- firstname?: string | null | undefined;
12958
- surname?: string | null | undefined;
12515
+ firstname: string;
12516
+ surname: string;
12959
12517
  middlename?: string | null | undefined;
12960
12518
  }, {
12961
- firstname?: string | null | undefined;
12962
- surname?: string | null | undefined;
12519
+ firstname: string;
12520
+ surname: string;
12963
12521
  middlename?: string | null | undefined;
12964
12522
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12965
12523
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -13085,28 +12643,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13085
12643
  addressLine3?: string | null | undefined;
13086
12644
  postcodeOrZip?: string | null | undefined;
13087
12645
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13088
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13089
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12646
+ firstname: z.ZodString;
12647
+ surname: z.ZodString;
13090
12648
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13091
12649
  }, "strip", z.ZodTypeAny, {
13092
- firstname?: string | null | undefined;
13093
- surname?: string | null | undefined;
12650
+ firstname: string;
12651
+ surname: string;
13094
12652
  middlename?: string | null | undefined;
13095
12653
  }, {
13096
- firstname?: string | null | undefined;
13097
- surname?: string | null | undefined;
12654
+ firstname: string;
12655
+ surname: string;
13098
12656
  middlename?: string | null | undefined;
13099
12657
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
13100
- actionDetails: z.ZodOptional<z.ZodObject<{
13101
- templateId: z.ZodOptional<z.ZodString>;
13102
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
13103
- }, "strip", z.ZodTypeAny, {
13104
- templateId?: string | undefined;
13105
- isImmediateCorrection?: boolean | undefined;
13106
- }, {
13107
- templateId?: string | undefined;
13108
- isImmediateCorrection?: boolean | undefined;
13109
- }>>;
13110
12658
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
13111
12659
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
13112
12660
  }, {
@@ -13130,8 +12678,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13130
12678
  street?: string | null | undefined;
13131
12679
  zipCode?: string | null | undefined;
13132
12680
  } | {
13133
- firstname?: string | null | undefined;
13134
- surname?: string | null | undefined;
12681
+ firstname: string;
12682
+ surname: string;
13135
12683
  middlename?: string | null | undefined;
13136
12684
  } | {
13137
12685
  country: string;
@@ -13176,8 +12724,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13176
12724
  street?: string | null | undefined;
13177
12725
  zipCode?: string | null | undefined;
13178
12726
  } | {
13179
- firstname?: string | null | undefined;
13180
- surname?: string | null | undefined;
12727
+ firstname: string;
12728
+ surname: string;
13181
12729
  middlename?: string | null | undefined;
13182
12730
  } | {
13183
12731
  country: string;
@@ -13205,10 +12753,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13205
12753
  start: string;
13206
12754
  end: string;
13207
12755
  } | null | undefined> | undefined;
13208
- actionDetails?: {
13209
- templateId?: string | undefined;
13210
- isImmediateCorrection?: boolean | undefined;
13211
- } | undefined;
13212
12756
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
13213
12757
  keepAssignment?: boolean | undefined;
13214
12758
  }, {
@@ -13231,8 +12775,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13231
12775
  street?: string | null | undefined;
13232
12776
  zipCode?: string | null | undefined;
13233
12777
  } | {
13234
- firstname?: string | null | undefined;
13235
- surname?: string | null | undefined;
12778
+ firstname: string;
12779
+ surname: string;
13236
12780
  middlename?: string | null | undefined;
13237
12781
  } | {
13238
12782
  country: string;
@@ -13276,8 +12820,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13276
12820
  street?: string | null | undefined;
13277
12821
  zipCode?: string | null | undefined;
13278
12822
  } | {
13279
- firstname?: string | null | undefined;
13280
- surname?: string | null | undefined;
12823
+ firstname: string;
12824
+ surname: string;
13281
12825
  middlename?: string | null | undefined;
13282
12826
  } | {
13283
12827
  country: string;
@@ -13305,10 +12849,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13305
12849
  start: string;
13306
12850
  end: string;
13307
12851
  } | null | undefined> | undefined;
13308
- actionDetails?: {
13309
- templateId?: string | undefined;
13310
- isImmediateCorrection?: boolean | undefined;
13311
- } | undefined;
13312
12852
  originalActionId?: string | undefined;
13313
12853
  keepAssignment?: boolean | undefined;
13314
12854
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -13437,16 +12977,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13437
12977
  addressLine3?: string | null | undefined;
13438
12978
  postcodeOrZip?: string | null | undefined;
13439
12979
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13440
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13441
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12980
+ firstname: z.ZodString;
12981
+ surname: z.ZodString;
13442
12982
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13443
12983
  }, "strip", z.ZodTypeAny, {
13444
- firstname?: string | null | undefined;
13445
- surname?: string | null | undefined;
12984
+ firstname: string;
12985
+ surname: string;
13446
12986
  middlename?: string | null | undefined;
13447
12987
  }, {
13448
- firstname?: string | null | undefined;
13449
- surname?: string | null | undefined;
12988
+ firstname: string;
12989
+ surname: string;
13450
12990
  middlename?: string | null | undefined;
13451
12991
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
13452
12992
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -13572,28 +13112,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13572
13112
  addressLine3?: string | null | undefined;
13573
13113
  postcodeOrZip?: string | null | undefined;
13574
13114
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13575
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13576
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13115
+ firstname: z.ZodString;
13116
+ surname: z.ZodString;
13577
13117
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13578
13118
  }, "strip", z.ZodTypeAny, {
13579
- firstname?: string | null | undefined;
13580
- surname?: string | null | undefined;
13119
+ firstname: string;
13120
+ surname: string;
13581
13121
  middlename?: string | null | undefined;
13582
13122
  }, {
13583
- firstname?: string | null | undefined;
13584
- surname?: string | null | undefined;
13123
+ firstname: string;
13124
+ surname: string;
13585
13125
  middlename?: string | null | undefined;
13586
13126
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
13587
- actionDetails: z.ZodOptional<z.ZodObject<{
13588
- templateId: z.ZodOptional<z.ZodString>;
13589
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
13590
- }, "strip", z.ZodTypeAny, {
13591
- templateId?: string | undefined;
13592
- isImmediateCorrection?: boolean | undefined;
13593
- }, {
13594
- templateId?: string | undefined;
13595
- isImmediateCorrection?: boolean | undefined;
13596
- }>>;
13597
13127
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
13598
13128
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
13599
13129
  }, {
@@ -13632,8 +13162,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13632
13162
  street?: string | null | undefined;
13633
13163
  zipCode?: string | null | undefined;
13634
13164
  } | {
13635
- firstname?: string | null | undefined;
13636
- surname?: string | null | undefined;
13165
+ firstname: string;
13166
+ surname: string;
13637
13167
  middlename?: string | null | undefined;
13638
13168
  } | {
13639
13169
  country: string;
@@ -13679,8 +13209,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13679
13209
  street?: string | null | undefined;
13680
13210
  zipCode?: string | null | undefined;
13681
13211
  } | {
13682
- firstname?: string | null | undefined;
13683
- surname?: string | null | undefined;
13212
+ firstname: string;
13213
+ surname: string;
13684
13214
  middlename?: string | null | undefined;
13685
13215
  } | {
13686
13216
  country: string;
@@ -13708,10 +13238,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13708
13238
  start: string;
13709
13239
  end: string;
13710
13240
  } | null | undefined> | undefined;
13711
- actionDetails?: {
13712
- templateId?: string | undefined;
13713
- isImmediateCorrection?: boolean | undefined;
13714
- } | undefined;
13715
13241
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
13716
13242
  keepAssignment?: boolean | undefined;
13717
13243
  }, {
@@ -13739,8 +13265,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13739
13265
  street?: string | null | undefined;
13740
13266
  zipCode?: string | null | undefined;
13741
13267
  } | {
13742
- firstname?: string | null | undefined;
13743
- surname?: string | null | undefined;
13268
+ firstname: string;
13269
+ surname: string;
13744
13270
  middlename?: string | null | undefined;
13745
13271
  } | {
13746
13272
  country: string;
@@ -13784,8 +13310,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13784
13310
  street?: string | null | undefined;
13785
13311
  zipCode?: string | null | undefined;
13786
13312
  } | {
13787
- firstname?: string | null | undefined;
13788
- surname?: string | null | undefined;
13313
+ firstname: string;
13314
+ surname: string;
13789
13315
  middlename?: string | null | undefined;
13790
13316
  } | {
13791
13317
  country: string;
@@ -13813,10 +13339,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13813
13339
  start: string;
13814
13340
  end: string;
13815
13341
  } | null | undefined> | undefined;
13816
- actionDetails?: {
13817
- templateId?: string | undefined;
13818
- isImmediateCorrection?: boolean | undefined;
13819
- } | undefined;
13820
13342
  originalActionId?: string | undefined;
13821
13343
  keepAssignment?: boolean | undefined;
13822
13344
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -13945,16 +13467,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13945
13467
  addressLine3?: string | null | undefined;
13946
13468
  postcodeOrZip?: string | null | undefined;
13947
13469
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13948
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13949
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13470
+ firstname: z.ZodString;
13471
+ surname: z.ZodString;
13950
13472
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13951
13473
  }, "strip", z.ZodTypeAny, {
13952
- firstname?: string | null | undefined;
13953
- surname?: string | null | undefined;
13474
+ firstname: string;
13475
+ surname: string;
13954
13476
  middlename?: string | null | undefined;
13955
13477
  }, {
13956
- firstname?: string | null | undefined;
13957
- surname?: string | null | undefined;
13478
+ firstname: string;
13479
+ surname: string;
13958
13480
  middlename?: string | null | undefined;
13959
13481
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
13960
13482
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -14080,28 +13602,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14080
13602
  addressLine3?: string | null | undefined;
14081
13603
  postcodeOrZip?: string | null | undefined;
14082
13604
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
14083
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14084
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13605
+ firstname: z.ZodString;
13606
+ surname: z.ZodString;
14085
13607
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14086
13608
  }, "strip", z.ZodTypeAny, {
14087
- firstname?: string | null | undefined;
14088
- surname?: string | null | undefined;
13609
+ firstname: string;
13610
+ surname: string;
14089
13611
  middlename?: string | null | undefined;
14090
13612
  }, {
14091
- firstname?: string | null | undefined;
14092
- surname?: string | null | undefined;
13613
+ firstname: string;
13614
+ surname: string;
14093
13615
  middlename?: string | null | undefined;
14094
13616
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
14095
- actionDetails: z.ZodOptional<z.ZodObject<{
14096
- templateId: z.ZodOptional<z.ZodString>;
14097
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
14098
- }, "strip", z.ZodTypeAny, {
14099
- templateId?: string | undefined;
14100
- isImmediateCorrection?: boolean | undefined;
14101
- }, {
14102
- templateId?: string | undefined;
14103
- isImmediateCorrection?: boolean | undefined;
14104
- }>>;
14105
13617
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
14106
13618
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
14107
13619
  }, {
@@ -14126,8 +13638,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14126
13638
  street?: string | null | undefined;
14127
13639
  zipCode?: string | null | undefined;
14128
13640
  } | {
14129
- firstname?: string | null | undefined;
14130
- surname?: string | null | undefined;
13641
+ firstname: string;
13642
+ surname: string;
14131
13643
  middlename?: string | null | undefined;
14132
13644
  } | {
14133
13645
  country: string;
@@ -14173,8 +13685,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14173
13685
  street?: string | null | undefined;
14174
13686
  zipCode?: string | null | undefined;
14175
13687
  } | {
14176
- firstname?: string | null | undefined;
14177
- surname?: string | null | undefined;
13688
+ firstname: string;
13689
+ surname: string;
14178
13690
  middlename?: string | null | undefined;
14179
13691
  } | {
14180
13692
  country: string;
@@ -14202,10 +13714,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14202
13714
  start: string;
14203
13715
  end: string;
14204
13716
  } | null | undefined> | undefined;
14205
- actionDetails?: {
14206
- templateId?: string | undefined;
14207
- isImmediateCorrection?: boolean | undefined;
14208
- } | undefined;
14209
13717
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
14210
13718
  keepAssignment?: boolean | undefined;
14211
13719
  }, {
@@ -14229,8 +13737,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14229
13737
  street?: string | null | undefined;
14230
13738
  zipCode?: string | null | undefined;
14231
13739
  } | {
14232
- firstname?: string | null | undefined;
14233
- surname?: string | null | undefined;
13740
+ firstname: string;
13741
+ surname: string;
14234
13742
  middlename?: string | null | undefined;
14235
13743
  } | {
14236
13744
  country: string;
@@ -14274,8 +13782,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14274
13782
  street?: string | null | undefined;
14275
13783
  zipCode?: string | null | undefined;
14276
13784
  } | {
14277
- firstname?: string | null | undefined;
14278
- surname?: string | null | undefined;
13785
+ firstname: string;
13786
+ surname: string;
14279
13787
  middlename?: string | null | undefined;
14280
13788
  } | {
14281
13789
  country: string;
@@ -14303,10 +13811,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14303
13811
  start: string;
14304
13812
  end: string;
14305
13813
  } | null | undefined> | undefined;
14306
- actionDetails?: {
14307
- templateId?: string | undefined;
14308
- isImmediateCorrection?: boolean | undefined;
14309
- } | undefined;
14310
13814
  originalActionId?: string | undefined;
14311
13815
  keepAssignment?: boolean | undefined;
14312
13816
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -14435,16 +13939,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14435
13939
  addressLine3?: string | null | undefined;
14436
13940
  postcodeOrZip?: string | null | undefined;
14437
13941
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
14438
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14439
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13942
+ firstname: z.ZodString;
13943
+ surname: z.ZodString;
14440
13944
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14441
13945
  }, "strip", z.ZodTypeAny, {
14442
- firstname?: string | null | undefined;
14443
- surname?: string | null | undefined;
13946
+ firstname: string;
13947
+ surname: string;
14444
13948
  middlename?: string | null | undefined;
14445
13949
  }, {
14446
- firstname?: string | null | undefined;
14447
- surname?: string | null | undefined;
13950
+ firstname: string;
13951
+ surname: string;
14448
13952
  middlename?: string | null | undefined;
14449
13953
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
14450
13954
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -14570,28 +14074,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14570
14074
  addressLine3?: string | null | undefined;
14571
14075
  postcodeOrZip?: string | null | undefined;
14572
14076
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
14573
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14574
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14077
+ firstname: z.ZodString;
14078
+ surname: z.ZodString;
14575
14079
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14576
14080
  }, "strip", z.ZodTypeAny, {
14577
- firstname?: string | null | undefined;
14578
- surname?: string | null | undefined;
14081
+ firstname: string;
14082
+ surname: string;
14579
14083
  middlename?: string | null | undefined;
14580
14084
  }, {
14581
- firstname?: string | null | undefined;
14582
- surname?: string | null | undefined;
14085
+ firstname: string;
14086
+ surname: string;
14583
14087
  middlename?: string | null | undefined;
14584
14088
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
14585
- actionDetails: z.ZodOptional<z.ZodObject<{
14586
- templateId: z.ZodOptional<z.ZodString>;
14587
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
14588
- }, "strip", z.ZodTypeAny, {
14589
- templateId?: string | undefined;
14590
- isImmediateCorrection?: boolean | undefined;
14591
- }, {
14592
- templateId?: string | undefined;
14593
- isImmediateCorrection?: boolean | undefined;
14594
- }>>;
14595
14089
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
14596
14090
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
14597
14091
  }, {
@@ -14615,8 +14109,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14615
14109
  street?: string | null | undefined;
14616
14110
  zipCode?: string | null | undefined;
14617
14111
  } | {
14618
- firstname?: string | null | undefined;
14619
- surname?: string | null | undefined;
14112
+ firstname: string;
14113
+ surname: string;
14620
14114
  middlename?: string | null | undefined;
14621
14115
  } | {
14622
14116
  country: string;
@@ -14661,8 +14155,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14661
14155
  street?: string | null | undefined;
14662
14156
  zipCode?: string | null | undefined;
14663
14157
  } | {
14664
- firstname?: string | null | undefined;
14665
- surname?: string | null | undefined;
14158
+ firstname: string;
14159
+ surname: string;
14666
14160
  middlename?: string | null | undefined;
14667
14161
  } | {
14668
14162
  country: string;
@@ -14690,10 +14184,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14690
14184
  start: string;
14691
14185
  end: string;
14692
14186
  } | null | undefined> | undefined;
14693
- actionDetails?: {
14694
- templateId?: string | undefined;
14695
- isImmediateCorrection?: boolean | undefined;
14696
- } | undefined;
14697
14187
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
14698
14188
  keepAssignment?: boolean | undefined;
14699
14189
  }, {
@@ -14716,8 +14206,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14716
14206
  street?: string | null | undefined;
14717
14207
  zipCode?: string | null | undefined;
14718
14208
  } | {
14719
- firstname?: string | null | undefined;
14720
- surname?: string | null | undefined;
14209
+ firstname: string;
14210
+ surname: string;
14721
14211
  middlename?: string | null | undefined;
14722
14212
  } | {
14723
14213
  country: string;
@@ -14761,8 +14251,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14761
14251
  street?: string | null | undefined;
14762
14252
  zipCode?: string | null | undefined;
14763
14253
  } | {
14764
- firstname?: string | null | undefined;
14765
- surname?: string | null | undefined;
14254
+ firstname: string;
14255
+ surname: string;
14766
14256
  middlename?: string | null | undefined;
14767
14257
  } | {
14768
14258
  country: string;
@@ -14790,10 +14280,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14790
14280
  start: string;
14791
14281
  end: string;
14792
14282
  } | null | undefined> | undefined;
14793
- actionDetails?: {
14794
- templateId?: string | undefined;
14795
- isImmediateCorrection?: boolean | undefined;
14796
- } | undefined;
14797
14283
  originalActionId?: string | undefined;
14798
14284
  keepAssignment?: boolean | undefined;
14799
14285
  }>]>;