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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/dist/commons/api/router.d.ts +433 -796
  2. package/dist/commons/conditionals/validate.d.ts +11 -2
  3. package/dist/commons/events/ActionConfig.d.ts +2004 -366
  4. package/dist/commons/events/ActionDocument.d.ts +1302 -1389
  5. package/dist/commons/events/ActionInput.d.ts +658 -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 +475 -846
  12. package/dist/commons/events/EventIndex.d.ts +184 -62
  13. package/dist/commons/events/EventMetadata.d.ts +9 -9
  14. package/dist/commons/events/FieldConfig.d.ts +254 -43
  15. package/dist/commons/events/FieldTypeMapping.d.ts +16 -16
  16. package/dist/commons/events/FieldValue.d.ts +12 -12
  17. package/dist/commons/events/FormConfig.d.ts +1032 -246
  18. package/dist/commons/events/PageConfig.d.ts +264 -46
  19. package/dist/commons/events/WorkqueueConfig.d.ts +288 -164
  20. package/dist/commons/events/defineConfig.d.ts +129 -30
  21. package/dist/commons/events/event.d.ts +68 -6
  22. package/dist/commons/events/field.d.ts +14 -0
  23. package/dist/commons/events/test.utils.d.ts +17 -13
  24. package/dist/commons/events/utils.d.ts +236 -64
  25. package/dist/conditionals/index.js +3 -2
  26. package/dist/events/index.js +265 -102
  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,35 +5967,39 @@ 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
  }, {
6198
5985
  requestId: z.ZodString;
6199
5986
  type: z.ZodDefault<z.ZodLiteral<"REJECT_CORRECTION">>;
5987
+ reason: z.ZodObject<{
5988
+ message: z.ZodString;
5989
+ isDuplicate: z.ZodOptional<z.ZodBoolean>;
5990
+ }, "strip", z.ZodTypeAny, {
5991
+ message: string;
5992
+ isDuplicate?: boolean | undefined;
5993
+ }, {
5994
+ message: string;
5995
+ isDuplicate?: boolean | undefined;
5996
+ }>;
6200
5997
  }>, "strip", z.ZodTypeAny, {
6201
5998
  type: "REJECT_CORRECTION";
5999
+ reason: {
6000
+ message: string;
6001
+ isDuplicate?: boolean | undefined;
6002
+ };
6202
6003
  transactionId: string;
6203
6004
  declaration: Record<string, string | number | boolean | {
6204
6005
  type: string;
@@ -6216,8 +6017,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
6216
6017
  street?: string | null | undefined;
6217
6018
  zipCode?: string | null | undefined;
6218
6019
  } | {
6219
- firstname?: string | null | undefined;
6220
- surname?: string | null | undefined;
6020
+ firstname: string;
6021
+ surname: string;
6221
6022
  middlename?: string | null | undefined;
6222
6023
  } | {
6223
6024
  country: string;
@@ -6263,8 +6064,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
6263
6064
  street?: string | null | undefined;
6264
6065
  zipCode?: string | null | undefined;
6265
6066
  } | {
6266
- firstname?: string | null | undefined;
6267
- surname?: string | null | undefined;
6067
+ firstname: string;
6068
+ surname: string;
6268
6069
  middlename?: string | null | undefined;
6269
6070
  } | {
6270
6071
  country: string;
@@ -6292,13 +6093,13 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
6292
6093
  start: string;
6293
6094
  end: string;
6294
6095
  } | null | undefined> | undefined;
6295
- actionDetails?: {
6296
- templateId?: string | undefined;
6297
- isImmediateCorrection?: boolean | undefined;
6298
- } | undefined;
6299
6096
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
6300
6097
  keepAssignment?: boolean | undefined;
6301
6098
  }, {
6099
+ reason: {
6100
+ message: string;
6101
+ isDuplicate?: boolean | undefined;
6102
+ };
6302
6103
  transactionId: string;
6303
6104
  requestId: string;
6304
6105
  eventId: string;
@@ -6319,8 +6120,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
6319
6120
  street?: string | null | undefined;
6320
6121
  zipCode?: string | null | undefined;
6321
6122
  } | {
6322
- firstname?: string | null | undefined;
6323
- surname?: string | null | undefined;
6123
+ firstname: string;
6124
+ surname: string;
6324
6125
  middlename?: string | null | undefined;
6325
6126
  } | {
6326
6127
  country: string;
@@ -6364,8 +6165,8 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
6364
6165
  street?: string | null | undefined;
6365
6166
  zipCode?: string | null | undefined;
6366
6167
  } | {
6367
- firstname?: string | null | undefined;
6368
- surname?: string | null | undefined;
6168
+ firstname: string;
6169
+ surname: string;
6369
6170
  middlename?: string | null | undefined;
6370
6171
  } | {
6371
6172
  country: string;
@@ -6393,10 +6194,6 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
6393
6194
  start: string;
6394
6195
  end: string;
6395
6196
  } | null | undefined> | undefined;
6396
- actionDetails?: {
6397
- templateId?: string | undefined;
6398
- isImmediateCorrection?: boolean | undefined;
6399
- } | undefined;
6400
6197
  originalActionId?: string | undefined;
6401
6198
  keepAssignment?: boolean | undefined;
6402
6199
  }>;
@@ -6527,16 +6324,16 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6527
6324
  addressLine3?: string | null | undefined;
6528
6325
  postcodeOrZip?: string | null | undefined;
6529
6326
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6530
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6531
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6327
+ firstname: z.ZodString;
6328
+ surname: z.ZodString;
6532
6329
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6533
6330
  }, "strip", z.ZodTypeAny, {
6534
- firstname?: string | null | undefined;
6535
- surname?: string | null | undefined;
6331
+ firstname: string;
6332
+ surname: string;
6536
6333
  middlename?: string | null | undefined;
6537
6334
  }, {
6538
- firstname?: string | null | undefined;
6539
- surname?: string | null | undefined;
6335
+ firstname: string;
6336
+ surname: string;
6540
6337
  middlename?: string | null | undefined;
6541
6338
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6542
6339
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -6662,28 +6459,18 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6662
6459
  addressLine3?: string | null | undefined;
6663
6460
  postcodeOrZip?: string | null | undefined;
6664
6461
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6665
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6666
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6462
+ firstname: z.ZodString;
6463
+ surname: z.ZodString;
6667
6464
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6668
6465
  }, "strip", z.ZodTypeAny, {
6669
- firstname?: string | null | undefined;
6670
- surname?: string | null | undefined;
6466
+ firstname: string;
6467
+ surname: string;
6671
6468
  middlename?: string | null | undefined;
6672
6469
  }, {
6673
- firstname?: string | null | undefined;
6674
- surname?: string | null | undefined;
6470
+ firstname: string;
6471
+ surname: string;
6675
6472
  middlename?: string | null | undefined;
6676
6473
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
6677
- actionDetails: z.ZodOptional<z.ZodObject<{
6678
- templateId: z.ZodOptional<z.ZodString>;
6679
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
6680
- }, "strip", z.ZodTypeAny, {
6681
- templateId?: string | undefined;
6682
- isImmediateCorrection?: boolean | undefined;
6683
- }, {
6684
- templateId?: string | undefined;
6685
- isImmediateCorrection?: boolean | undefined;
6686
- }>>;
6687
6474
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
6688
6475
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
6689
6476
  }, {
@@ -6708,8 +6495,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6708
6495
  street?: string | null | undefined;
6709
6496
  zipCode?: string | null | undefined;
6710
6497
  } | {
6711
- firstname?: string | null | undefined;
6712
- surname?: string | null | undefined;
6498
+ firstname: string;
6499
+ surname: string;
6713
6500
  middlename?: string | null | undefined;
6714
6501
  } | {
6715
6502
  country: string;
@@ -6755,8 +6542,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6755
6542
  street?: string | null | undefined;
6756
6543
  zipCode?: string | null | undefined;
6757
6544
  } | {
6758
- firstname?: string | null | undefined;
6759
- surname?: string | null | undefined;
6545
+ firstname: string;
6546
+ surname: string;
6760
6547
  middlename?: string | null | undefined;
6761
6548
  } | {
6762
6549
  country: string;
@@ -6784,10 +6571,6 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6784
6571
  start: string;
6785
6572
  end: string;
6786
6573
  } | null | undefined> | undefined;
6787
- actionDetails?: {
6788
- templateId?: string | undefined;
6789
- isImmediateCorrection?: boolean | undefined;
6790
- } | undefined;
6791
6574
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
6792
6575
  keepAssignment?: boolean | undefined;
6793
6576
  }, {
@@ -6811,8 +6594,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6811
6594
  street?: string | null | undefined;
6812
6595
  zipCode?: string | null | undefined;
6813
6596
  } | {
6814
- firstname?: string | null | undefined;
6815
- surname?: string | null | undefined;
6597
+ firstname: string;
6598
+ surname: string;
6816
6599
  middlename?: string | null | undefined;
6817
6600
  } | {
6818
6601
  country: string;
@@ -6856,8 +6639,8 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6856
6639
  street?: string | null | undefined;
6857
6640
  zipCode?: string | null | undefined;
6858
6641
  } | {
6859
- firstname?: string | null | undefined;
6860
- surname?: string | null | undefined;
6642
+ firstname: string;
6643
+ surname: string;
6861
6644
  middlename?: string | null | undefined;
6862
6645
  } | {
6863
6646
  country: string;
@@ -6885,10 +6668,6 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
6885
6668
  start: string;
6886
6669
  end: string;
6887
6670
  } | null | undefined> | undefined;
6888
- actionDetails?: {
6889
- templateId?: string | undefined;
6890
- isImmediateCorrection?: boolean | undefined;
6891
- } | undefined;
6892
6671
  originalActionId?: string | undefined;
6893
6672
  keepAssignment?: boolean | undefined;
6894
6673
  }>;
@@ -7019,16 +6798,16 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
7019
6798
  addressLine3?: string | null | undefined;
7020
6799
  postcodeOrZip?: string | null | undefined;
7021
6800
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7022
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7023
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6801
+ firstname: z.ZodString;
6802
+ surname: z.ZodString;
7024
6803
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7025
6804
  }, "strip", z.ZodTypeAny, {
7026
- firstname?: string | null | undefined;
7027
- surname?: string | null | undefined;
6805
+ firstname: string;
6806
+ surname: string;
7028
6807
  middlename?: string | null | undefined;
7029
6808
  }, {
7030
- firstname?: string | null | undefined;
7031
- surname?: string | null | undefined;
6809
+ firstname: string;
6810
+ surname: string;
7032
6811
  middlename?: string | null | undefined;
7033
6812
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7034
6813
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -7154,28 +6933,18 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
7154
6933
  addressLine3?: string | null | undefined;
7155
6934
  postcodeOrZip?: string | null | undefined;
7156
6935
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7157
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7158
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6936
+ firstname: z.ZodString;
6937
+ surname: z.ZodString;
7159
6938
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7160
6939
  }, "strip", z.ZodTypeAny, {
7161
- firstname?: string | null | undefined;
7162
- surname?: string | null | undefined;
6940
+ firstname: string;
6941
+ surname: string;
7163
6942
  middlename?: string | null | undefined;
7164
6943
  }, {
7165
- firstname?: string | null | undefined;
7166
- surname?: string | null | undefined;
6944
+ firstname: string;
6945
+ surname: string;
7167
6946
  middlename?: string | null | undefined;
7168
6947
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7169
- actionDetails: z.ZodOptional<z.ZodObject<{
7170
- templateId: z.ZodOptional<z.ZodString>;
7171
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
7172
- }, "strip", z.ZodTypeAny, {
7173
- templateId?: string | undefined;
7174
- isImmediateCorrection?: boolean | undefined;
7175
- }, {
7176
- templateId?: string | undefined;
7177
- isImmediateCorrection?: boolean | undefined;
7178
- }>>;
7179
6948
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
7180
6949
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
7181
6950
  }, {
@@ -7199,8 +6968,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
7199
6968
  street?: string | null | undefined;
7200
6969
  zipCode?: string | null | undefined;
7201
6970
  } | {
7202
- firstname?: string | null | undefined;
7203
- surname?: string | null | undefined;
6971
+ firstname: string;
6972
+ surname: string;
7204
6973
  middlename?: string | null | undefined;
7205
6974
  } | {
7206
6975
  country: string;
@@ -7245,8 +7014,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
7245
7014
  street?: string | null | undefined;
7246
7015
  zipCode?: string | null | undefined;
7247
7016
  } | {
7248
- firstname?: string | null | undefined;
7249
- surname?: string | null | undefined;
7017
+ firstname: string;
7018
+ surname: string;
7250
7019
  middlename?: string | null | undefined;
7251
7020
  } | {
7252
7021
  country: string;
@@ -7274,10 +7043,6 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
7274
7043
  start: string;
7275
7044
  end: string;
7276
7045
  } | null | undefined> | undefined;
7277
- actionDetails?: {
7278
- templateId?: string | undefined;
7279
- isImmediateCorrection?: boolean | undefined;
7280
- } | undefined;
7281
7046
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
7282
7047
  keepAssignment?: boolean | undefined;
7283
7048
  }, {
@@ -7300,8 +7065,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
7300
7065
  street?: string | null | undefined;
7301
7066
  zipCode?: string | null | undefined;
7302
7067
  } | {
7303
- firstname?: string | null | undefined;
7304
- surname?: string | null | undefined;
7068
+ firstname: string;
7069
+ surname: string;
7305
7070
  middlename?: string | null | undefined;
7306
7071
  } | {
7307
7072
  country: string;
@@ -7345,8 +7110,8 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
7345
7110
  street?: string | null | undefined;
7346
7111
  zipCode?: string | null | undefined;
7347
7112
  } | {
7348
- firstname?: string | null | undefined;
7349
- surname?: string | null | undefined;
7113
+ firstname: string;
7114
+ surname: string;
7350
7115
  middlename?: string | null | undefined;
7351
7116
  } | {
7352
7117
  country: string;
@@ -7374,10 +7139,6 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
7374
7139
  start: string;
7375
7140
  end: string;
7376
7141
  } | null | undefined> | undefined;
7377
- actionDetails?: {
7378
- templateId?: string | undefined;
7379
- isImmediateCorrection?: boolean | undefined;
7380
- } | undefined;
7381
7142
  originalActionId?: string | undefined;
7382
7143
  keepAssignment?: boolean | undefined;
7383
7144
  }>;
@@ -7524,16 +7285,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7524
7285
  addressLine3?: string | null | undefined;
7525
7286
  postcodeOrZip?: string | null | undefined;
7526
7287
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7527
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7528
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7288
+ firstname: z.ZodString;
7289
+ surname: z.ZodString;
7529
7290
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7530
7291
  }, "strip", z.ZodTypeAny, {
7531
- firstname?: string | null | undefined;
7532
- surname?: string | null | undefined;
7292
+ firstname: string;
7293
+ surname: string;
7533
7294
  middlename?: string | null | undefined;
7534
7295
  }, {
7535
- firstname?: string | null | undefined;
7536
- surname?: string | null | undefined;
7296
+ firstname: string;
7297
+ surname: string;
7537
7298
  middlename?: string | null | undefined;
7538
7299
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7539
7300
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -7659,28 +7420,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7659
7420
  addressLine3?: string | null | undefined;
7660
7421
  postcodeOrZip?: string | null | undefined;
7661
7422
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7662
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7663
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7423
+ firstname: z.ZodString;
7424
+ surname: z.ZodString;
7664
7425
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7665
7426
  }, "strip", z.ZodTypeAny, {
7666
- firstname?: string | null | undefined;
7667
- surname?: string | null | undefined;
7427
+ firstname: string;
7428
+ surname: string;
7668
7429
  middlename?: string | null | undefined;
7669
7430
  }, {
7670
- firstname?: string | null | undefined;
7671
- surname?: string | null | undefined;
7431
+ firstname: string;
7432
+ surname: string;
7672
7433
  middlename?: string | null | undefined;
7673
7434
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
7674
- actionDetails: z.ZodOptional<z.ZodObject<{
7675
- templateId: z.ZodOptional<z.ZodString>;
7676
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
7677
- }, "strip", z.ZodTypeAny, {
7678
- templateId?: string | undefined;
7679
- isImmediateCorrection?: boolean | undefined;
7680
- }, {
7681
- templateId?: string | undefined;
7682
- isImmediateCorrection?: boolean | undefined;
7683
- }>>;
7684
7435
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
7685
7436
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
7686
7437
  }, {
@@ -7705,8 +7456,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7705
7456
  street?: string | null | undefined;
7706
7457
  zipCode?: string | null | undefined;
7707
7458
  } | {
7708
- firstname?: string | null | undefined;
7709
- surname?: string | null | undefined;
7459
+ firstname: string;
7460
+ surname: string;
7710
7461
  middlename?: string | null | undefined;
7711
7462
  } | {
7712
7463
  country: string;
@@ -7752,8 +7503,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7752
7503
  street?: string | null | undefined;
7753
7504
  zipCode?: string | null | undefined;
7754
7505
  } | {
7755
- firstname?: string | null | undefined;
7756
- surname?: string | null | undefined;
7506
+ firstname: string;
7507
+ surname: string;
7757
7508
  middlename?: string | null | undefined;
7758
7509
  } | {
7759
7510
  country: string;
@@ -7781,10 +7532,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7781
7532
  start: string;
7782
7533
  end: string;
7783
7534
  } | null | undefined> | undefined;
7784
- actionDetails?: {
7785
- templateId?: string | undefined;
7786
- isImmediateCorrection?: boolean | undefined;
7787
- } | undefined;
7788
7535
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
7789
7536
  keepAssignment?: boolean | undefined;
7790
7537
  }, {
@@ -7808,8 +7555,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7808
7555
  street?: string | null | undefined;
7809
7556
  zipCode?: string | null | undefined;
7810
7557
  } | {
7811
- firstname?: string | null | undefined;
7812
- surname?: string | null | undefined;
7558
+ firstname: string;
7559
+ surname: string;
7813
7560
  middlename?: string | null | undefined;
7814
7561
  } | {
7815
7562
  country: string;
@@ -7853,8 +7600,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7853
7600
  street?: string | null | undefined;
7854
7601
  zipCode?: string | null | undefined;
7855
7602
  } | {
7856
- firstname?: string | null | undefined;
7857
- surname?: string | null | undefined;
7603
+ firstname: string;
7604
+ surname: string;
7858
7605
  middlename?: string | null | undefined;
7859
7606
  } | {
7860
7607
  country: string;
@@ -7882,10 +7629,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
7882
7629
  start: string;
7883
7630
  end: string;
7884
7631
  } | null | undefined> | undefined;
7885
- actionDetails?: {
7886
- templateId?: string | undefined;
7887
- isImmediateCorrection?: boolean | undefined;
7888
- } | undefined;
7889
7632
  originalActionId?: string | undefined;
7890
7633
  keepAssignment?: boolean | undefined;
7891
7634
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -8014,16 +7757,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8014
7757
  addressLine3?: string | null | undefined;
8015
7758
  postcodeOrZip?: string | null | undefined;
8016
7759
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8017
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8018
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7760
+ firstname: z.ZodString;
7761
+ surname: z.ZodString;
8019
7762
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8020
7763
  }, "strip", z.ZodTypeAny, {
8021
- firstname?: string | null | undefined;
8022
- surname?: string | null | undefined;
7764
+ firstname: string;
7765
+ surname: string;
8023
7766
  middlename?: string | null | undefined;
8024
7767
  }, {
8025
- firstname?: string | null | undefined;
8026
- surname?: string | null | undefined;
7768
+ firstname: string;
7769
+ surname: string;
8027
7770
  middlename?: string | null | undefined;
8028
7771
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8029
7772
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -8149,28 +7892,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8149
7892
  addressLine3?: string | null | undefined;
8150
7893
  postcodeOrZip?: string | null | undefined;
8151
7894
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8152
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8153
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7895
+ firstname: z.ZodString;
7896
+ surname: z.ZodString;
8154
7897
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8155
7898
  }, "strip", z.ZodTypeAny, {
8156
- firstname?: string | null | undefined;
8157
- surname?: string | null | undefined;
7899
+ firstname: string;
7900
+ surname: string;
8158
7901
  middlename?: string | null | undefined;
8159
7902
  }, {
8160
- firstname?: string | null | undefined;
8161
- surname?: string | null | undefined;
7903
+ firstname: string;
7904
+ surname: string;
8162
7905
  middlename?: string | null | undefined;
8163
7906
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8164
- actionDetails: z.ZodOptional<z.ZodObject<{
8165
- templateId: z.ZodOptional<z.ZodString>;
8166
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
8167
- }, "strip", z.ZodTypeAny, {
8168
- templateId?: string | undefined;
8169
- isImmediateCorrection?: boolean | undefined;
8170
- }, {
8171
- templateId?: string | undefined;
8172
- isImmediateCorrection?: boolean | undefined;
8173
- }>>;
8174
7907
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
8175
7908
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
8176
7909
  }, {
@@ -8195,8 +7928,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8195
7928
  street?: string | null | undefined;
8196
7929
  zipCode?: string | null | undefined;
8197
7930
  } | {
8198
- firstname?: string | null | undefined;
8199
- surname?: string | null | undefined;
7931
+ firstname: string;
7932
+ surname: string;
8200
7933
  middlename?: string | null | undefined;
8201
7934
  } | {
8202
7935
  country: string;
@@ -8242,8 +7975,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8242
7975
  street?: string | null | undefined;
8243
7976
  zipCode?: string | null | undefined;
8244
7977
  } | {
8245
- firstname?: string | null | undefined;
8246
- surname?: string | null | undefined;
7978
+ firstname: string;
7979
+ surname: string;
8247
7980
  middlename?: string | null | undefined;
8248
7981
  } | {
8249
7982
  country: string;
@@ -8271,10 +8004,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8271
8004
  start: string;
8272
8005
  end: string;
8273
8006
  } | null | undefined> | undefined;
8274
- actionDetails?: {
8275
- templateId?: string | undefined;
8276
- isImmediateCorrection?: boolean | undefined;
8277
- } | undefined;
8278
8007
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
8279
8008
  keepAssignment?: boolean | undefined;
8280
8009
  }, {
@@ -8298,8 +8027,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8298
8027
  street?: string | null | undefined;
8299
8028
  zipCode?: string | null | undefined;
8300
8029
  } | {
8301
- firstname?: string | null | undefined;
8302
- surname?: string | null | undefined;
8030
+ firstname: string;
8031
+ surname: string;
8303
8032
  middlename?: string | null | undefined;
8304
8033
  } | {
8305
8034
  country: string;
@@ -8343,8 +8072,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8343
8072
  street?: string | null | undefined;
8344
8073
  zipCode?: string | null | undefined;
8345
8074
  } | {
8346
- firstname?: string | null | undefined;
8347
- surname?: string | null | undefined;
8075
+ firstname: string;
8076
+ surname: string;
8348
8077
  middlename?: string | null | undefined;
8349
8078
  } | {
8350
8079
  country: string;
@@ -8372,10 +8101,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8372
8101
  start: string;
8373
8102
  end: string;
8374
8103
  } | null | undefined> | undefined;
8375
- actionDetails?: {
8376
- templateId?: string | undefined;
8377
- isImmediateCorrection?: boolean | undefined;
8378
- } | undefined;
8379
8104
  originalActionId?: string | undefined;
8380
8105
  keepAssignment?: boolean | undefined;
8381
8106
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -8504,16 +8229,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8504
8229
  addressLine3?: string | null | undefined;
8505
8230
  postcodeOrZip?: string | null | undefined;
8506
8231
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8507
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8508
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8232
+ firstname: z.ZodString;
8233
+ surname: z.ZodString;
8509
8234
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8510
8235
  }, "strip", z.ZodTypeAny, {
8511
- firstname?: string | null | undefined;
8512
- surname?: string | null | undefined;
8236
+ firstname: string;
8237
+ surname: string;
8513
8238
  middlename?: string | null | undefined;
8514
8239
  }, {
8515
- firstname?: string | null | undefined;
8516
- surname?: string | null | undefined;
8240
+ firstname: string;
8241
+ surname: string;
8517
8242
  middlename?: string | null | undefined;
8518
8243
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8519
8244
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -8639,28 +8364,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8639
8364
  addressLine3?: string | null | undefined;
8640
8365
  postcodeOrZip?: string | null | undefined;
8641
8366
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8642
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8643
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8367
+ firstname: z.ZodString;
8368
+ surname: z.ZodString;
8644
8369
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8645
8370
  }, "strip", z.ZodTypeAny, {
8646
- firstname?: string | null | undefined;
8647
- surname?: string | null | undefined;
8371
+ firstname: string;
8372
+ surname: string;
8648
8373
  middlename?: string | null | undefined;
8649
8374
  }, {
8650
- firstname?: string | null | undefined;
8651
- surname?: string | null | undefined;
8375
+ firstname: string;
8376
+ surname: string;
8652
8377
  middlename?: string | null | undefined;
8653
8378
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
8654
- actionDetails: z.ZodOptional<z.ZodObject<{
8655
- templateId: z.ZodOptional<z.ZodString>;
8656
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
8657
- }, "strip", z.ZodTypeAny, {
8658
- templateId?: string | undefined;
8659
- isImmediateCorrection?: boolean | undefined;
8660
- }, {
8661
- templateId?: string | undefined;
8662
- isImmediateCorrection?: boolean | undefined;
8663
- }>>;
8664
8379
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
8665
8380
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
8666
8381
  }, {
@@ -8685,8 +8400,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8685
8400
  street?: string | null | undefined;
8686
8401
  zipCode?: string | null | undefined;
8687
8402
  } | {
8688
- firstname?: string | null | undefined;
8689
- surname?: string | null | undefined;
8403
+ firstname: string;
8404
+ surname: string;
8690
8405
  middlename?: string | null | undefined;
8691
8406
  } | {
8692
8407
  country: string;
@@ -8731,8 +8446,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8731
8446
  street?: string | null | undefined;
8732
8447
  zipCode?: string | null | undefined;
8733
8448
  } | {
8734
- firstname?: string | null | undefined;
8735
- surname?: string | null | undefined;
8449
+ firstname: string;
8450
+ surname: string;
8736
8451
  middlename?: string | null | undefined;
8737
8452
  } | {
8738
8453
  country: string;
@@ -8760,10 +8475,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8760
8475
  start: string;
8761
8476
  end: string;
8762
8477
  } | null | undefined> | undefined;
8763
- actionDetails?: {
8764
- templateId?: string | undefined;
8765
- isImmediateCorrection?: boolean | undefined;
8766
- } | undefined;
8767
8478
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
8768
8479
  registrationNumber?: string | undefined;
8769
8480
  keepAssignment?: boolean | undefined;
@@ -8787,8 +8498,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8787
8498
  street?: string | null | undefined;
8788
8499
  zipCode?: string | null | undefined;
8789
8500
  } | {
8790
- firstname?: string | null | undefined;
8791
- surname?: string | null | undefined;
8501
+ firstname: string;
8502
+ surname: string;
8792
8503
  middlename?: string | null | undefined;
8793
8504
  } | {
8794
8505
  country: string;
@@ -8832,8 +8543,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8832
8543
  street?: string | null | undefined;
8833
8544
  zipCode?: string | null | undefined;
8834
8545
  } | {
8835
- firstname?: string | null | undefined;
8836
- surname?: string | null | undefined;
8546
+ firstname: string;
8547
+ surname: string;
8837
8548
  middlename?: string | null | undefined;
8838
8549
  } | {
8839
8550
  country: string;
@@ -8861,10 +8572,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8861
8572
  start: string;
8862
8573
  end: string;
8863
8574
  } | null | undefined> | undefined;
8864
- actionDetails?: {
8865
- templateId?: string | undefined;
8866
- isImmediateCorrection?: boolean | undefined;
8867
- } | undefined;
8868
8575
  originalActionId?: string | undefined;
8869
8576
  registrationNumber?: string | undefined;
8870
8577
  keepAssignment?: boolean | undefined;
@@ -8994,16 +8701,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
8994
8701
  addressLine3?: string | null | undefined;
8995
8702
  postcodeOrZip?: string | null | undefined;
8996
8703
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8997
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8998
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8704
+ firstname: z.ZodString;
8705
+ surname: z.ZodString;
8999
8706
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9000
8707
  }, "strip", z.ZodTypeAny, {
9001
- firstname?: string | null | undefined;
9002
- surname?: string | null | undefined;
8708
+ firstname: string;
8709
+ surname: string;
9003
8710
  middlename?: string | null | undefined;
9004
8711
  }, {
9005
- firstname?: string | null | undefined;
9006
- surname?: string | null | undefined;
8712
+ firstname: string;
8713
+ surname: string;
9007
8714
  middlename?: string | null | undefined;
9008
8715
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9009
8716
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -9129,28 +8836,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9129
8836
  addressLine3?: string | null | undefined;
9130
8837
  postcodeOrZip?: string | null | undefined;
9131
8838
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9132
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9133
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8839
+ firstname: z.ZodString;
8840
+ surname: z.ZodString;
9134
8841
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9135
8842
  }, "strip", z.ZodTypeAny, {
9136
- firstname?: string | null | undefined;
9137
- surname?: string | null | undefined;
8843
+ firstname: string;
8844
+ surname: string;
9138
8845
  middlename?: string | null | undefined;
9139
8846
  }, {
9140
- firstname?: string | null | undefined;
9141
- surname?: string | null | undefined;
8847
+ firstname: string;
8848
+ surname: string;
9142
8849
  middlename?: string | null | undefined;
9143
8850
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9144
- actionDetails: z.ZodOptional<z.ZodObject<{
9145
- templateId: z.ZodOptional<z.ZodString>;
9146
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
9147
- }, "strip", z.ZodTypeAny, {
9148
- templateId?: string | undefined;
9149
- isImmediateCorrection?: boolean | undefined;
9150
- }, {
9151
- templateId?: string | undefined;
9152
- isImmediateCorrection?: boolean | undefined;
9153
- }>>;
9154
8851
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
9155
8852
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
9156
8853
  }, {
@@ -9174,8 +8871,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9174
8871
  street?: string | null | undefined;
9175
8872
  zipCode?: string | null | undefined;
9176
8873
  } | {
9177
- firstname?: string | null | undefined;
9178
- surname?: string | null | undefined;
8874
+ firstname: string;
8875
+ surname: string;
9179
8876
  middlename?: string | null | undefined;
9180
8877
  } | {
9181
8878
  country: string;
@@ -9220,8 +8917,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9220
8917
  street?: string | null | undefined;
9221
8918
  zipCode?: string | null | undefined;
9222
8919
  } | {
9223
- firstname?: string | null | undefined;
9224
- surname?: string | null | undefined;
8920
+ firstname: string;
8921
+ surname: string;
9225
8922
  middlename?: string | null | undefined;
9226
8923
  } | {
9227
8924
  country: string;
@@ -9249,10 +8946,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9249
8946
  start: string;
9250
8947
  end: string;
9251
8948
  } | null | undefined> | undefined;
9252
- actionDetails?: {
9253
- templateId?: string | undefined;
9254
- isImmediateCorrection?: boolean | undefined;
9255
- } | undefined;
9256
8949
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
9257
8950
  keepAssignment?: boolean | undefined;
9258
8951
  }, {
@@ -9275,8 +8968,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9275
8968
  street?: string | null | undefined;
9276
8969
  zipCode?: string | null | undefined;
9277
8970
  } | {
9278
- firstname?: string | null | undefined;
9279
- surname?: string | null | undefined;
8971
+ firstname: string;
8972
+ surname: string;
9280
8973
  middlename?: string | null | undefined;
9281
8974
  } | {
9282
8975
  country: string;
@@ -9320,8 +9013,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9320
9013
  street?: string | null | undefined;
9321
9014
  zipCode?: string | null | undefined;
9322
9015
  } | {
9323
- firstname?: string | null | undefined;
9324
- surname?: string | null | undefined;
9016
+ firstname: string;
9017
+ surname: string;
9325
9018
  middlename?: string | null | undefined;
9326
9019
  } | {
9327
9020
  country: string;
@@ -9349,10 +9042,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9349
9042
  start: string;
9350
9043
  end: string;
9351
9044
  } | null | undefined> | undefined;
9352
- actionDetails?: {
9353
- templateId?: string | undefined;
9354
- isImmediateCorrection?: boolean | undefined;
9355
- } | undefined;
9356
9045
  originalActionId?: string | undefined;
9357
9046
  keepAssignment?: boolean | undefined;
9358
9047
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -9481,16 +9170,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9481
9170
  addressLine3?: string | null | undefined;
9482
9171
  postcodeOrZip?: string | null | undefined;
9483
9172
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9484
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9485
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9173
+ firstname: z.ZodString;
9174
+ surname: z.ZodString;
9486
9175
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9487
9176
  }, "strip", z.ZodTypeAny, {
9488
- firstname?: string | null | undefined;
9489
- surname?: string | null | undefined;
9177
+ firstname: string;
9178
+ surname: string;
9490
9179
  middlename?: string | null | undefined;
9491
9180
  }, {
9492
- firstname?: string | null | undefined;
9493
- surname?: string | null | undefined;
9181
+ firstname: string;
9182
+ surname: string;
9494
9183
  middlename?: string | null | undefined;
9495
9184
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9496
9185
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -9616,28 +9305,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9616
9305
  addressLine3?: string | null | undefined;
9617
9306
  postcodeOrZip?: string | null | undefined;
9618
9307
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9619
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9620
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9308
+ firstname: z.ZodString;
9309
+ surname: z.ZodString;
9621
9310
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9622
9311
  }, "strip", z.ZodTypeAny, {
9623
- firstname?: string | null | undefined;
9624
- surname?: string | null | undefined;
9312
+ firstname: string;
9313
+ surname: string;
9625
9314
  middlename?: string | null | undefined;
9626
9315
  }, {
9627
- firstname?: string | null | undefined;
9628
- surname?: string | null | undefined;
9316
+ firstname: string;
9317
+ surname: string;
9629
9318
  middlename?: string | null | undefined;
9630
9319
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9631
- actionDetails: z.ZodOptional<z.ZodObject<{
9632
- templateId: z.ZodOptional<z.ZodString>;
9633
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
9634
- }, "strip", z.ZodTypeAny, {
9635
- templateId?: string | undefined;
9636
- isImmediateCorrection?: boolean | undefined;
9637
- }, {
9638
- templateId?: string | undefined;
9639
- isImmediateCorrection?: boolean | undefined;
9640
- }>>;
9641
9320
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
9642
9321
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
9643
9322
  }, {
@@ -9661,8 +9340,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9661
9340
  street?: string | null | undefined;
9662
9341
  zipCode?: string | null | undefined;
9663
9342
  } | {
9664
- firstname?: string | null | undefined;
9665
- surname?: string | null | undefined;
9343
+ firstname: string;
9344
+ surname: string;
9666
9345
  middlename?: string | null | undefined;
9667
9346
  } | {
9668
9347
  country: string;
@@ -9707,8 +9386,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9707
9386
  street?: string | null | undefined;
9708
9387
  zipCode?: string | null | undefined;
9709
9388
  } | {
9710
- firstname?: string | null | undefined;
9711
- surname?: string | null | undefined;
9389
+ firstname: string;
9390
+ surname: string;
9712
9391
  middlename?: string | null | undefined;
9713
9392
  } | {
9714
9393
  country: string;
@@ -9736,10 +9415,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9736
9415
  start: string;
9737
9416
  end: string;
9738
9417
  } | null | undefined> | undefined;
9739
- actionDetails?: {
9740
- templateId?: string | undefined;
9741
- isImmediateCorrection?: boolean | undefined;
9742
- } | undefined;
9743
9418
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
9744
9419
  keepAssignment?: boolean | undefined;
9745
9420
  }, {
@@ -9762,8 +9437,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9762
9437
  street?: string | null | undefined;
9763
9438
  zipCode?: string | null | undefined;
9764
9439
  } | {
9765
- firstname?: string | null | undefined;
9766
- surname?: string | null | undefined;
9440
+ firstname: string;
9441
+ surname: string;
9767
9442
  middlename?: string | null | undefined;
9768
9443
  } | {
9769
9444
  country: string;
@@ -9807,8 +9482,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9807
9482
  street?: string | null | undefined;
9808
9483
  zipCode?: string | null | undefined;
9809
9484
  } | {
9810
- firstname?: string | null | undefined;
9811
- surname?: string | null | undefined;
9485
+ firstname: string;
9486
+ surname: string;
9812
9487
  middlename?: string | null | undefined;
9813
9488
  } | {
9814
9489
  country: string;
@@ -9836,10 +9511,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9836
9511
  start: string;
9837
9512
  end: string;
9838
9513
  } | null | undefined> | undefined;
9839
- actionDetails?: {
9840
- templateId?: string | undefined;
9841
- isImmediateCorrection?: boolean | undefined;
9842
- } | undefined;
9843
9514
  originalActionId?: string | undefined;
9844
9515
  keepAssignment?: boolean | undefined;
9845
9516
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -9968,16 +9639,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
9968
9639
  addressLine3?: string | null | undefined;
9969
9640
  postcodeOrZip?: string | null | undefined;
9970
9641
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9971
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9972
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9642
+ firstname: z.ZodString;
9643
+ surname: z.ZodString;
9973
9644
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9974
9645
  }, "strip", z.ZodTypeAny, {
9975
- firstname?: string | null | undefined;
9976
- surname?: string | null | undefined;
9646
+ firstname: string;
9647
+ surname: string;
9977
9648
  middlename?: string | null | undefined;
9978
9649
  }, {
9979
- firstname?: string | null | undefined;
9980
- surname?: string | null | undefined;
9650
+ firstname: string;
9651
+ surname: string;
9981
9652
  middlename?: string | null | undefined;
9982
9653
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
9983
9654
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -10103,28 +9774,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10103
9774
  addressLine3?: string | null | undefined;
10104
9775
  postcodeOrZip?: string | null | undefined;
10105
9776
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10106
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10107
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9777
+ firstname: z.ZodString;
9778
+ surname: z.ZodString;
10108
9779
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10109
9780
  }, "strip", z.ZodTypeAny, {
10110
- firstname?: string | null | undefined;
10111
- surname?: string | null | undefined;
9781
+ firstname: string;
9782
+ surname: string;
10112
9783
  middlename?: string | null | undefined;
10113
9784
  }, {
10114
- firstname?: string | null | undefined;
10115
- surname?: string | null | undefined;
9785
+ firstname: string;
9786
+ surname: string;
10116
9787
  middlename?: string | null | undefined;
10117
9788
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10118
- actionDetails: z.ZodOptional<z.ZodObject<{
10119
- templateId: z.ZodOptional<z.ZodString>;
10120
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
10121
- }, "strip", z.ZodTypeAny, {
10122
- templateId?: string | undefined;
10123
- isImmediateCorrection?: boolean | undefined;
10124
- }, {
10125
- templateId?: string | undefined;
10126
- isImmediateCorrection?: boolean | undefined;
10127
- }>>;
10128
9789
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
10129
9790
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
10130
9791
  }, {
@@ -10162,8 +9823,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10162
9823
  street?: string | null | undefined;
10163
9824
  zipCode?: string | null | undefined;
10164
9825
  } | {
10165
- firstname?: string | null | undefined;
10166
- surname?: string | null | undefined;
9826
+ firstname: string;
9827
+ surname: string;
10167
9828
  middlename?: string | null | undefined;
10168
9829
  } | {
10169
9830
  country: string;
@@ -10208,8 +9869,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10208
9869
  street?: string | null | undefined;
10209
9870
  zipCode?: string | null | undefined;
10210
9871
  } | {
10211
- firstname?: string | null | undefined;
10212
- surname?: string | null | undefined;
9872
+ firstname: string;
9873
+ surname: string;
10213
9874
  middlename?: string | null | undefined;
10214
9875
  } | {
10215
9876
  country: string;
@@ -10237,10 +9898,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10237
9898
  start: string;
10238
9899
  end: string;
10239
9900
  } | null | undefined> | undefined;
10240
- actionDetails?: {
10241
- templateId?: string | undefined;
10242
- isImmediateCorrection?: boolean | undefined;
10243
- } | undefined;
10244
9901
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
10245
9902
  keepAssignment?: boolean | undefined;
10246
9903
  }, {
@@ -10267,8 +9924,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10267
9924
  street?: string | null | undefined;
10268
9925
  zipCode?: string | null | undefined;
10269
9926
  } | {
10270
- firstname?: string | null | undefined;
10271
- surname?: string | null | undefined;
9927
+ firstname: string;
9928
+ surname: string;
10272
9929
  middlename?: string | null | undefined;
10273
9930
  } | {
10274
9931
  country: string;
@@ -10312,8 +9969,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10312
9969
  street?: string | null | undefined;
10313
9970
  zipCode?: string | null | undefined;
10314
9971
  } | {
10315
- firstname?: string | null | undefined;
10316
- surname?: string | null | undefined;
9972
+ firstname: string;
9973
+ surname: string;
10317
9974
  middlename?: string | null | undefined;
10318
9975
  } | {
10319
9976
  country: string;
@@ -10341,10 +9998,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10341
9998
  start: string;
10342
9999
  end: string;
10343
10000
  } | null | undefined> | undefined;
10344
- actionDetails?: {
10345
- templateId?: string | undefined;
10346
- isImmediateCorrection?: boolean | undefined;
10347
- } | undefined;
10348
10001
  originalActionId?: string | undefined;
10349
10002
  keepAssignment?: boolean | undefined;
10350
10003
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -10473,16 +10126,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10473
10126
  addressLine3?: string | null | undefined;
10474
10127
  postcodeOrZip?: string | null | undefined;
10475
10128
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10476
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10477
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10129
+ firstname: z.ZodString;
10130
+ surname: z.ZodString;
10478
10131
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10479
10132
  }, "strip", z.ZodTypeAny, {
10480
- firstname?: string | null | undefined;
10481
- surname?: string | null | undefined;
10133
+ firstname: string;
10134
+ surname: string;
10482
10135
  middlename?: string | null | undefined;
10483
10136
  }, {
10484
- firstname?: string | null | undefined;
10485
- surname?: string | null | undefined;
10137
+ firstname: string;
10138
+ surname: string;
10486
10139
  middlename?: string | null | undefined;
10487
10140
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10488
10141
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -10608,28 +10261,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10608
10261
  addressLine3?: string | null | undefined;
10609
10262
  postcodeOrZip?: string | null | undefined;
10610
10263
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10611
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10612
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10264
+ firstname: z.ZodString;
10265
+ surname: z.ZodString;
10613
10266
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10614
10267
  }, "strip", z.ZodTypeAny, {
10615
- firstname?: string | null | undefined;
10616
- surname?: string | null | undefined;
10268
+ firstname: string;
10269
+ surname: string;
10617
10270
  middlename?: string | null | undefined;
10618
10271
  }, {
10619
- firstname?: string | null | undefined;
10620
- surname?: string | null | undefined;
10272
+ firstname: string;
10273
+ surname: string;
10621
10274
  middlename?: string | null | undefined;
10622
10275
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10623
- actionDetails: z.ZodOptional<z.ZodObject<{
10624
- templateId: z.ZodOptional<z.ZodString>;
10625
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
10626
- }, "strip", z.ZodTypeAny, {
10627
- templateId?: string | undefined;
10628
- isImmediateCorrection?: boolean | undefined;
10629
- }, {
10630
- templateId?: string | undefined;
10631
- isImmediateCorrection?: boolean | undefined;
10632
- }>>;
10633
10276
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
10634
10277
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
10635
10278
  }, {
@@ -10653,8 +10296,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10653
10296
  street?: string | null | undefined;
10654
10297
  zipCode?: string | null | undefined;
10655
10298
  } | {
10656
- firstname?: string | null | undefined;
10657
- surname?: string | null | undefined;
10299
+ firstname: string;
10300
+ surname: string;
10658
10301
  middlename?: string | null | undefined;
10659
10302
  } | {
10660
10303
  country: string;
@@ -10699,8 +10342,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10699
10342
  street?: string | null | undefined;
10700
10343
  zipCode?: string | null | undefined;
10701
10344
  } | {
10702
- firstname?: string | null | undefined;
10703
- surname?: string | null | undefined;
10345
+ firstname: string;
10346
+ surname: string;
10704
10347
  middlename?: string | null | undefined;
10705
10348
  } | {
10706
10349
  country: string;
@@ -10728,10 +10371,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10728
10371
  start: string;
10729
10372
  end: string;
10730
10373
  } | null | undefined> | undefined;
10731
- actionDetails?: {
10732
- templateId?: string | undefined;
10733
- isImmediateCorrection?: boolean | undefined;
10734
- } | undefined;
10735
10374
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
10736
10375
  keepAssignment?: boolean | undefined;
10737
10376
  }, {
@@ -10754,8 +10393,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10754
10393
  street?: string | null | undefined;
10755
10394
  zipCode?: string | null | undefined;
10756
10395
  } | {
10757
- firstname?: string | null | undefined;
10758
- surname?: string | null | undefined;
10396
+ firstname: string;
10397
+ surname: string;
10759
10398
  middlename?: string | null | undefined;
10760
10399
  } | {
10761
10400
  country: string;
@@ -10799,8 +10438,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10799
10438
  street?: string | null | undefined;
10800
10439
  zipCode?: string | null | undefined;
10801
10440
  } | {
10802
- firstname?: string | null | undefined;
10803
- surname?: string | null | undefined;
10441
+ firstname: string;
10442
+ surname: string;
10804
10443
  middlename?: string | null | undefined;
10805
10444
  } | {
10806
10445
  country: string;
@@ -10828,10 +10467,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10828
10467
  start: string;
10829
10468
  end: string;
10830
10469
  } | null | undefined> | undefined;
10831
- actionDetails?: {
10832
- templateId?: string | undefined;
10833
- isImmediateCorrection?: boolean | undefined;
10834
- } | undefined;
10835
10470
  originalActionId?: string | undefined;
10836
10471
  keepAssignment?: boolean | undefined;
10837
10472
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -10960,16 +10595,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
10960
10595
  addressLine3?: string | null | undefined;
10961
10596
  postcodeOrZip?: string | null | undefined;
10962
10597
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10963
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10964
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10598
+ firstname: z.ZodString;
10599
+ surname: z.ZodString;
10965
10600
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10966
10601
  }, "strip", z.ZodTypeAny, {
10967
- firstname?: string | null | undefined;
10968
- surname?: string | null | undefined;
10602
+ firstname: string;
10603
+ surname: string;
10969
10604
  middlename?: string | null | undefined;
10970
10605
  }, {
10971
- firstname?: string | null | undefined;
10972
- surname?: string | null | undefined;
10606
+ firstname: string;
10607
+ surname: string;
10973
10608
  middlename?: string | null | undefined;
10974
10609
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
10975
10610
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -11095,28 +10730,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11095
10730
  addressLine3?: string | null | undefined;
11096
10731
  postcodeOrZip?: string | null | undefined;
11097
10732
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11098
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11099
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10733
+ firstname: z.ZodString;
10734
+ surname: z.ZodString;
11100
10735
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11101
10736
  }, "strip", z.ZodTypeAny, {
11102
- firstname?: string | null | undefined;
11103
- surname?: string | null | undefined;
10737
+ firstname: string;
10738
+ surname: string;
11104
10739
  middlename?: string | null | undefined;
11105
10740
  }, {
11106
- firstname?: string | null | undefined;
11107
- surname?: string | null | undefined;
10741
+ firstname: string;
10742
+ surname: string;
11108
10743
  middlename?: string | null | undefined;
11109
10744
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11110
- actionDetails: z.ZodOptional<z.ZodObject<{
11111
- templateId: z.ZodOptional<z.ZodString>;
11112
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
11113
- }, "strip", z.ZodTypeAny, {
11114
- templateId?: string | undefined;
11115
- isImmediateCorrection?: boolean | undefined;
11116
- }, {
11117
- templateId?: string | undefined;
11118
- isImmediateCorrection?: boolean | undefined;
11119
- }>>;
11120
10745
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
11121
10746
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
11122
10747
  }, {
@@ -11154,8 +10779,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11154
10779
  street?: string | null | undefined;
11155
10780
  zipCode?: string | null | undefined;
11156
10781
  } | {
11157
- firstname?: string | null | undefined;
11158
- surname?: string | null | undefined;
10782
+ firstname: string;
10783
+ surname: string;
11159
10784
  middlename?: string | null | undefined;
11160
10785
  } | {
11161
10786
  country: string;
@@ -11200,8 +10825,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11200
10825
  street?: string | null | undefined;
11201
10826
  zipCode?: string | null | undefined;
11202
10827
  } | {
11203
- firstname?: string | null | undefined;
11204
- surname?: string | null | undefined;
10828
+ firstname: string;
10829
+ surname: string;
11205
10830
  middlename?: string | null | undefined;
11206
10831
  } | {
11207
10832
  country: string;
@@ -11229,10 +10854,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11229
10854
  start: string;
11230
10855
  end: string;
11231
10856
  } | null | undefined> | undefined;
11232
- actionDetails?: {
11233
- templateId?: string | undefined;
11234
- isImmediateCorrection?: boolean | undefined;
11235
- } | undefined;
11236
10857
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
11237
10858
  keepAssignment?: boolean | undefined;
11238
10859
  }, {
@@ -11259,8 +10880,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11259
10880
  street?: string | null | undefined;
11260
10881
  zipCode?: string | null | undefined;
11261
10882
  } | {
11262
- firstname?: string | null | undefined;
11263
- surname?: string | null | undefined;
10883
+ firstname: string;
10884
+ surname: string;
11264
10885
  middlename?: string | null | undefined;
11265
10886
  } | {
11266
10887
  country: string;
@@ -11304,8 +10925,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11304
10925
  street?: string | null | undefined;
11305
10926
  zipCode?: string | null | undefined;
11306
10927
  } | {
11307
- firstname?: string | null | undefined;
11308
- surname?: string | null | undefined;
10928
+ firstname: string;
10929
+ surname: string;
11309
10930
  middlename?: string | null | undefined;
11310
10931
  } | {
11311
10932
  country: string;
@@ -11333,10 +10954,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11333
10954
  start: string;
11334
10955
  end: string;
11335
10956
  } | null | undefined> | undefined;
11336
- actionDetails?: {
11337
- templateId?: string | undefined;
11338
- isImmediateCorrection?: boolean | undefined;
11339
- } | undefined;
11340
10957
  originalActionId?: string | undefined;
11341
10958
  keepAssignment?: boolean | undefined;
11342
10959
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -11465,16 +11082,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11465
11082
  addressLine3?: string | null | undefined;
11466
11083
  postcodeOrZip?: string | null | undefined;
11467
11084
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11468
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11469
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11085
+ firstname: z.ZodString;
11086
+ surname: z.ZodString;
11470
11087
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11471
11088
  }, "strip", z.ZodTypeAny, {
11472
- firstname?: string | null | undefined;
11473
- surname?: string | null | undefined;
11089
+ firstname: string;
11090
+ surname: string;
11474
11091
  middlename?: string | null | undefined;
11475
11092
  }, {
11476
- firstname?: string | null | undefined;
11477
- surname?: string | null | undefined;
11093
+ firstname: string;
11094
+ surname: string;
11478
11095
  middlename?: string | null | undefined;
11479
11096
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11480
11097
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -11600,28 +11217,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11600
11217
  addressLine3?: string | null | undefined;
11601
11218
  postcodeOrZip?: string | null | undefined;
11602
11219
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11603
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11604
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11220
+ firstname: z.ZodString;
11221
+ surname: z.ZodString;
11605
11222
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11606
11223
  }, "strip", z.ZodTypeAny, {
11607
- firstname?: string | null | undefined;
11608
- surname?: string | null | undefined;
11224
+ firstname: string;
11225
+ surname: string;
11609
11226
  middlename?: string | null | undefined;
11610
11227
  }, {
11611
- firstname?: string | null | undefined;
11612
- surname?: string | null | undefined;
11228
+ firstname: string;
11229
+ surname: string;
11613
11230
  middlename?: string | null | undefined;
11614
11231
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11615
- actionDetails: z.ZodOptional<z.ZodObject<{
11616
- templateId: z.ZodOptional<z.ZodString>;
11617
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
11618
- }, "strip", z.ZodTypeAny, {
11619
- templateId?: string | undefined;
11620
- isImmediateCorrection?: boolean | undefined;
11621
- }, {
11622
- templateId?: string | undefined;
11623
- isImmediateCorrection?: boolean | undefined;
11624
- }>>;
11625
11232
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
11626
11233
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
11627
11234
  }, {
@@ -11646,8 +11253,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11646
11253
  street?: string | null | undefined;
11647
11254
  zipCode?: string | null | undefined;
11648
11255
  } | {
11649
- firstname?: string | null | undefined;
11650
- surname?: string | null | undefined;
11256
+ firstname: string;
11257
+ surname: string;
11651
11258
  middlename?: string | null | undefined;
11652
11259
  } | {
11653
11260
  country: string;
@@ -11693,8 +11300,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11693
11300
  street?: string | null | undefined;
11694
11301
  zipCode?: string | null | undefined;
11695
11302
  } | {
11696
- firstname?: string | null | undefined;
11697
- surname?: string | null | undefined;
11303
+ firstname: string;
11304
+ surname: string;
11698
11305
  middlename?: string | null | undefined;
11699
11306
  } | {
11700
11307
  country: string;
@@ -11722,10 +11329,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11722
11329
  start: string;
11723
11330
  end: string;
11724
11331
  } | null | undefined> | undefined;
11725
- actionDetails?: {
11726
- templateId?: string | undefined;
11727
- isImmediateCorrection?: boolean | undefined;
11728
- } | undefined;
11729
11332
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
11730
11333
  keepAssignment?: boolean | undefined;
11731
11334
  }, {
@@ -11749,8 +11352,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11749
11352
  street?: string | null | undefined;
11750
11353
  zipCode?: string | null | undefined;
11751
11354
  } | {
11752
- firstname?: string | null | undefined;
11753
- surname?: string | null | undefined;
11355
+ firstname: string;
11356
+ surname: string;
11754
11357
  middlename?: string | null | undefined;
11755
11358
  } | {
11756
11359
  country: string;
@@ -11794,8 +11397,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11794
11397
  street?: string | null | undefined;
11795
11398
  zipCode?: string | null | undefined;
11796
11399
  } | {
11797
- firstname?: string | null | undefined;
11798
- surname?: string | null | undefined;
11400
+ firstname: string;
11401
+ surname: string;
11799
11402
  middlename?: string | null | undefined;
11800
11403
  } | {
11801
11404
  country: string;
@@ -11823,10 +11426,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11823
11426
  start: string;
11824
11427
  end: string;
11825
11428
  } | null | undefined> | undefined;
11826
- actionDetails?: {
11827
- templateId?: string | undefined;
11828
- isImmediateCorrection?: boolean | undefined;
11829
- } | undefined;
11830
11429
  originalActionId?: string | undefined;
11831
11430
  keepAssignment?: boolean | undefined;
11832
11431
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -11955,16 +11554,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
11955
11554
  addressLine3?: string | null | undefined;
11956
11555
  postcodeOrZip?: string | null | undefined;
11957
11556
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11958
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11959
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11557
+ firstname: z.ZodString;
11558
+ surname: z.ZodString;
11960
11559
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11961
11560
  }, "strip", z.ZodTypeAny, {
11962
- firstname?: string | null | undefined;
11963
- surname?: string | null | undefined;
11561
+ firstname: string;
11562
+ surname: string;
11964
11563
  middlename?: string | null | undefined;
11965
11564
  }, {
11966
- firstname?: string | null | undefined;
11967
- surname?: string | null | undefined;
11565
+ firstname: string;
11566
+ surname: string;
11968
11567
  middlename?: string | null | undefined;
11969
11568
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
11970
11569
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -12090,28 +11689,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12090
11689
  addressLine3?: string | null | undefined;
12091
11690
  postcodeOrZip?: string | null | undefined;
12092
11691
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12093
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12094
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11692
+ firstname: z.ZodString;
11693
+ surname: z.ZodString;
12095
11694
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12096
11695
  }, "strip", z.ZodTypeAny, {
12097
- firstname?: string | null | undefined;
12098
- surname?: string | null | undefined;
11696
+ firstname: string;
11697
+ surname: string;
12099
11698
  middlename?: string | null | undefined;
12100
11699
  }, {
12101
- firstname?: string | null | undefined;
12102
- surname?: string | null | undefined;
11700
+ firstname: string;
11701
+ surname: string;
12103
11702
  middlename?: string | null | undefined;
12104
11703
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12105
- actionDetails: z.ZodOptional<z.ZodObject<{
12106
- templateId: z.ZodOptional<z.ZodString>;
12107
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
12108
- }, "strip", z.ZodTypeAny, {
12109
- templateId?: string | undefined;
12110
- isImmediateCorrection?: boolean | undefined;
12111
- }, {
12112
- templateId?: string | undefined;
12113
- isImmediateCorrection?: boolean | undefined;
12114
- }>>;
12115
11704
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
12116
11705
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
12117
11706
  }, {
@@ -12136,8 +11725,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12136
11725
  street?: string | null | undefined;
12137
11726
  zipCode?: string | null | undefined;
12138
11727
  } | {
12139
- firstname?: string | null | undefined;
12140
- surname?: string | null | undefined;
11728
+ firstname: string;
11729
+ surname: string;
12141
11730
  middlename?: string | null | undefined;
12142
11731
  } | {
12143
11732
  country: string;
@@ -12183,8 +11772,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12183
11772
  street?: string | null | undefined;
12184
11773
  zipCode?: string | null | undefined;
12185
11774
  } | {
12186
- firstname?: string | null | undefined;
12187
- surname?: string | null | undefined;
11775
+ firstname: string;
11776
+ surname: string;
12188
11777
  middlename?: string | null | undefined;
12189
11778
  } | {
12190
11779
  country: string;
@@ -12212,10 +11801,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12212
11801
  start: string;
12213
11802
  end: string;
12214
11803
  } | null | undefined> | undefined;
12215
- actionDetails?: {
12216
- templateId?: string | undefined;
12217
- isImmediateCorrection?: boolean | undefined;
12218
- } | undefined;
12219
11804
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
12220
11805
  keepAssignment?: boolean | undefined;
12221
11806
  }, {
@@ -12238,8 +11823,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12238
11823
  street?: string | null | undefined;
12239
11824
  zipCode?: string | null | undefined;
12240
11825
  } | {
12241
- firstname?: string | null | undefined;
12242
- surname?: string | null | undefined;
11826
+ firstname: string;
11827
+ surname: string;
12243
11828
  middlename?: string | null | undefined;
12244
11829
  } | {
12245
11830
  country: string;
@@ -12283,8 +11868,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12283
11868
  street?: string | null | undefined;
12284
11869
  zipCode?: string | null | undefined;
12285
11870
  } | {
12286
- firstname?: string | null | undefined;
12287
- surname?: string | null | undefined;
11871
+ firstname: string;
11872
+ surname: string;
12288
11873
  middlename?: string | null | undefined;
12289
11874
  } | {
12290
11875
  country: string;
@@ -12312,10 +11897,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12312
11897
  start: string;
12313
11898
  end: string;
12314
11899
  } | null | undefined> | undefined;
12315
- actionDetails?: {
12316
- templateId?: string | undefined;
12317
- isImmediateCorrection?: boolean | undefined;
12318
- } | undefined;
12319
11900
  originalActionId?: string | undefined;
12320
11901
  assignedTo?: null | undefined;
12321
11902
  keepAssignment?: boolean | undefined;
@@ -12445,16 +12026,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12445
12026
  addressLine3?: string | null | undefined;
12446
12027
  postcodeOrZip?: string | null | undefined;
12447
12028
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12448
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12449
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12029
+ firstname: z.ZodString;
12030
+ surname: z.ZodString;
12450
12031
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12451
12032
  }, "strip", z.ZodTypeAny, {
12452
- firstname?: string | null | undefined;
12453
- surname?: string | null | undefined;
12033
+ firstname: string;
12034
+ surname: string;
12454
12035
  middlename?: string | null | undefined;
12455
12036
  }, {
12456
- firstname?: string | null | undefined;
12457
- surname?: string | null | undefined;
12037
+ firstname: string;
12038
+ surname: string;
12458
12039
  middlename?: string | null | undefined;
12459
12040
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12460
12041
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -12580,32 +12161,29 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12580
12161
  addressLine3?: string | null | undefined;
12581
12162
  postcodeOrZip?: string | null | undefined;
12582
12163
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12583
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12584
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12164
+ firstname: z.ZodString;
12165
+ surname: z.ZodString;
12585
12166
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12586
12167
  }, "strip", z.ZodTypeAny, {
12587
- firstname?: string | null | undefined;
12588
- surname?: string | null | undefined;
12168
+ firstname: string;
12169
+ surname: string;
12589
12170
  middlename?: string | null | undefined;
12590
12171
  }, {
12591
- firstname?: string | null | undefined;
12592
- surname?: string | null | undefined;
12172
+ firstname: string;
12173
+ surname: string;
12593
12174
  middlename?: string | null | undefined;
12594
12175
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12595
- 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<{
12596
12181
  templateId: z.ZodOptional<z.ZodString>;
12597
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
12598
12182
  }, "strip", z.ZodTypeAny, {
12599
12183
  templateId?: string | undefined;
12600
- isImmediateCorrection?: boolean | undefined;
12601
12184
  }, {
12602
12185
  templateId?: string | undefined;
12603
- isImmediateCorrection?: boolean | undefined;
12604
12186
  }>>;
12605
- originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
12606
- keepAssignment: z.ZodOptional<z.ZodBoolean>;
12607
- }, {
12608
- type: z.ZodDefault<z.ZodLiteral<"PRINT_CERTIFICATE">>;
12609
12187
  }>, "strip", z.ZodTypeAny, {
12610
12188
  type: "PRINT_CERTIFICATE";
12611
12189
  transactionId: string;
@@ -12625,8 +12203,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12625
12203
  street?: string | null | undefined;
12626
12204
  zipCode?: string | null | undefined;
12627
12205
  } | {
12628
- firstname?: string | null | undefined;
12629
- surname?: string | null | undefined;
12206
+ firstname: string;
12207
+ surname: string;
12630
12208
  middlename?: string | null | undefined;
12631
12209
  } | {
12632
12210
  country: string;
@@ -12655,6 +12233,9 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12655
12233
  end: string;
12656
12234
  } | null | undefined>;
12657
12235
  eventId: string & z.BRAND<"UUID">;
12236
+ content?: {
12237
+ templateId?: string | undefined;
12238
+ } | undefined;
12658
12239
  annotation?: Record<string, string | number | boolean | {
12659
12240
  type: string;
12660
12241
  path: string;
@@ -12671,8 +12252,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12671
12252
  street?: string | null | undefined;
12672
12253
  zipCode?: string | null | undefined;
12673
12254
  } | {
12674
- firstname?: string | null | undefined;
12675
- surname?: string | null | undefined;
12255
+ firstname: string;
12256
+ surname: string;
12676
12257
  middlename?: string | null | undefined;
12677
12258
  } | {
12678
12259
  country: string;
@@ -12700,16 +12281,15 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12700
12281
  start: string;
12701
12282
  end: string;
12702
12283
  } | null | undefined> | undefined;
12703
- actionDetails?: {
12704
- templateId?: string | undefined;
12705
- isImmediateCorrection?: boolean | undefined;
12706
- } | undefined;
12707
12284
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
12708
12285
  keepAssignment?: boolean | undefined;
12709
12286
  }, {
12710
12287
  transactionId: string;
12711
12288
  eventId: string;
12712
12289
  type?: "PRINT_CERTIFICATE" | undefined;
12290
+ content?: {
12291
+ templateId?: string | undefined;
12292
+ } | undefined;
12713
12293
  declaration?: Record<string, string | number | boolean | {
12714
12294
  type: string;
12715
12295
  path: string;
@@ -12726,8 +12306,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12726
12306
  street?: string | null | undefined;
12727
12307
  zipCode?: string | null | undefined;
12728
12308
  } | {
12729
- firstname?: string | null | undefined;
12730
- surname?: string | null | undefined;
12309
+ firstname: string;
12310
+ surname: string;
12731
12311
  middlename?: string | null | undefined;
12732
12312
  } | {
12733
12313
  country: string;
@@ -12771,8 +12351,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12771
12351
  street?: string | null | undefined;
12772
12352
  zipCode?: string | null | undefined;
12773
12353
  } | {
12774
- firstname?: string | null | undefined;
12775
- surname?: string | null | undefined;
12354
+ firstname: string;
12355
+ surname: string;
12776
12356
  middlename?: string | null | undefined;
12777
12357
  } | {
12778
12358
  country: string;
@@ -12800,10 +12380,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12800
12380
  start: string;
12801
12381
  end: string;
12802
12382
  } | null | undefined> | undefined;
12803
- actionDetails?: {
12804
- templateId?: string | undefined;
12805
- isImmediateCorrection?: boolean | undefined;
12806
- } | undefined;
12807
12383
  originalActionId?: string | undefined;
12808
12384
  keepAssignment?: boolean | undefined;
12809
12385
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -12932,16 +12508,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
12932
12508
  addressLine3?: string | null | undefined;
12933
12509
  postcodeOrZip?: string | null | undefined;
12934
12510
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12935
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12936
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12511
+ firstname: z.ZodString;
12512
+ surname: z.ZodString;
12937
12513
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12938
12514
  }, "strip", z.ZodTypeAny, {
12939
- firstname?: string | null | undefined;
12940
- surname?: string | null | undefined;
12515
+ firstname: string;
12516
+ surname: string;
12941
12517
  middlename?: string | null | undefined;
12942
12518
  }, {
12943
- firstname?: string | null | undefined;
12944
- surname?: string | null | undefined;
12519
+ firstname: string;
12520
+ surname: string;
12945
12521
  middlename?: string | null | undefined;
12946
12522
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
12947
12523
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -13067,28 +12643,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13067
12643
  addressLine3?: string | null | undefined;
13068
12644
  postcodeOrZip?: string | null | undefined;
13069
12645
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13070
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13071
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12646
+ firstname: z.ZodString;
12647
+ surname: z.ZodString;
13072
12648
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13073
12649
  }, "strip", z.ZodTypeAny, {
13074
- firstname?: string | null | undefined;
13075
- surname?: string | null | undefined;
12650
+ firstname: string;
12651
+ surname: string;
13076
12652
  middlename?: string | null | undefined;
13077
12653
  }, {
13078
- firstname?: string | null | undefined;
13079
- surname?: string | null | undefined;
12654
+ firstname: string;
12655
+ surname: string;
13080
12656
  middlename?: string | null | undefined;
13081
12657
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
13082
- actionDetails: z.ZodOptional<z.ZodObject<{
13083
- templateId: z.ZodOptional<z.ZodString>;
13084
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
13085
- }, "strip", z.ZodTypeAny, {
13086
- templateId?: string | undefined;
13087
- isImmediateCorrection?: boolean | undefined;
13088
- }, {
13089
- templateId?: string | undefined;
13090
- isImmediateCorrection?: boolean | undefined;
13091
- }>>;
13092
12658
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
13093
12659
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
13094
12660
  }, {
@@ -13112,8 +12678,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13112
12678
  street?: string | null | undefined;
13113
12679
  zipCode?: string | null | undefined;
13114
12680
  } | {
13115
- firstname?: string | null | undefined;
13116
- surname?: string | null | undefined;
12681
+ firstname: string;
12682
+ surname: string;
13117
12683
  middlename?: string | null | undefined;
13118
12684
  } | {
13119
12685
  country: string;
@@ -13158,8 +12724,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13158
12724
  street?: string | null | undefined;
13159
12725
  zipCode?: string | null | undefined;
13160
12726
  } | {
13161
- firstname?: string | null | undefined;
13162
- surname?: string | null | undefined;
12727
+ firstname: string;
12728
+ surname: string;
13163
12729
  middlename?: string | null | undefined;
13164
12730
  } | {
13165
12731
  country: string;
@@ -13187,10 +12753,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13187
12753
  start: string;
13188
12754
  end: string;
13189
12755
  } | null | undefined> | undefined;
13190
- actionDetails?: {
13191
- templateId?: string | undefined;
13192
- isImmediateCorrection?: boolean | undefined;
13193
- } | undefined;
13194
12756
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
13195
12757
  keepAssignment?: boolean | undefined;
13196
12758
  }, {
@@ -13213,8 +12775,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13213
12775
  street?: string | null | undefined;
13214
12776
  zipCode?: string | null | undefined;
13215
12777
  } | {
13216
- firstname?: string | null | undefined;
13217
- surname?: string | null | undefined;
12778
+ firstname: string;
12779
+ surname: string;
13218
12780
  middlename?: string | null | undefined;
13219
12781
  } | {
13220
12782
  country: string;
@@ -13258,8 +12820,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13258
12820
  street?: string | null | undefined;
13259
12821
  zipCode?: string | null | undefined;
13260
12822
  } | {
13261
- firstname?: string | null | undefined;
13262
- surname?: string | null | undefined;
12823
+ firstname: string;
12824
+ surname: string;
13263
12825
  middlename?: string | null | undefined;
13264
12826
  } | {
13265
12827
  country: string;
@@ -13287,10 +12849,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13287
12849
  start: string;
13288
12850
  end: string;
13289
12851
  } | null | undefined> | undefined;
13290
- actionDetails?: {
13291
- templateId?: string | undefined;
13292
- isImmediateCorrection?: boolean | undefined;
13293
- } | undefined;
13294
12852
  originalActionId?: string | undefined;
13295
12853
  keepAssignment?: boolean | undefined;
13296
12854
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -13419,16 +12977,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13419
12977
  addressLine3?: string | null | undefined;
13420
12978
  postcodeOrZip?: string | null | undefined;
13421
12979
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13422
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13423
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12980
+ firstname: z.ZodString;
12981
+ surname: z.ZodString;
13424
12982
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13425
12983
  }, "strip", z.ZodTypeAny, {
13426
- firstname?: string | null | undefined;
13427
- surname?: string | null | undefined;
12984
+ firstname: string;
12985
+ surname: string;
13428
12986
  middlename?: string | null | undefined;
13429
12987
  }, {
13430
- firstname?: string | null | undefined;
13431
- surname?: string | null | undefined;
12988
+ firstname: string;
12989
+ surname: string;
13432
12990
  middlename?: string | null | undefined;
13433
12991
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
13434
12992
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -13554,35 +13112,39 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13554
13112
  addressLine3?: string | null | undefined;
13555
13113
  postcodeOrZip?: string | null | undefined;
13556
13114
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13557
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13558
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13115
+ firstname: z.ZodString;
13116
+ surname: z.ZodString;
13559
13117
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13560
13118
  }, "strip", z.ZodTypeAny, {
13561
- firstname?: string | null | undefined;
13562
- surname?: string | null | undefined;
13119
+ firstname: string;
13120
+ surname: string;
13563
13121
  middlename?: string | null | undefined;
13564
13122
  }, {
13565
- firstname?: string | null | undefined;
13566
- surname?: string | null | undefined;
13123
+ firstname: string;
13124
+ surname: string;
13567
13125
  middlename?: string | null | undefined;
13568
13126
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
13569
- actionDetails: z.ZodOptional<z.ZodObject<{
13570
- templateId: z.ZodOptional<z.ZodString>;
13571
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
13572
- }, "strip", z.ZodTypeAny, {
13573
- templateId?: string | undefined;
13574
- isImmediateCorrection?: boolean | undefined;
13575
- }, {
13576
- templateId?: string | undefined;
13577
- isImmediateCorrection?: boolean | undefined;
13578
- }>>;
13579
13127
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
13580
13128
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
13581
13129
  }, {
13582
13130
  requestId: z.ZodString;
13583
13131
  type: z.ZodDefault<z.ZodLiteral<"REJECT_CORRECTION">>;
13132
+ reason: z.ZodObject<{
13133
+ message: z.ZodString;
13134
+ isDuplicate: z.ZodOptional<z.ZodBoolean>;
13135
+ }, "strip", z.ZodTypeAny, {
13136
+ message: string;
13137
+ isDuplicate?: boolean | undefined;
13138
+ }, {
13139
+ message: string;
13140
+ isDuplicate?: boolean | undefined;
13141
+ }>;
13584
13142
  }>, "strip", z.ZodTypeAny, {
13585
13143
  type: "REJECT_CORRECTION";
13144
+ reason: {
13145
+ message: string;
13146
+ isDuplicate?: boolean | undefined;
13147
+ };
13586
13148
  transactionId: string;
13587
13149
  declaration: Record<string, string | number | boolean | {
13588
13150
  type: string;
@@ -13600,8 +13162,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13600
13162
  street?: string | null | undefined;
13601
13163
  zipCode?: string | null | undefined;
13602
13164
  } | {
13603
- firstname?: string | null | undefined;
13604
- surname?: string | null | undefined;
13165
+ firstname: string;
13166
+ surname: string;
13605
13167
  middlename?: string | null | undefined;
13606
13168
  } | {
13607
13169
  country: string;
@@ -13647,8 +13209,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13647
13209
  street?: string | null | undefined;
13648
13210
  zipCode?: string | null | undefined;
13649
13211
  } | {
13650
- firstname?: string | null | undefined;
13651
- surname?: string | null | undefined;
13212
+ firstname: string;
13213
+ surname: string;
13652
13214
  middlename?: string | null | undefined;
13653
13215
  } | {
13654
13216
  country: string;
@@ -13676,13 +13238,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13676
13238
  start: string;
13677
13239
  end: string;
13678
13240
  } | null | undefined> | undefined;
13679
- actionDetails?: {
13680
- templateId?: string | undefined;
13681
- isImmediateCorrection?: boolean | undefined;
13682
- } | undefined;
13683
13241
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
13684
13242
  keepAssignment?: boolean | undefined;
13685
13243
  }, {
13244
+ reason: {
13245
+ message: string;
13246
+ isDuplicate?: boolean | undefined;
13247
+ };
13686
13248
  transactionId: string;
13687
13249
  requestId: string;
13688
13250
  eventId: string;
@@ -13703,8 +13265,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13703
13265
  street?: string | null | undefined;
13704
13266
  zipCode?: string | null | undefined;
13705
13267
  } | {
13706
- firstname?: string | null | undefined;
13707
- surname?: string | null | undefined;
13268
+ firstname: string;
13269
+ surname: string;
13708
13270
  middlename?: string | null | undefined;
13709
13271
  } | {
13710
13272
  country: string;
@@ -13748,8 +13310,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13748
13310
  street?: string | null | undefined;
13749
13311
  zipCode?: string | null | undefined;
13750
13312
  } | {
13751
- firstname?: string | null | undefined;
13752
- surname?: string | null | undefined;
13313
+ firstname: string;
13314
+ surname: string;
13753
13315
  middlename?: string | null | undefined;
13754
13316
  } | {
13755
13317
  country: string;
@@ -13777,10 +13339,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13777
13339
  start: string;
13778
13340
  end: string;
13779
13341
  } | null | undefined> | undefined;
13780
- actionDetails?: {
13781
- templateId?: string | undefined;
13782
- isImmediateCorrection?: boolean | undefined;
13783
- } | undefined;
13784
13342
  originalActionId?: string | undefined;
13785
13343
  keepAssignment?: boolean | undefined;
13786
13344
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -13909,16 +13467,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
13909
13467
  addressLine3?: string | null | undefined;
13910
13468
  postcodeOrZip?: string | null | undefined;
13911
13469
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13912
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13913
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13470
+ firstname: z.ZodString;
13471
+ surname: z.ZodString;
13914
13472
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13915
13473
  }, "strip", z.ZodTypeAny, {
13916
- firstname?: string | null | undefined;
13917
- surname?: string | null | undefined;
13474
+ firstname: string;
13475
+ surname: string;
13918
13476
  middlename?: string | null | undefined;
13919
13477
  }, {
13920
- firstname?: string | null | undefined;
13921
- surname?: string | null | undefined;
13478
+ firstname: string;
13479
+ surname: string;
13922
13480
  middlename?: string | null | undefined;
13923
13481
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
13924
13482
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -14044,28 +13602,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14044
13602
  addressLine3?: string | null | undefined;
14045
13603
  postcodeOrZip?: string | null | undefined;
14046
13604
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
14047
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14048
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13605
+ firstname: z.ZodString;
13606
+ surname: z.ZodString;
14049
13607
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14050
13608
  }, "strip", z.ZodTypeAny, {
14051
- firstname?: string | null | undefined;
14052
- surname?: string | null | undefined;
13609
+ firstname: string;
13610
+ surname: string;
14053
13611
  middlename?: string | null | undefined;
14054
13612
  }, {
14055
- firstname?: string | null | undefined;
14056
- surname?: string | null | undefined;
13613
+ firstname: string;
13614
+ surname: string;
14057
13615
  middlename?: string | null | undefined;
14058
13616
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
14059
- actionDetails: z.ZodOptional<z.ZodObject<{
14060
- templateId: z.ZodOptional<z.ZodString>;
14061
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
14062
- }, "strip", z.ZodTypeAny, {
14063
- templateId?: string | undefined;
14064
- isImmediateCorrection?: boolean | undefined;
14065
- }, {
14066
- templateId?: string | undefined;
14067
- isImmediateCorrection?: boolean | undefined;
14068
- }>>;
14069
13617
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
14070
13618
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
14071
13619
  }, {
@@ -14090,8 +13638,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14090
13638
  street?: string | null | undefined;
14091
13639
  zipCode?: string | null | undefined;
14092
13640
  } | {
14093
- firstname?: string | null | undefined;
14094
- surname?: string | null | undefined;
13641
+ firstname: string;
13642
+ surname: string;
14095
13643
  middlename?: string | null | undefined;
14096
13644
  } | {
14097
13645
  country: string;
@@ -14137,8 +13685,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14137
13685
  street?: string | null | undefined;
14138
13686
  zipCode?: string | null | undefined;
14139
13687
  } | {
14140
- firstname?: string | null | undefined;
14141
- surname?: string | null | undefined;
13688
+ firstname: string;
13689
+ surname: string;
14142
13690
  middlename?: string | null | undefined;
14143
13691
  } | {
14144
13692
  country: string;
@@ -14166,10 +13714,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14166
13714
  start: string;
14167
13715
  end: string;
14168
13716
  } | null | undefined> | undefined;
14169
- actionDetails?: {
14170
- templateId?: string | undefined;
14171
- isImmediateCorrection?: boolean | undefined;
14172
- } | undefined;
14173
13717
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
14174
13718
  keepAssignment?: boolean | undefined;
14175
13719
  }, {
@@ -14193,8 +13737,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14193
13737
  street?: string | null | undefined;
14194
13738
  zipCode?: string | null | undefined;
14195
13739
  } | {
14196
- firstname?: string | null | undefined;
14197
- surname?: string | null | undefined;
13740
+ firstname: string;
13741
+ surname: string;
14198
13742
  middlename?: string | null | undefined;
14199
13743
  } | {
14200
13744
  country: string;
@@ -14238,8 +13782,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14238
13782
  street?: string | null | undefined;
14239
13783
  zipCode?: string | null | undefined;
14240
13784
  } | {
14241
- firstname?: string | null | undefined;
14242
- surname?: string | null | undefined;
13785
+ firstname: string;
13786
+ surname: string;
14243
13787
  middlename?: string | null | undefined;
14244
13788
  } | {
14245
13789
  country: string;
@@ -14267,10 +13811,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14267
13811
  start: string;
14268
13812
  end: string;
14269
13813
  } | null | undefined> | undefined;
14270
- actionDetails?: {
14271
- templateId?: string | undefined;
14272
- isImmediateCorrection?: boolean | undefined;
14273
- } | undefined;
14274
13814
  originalActionId?: string | undefined;
14275
13815
  keepAssignment?: boolean | undefined;
14276
13816
  }>, z.ZodObject<z.objectUtil.extendShape<{
@@ -14399,16 +13939,16 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14399
13939
  addressLine3?: string | null | undefined;
14400
13940
  postcodeOrZip?: string | null | undefined;
14401
13941
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
14402
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14403
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13942
+ firstname: z.ZodString;
13943
+ surname: z.ZodString;
14404
13944
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14405
13945
  }, "strip", z.ZodTypeAny, {
14406
- firstname?: string | null | undefined;
14407
- surname?: string | null | undefined;
13946
+ firstname: string;
13947
+ surname: string;
14408
13948
  middlename?: string | null | undefined;
14409
13949
  }, {
14410
- firstname?: string | null | undefined;
14411
- surname?: string | null | undefined;
13950
+ firstname: string;
13951
+ surname: string;
14412
13952
  middlename?: string | null | undefined;
14413
13953
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
14414
13954
  annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -14534,28 +14074,18 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14534
14074
  addressLine3?: string | null | undefined;
14535
14075
  postcodeOrZip?: string | null | undefined;
14536
14076
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
14537
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14538
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14077
+ firstname: z.ZodString;
14078
+ surname: z.ZodString;
14539
14079
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14540
14080
  }, "strip", z.ZodTypeAny, {
14541
- firstname?: string | null | undefined;
14542
- surname?: string | null | undefined;
14081
+ firstname: string;
14082
+ surname: string;
14543
14083
  middlename?: string | null | undefined;
14544
14084
  }, {
14545
- firstname?: string | null | undefined;
14546
- surname?: string | null | undefined;
14085
+ firstname: string;
14086
+ surname: string;
14547
14087
  middlename?: string | null | undefined;
14548
14088
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>;
14549
- actionDetails: z.ZodOptional<z.ZodObject<{
14550
- templateId: z.ZodOptional<z.ZodString>;
14551
- isImmediateCorrection: z.ZodOptional<z.ZodBoolean>;
14552
- }, "strip", z.ZodTypeAny, {
14553
- templateId?: string | undefined;
14554
- isImmediateCorrection?: boolean | undefined;
14555
- }, {
14556
- templateId?: string | undefined;
14557
- isImmediateCorrection?: boolean | undefined;
14558
- }>>;
14559
14089
  originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
14560
14090
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
14561
14091
  }, {
@@ -14579,8 +14109,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14579
14109
  street?: string | null | undefined;
14580
14110
  zipCode?: string | null | undefined;
14581
14111
  } | {
14582
- firstname?: string | null | undefined;
14583
- surname?: string | null | undefined;
14112
+ firstname: string;
14113
+ surname: string;
14584
14114
  middlename?: string | null | undefined;
14585
14115
  } | {
14586
14116
  country: string;
@@ -14625,8 +14155,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14625
14155
  street?: string | null | undefined;
14626
14156
  zipCode?: string | null | undefined;
14627
14157
  } | {
14628
- firstname?: string | null | undefined;
14629
- surname?: string | null | undefined;
14158
+ firstname: string;
14159
+ surname: string;
14630
14160
  middlename?: string | null | undefined;
14631
14161
  } | {
14632
14162
  country: string;
@@ -14654,10 +14184,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14654
14184
  start: string;
14655
14185
  end: string;
14656
14186
  } | null | undefined> | undefined;
14657
- actionDetails?: {
14658
- templateId?: string | undefined;
14659
- isImmediateCorrection?: boolean | undefined;
14660
- } | undefined;
14661
14187
  originalActionId?: (string & z.BRAND<"UUID">) | undefined;
14662
14188
  keepAssignment?: boolean | undefined;
14663
14189
  }, {
@@ -14680,8 +14206,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14680
14206
  street?: string | null | undefined;
14681
14207
  zipCode?: string | null | undefined;
14682
14208
  } | {
14683
- firstname?: string | null | undefined;
14684
- surname?: string | null | undefined;
14209
+ firstname: string;
14210
+ surname: string;
14685
14211
  middlename?: string | null | undefined;
14686
14212
  } | {
14687
14213
  country: string;
@@ -14725,8 +14251,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14725
14251
  street?: string | null | undefined;
14726
14252
  zipCode?: string | null | undefined;
14727
14253
  } | {
14728
- firstname?: string | null | undefined;
14729
- surname?: string | null | undefined;
14254
+ firstname: string;
14255
+ surname: string;
14730
14256
  middlename?: string | null | undefined;
14731
14257
  } | {
14732
14258
  country: string;
@@ -14754,10 +14280,6 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
14754
14280
  start: string;
14755
14281
  end: string;
14756
14282
  } | null | undefined> | undefined;
14757
- actionDetails?: {
14758
- templateId?: string | undefined;
14759
- isImmediateCorrection?: boolean | undefined;
14760
- } | undefined;
14761
14283
  originalActionId?: string | undefined;
14762
14284
  keepAssignment?: boolean | undefined;
14763
14285
  }>]>;