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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/dist/commons/api/router.d.ts +433 -410
  2. package/dist/commons/conditionals/validate.d.ts +11 -2
  3. package/dist/commons/events/ActionConfig.d.ts +2004 -366
  4. package/dist/commons/events/ActionDocument.d.ts +795 -759
  5. package/dist/commons/events/ActionInput.d.ts +650 -614
  6. package/dist/commons/events/AdvancedSearchConfig.d.ts +83 -65
  7. package/dist/commons/events/CompositeFieldValue.d.ts +6 -6
  8. package/dist/commons/events/CountryConfigQueryInput.d.ts +88 -88
  9. package/dist/commons/events/Draft.d.ts +48 -48
  10. package/dist/commons/events/EventConfig.d.ts +695 -168
  11. package/dist/commons/events/EventDocument.d.ts +471 -445
  12. package/dist/commons/events/EventIndex.d.ts +184 -62
  13. package/dist/commons/events/EventMetadata.d.ts +9 -9
  14. package/dist/commons/events/FieldConfig.d.ts +254 -43
  15. package/dist/commons/events/FieldTypeMapping.d.ts +16 -16
  16. package/dist/commons/events/FieldValue.d.ts +12 -12
  17. package/dist/commons/events/FormConfig.d.ts +1032 -246
  18. package/dist/commons/events/PageConfig.d.ts +264 -46
  19. package/dist/commons/events/WorkqueueConfig.d.ts +288 -164
  20. package/dist/commons/events/defineConfig.d.ts +129 -30
  21. package/dist/commons/events/event.d.ts +68 -6
  22. package/dist/commons/events/field.d.ts +14 -0
  23. package/dist/commons/events/test.utils.d.ts +17 -13
  24. package/dist/commons/events/utils.d.ts +236 -60
  25. package/dist/conditionals/index.js +3 -2
  26. package/dist/events/index.js +260 -99
  27. package/package.json +1 -1
  28. package/tsconfig.json +1 -1
  29. package/dist/commons/conditionals/conditionals.test.d.ts +0 -2
  30. package/dist/commons/conditionals/validate-address.test.d.ts +0 -2
  31. package/dist/commons/conditionals/validate.test.d.ts +0 -2
  32. package/dist/commons/events/utils.test.d.ts +0 -2
@@ -125,16 +125,16 @@ export declare const ActionUpdate: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodStr
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
  export type ActionUpdate = z.infer<typeof ActionUpdate>;
@@ -276,16 +276,16 @@ export declare const EventState: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodStrin
276
276
  surname: string;
277
277
  middlename?: string | undefined;
278
278
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
279
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
280
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
279
+ firstname: z.ZodString;
280
+ surname: z.ZodString;
281
281
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
282
282
  }, "strip", z.ZodTypeAny, {
283
- firstname?: string | null | undefined;
284
- surname?: string | null | undefined;
283
+ firstname: string;
284
+ surname: string;
285
285
  middlename?: string | null | undefined;
286
286
  }, {
287
- firstname?: string | null | undefined;
288
- surname?: string | null | undefined;
287
+ firstname: string;
288
+ surname: string;
289
289
  middlename?: string | null | undefined;
290
290
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
291
291
  export type EventState = z.infer<typeof EventState>;
@@ -427,16 +427,16 @@ export declare const ActionBase: z.ZodObject<{
427
427
  addressLine3?: string | null | undefined;
428
428
  postcodeOrZip?: string | null | undefined;
429
429
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
430
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
431
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
430
+ firstname: z.ZodString;
431
+ surname: z.ZodString;
432
432
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
433
433
  }, "strip", z.ZodTypeAny, {
434
- firstname?: string | null | undefined;
435
- surname?: string | null | undefined;
434
+ firstname: string;
435
+ surname: string;
436
436
  middlename?: string | null | undefined;
437
437
  }, {
438
- firstname?: string | null | undefined;
439
- surname?: string | null | undefined;
438
+ firstname: string;
439
+ surname: string;
440
440
  middlename?: string | null | undefined;
441
441
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
442
442
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -562,16 +562,16 @@ export declare const ActionBase: z.ZodObject<{
562
562
  addressLine3?: string | null | undefined;
563
563
  postcodeOrZip?: string | null | undefined;
564
564
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
565
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
566
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
565
+ firstname: z.ZodString;
566
+ surname: z.ZodString;
567
567
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
568
568
  }, "strip", z.ZodTypeAny, {
569
- firstname?: string | null | undefined;
570
- surname?: string | null | undefined;
569
+ firstname: string;
570
+ surname: string;
571
571
  middlename?: string | null | undefined;
572
572
  }, {
573
- firstname?: string | null | undefined;
574
- surname?: string | null | undefined;
573
+ firstname: string;
574
+ surname: string;
575
575
  middlename?: string | null | undefined;
576
576
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
577
577
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -600,8 +600,8 @@ export declare const ActionBase: z.ZodObject<{
600
600
  street?: string | null | undefined;
601
601
  zipCode?: string | null | undefined;
602
602
  } | {
603
- firstname?: string | null | undefined;
604
- surname?: string | null | undefined;
603
+ firstname: string;
604
+ surname: string;
605
605
  middlename?: string | null | undefined;
606
606
  } | {
607
607
  country: string;
@@ -647,8 +647,8 @@ export declare const ActionBase: z.ZodObject<{
647
647
  street?: string | null | undefined;
648
648
  zipCode?: string | null | undefined;
649
649
  } | {
650
- firstname?: string | null | undefined;
651
- surname?: string | null | undefined;
650
+ firstname: string;
651
+ surname: string;
652
652
  middlename?: string | null | undefined;
653
653
  } | {
654
654
  country: string;
@@ -701,8 +701,8 @@ export declare const ActionBase: z.ZodObject<{
701
701
  street?: string | null | undefined;
702
702
  zipCode?: string | null | undefined;
703
703
  } | {
704
- firstname?: string | null | undefined;
705
- surname?: string | null | undefined;
704
+ firstname: string;
705
+ surname: string;
706
706
  middlename?: string | null | undefined;
707
707
  } | {
708
708
  country: string;
@@ -748,8 +748,8 @@ export declare const ActionBase: z.ZodObject<{
748
748
  street?: string | null | undefined;
749
749
  zipCode?: string | null | undefined;
750
750
  } | {
751
- firstname?: string | null | undefined;
752
- surname?: string | null | undefined;
751
+ firstname: string;
752
+ surname: string;
753
753
  middlename?: string | null | undefined;
754
754
  } | {
755
755
  country: string;
@@ -912,16 +912,16 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
912
912
  addressLine3?: string | null | undefined;
913
913
  postcodeOrZip?: string | null | undefined;
914
914
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
915
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
916
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
915
+ firstname: z.ZodString;
916
+ surname: z.ZodString;
917
917
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
918
918
  }, "strip", z.ZodTypeAny, {
919
- firstname?: string | null | undefined;
920
- surname?: string | null | undefined;
919
+ firstname: string;
920
+ surname: string;
921
921
  middlename?: string | null | undefined;
922
922
  }, {
923
- firstname?: string | null | undefined;
924
- surname?: string | null | undefined;
923
+ firstname: string;
924
+ surname: string;
925
925
  middlename?: string | null | undefined;
926
926
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
927
927
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -1047,16 +1047,16 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
1047
1047
  addressLine3?: string | null | undefined;
1048
1048
  postcodeOrZip?: string | null | undefined;
1049
1049
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1050
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1051
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1050
+ firstname: z.ZodString;
1051
+ surname: z.ZodString;
1052
1052
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1053
1053
  }, "strip", z.ZodTypeAny, {
1054
- firstname?: string | null | undefined;
1055
- surname?: string | null | undefined;
1054
+ firstname: string;
1055
+ surname: string;
1056
1056
  middlename?: string | null | undefined;
1057
1057
  }, {
1058
- firstname?: string | null | undefined;
1059
- surname?: string | null | undefined;
1058
+ firstname: string;
1059
+ surname: string;
1060
1060
  middlename?: string | null | undefined;
1061
1061
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
1062
1062
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -1089,8 +1089,8 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
1089
1089
  street?: string | null | undefined;
1090
1090
  zipCode?: string | null | undefined;
1091
1091
  } | {
1092
- firstname?: string | null | undefined;
1093
- surname?: string | null | undefined;
1092
+ firstname: string;
1093
+ surname: string;
1094
1094
  middlename?: string | null | undefined;
1095
1095
  } | {
1096
1096
  country: string;
@@ -1136,8 +1136,8 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
1136
1136
  street?: string | null | undefined;
1137
1137
  zipCode?: string | null | undefined;
1138
1138
  } | {
1139
- firstname?: string | null | undefined;
1140
- surname?: string | null | undefined;
1139
+ firstname: string;
1140
+ surname: string;
1141
1141
  middlename?: string | null | undefined;
1142
1142
  } | {
1143
1143
  country: string;
@@ -1192,8 +1192,8 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
1192
1192
  street?: string | null | undefined;
1193
1193
  zipCode?: string | null | undefined;
1194
1194
  } | {
1195
- firstname?: string | null | undefined;
1196
- surname?: string | null | undefined;
1195
+ firstname: string;
1196
+ surname: string;
1197
1197
  middlename?: string | null | undefined;
1198
1198
  } | {
1199
1199
  country: string;
@@ -1239,8 +1239,8 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
1239
1239
  street?: string | null | undefined;
1240
1240
  zipCode?: string | null | undefined;
1241
1241
  } | {
1242
- firstname?: string | null | undefined;
1243
- surname?: string | null | undefined;
1242
+ firstname: string;
1243
+ surname: string;
1244
1244
  middlename?: string | null | undefined;
1245
1245
  } | {
1246
1246
  country: string;
@@ -1414,16 +1414,16 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
1414
1414
  addressLine3?: string | null | undefined;
1415
1415
  postcodeOrZip?: string | null | undefined;
1416
1416
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1417
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1418
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1417
+ firstname: z.ZodString;
1418
+ surname: z.ZodString;
1419
1419
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1420
1420
  }, "strip", z.ZodTypeAny, {
1421
- firstname?: string | null | undefined;
1422
- surname?: string | null | undefined;
1421
+ firstname: string;
1422
+ surname: string;
1423
1423
  middlename?: string | null | undefined;
1424
1424
  }, {
1425
- firstname?: string | null | undefined;
1426
- surname?: string | null | undefined;
1425
+ firstname: string;
1426
+ surname: string;
1427
1427
  middlename?: string | null | undefined;
1428
1428
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
1429
1429
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -1549,16 +1549,16 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
1549
1549
  addressLine3?: string | null | undefined;
1550
1550
  postcodeOrZip?: string | null | undefined;
1551
1551
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1552
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1553
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1552
+ firstname: z.ZodString;
1553
+ surname: z.ZodString;
1554
1554
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1555
1555
  }, "strip", z.ZodTypeAny, {
1556
- firstname?: string | null | undefined;
1557
- surname?: string | null | undefined;
1556
+ firstname: string;
1557
+ surname: string;
1558
1558
  middlename?: string | null | undefined;
1559
1559
  }, {
1560
- firstname?: string | null | undefined;
1561
- surname?: string | null | undefined;
1560
+ firstname: string;
1561
+ surname: string;
1562
1562
  middlename?: string | null | undefined;
1563
1563
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
1564
1564
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -1590,8 +1590,8 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
1590
1590
  street?: string | null | undefined;
1591
1591
  zipCode?: string | null | undefined;
1592
1592
  } | {
1593
- firstname?: string | null | undefined;
1594
- surname?: string | null | undefined;
1593
+ firstname: string;
1594
+ surname: string;
1595
1595
  middlename?: string | null | undefined;
1596
1596
  } | {
1597
1597
  country: string;
@@ -1637,8 +1637,8 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
1637
1637
  street?: string | null | undefined;
1638
1638
  zipCode?: string | null | undefined;
1639
1639
  } | {
1640
- firstname?: string | null | undefined;
1641
- surname?: string | null | undefined;
1640
+ firstname: string;
1641
+ surname: string;
1642
1642
  middlename?: string | null | undefined;
1643
1643
  } | {
1644
1644
  country: string;
@@ -1692,8 +1692,8 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
1692
1692
  street?: string | null | undefined;
1693
1693
  zipCode?: string | null | undefined;
1694
1694
  } | {
1695
- firstname?: string | null | undefined;
1696
- surname?: string | null | undefined;
1695
+ firstname: string;
1696
+ surname: string;
1697
1697
  middlename?: string | null | undefined;
1698
1698
  } | {
1699
1699
  country: string;
@@ -1739,8 +1739,8 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
1739
1739
  street?: string | null | undefined;
1740
1740
  zipCode?: string | null | undefined;
1741
1741
  } | {
1742
- firstname?: string | null | undefined;
1743
- surname?: string | null | undefined;
1742
+ firstname: string;
1743
+ surname: string;
1744
1744
  middlename?: string | null | undefined;
1745
1745
  } | {
1746
1746
  country: string;
@@ -1770,14 +1770,14 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
1770
1770
  } | null | undefined> | null | undefined;
1771
1771
  originalActionId?: string | null | undefined;
1772
1772
  }>;
1773
- export declare const PrintDetails: z.ZodObject<{
1773
+ export declare const PrintContent: z.ZodObject<{
1774
1774
  templateId: z.ZodOptional<z.ZodString>;
1775
1775
  }, "strip", z.ZodTypeAny, {
1776
1776
  templateId?: string | undefined;
1777
1777
  }, {
1778
1778
  templateId?: string | undefined;
1779
1779
  }>;
1780
- export type PrintDetails = z.infer<typeof PrintDetails>;
1780
+ export type PrintContent = z.infer<typeof PrintContent>;
1781
1781
  declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
1782
1782
  id: z.ZodBranded<z.ZodString, "UUID">;
1783
1783
  transactionId: z.ZodString;
@@ -1910,16 +1910,16 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
1910
1910
  addressLine3?: string | null | undefined;
1911
1911
  postcodeOrZip?: string | null | undefined;
1912
1912
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1913
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1914
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1913
+ firstname: z.ZodString;
1914
+ surname: z.ZodString;
1915
1915
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1916
1916
  }, "strip", z.ZodTypeAny, {
1917
- firstname?: string | null | undefined;
1918
- surname?: string | null | undefined;
1917
+ firstname: string;
1918
+ surname: string;
1919
1919
  middlename?: string | null | undefined;
1920
1920
  }, {
1921
- firstname?: string | null | undefined;
1922
- surname?: string | null | undefined;
1921
+ firstname: string;
1922
+ surname: string;
1923
1923
  middlename?: string | null | undefined;
1924
1924
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
1925
1925
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -2045,23 +2045,23 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
2045
2045
  addressLine3?: string | null | undefined;
2046
2046
  postcodeOrZip?: string | null | undefined;
2047
2047
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2048
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2049
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2048
+ firstname: z.ZodString;
2049
+ surname: z.ZodString;
2050
2050
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2051
2051
  }, "strip", z.ZodTypeAny, {
2052
- firstname?: string | null | undefined;
2053
- surname?: string | null | undefined;
2052
+ firstname: string;
2053
+ surname: string;
2054
2054
  middlename?: string | null | undefined;
2055
2055
  }, {
2056
- firstname?: string | null | undefined;
2057
- surname?: string | null | undefined;
2056
+ firstname: string;
2057
+ surname: string;
2058
2058
  middlename?: string | null | undefined;
2059
2059
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
2060
2060
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
2061
2061
  originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
2062
2062
  }, {
2063
2063
  type: z.ZodLiteral<"PRINT_CERTIFICATE">;
2064
- actionDetails: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2064
+ content: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2065
2065
  templateId: z.ZodOptional<z.ZodString>;
2066
2066
  }, "strip", z.ZodTypeAny, {
2067
2067
  templateId?: string | undefined;
@@ -2093,8 +2093,8 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
2093
2093
  street?: string | null | undefined;
2094
2094
  zipCode?: string | null | undefined;
2095
2095
  } | {
2096
- firstname?: string | null | undefined;
2097
- surname?: string | null | undefined;
2096
+ firstname: string;
2097
+ surname: string;
2098
2098
  middlename?: string | null | undefined;
2099
2099
  } | {
2100
2100
  country: string;
@@ -2122,6 +2122,9 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
2122
2122
  start: string;
2123
2123
  end: string;
2124
2124
  } | null | undefined>;
2125
+ content?: {
2126
+ templateId?: string | undefined;
2127
+ } | null | undefined;
2125
2128
  createdBySignature?: string | null | undefined;
2126
2129
  createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
2127
2130
  annotation?: Record<string, string | number | boolean | {
@@ -2140,8 +2143,8 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
2140
2143
  street?: string | null | undefined;
2141
2144
  zipCode?: string | null | undefined;
2142
2145
  } | {
2143
- firstname?: string | null | undefined;
2144
- surname?: string | null | undefined;
2146
+ firstname: string;
2147
+ surname: string;
2145
2148
  middlename?: string | null | undefined;
2146
2149
  } | {
2147
2150
  country: string;
@@ -2170,9 +2173,6 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
2170
2173
  end: string;
2171
2174
  } | null | undefined> | null | undefined;
2172
2175
  originalActionId?: (string & z.BRAND<"UUID">) | null | undefined;
2173
- actionDetails?: {
2174
- templateId?: string | undefined;
2175
- } | null | undefined;
2176
2176
  }, {
2177
2177
  type: "PRINT_CERTIFICATE";
2178
2178
  id: string;
@@ -2198,8 +2198,8 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
2198
2198
  street?: string | null | undefined;
2199
2199
  zipCode?: string | null | undefined;
2200
2200
  } | {
2201
- firstname?: string | null | undefined;
2202
- surname?: string | null | undefined;
2201
+ firstname: string;
2202
+ surname: string;
2203
2203
  middlename?: string | null | undefined;
2204
2204
  } | {
2205
2205
  country: string;
@@ -2227,6 +2227,9 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
2227
2227
  start: string;
2228
2228
  end: string;
2229
2229
  } | null | undefined>;
2230
+ content?: {
2231
+ templateId?: string | undefined;
2232
+ } | null | undefined;
2230
2233
  createdBySignature?: string | null | undefined;
2231
2234
  createdAtLocation?: string | null | undefined;
2232
2235
  annotation?: Record<string, string | number | boolean | {
@@ -2245,8 +2248,8 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
2245
2248
  street?: string | null | undefined;
2246
2249
  zipCode?: string | null | undefined;
2247
2250
  } | {
2248
- firstname?: string | null | undefined;
2249
- surname?: string | null | undefined;
2251
+ firstname: string;
2252
+ surname: string;
2250
2253
  middlename?: string | null | undefined;
2251
2254
  } | {
2252
2255
  country: string;
@@ -2275,9 +2278,6 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
2275
2278
  end: string;
2276
2279
  } | null | undefined> | null | undefined;
2277
2280
  originalActionId?: string | null | undefined;
2278
- actionDetails?: {
2279
- templateId?: string | undefined;
2280
- } | null | undefined;
2281
2281
  }>;
2282
2282
  export type PrintCertificateAction = z.infer<typeof PrintCertificateAction>;
2283
2283
  declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
@@ -2412,16 +2412,16 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
2412
2412
  addressLine3?: string | null | undefined;
2413
2413
  postcodeOrZip?: string | null | undefined;
2414
2414
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2415
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2416
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2415
+ firstname: z.ZodString;
2416
+ surname: z.ZodString;
2417
2417
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2418
2418
  }, "strip", z.ZodTypeAny, {
2419
- firstname?: string | null | undefined;
2420
- surname?: string | null | undefined;
2419
+ firstname: string;
2420
+ surname: string;
2421
2421
  middlename?: string | null | undefined;
2422
2422
  }, {
2423
- firstname?: string | null | undefined;
2424
- surname?: string | null | undefined;
2423
+ firstname: string;
2424
+ surname: string;
2425
2425
  middlename?: string | null | undefined;
2426
2426
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
2427
2427
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -2547,16 +2547,16 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
2547
2547
  addressLine3?: string | null | undefined;
2548
2548
  postcodeOrZip?: string | null | undefined;
2549
2549
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2550
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2551
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2550
+ firstname: z.ZodString;
2551
+ surname: z.ZodString;
2552
2552
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2553
2553
  }, "strip", z.ZodTypeAny, {
2554
- firstname?: string | null | undefined;
2555
- surname?: string | null | undefined;
2554
+ firstname: string;
2555
+ surname: string;
2556
2556
  middlename?: string | null | undefined;
2557
2557
  }, {
2558
- firstname?: string | null | undefined;
2559
- surname?: string | null | undefined;
2558
+ firstname: string;
2559
+ surname: string;
2560
2560
  middlename?: string | null | undefined;
2561
2561
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
2562
2562
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -2588,8 +2588,8 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
2588
2588
  street?: string | null | undefined;
2589
2589
  zipCode?: string | null | undefined;
2590
2590
  } | {
2591
- firstname?: string | null | undefined;
2592
- surname?: string | null | undefined;
2591
+ firstname: string;
2592
+ surname: string;
2593
2593
  middlename?: string | null | undefined;
2594
2594
  } | {
2595
2595
  country: string;
@@ -2635,8 +2635,8 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
2635
2635
  street?: string | null | undefined;
2636
2636
  zipCode?: string | null | undefined;
2637
2637
  } | {
2638
- firstname?: string | null | undefined;
2639
- surname?: string | null | undefined;
2638
+ firstname: string;
2639
+ surname: string;
2640
2640
  middlename?: string | null | undefined;
2641
2641
  } | {
2642
2642
  country: string;
@@ -2690,8 +2690,8 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
2690
2690
  street?: string | null | undefined;
2691
2691
  zipCode?: string | null | undefined;
2692
2692
  } | {
2693
- firstname?: string | null | undefined;
2694
- surname?: string | null | undefined;
2693
+ firstname: string;
2694
+ surname: string;
2695
2695
  middlename?: string | null | undefined;
2696
2696
  } | {
2697
2697
  country: string;
@@ -2737,8 +2737,8 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
2737
2737
  street?: string | null | undefined;
2738
2738
  zipCode?: string | null | undefined;
2739
2739
  } | {
2740
- firstname?: string | null | undefined;
2741
- surname?: string | null | undefined;
2740
+ firstname: string;
2741
+ surname: string;
2742
2742
  middlename?: string | null | undefined;
2743
2743
  } | {
2744
2744
  country: string;
@@ -2901,16 +2901,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2901
2901
  addressLine3?: string | null | undefined;
2902
2902
  postcodeOrZip?: string | null | undefined;
2903
2903
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2904
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2905
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2904
+ firstname: z.ZodString;
2905
+ surname: z.ZodString;
2906
2906
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2907
2907
  }, "strip", z.ZodTypeAny, {
2908
- firstname?: string | null | undefined;
2909
- surname?: string | null | undefined;
2908
+ firstname: string;
2909
+ surname: string;
2910
2910
  middlename?: string | null | undefined;
2911
2911
  }, {
2912
- firstname?: string | null | undefined;
2913
- surname?: string | null | undefined;
2912
+ firstname: string;
2913
+ surname: string;
2914
2914
  middlename?: string | null | undefined;
2915
2915
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
2916
2916
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -3036,16 +3036,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3036
3036
  addressLine3?: string | null | undefined;
3037
3037
  postcodeOrZip?: string | null | undefined;
3038
3038
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3039
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3040
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3039
+ firstname: z.ZodString;
3040
+ surname: z.ZodString;
3041
3041
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3042
3042
  }, "strip", z.ZodTypeAny, {
3043
- firstname?: string | null | undefined;
3044
- surname?: string | null | undefined;
3043
+ firstname: string;
3044
+ surname: string;
3045
3045
  middlename?: string | null | undefined;
3046
3046
  }, {
3047
- firstname?: string | null | undefined;
3048
- surname?: string | null | undefined;
3047
+ firstname: string;
3048
+ surname: string;
3049
3049
  middlename?: string | null | undefined;
3050
3050
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
3051
3051
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -3077,8 +3077,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3077
3077
  street?: string | null | undefined;
3078
3078
  zipCode?: string | null | undefined;
3079
3079
  } | {
3080
- firstname?: string | null | undefined;
3081
- surname?: string | null | undefined;
3080
+ firstname: string;
3081
+ surname: string;
3082
3082
  middlename?: string | null | undefined;
3083
3083
  } | {
3084
3084
  country: string;
@@ -3124,8 +3124,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3124
3124
  street?: string | null | undefined;
3125
3125
  zipCode?: string | null | undefined;
3126
3126
  } | {
3127
- firstname?: string | null | undefined;
3128
- surname?: string | null | undefined;
3127
+ firstname: string;
3128
+ surname: string;
3129
3129
  middlename?: string | null | undefined;
3130
3130
  } | {
3131
3131
  country: string;
@@ -3179,8 +3179,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3179
3179
  street?: string | null | undefined;
3180
3180
  zipCode?: string | null | undefined;
3181
3181
  } | {
3182
- firstname?: string | null | undefined;
3183
- surname?: string | null | undefined;
3182
+ firstname: string;
3183
+ surname: string;
3184
3184
  middlename?: string | null | undefined;
3185
3185
  } | {
3186
3186
  country: string;
@@ -3226,8 +3226,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3226
3226
  street?: string | null | undefined;
3227
3227
  zipCode?: string | null | undefined;
3228
3228
  } | {
3229
- firstname?: string | null | undefined;
3230
- surname?: string | null | undefined;
3229
+ firstname: string;
3230
+ surname: string;
3231
3231
  middlename?: string | null | undefined;
3232
3232
  } | {
3233
3233
  country: string;
@@ -3388,16 +3388,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3388
3388
  addressLine3?: string | null | undefined;
3389
3389
  postcodeOrZip?: string | null | undefined;
3390
3390
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3391
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3392
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3391
+ firstname: z.ZodString;
3392
+ surname: z.ZodString;
3393
3393
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3394
3394
  }, "strip", z.ZodTypeAny, {
3395
- firstname?: string | null | undefined;
3396
- surname?: string | null | undefined;
3395
+ firstname: string;
3396
+ surname: string;
3397
3397
  middlename?: string | null | undefined;
3398
3398
  }, {
3399
- firstname?: string | null | undefined;
3400
- surname?: string | null | undefined;
3399
+ firstname: string;
3400
+ surname: string;
3401
3401
  middlename?: string | null | undefined;
3402
3402
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
3403
3403
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -3523,16 +3523,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3523
3523
  addressLine3?: string | null | undefined;
3524
3524
  postcodeOrZip?: string | null | undefined;
3525
3525
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3526
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3527
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3526
+ firstname: z.ZodString;
3527
+ surname: z.ZodString;
3528
3528
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3529
3529
  }, "strip", z.ZodTypeAny, {
3530
- firstname?: string | null | undefined;
3531
- surname?: string | null | undefined;
3530
+ firstname: string;
3531
+ surname: string;
3532
3532
  middlename?: string | null | undefined;
3533
3533
  }, {
3534
- firstname?: string | null | undefined;
3535
- surname?: string | null | undefined;
3534
+ firstname: string;
3535
+ surname: string;
3536
3536
  middlename?: string | null | undefined;
3537
3537
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
3538
3538
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -3564,8 +3564,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3564
3564
  street?: string | null | undefined;
3565
3565
  zipCode?: string | null | undefined;
3566
3566
  } | {
3567
- firstname?: string | null | undefined;
3568
- surname?: string | null | undefined;
3567
+ firstname: string;
3568
+ surname: string;
3569
3569
  middlename?: string | null | undefined;
3570
3570
  } | {
3571
3571
  country: string;
@@ -3611,8 +3611,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3611
3611
  street?: string | null | undefined;
3612
3612
  zipCode?: string | null | undefined;
3613
3613
  } | {
3614
- firstname?: string | null | undefined;
3615
- surname?: string | null | undefined;
3614
+ firstname: string;
3615
+ surname: string;
3616
3616
  middlename?: string | null | undefined;
3617
3617
  } | {
3618
3618
  country: string;
@@ -3666,8 +3666,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3666
3666
  street?: string | null | undefined;
3667
3667
  zipCode?: string | null | undefined;
3668
3668
  } | {
3669
- firstname?: string | null | undefined;
3670
- surname?: string | null | undefined;
3669
+ firstname: string;
3670
+ surname: string;
3671
3671
  middlename?: string | null | undefined;
3672
3672
  } | {
3673
3673
  country: string;
@@ -3713,8 +3713,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3713
3713
  street?: string | null | undefined;
3714
3714
  zipCode?: string | null | undefined;
3715
3715
  } | {
3716
- firstname?: string | null | undefined;
3717
- surname?: string | null | undefined;
3716
+ firstname: string;
3717
+ surname: string;
3718
3718
  middlename?: string | null | undefined;
3719
3719
  } | {
3720
3720
  country: string;
@@ -3875,16 +3875,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3875
3875
  addressLine3?: string | null | undefined;
3876
3876
  postcodeOrZip?: string | null | undefined;
3877
3877
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3878
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3879
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3878
+ firstname: z.ZodString;
3879
+ surname: z.ZodString;
3880
3880
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3881
3881
  }, "strip", z.ZodTypeAny, {
3882
- firstname?: string | null | undefined;
3883
- surname?: string | null | undefined;
3882
+ firstname: string;
3883
+ surname: string;
3884
3884
  middlename?: string | null | undefined;
3885
3885
  }, {
3886
- firstname?: string | null | undefined;
3887
- surname?: string | null | undefined;
3886
+ firstname: string;
3887
+ surname: string;
3888
3888
  middlename?: string | null | undefined;
3889
3889
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
3890
3890
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -4010,16 +4010,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4010
4010
  addressLine3?: string | null | undefined;
4011
4011
  postcodeOrZip?: string | null | undefined;
4012
4012
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4013
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4014
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4013
+ firstname: z.ZodString;
4014
+ surname: z.ZodString;
4015
4015
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4016
4016
  }, "strip", z.ZodTypeAny, {
4017
- firstname?: string | null | undefined;
4018
- surname?: string | null | undefined;
4017
+ firstname: string;
4018
+ surname: string;
4019
4019
  middlename?: string | null | undefined;
4020
4020
  }, {
4021
- firstname?: string | null | undefined;
4022
- surname?: string | null | undefined;
4021
+ firstname: string;
4022
+ surname: string;
4023
4023
  middlename?: string | null | undefined;
4024
4024
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
4025
4025
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -4065,8 +4065,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4065
4065
  street?: string | null | undefined;
4066
4066
  zipCode?: string | null | undefined;
4067
4067
  } | {
4068
- firstname?: string | null | undefined;
4069
- surname?: string | null | undefined;
4068
+ firstname: string;
4069
+ surname: string;
4070
4070
  middlename?: string | null | undefined;
4071
4071
  } | {
4072
4072
  country: string;
@@ -4112,8 +4112,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4112
4112
  street?: string | null | undefined;
4113
4113
  zipCode?: string | null | undefined;
4114
4114
  } | {
4115
- firstname?: string | null | undefined;
4116
- surname?: string | null | undefined;
4115
+ firstname: string;
4116
+ surname: string;
4117
4117
  middlename?: string | null | undefined;
4118
4118
  } | {
4119
4119
  country: string;
@@ -4171,8 +4171,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4171
4171
  street?: string | null | undefined;
4172
4172
  zipCode?: string | null | undefined;
4173
4173
  } | {
4174
- firstname?: string | null | undefined;
4175
- surname?: string | null | undefined;
4174
+ firstname: string;
4175
+ surname: string;
4176
4176
  middlename?: string | null | undefined;
4177
4177
  } | {
4178
4178
  country: string;
@@ -4218,8 +4218,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4218
4218
  street?: string | null | undefined;
4219
4219
  zipCode?: string | null | undefined;
4220
4220
  } | {
4221
- firstname?: string | null | undefined;
4222
- surname?: string | null | undefined;
4221
+ firstname: string;
4222
+ surname: string;
4223
4223
  middlename?: string | null | undefined;
4224
4224
  } | {
4225
4225
  country: string;
@@ -4380,16 +4380,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4380
4380
  addressLine3?: string | null | undefined;
4381
4381
  postcodeOrZip?: string | null | undefined;
4382
4382
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4383
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4384
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4383
+ firstname: z.ZodString;
4384
+ surname: z.ZodString;
4385
4385
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4386
4386
  }, "strip", z.ZodTypeAny, {
4387
- firstname?: string | null | undefined;
4388
- surname?: string | null | undefined;
4387
+ firstname: string;
4388
+ surname: string;
4389
4389
  middlename?: string | null | undefined;
4390
4390
  }, {
4391
- firstname?: string | null | undefined;
4392
- surname?: string | null | undefined;
4391
+ firstname: string;
4392
+ surname: string;
4393
4393
  middlename?: string | null | undefined;
4394
4394
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
4395
4395
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -4515,16 +4515,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4515
4515
  addressLine3?: string | null | undefined;
4516
4516
  postcodeOrZip?: string | null | undefined;
4517
4517
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4518
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4519
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4518
+ firstname: z.ZodString;
4519
+ surname: z.ZodString;
4520
4520
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4521
4521
  }, "strip", z.ZodTypeAny, {
4522
- firstname?: string | null | undefined;
4523
- surname?: string | null | undefined;
4522
+ firstname: string;
4523
+ surname: string;
4524
4524
  middlename?: string | null | undefined;
4525
4525
  }, {
4526
- firstname?: string | null | undefined;
4527
- surname?: string | null | undefined;
4526
+ firstname: string;
4527
+ surname: string;
4528
4528
  middlename?: string | null | undefined;
4529
4529
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
4530
4530
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -4556,8 +4556,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4556
4556
  street?: string | null | undefined;
4557
4557
  zipCode?: string | null | undefined;
4558
4558
  } | {
4559
- firstname?: string | null | undefined;
4560
- surname?: string | null | undefined;
4559
+ firstname: string;
4560
+ surname: string;
4561
4561
  middlename?: string | null | undefined;
4562
4562
  } | {
4563
4563
  country: string;
@@ -4603,8 +4603,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4603
4603
  street?: string | null | undefined;
4604
4604
  zipCode?: string | null | undefined;
4605
4605
  } | {
4606
- firstname?: string | null | undefined;
4607
- surname?: string | null | undefined;
4606
+ firstname: string;
4607
+ surname: string;
4608
4608
  middlename?: string | null | undefined;
4609
4609
  } | {
4610
4610
  country: string;
@@ -4658,8 +4658,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4658
4658
  street?: string | null | undefined;
4659
4659
  zipCode?: string | null | undefined;
4660
4660
  } | {
4661
- firstname?: string | null | undefined;
4662
- surname?: string | null | undefined;
4661
+ firstname: string;
4662
+ surname: string;
4663
4663
  middlename?: string | null | undefined;
4664
4664
  } | {
4665
4665
  country: string;
@@ -4705,8 +4705,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4705
4705
  street?: string | null | undefined;
4706
4706
  zipCode?: string | null | undefined;
4707
4707
  } | {
4708
- firstname?: string | null | undefined;
4709
- surname?: string | null | undefined;
4708
+ firstname: string;
4709
+ surname: string;
4710
4710
  middlename?: string | null | undefined;
4711
4711
  } | {
4712
4712
  country: string;
@@ -4867,16 +4867,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4867
4867
  addressLine3?: string | null | undefined;
4868
4868
  postcodeOrZip?: string | null | undefined;
4869
4869
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4870
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4871
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4870
+ firstname: z.ZodString;
4871
+ surname: z.ZodString;
4872
4872
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4873
4873
  }, "strip", z.ZodTypeAny, {
4874
- firstname?: string | null | undefined;
4875
- surname?: string | null | undefined;
4874
+ firstname: string;
4875
+ surname: string;
4876
4876
  middlename?: string | null | undefined;
4877
4877
  }, {
4878
- firstname?: string | null | undefined;
4879
- surname?: string | null | undefined;
4878
+ firstname: string;
4879
+ surname: string;
4880
4880
  middlename?: string | null | undefined;
4881
4881
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
4882
4882
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -5002,16 +5002,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5002
5002
  addressLine3?: string | null | undefined;
5003
5003
  postcodeOrZip?: string | null | undefined;
5004
5004
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5005
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5006
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5005
+ firstname: z.ZodString;
5006
+ surname: z.ZodString;
5007
5007
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5008
5008
  }, "strip", z.ZodTypeAny, {
5009
- firstname?: string | null | undefined;
5010
- surname?: string | null | undefined;
5009
+ firstname: string;
5010
+ surname: string;
5011
5011
  middlename?: string | null | undefined;
5012
5012
  }, {
5013
- firstname?: string | null | undefined;
5014
- surname?: string | null | undefined;
5013
+ firstname: string;
5014
+ surname: string;
5015
5015
  middlename?: string | null | undefined;
5016
5016
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
5017
5017
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -5057,8 +5057,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5057
5057
  street?: string | null | undefined;
5058
5058
  zipCode?: string | null | undefined;
5059
5059
  } | {
5060
- firstname?: string | null | undefined;
5061
- surname?: string | null | undefined;
5060
+ firstname: string;
5061
+ surname: string;
5062
5062
  middlename?: string | null | undefined;
5063
5063
  } | {
5064
5064
  country: string;
@@ -5104,8 +5104,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5104
5104
  street?: string | null | undefined;
5105
5105
  zipCode?: string | null | undefined;
5106
5106
  } | {
5107
- firstname?: string | null | undefined;
5108
- surname?: string | null | undefined;
5107
+ firstname: string;
5108
+ surname: string;
5109
5109
  middlename?: string | null | undefined;
5110
5110
  } | {
5111
5111
  country: string;
@@ -5163,8 +5163,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5163
5163
  street?: string | null | undefined;
5164
5164
  zipCode?: string | null | undefined;
5165
5165
  } | {
5166
- firstname?: string | null | undefined;
5167
- surname?: string | null | undefined;
5166
+ firstname: string;
5167
+ surname: string;
5168
5168
  middlename?: string | null | undefined;
5169
5169
  } | {
5170
5170
  country: string;
@@ -5210,8 +5210,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5210
5210
  street?: string | null | undefined;
5211
5211
  zipCode?: string | null | undefined;
5212
5212
  } | {
5213
- firstname?: string | null | undefined;
5214
- surname?: string | null | undefined;
5213
+ firstname: string;
5214
+ surname: string;
5215
5215
  middlename?: string | null | undefined;
5216
5216
  } | {
5217
5217
  country: string;
@@ -5372,16 +5372,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5372
5372
  addressLine3?: string | null | undefined;
5373
5373
  postcodeOrZip?: string | null | undefined;
5374
5374
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5375
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5376
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5375
+ firstname: z.ZodString;
5376
+ surname: z.ZodString;
5377
5377
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5378
5378
  }, "strip", z.ZodTypeAny, {
5379
- firstname?: string | null | undefined;
5380
- surname?: string | null | undefined;
5379
+ firstname: string;
5380
+ surname: string;
5381
5381
  middlename?: string | null | undefined;
5382
5382
  }, {
5383
- firstname?: string | null | undefined;
5384
- surname?: string | null | undefined;
5383
+ firstname: string;
5384
+ surname: string;
5385
5385
  middlename?: string | null | undefined;
5386
5386
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
5387
5387
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -5507,16 +5507,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5507
5507
  addressLine3?: string | null | undefined;
5508
5508
  postcodeOrZip?: string | null | undefined;
5509
5509
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5510
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5511
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5510
+ firstname: z.ZodString;
5511
+ surname: z.ZodString;
5512
5512
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5513
5513
  }, "strip", z.ZodTypeAny, {
5514
- firstname?: string | null | undefined;
5515
- surname?: string | null | undefined;
5514
+ firstname: string;
5515
+ surname: string;
5516
5516
  middlename?: string | null | undefined;
5517
5517
  }, {
5518
- firstname?: string | null | undefined;
5519
- surname?: string | null | undefined;
5518
+ firstname: string;
5519
+ surname: string;
5520
5520
  middlename?: string | null | undefined;
5521
5521
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
5522
5522
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -5548,8 +5548,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5548
5548
  street?: string | null | undefined;
5549
5549
  zipCode?: string | null | undefined;
5550
5550
  } | {
5551
- firstname?: string | null | undefined;
5552
- surname?: string | null | undefined;
5551
+ firstname: string;
5552
+ surname: string;
5553
5553
  middlename?: string | null | undefined;
5554
5554
  } | {
5555
5555
  country: string;
@@ -5595,8 +5595,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5595
5595
  street?: string | null | undefined;
5596
5596
  zipCode?: string | null | undefined;
5597
5597
  } | {
5598
- firstname?: string | null | undefined;
5599
- surname?: string | null | undefined;
5598
+ firstname: string;
5599
+ surname: string;
5600
5600
  middlename?: string | null | undefined;
5601
5601
  } | {
5602
5602
  country: string;
@@ -5650,8 +5650,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5650
5650
  street?: string | null | undefined;
5651
5651
  zipCode?: string | null | undefined;
5652
5652
  } | {
5653
- firstname?: string | null | undefined;
5654
- surname?: string | null | undefined;
5653
+ firstname: string;
5654
+ surname: string;
5655
5655
  middlename?: string | null | undefined;
5656
5656
  } | {
5657
5657
  country: string;
@@ -5697,8 +5697,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5697
5697
  street?: string | null | undefined;
5698
5698
  zipCode?: string | null | undefined;
5699
5699
  } | {
5700
- firstname?: string | null | undefined;
5701
- surname?: string | null | undefined;
5700
+ firstname: string;
5701
+ surname: string;
5702
5702
  middlename?: string | null | undefined;
5703
5703
  } | {
5704
5704
  country: string;
@@ -5859,16 +5859,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5859
5859
  addressLine3?: string | null | undefined;
5860
5860
  postcodeOrZip?: string | null | undefined;
5861
5861
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5862
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5863
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5862
+ firstname: z.ZodString;
5863
+ surname: z.ZodString;
5864
5864
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5865
5865
  }, "strip", z.ZodTypeAny, {
5866
- firstname?: string | null | undefined;
5867
- surname?: string | null | undefined;
5866
+ firstname: string;
5867
+ surname: string;
5868
5868
  middlename?: string | null | undefined;
5869
5869
  }, {
5870
- firstname?: string | null | undefined;
5871
- surname?: string | null | undefined;
5870
+ firstname: string;
5871
+ surname: string;
5872
5872
  middlename?: string | null | undefined;
5873
5873
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
5874
5874
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -5994,16 +5994,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5994
5994
  addressLine3?: string | null | undefined;
5995
5995
  postcodeOrZip?: string | null | undefined;
5996
5996
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5997
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5998
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5997
+ firstname: z.ZodString;
5998
+ surname: z.ZodString;
5999
5999
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6000
6000
  }, "strip", z.ZodTypeAny, {
6001
- firstname?: string | null | undefined;
6002
- surname?: string | null | undefined;
6001
+ firstname: string;
6002
+ surname: string;
6003
6003
  middlename?: string | null | undefined;
6004
6004
  }, {
6005
- firstname?: string | null | undefined;
6006
- surname?: string | null | undefined;
6005
+ firstname: string;
6006
+ surname: string;
6007
6007
  middlename?: string | null | undefined;
6008
6008
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
6009
6009
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -6036,8 +6036,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6036
6036
  street?: string | null | undefined;
6037
6037
  zipCode?: string | null | undefined;
6038
6038
  } | {
6039
- firstname?: string | null | undefined;
6040
- surname?: string | null | undefined;
6039
+ firstname: string;
6040
+ surname: string;
6041
6041
  middlename?: string | null | undefined;
6042
6042
  } | {
6043
6043
  country: string;
@@ -6083,8 +6083,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6083
6083
  street?: string | null | undefined;
6084
6084
  zipCode?: string | null | undefined;
6085
6085
  } | {
6086
- firstname?: string | null | undefined;
6087
- surname?: string | null | undefined;
6086
+ firstname: string;
6087
+ surname: string;
6088
6088
  middlename?: string | null | undefined;
6089
6089
  } | {
6090
6090
  country: string;
@@ -6139,8 +6139,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6139
6139
  street?: string | null | undefined;
6140
6140
  zipCode?: string | null | undefined;
6141
6141
  } | {
6142
- firstname?: string | null | undefined;
6143
- surname?: string | null | undefined;
6142
+ firstname: string;
6143
+ surname: string;
6144
6144
  middlename?: string | null | undefined;
6145
6145
  } | {
6146
6146
  country: string;
@@ -6186,8 +6186,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6186
6186
  street?: string | null | undefined;
6187
6187
  zipCode?: string | null | undefined;
6188
6188
  } | {
6189
- firstname?: string | null | undefined;
6190
- surname?: string | null | undefined;
6189
+ firstname: string;
6190
+ surname: string;
6191
6191
  middlename?: string | null | undefined;
6192
6192
  } | {
6193
6193
  country: string;
@@ -6349,16 +6349,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6349
6349
  addressLine3?: string | null | undefined;
6350
6350
  postcodeOrZip?: string | null | undefined;
6351
6351
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6352
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6353
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6352
+ firstname: z.ZodString;
6353
+ surname: z.ZodString;
6354
6354
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6355
6355
  }, "strip", z.ZodTypeAny, {
6356
- firstname?: string | null | undefined;
6357
- surname?: string | null | undefined;
6356
+ firstname: string;
6357
+ surname: string;
6358
6358
  middlename?: string | null | undefined;
6359
6359
  }, {
6360
- firstname?: string | null | undefined;
6361
- surname?: string | null | undefined;
6360
+ firstname: string;
6361
+ surname: string;
6362
6362
  middlename?: string | null | undefined;
6363
6363
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
6364
6364
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -6484,16 +6484,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6484
6484
  addressLine3?: string | null | undefined;
6485
6485
  postcodeOrZip?: string | null | undefined;
6486
6486
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6487
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6488
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6487
+ firstname: z.ZodString;
6488
+ surname: z.ZodString;
6489
6489
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6490
6490
  }, "strip", z.ZodTypeAny, {
6491
- firstname?: string | null | undefined;
6492
- surname?: string | null | undefined;
6491
+ firstname: string;
6492
+ surname: string;
6493
6493
  middlename?: string | null | undefined;
6494
6494
  }, {
6495
- firstname?: string | null | undefined;
6496
- surname?: string | null | undefined;
6495
+ firstname: string;
6496
+ surname: string;
6497
6497
  middlename?: string | null | undefined;
6498
6498
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
6499
6499
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -6525,8 +6525,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6525
6525
  street?: string | null | undefined;
6526
6526
  zipCode?: string | null | undefined;
6527
6527
  } | {
6528
- firstname?: string | null | undefined;
6529
- surname?: string | null | undefined;
6528
+ firstname: string;
6529
+ surname: string;
6530
6530
  middlename?: string | null | undefined;
6531
6531
  } | {
6532
6532
  country: string;
@@ -6572,8 +6572,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6572
6572
  street?: string | null | undefined;
6573
6573
  zipCode?: string | null | undefined;
6574
6574
  } | {
6575
- firstname?: string | null | undefined;
6576
- surname?: string | null | undefined;
6575
+ firstname: string;
6576
+ surname: string;
6577
6577
  middlename?: string | null | undefined;
6578
6578
  } | {
6579
6579
  country: string;
@@ -6627,8 +6627,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6627
6627
  street?: string | null | undefined;
6628
6628
  zipCode?: string | null | undefined;
6629
6629
  } | {
6630
- firstname?: string | null | undefined;
6631
- surname?: string | null | undefined;
6630
+ firstname: string;
6631
+ surname: string;
6632
6632
  middlename?: string | null | undefined;
6633
6633
  } | {
6634
6634
  country: string;
@@ -6674,8 +6674,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6674
6674
  street?: string | null | undefined;
6675
6675
  zipCode?: string | null | undefined;
6676
6676
  } | {
6677
- firstname?: string | null | undefined;
6678
- surname?: string | null | undefined;
6677
+ firstname: string;
6678
+ surname: string;
6679
6679
  middlename?: string | null | undefined;
6680
6680
  } | {
6681
6681
  country: string;
@@ -6836,16 +6836,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6836
6836
  addressLine3?: string | null | undefined;
6837
6837
  postcodeOrZip?: string | null | undefined;
6838
6838
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6839
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6840
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6839
+ firstname: z.ZodString;
6840
+ surname: z.ZodString;
6841
6841
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6842
6842
  }, "strip", z.ZodTypeAny, {
6843
- firstname?: string | null | undefined;
6844
- surname?: string | null | undefined;
6843
+ firstname: string;
6844
+ surname: string;
6845
6845
  middlename?: string | null | undefined;
6846
6846
  }, {
6847
- firstname?: string | null | undefined;
6848
- surname?: string | null | undefined;
6847
+ firstname: string;
6848
+ surname: string;
6849
6849
  middlename?: string | null | undefined;
6850
6850
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
6851
6851
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -6971,16 +6971,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6971
6971
  addressLine3?: string | null | undefined;
6972
6972
  postcodeOrZip?: string | null | undefined;
6973
6973
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6974
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6975
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6974
+ firstname: z.ZodString;
6975
+ surname: z.ZodString;
6976
6976
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6977
6977
  }, "strip", z.ZodTypeAny, {
6978
- firstname?: string | null | undefined;
6979
- surname?: string | null | undefined;
6978
+ firstname: string;
6979
+ surname: string;
6980
6980
  middlename?: string | null | undefined;
6981
6981
  }, {
6982
- firstname?: string | null | undefined;
6983
- surname?: string | null | undefined;
6982
+ firstname: string;
6983
+ surname: string;
6984
6984
  middlename?: string | null | undefined;
6985
6985
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
6986
6986
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -7013,8 +7013,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7013
7013
  street?: string | null | undefined;
7014
7014
  zipCode?: string | null | undefined;
7015
7015
  } | {
7016
- firstname?: string | null | undefined;
7017
- surname?: string | null | undefined;
7016
+ firstname: string;
7017
+ surname: string;
7018
7018
  middlename?: string | null | undefined;
7019
7019
  } | {
7020
7020
  country: string;
@@ -7061,8 +7061,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7061
7061
  street?: string | null | undefined;
7062
7062
  zipCode?: string | null | undefined;
7063
7063
  } | {
7064
- firstname?: string | null | undefined;
7065
- surname?: string | null | undefined;
7064
+ firstname: string;
7065
+ surname: string;
7066
7066
  middlename?: string | null | undefined;
7067
7067
  } | {
7068
7068
  country: string;
@@ -7116,8 +7116,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7116
7116
  street?: string | null | undefined;
7117
7117
  zipCode?: string | null | undefined;
7118
7118
  } | {
7119
- firstname?: string | null | undefined;
7120
- surname?: string | null | undefined;
7119
+ firstname: string;
7120
+ surname: string;
7121
7121
  middlename?: string | null | undefined;
7122
7122
  } | {
7123
7123
  country: string;
@@ -7164,8 +7164,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7164
7164
  street?: string | null | undefined;
7165
7165
  zipCode?: string | null | undefined;
7166
7166
  } | {
7167
- firstname?: string | null | undefined;
7168
- surname?: string | null | undefined;
7167
+ firstname: string;
7168
+ surname: string;
7169
7169
  middlename?: string | null | undefined;
7170
7170
  } | {
7171
7171
  country: string;
@@ -7326,16 +7326,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7326
7326
  addressLine3?: string | null | undefined;
7327
7327
  postcodeOrZip?: string | null | undefined;
7328
7328
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7329
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7330
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7329
+ firstname: z.ZodString;
7330
+ surname: z.ZodString;
7331
7331
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7332
7332
  }, "strip", z.ZodTypeAny, {
7333
- firstname?: string | null | undefined;
7334
- surname?: string | null | undefined;
7333
+ firstname: string;
7334
+ surname: string;
7335
7335
  middlename?: string | null | undefined;
7336
7336
  }, {
7337
- firstname?: string | null | undefined;
7338
- surname?: string | null | undefined;
7337
+ firstname: string;
7338
+ surname: string;
7339
7339
  middlename?: string | null | undefined;
7340
7340
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
7341
7341
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -7461,16 +7461,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7461
7461
  addressLine3?: string | null | undefined;
7462
7462
  postcodeOrZip?: string | null | undefined;
7463
7463
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7464
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7465
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7464
+ firstname: z.ZodString;
7465
+ surname: z.ZodString;
7466
7466
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7467
7467
  }, "strip", z.ZodTypeAny, {
7468
- firstname?: string | null | undefined;
7469
- surname?: string | null | undefined;
7468
+ firstname: string;
7469
+ surname: string;
7470
7470
  middlename?: string | null | undefined;
7471
7471
  }, {
7472
- firstname?: string | null | undefined;
7473
- surname?: string | null | undefined;
7472
+ firstname: string;
7473
+ surname: string;
7474
7474
  middlename?: string | null | undefined;
7475
7475
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
7476
7476
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -7502,8 +7502,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7502
7502
  street?: string | null | undefined;
7503
7503
  zipCode?: string | null | undefined;
7504
7504
  } | {
7505
- firstname?: string | null | undefined;
7506
- surname?: string | null | undefined;
7505
+ firstname: string;
7506
+ surname: string;
7507
7507
  middlename?: string | null | undefined;
7508
7508
  } | {
7509
7509
  country: string;
@@ -7549,8 +7549,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7549
7549
  street?: string | null | undefined;
7550
7550
  zipCode?: string | null | undefined;
7551
7551
  } | {
7552
- firstname?: string | null | undefined;
7553
- surname?: string | null | undefined;
7552
+ firstname: string;
7553
+ surname: string;
7554
7554
  middlename?: string | null | undefined;
7555
7555
  } | {
7556
7556
  country: string;
@@ -7604,8 +7604,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7604
7604
  street?: string | null | undefined;
7605
7605
  zipCode?: string | null | undefined;
7606
7606
  } | {
7607
- firstname?: string | null | undefined;
7608
- surname?: string | null | undefined;
7607
+ firstname: string;
7608
+ surname: string;
7609
7609
  middlename?: string | null | undefined;
7610
7610
  } | {
7611
7611
  country: string;
@@ -7651,8 +7651,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7651
7651
  street?: string | null | undefined;
7652
7652
  zipCode?: string | null | undefined;
7653
7653
  } | {
7654
- firstname?: string | null | undefined;
7655
- surname?: string | null | undefined;
7654
+ firstname: string;
7655
+ surname: string;
7656
7656
  middlename?: string | null | undefined;
7657
7657
  } | {
7658
7658
  country: string;
@@ -7813,16 +7813,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7813
7813
  addressLine3?: string | null | undefined;
7814
7814
  postcodeOrZip?: string | null | undefined;
7815
7815
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7816
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7817
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7816
+ firstname: z.ZodString;
7817
+ surname: z.ZodString;
7818
7818
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7819
7819
  }, "strip", z.ZodTypeAny, {
7820
- firstname?: string | null | undefined;
7821
- surname?: string | null | undefined;
7820
+ firstname: string;
7821
+ surname: string;
7822
7822
  middlename?: string | null | undefined;
7823
7823
  }, {
7824
- firstname?: string | null | undefined;
7825
- surname?: string | null | undefined;
7824
+ firstname: string;
7825
+ surname: string;
7826
7826
  middlename?: string | null | undefined;
7827
7827
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
7828
7828
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -7948,16 +7948,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7948
7948
  addressLine3?: string | null | undefined;
7949
7949
  postcodeOrZip?: string | null | undefined;
7950
7950
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7951
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7952
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7951
+ firstname: z.ZodString;
7952
+ surname: z.ZodString;
7953
7953
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7954
7954
  }, "strip", z.ZodTypeAny, {
7955
- firstname?: string | null | undefined;
7956
- surname?: string | null | undefined;
7955
+ firstname: string;
7956
+ surname: string;
7957
7957
  middlename?: string | null | undefined;
7958
7958
  }, {
7959
- firstname?: string | null | undefined;
7960
- surname?: string | null | undefined;
7959
+ firstname: string;
7960
+ surname: string;
7961
7961
  middlename?: string | null | undefined;
7962
7962
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
7963
7963
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -7990,8 +7990,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7990
7990
  street?: string | null | undefined;
7991
7991
  zipCode?: string | null | undefined;
7992
7992
  } | {
7993
- firstname?: string | null | undefined;
7994
- surname?: string | null | undefined;
7993
+ firstname: string;
7994
+ surname: string;
7995
7995
  middlename?: string | null | undefined;
7996
7996
  } | {
7997
7997
  country: string;
@@ -8038,8 +8038,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8038
8038
  street?: string | null | undefined;
8039
8039
  zipCode?: string | null | undefined;
8040
8040
  } | {
8041
- firstname?: string | null | undefined;
8042
- surname?: string | null | undefined;
8041
+ firstname: string;
8042
+ surname: string;
8043
8043
  middlename?: string | null | undefined;
8044
8044
  } | {
8045
8045
  country: string;
@@ -8093,8 +8093,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8093
8093
  street?: string | null | undefined;
8094
8094
  zipCode?: string | null | undefined;
8095
8095
  } | {
8096
- firstname?: string | null | undefined;
8097
- surname?: string | null | undefined;
8096
+ firstname: string;
8097
+ surname: string;
8098
8098
  middlename?: string | null | undefined;
8099
8099
  } | {
8100
8100
  country: string;
@@ -8141,8 +8141,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8141
8141
  street?: string | null | undefined;
8142
8142
  zipCode?: string | null | undefined;
8143
8143
  } | {
8144
- firstname?: string | null | undefined;
8145
- surname?: string | null | undefined;
8144
+ firstname: string;
8145
+ surname: string;
8146
8146
  middlename?: string | null | undefined;
8147
8147
  } | {
8148
8148
  country: string;
@@ -8303,16 +8303,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8303
8303
  addressLine3?: string | null | undefined;
8304
8304
  postcodeOrZip?: string | null | undefined;
8305
8305
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8306
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8307
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8306
+ firstname: z.ZodString;
8307
+ surname: z.ZodString;
8308
8308
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8309
8309
  }, "strip", z.ZodTypeAny, {
8310
- firstname?: string | null | undefined;
8311
- surname?: string | null | undefined;
8310
+ firstname: string;
8311
+ surname: string;
8312
8312
  middlename?: string | null | undefined;
8313
8313
  }, {
8314
- firstname?: string | null | undefined;
8315
- surname?: string | null | undefined;
8314
+ firstname: string;
8315
+ surname: string;
8316
8316
  middlename?: string | null | undefined;
8317
8317
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
8318
8318
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -8438,16 +8438,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8438
8438
  addressLine3?: string | null | undefined;
8439
8439
  postcodeOrZip?: string | null | undefined;
8440
8440
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8441
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8442
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8441
+ firstname: z.ZodString;
8442
+ surname: z.ZodString;
8443
8443
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8444
8444
  }, "strip", z.ZodTypeAny, {
8445
- firstname?: string | null | undefined;
8446
- surname?: string | null | undefined;
8445
+ firstname: string;
8446
+ surname: string;
8447
8447
  middlename?: string | null | undefined;
8448
8448
  }, {
8449
- firstname?: string | null | undefined;
8450
- surname?: string | null | undefined;
8449
+ firstname: string;
8450
+ surname: string;
8451
8451
  middlename?: string | null | undefined;
8452
8452
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
8453
8453
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -8455,10 +8455,24 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8455
8455
  }, {
8456
8456
  type: z.ZodLiteral<"REJECT_CORRECTION">;
8457
8457
  requestId: z.ZodString;
8458
+ reason: z.ZodObject<{
8459
+ message: z.ZodString;
8460
+ isDuplicate: z.ZodOptional<z.ZodBoolean>;
8461
+ }, "strip", z.ZodTypeAny, {
8462
+ message: string;
8463
+ isDuplicate?: boolean | undefined;
8464
+ }, {
8465
+ message: string;
8466
+ isDuplicate?: boolean | undefined;
8467
+ }>;
8458
8468
  }>, "strip", z.ZodTypeAny, {
8459
8469
  type: "REJECT_CORRECTION";
8460
8470
  id: string & z.BRAND<"UUID">;
8461
8471
  status: "Rejected" | "Requested" | "Accepted";
8472
+ reason: {
8473
+ message: string;
8474
+ isDuplicate?: boolean | undefined;
8475
+ };
8462
8476
  transactionId: string;
8463
8477
  createdByUserType: "system" | "user";
8464
8478
  createdAt: string;
@@ -8480,8 +8494,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8480
8494
  street?: string | null | undefined;
8481
8495
  zipCode?: string | null | undefined;
8482
8496
  } | {
8483
- firstname?: string | null | undefined;
8484
- surname?: string | null | undefined;
8497
+ firstname: string;
8498
+ surname: string;
8485
8499
  middlename?: string | null | undefined;
8486
8500
  } | {
8487
8501
  country: string;
@@ -8528,8 +8542,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8528
8542
  street?: string | null | undefined;
8529
8543
  zipCode?: string | null | undefined;
8530
8544
  } | {
8531
- firstname?: string | null | undefined;
8532
- surname?: string | null | undefined;
8545
+ firstname: string;
8546
+ surname: string;
8533
8547
  middlename?: string | null | undefined;
8534
8548
  } | {
8535
8549
  country: string;
@@ -8562,6 +8576,10 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8562
8576
  type: "REJECT_CORRECTION";
8563
8577
  id: string;
8564
8578
  status: "Rejected" | "Requested" | "Accepted";
8579
+ reason: {
8580
+ message: string;
8581
+ isDuplicate?: boolean | undefined;
8582
+ };
8565
8583
  transactionId: string;
8566
8584
  createdByUserType: "system" | "user";
8567
8585
  createdAt: string;
@@ -8583,8 +8601,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8583
8601
  street?: string | null | undefined;
8584
8602
  zipCode?: string | null | undefined;
8585
8603
  } | {
8586
- firstname?: string | null | undefined;
8587
- surname?: string | null | undefined;
8604
+ firstname: string;
8605
+ surname: string;
8588
8606
  middlename?: string | null | undefined;
8589
8607
  } | {
8590
8608
  country: string;
@@ -8631,8 +8649,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8631
8649
  street?: string | null | undefined;
8632
8650
  zipCode?: string | null | undefined;
8633
8651
  } | {
8634
- firstname?: string | null | undefined;
8635
- surname?: string | null | undefined;
8652
+ firstname: string;
8653
+ surname: string;
8636
8654
  middlename?: string | null | undefined;
8637
8655
  } | {
8638
8656
  country: string;
@@ -8793,16 +8811,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8793
8811
  addressLine3?: string | null | undefined;
8794
8812
  postcodeOrZip?: string | null | undefined;
8795
8813
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8796
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8797
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8814
+ firstname: z.ZodString;
8815
+ surname: z.ZodString;
8798
8816
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8799
8817
  }, "strip", z.ZodTypeAny, {
8800
- firstname?: string | null | undefined;
8801
- surname?: string | null | undefined;
8818
+ firstname: string;
8819
+ surname: string;
8802
8820
  middlename?: string | null | undefined;
8803
8821
  }, {
8804
- firstname?: string | null | undefined;
8805
- surname?: string | null | undefined;
8822
+ firstname: string;
8823
+ surname: string;
8806
8824
  middlename?: string | null | undefined;
8807
8825
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
8808
8826
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -8928,16 +8946,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8928
8946
  addressLine3?: string | null | undefined;
8929
8947
  postcodeOrZip?: string | null | undefined;
8930
8948
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8931
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8932
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8949
+ firstname: z.ZodString;
8950
+ surname: z.ZodString;
8933
8951
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8934
8952
  }, "strip", z.ZodTypeAny, {
8935
- firstname?: string | null | undefined;
8936
- surname?: string | null | undefined;
8953
+ firstname: string;
8954
+ surname: string;
8937
8955
  middlename?: string | null | undefined;
8938
8956
  }, {
8939
- firstname?: string | null | undefined;
8940
- surname?: string | null | undefined;
8957
+ firstname: string;
8958
+ surname: string;
8941
8959
  middlename?: string | null | undefined;
8942
8960
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
8943
8961
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -8969,8 +8987,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8969
8987
  street?: string | null | undefined;
8970
8988
  zipCode?: string | null | undefined;
8971
8989
  } | {
8972
- firstname?: string | null | undefined;
8973
- surname?: string | null | undefined;
8990
+ firstname: string;
8991
+ surname: string;
8974
8992
  middlename?: string | null | undefined;
8975
8993
  } | {
8976
8994
  country: string;
@@ -9016,8 +9034,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9016
9034
  street?: string | null | undefined;
9017
9035
  zipCode?: string | null | undefined;
9018
9036
  } | {
9019
- firstname?: string | null | undefined;
9020
- surname?: string | null | undefined;
9037
+ firstname: string;
9038
+ surname: string;
9021
9039
  middlename?: string | null | undefined;
9022
9040
  } | {
9023
9041
  country: string;
@@ -9071,8 +9089,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9071
9089
  street?: string | null | undefined;
9072
9090
  zipCode?: string | null | undefined;
9073
9091
  } | {
9074
- firstname?: string | null | undefined;
9075
- surname?: string | null | undefined;
9092
+ firstname: string;
9093
+ surname: string;
9076
9094
  middlename?: string | null | undefined;
9077
9095
  } | {
9078
9096
  country: string;
@@ -9118,8 +9136,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9118
9136
  street?: string | null | undefined;
9119
9137
  zipCode?: string | null | undefined;
9120
9138
  } | {
9121
- firstname?: string | null | undefined;
9122
- surname?: string | null | undefined;
9139
+ firstname: string;
9140
+ surname: string;
9123
9141
  middlename?: string | null | undefined;
9124
9142
  } | {
9125
9143
  country: string;
@@ -9280,16 +9298,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9280
9298
  addressLine3?: string | null | undefined;
9281
9299
  postcodeOrZip?: string | null | undefined;
9282
9300
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9283
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9284
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9301
+ firstname: z.ZodString;
9302
+ surname: z.ZodString;
9285
9303
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9286
9304
  }, "strip", z.ZodTypeAny, {
9287
- firstname?: string | null | undefined;
9288
- surname?: string | null | undefined;
9305
+ firstname: string;
9306
+ surname: string;
9289
9307
  middlename?: string | null | undefined;
9290
9308
  }, {
9291
- firstname?: string | null | undefined;
9292
- surname?: string | null | undefined;
9309
+ firstname: string;
9310
+ surname: string;
9293
9311
  middlename?: string | null | undefined;
9294
9312
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
9295
9313
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -9415,23 +9433,23 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9415
9433
  addressLine3?: string | null | undefined;
9416
9434
  postcodeOrZip?: string | null | undefined;
9417
9435
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9418
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9419
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9436
+ firstname: z.ZodString;
9437
+ surname: z.ZodString;
9420
9438
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9421
9439
  }, "strip", z.ZodTypeAny, {
9422
- firstname?: string | null | undefined;
9423
- surname?: string | null | undefined;
9440
+ firstname: string;
9441
+ surname: string;
9424
9442
  middlename?: string | null | undefined;
9425
9443
  }, {
9426
- firstname?: string | null | undefined;
9427
- surname?: string | null | undefined;
9444
+ firstname: string;
9445
+ surname: string;
9428
9446
  middlename?: string | null | undefined;
9429
9447
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
9430
9448
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
9431
9449
  originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
9432
9450
  }, {
9433
9451
  type: z.ZodLiteral<"PRINT_CERTIFICATE">;
9434
- actionDetails: z.ZodNullable<z.ZodOptional<z.ZodObject<{
9452
+ content: z.ZodNullable<z.ZodOptional<z.ZodObject<{
9435
9453
  templateId: z.ZodOptional<z.ZodString>;
9436
9454
  }, "strip", z.ZodTypeAny, {
9437
9455
  templateId?: string | undefined;
@@ -9463,8 +9481,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9463
9481
  street?: string | null | undefined;
9464
9482
  zipCode?: string | null | undefined;
9465
9483
  } | {
9466
- firstname?: string | null | undefined;
9467
- surname?: string | null | undefined;
9484
+ firstname: string;
9485
+ surname: string;
9468
9486
  middlename?: string | null | undefined;
9469
9487
  } | {
9470
9488
  country: string;
@@ -9492,6 +9510,9 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9492
9510
  start: string;
9493
9511
  end: string;
9494
9512
  } | null | undefined>;
9513
+ content?: {
9514
+ templateId?: string | undefined;
9515
+ } | null | undefined;
9495
9516
  createdBySignature?: string | null | undefined;
9496
9517
  createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
9497
9518
  annotation?: Record<string, string | number | boolean | {
@@ -9510,8 +9531,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9510
9531
  street?: string | null | undefined;
9511
9532
  zipCode?: string | null | undefined;
9512
9533
  } | {
9513
- firstname?: string | null | undefined;
9514
- surname?: string | null | undefined;
9534
+ firstname: string;
9535
+ surname: string;
9515
9536
  middlename?: string | null | undefined;
9516
9537
  } | {
9517
9538
  country: string;
@@ -9540,9 +9561,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9540
9561
  end: string;
9541
9562
  } | null | undefined> | null | undefined;
9542
9563
  originalActionId?: (string & z.BRAND<"UUID">) | null | undefined;
9543
- actionDetails?: {
9544
- templateId?: string | undefined;
9545
- } | null | undefined;
9546
9564
  }, {
9547
9565
  type: "PRINT_CERTIFICATE";
9548
9566
  id: string;
@@ -9568,8 +9586,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9568
9586
  street?: string | null | undefined;
9569
9587
  zipCode?: string | null | undefined;
9570
9588
  } | {
9571
- firstname?: string | null | undefined;
9572
- surname?: string | null | undefined;
9589
+ firstname: string;
9590
+ surname: string;
9573
9591
  middlename?: string | null | undefined;
9574
9592
  } | {
9575
9593
  country: string;
@@ -9597,6 +9615,9 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9597
9615
  start: string;
9598
9616
  end: string;
9599
9617
  } | null | undefined>;
9618
+ content?: {
9619
+ templateId?: string | undefined;
9620
+ } | null | undefined;
9600
9621
  createdBySignature?: string | null | undefined;
9601
9622
  createdAtLocation?: string | null | undefined;
9602
9623
  annotation?: Record<string, string | number | boolean | {
@@ -9615,8 +9636,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9615
9636
  street?: string | null | undefined;
9616
9637
  zipCode?: string | null | undefined;
9617
9638
  } | {
9618
- firstname?: string | null | undefined;
9619
- surname?: string | null | undefined;
9639
+ firstname: string;
9640
+ surname: string;
9620
9641
  middlename?: string | null | undefined;
9621
9642
  } | {
9622
9643
  country: string;
@@ -9645,9 +9666,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9645
9666
  end: string;
9646
9667
  } | null | undefined> | null | undefined;
9647
9668
  originalActionId?: string | null | undefined;
9648
- actionDetails?: {
9649
- templateId?: string | undefined;
9650
- } | null | undefined;
9651
9669
  }>, z.ZodObject<z.objectUtil.extendShape<{
9652
9670
  id: z.ZodBranded<z.ZodString, "UUID">;
9653
9671
  transactionId: z.ZodString;
@@ -9780,16 +9798,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9780
9798
  addressLine3?: string | null | undefined;
9781
9799
  postcodeOrZip?: string | null | undefined;
9782
9800
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9783
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9784
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9801
+ firstname: z.ZodString;
9802
+ surname: z.ZodString;
9785
9803
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9786
9804
  }, "strip", z.ZodTypeAny, {
9787
- firstname?: string | null | undefined;
9788
- surname?: string | null | undefined;
9805
+ firstname: string;
9806
+ surname: string;
9789
9807
  middlename?: string | null | undefined;
9790
9808
  }, {
9791
- firstname?: string | null | undefined;
9792
- surname?: string | null | undefined;
9809
+ firstname: string;
9810
+ surname: string;
9793
9811
  middlename?: string | null | undefined;
9794
9812
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
9795
9813
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -9915,16 +9933,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9915
9933
  addressLine3?: string | null | undefined;
9916
9934
  postcodeOrZip?: string | null | undefined;
9917
9935
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9918
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9919
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9936
+ firstname: z.ZodString;
9937
+ surname: z.ZodString;
9920
9938
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9921
9939
  }, "strip", z.ZodTypeAny, {
9922
- firstname?: string | null | undefined;
9923
- surname?: string | null | undefined;
9940
+ firstname: string;
9941
+ surname: string;
9924
9942
  middlename?: string | null | undefined;
9925
9943
  }, {
9926
- firstname?: string | null | undefined;
9927
- surname?: string | null | undefined;
9944
+ firstname: string;
9945
+ surname: string;
9928
9946
  middlename?: string | null | undefined;
9929
9947
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
9930
9948
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -9956,8 +9974,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9956
9974
  street?: string | null | undefined;
9957
9975
  zipCode?: string | null | undefined;
9958
9976
  } | {
9959
- firstname?: string | null | undefined;
9960
- surname?: string | null | undefined;
9977
+ firstname: string;
9978
+ surname: string;
9961
9979
  middlename?: string | null | undefined;
9962
9980
  } | {
9963
9981
  country: string;
@@ -10003,8 +10021,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
10003
10021
  street?: string | null | undefined;
10004
10022
  zipCode?: string | null | undefined;
10005
10023
  } | {
10006
- firstname?: string | null | undefined;
10007
- surname?: string | null | undefined;
10024
+ firstname: string;
10025
+ surname: string;
10008
10026
  middlename?: string | null | undefined;
10009
10027
  } | {
10010
10028
  country: string;
@@ -10058,8 +10076,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
10058
10076
  street?: string | null | undefined;
10059
10077
  zipCode?: string | null | undefined;
10060
10078
  } | {
10061
- firstname?: string | null | undefined;
10062
- surname?: string | null | undefined;
10079
+ firstname: string;
10080
+ surname: string;
10063
10081
  middlename?: string | null | undefined;
10064
10082
  } | {
10065
10083
  country: string;
@@ -10105,8 +10123,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
10105
10123
  street?: string | null | undefined;
10106
10124
  zipCode?: string | null | undefined;
10107
10125
  } | {
10108
- firstname?: string | null | undefined;
10109
- surname?: string | null | undefined;
10126
+ firstname: string;
10127
+ surname: string;
10110
10128
  middlename?: string | null | undefined;
10111
10129
  } | {
10112
10130
  country: string;
@@ -10269,16 +10287,16 @@ export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendS
10269
10287
  addressLine3?: string | null | undefined;
10270
10288
  postcodeOrZip?: string | null | undefined;
10271
10289
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10272
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10273
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10290
+ firstname: z.ZodString;
10291
+ surname: z.ZodString;
10274
10292
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10275
10293
  }, "strip", z.ZodTypeAny, {
10276
- firstname?: string | null | undefined;
10277
- surname?: string | null | undefined;
10294
+ firstname: string;
10295
+ surname: string;
10278
10296
  middlename?: string | null | undefined;
10279
10297
  }, {
10280
- firstname?: string | null | undefined;
10281
- surname?: string | null | undefined;
10298
+ firstname: string;
10299
+ surname: string;
10282
10300
  middlename?: string | null | undefined;
10283
10301
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
10284
10302
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -10404,16 +10422,16 @@ export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendS
10404
10422
  addressLine3?: string | null | undefined;
10405
10423
  postcodeOrZip?: string | null | undefined;
10406
10424
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10407
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10408
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10425
+ firstname: z.ZodString;
10426
+ surname: z.ZodString;
10409
10427
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10410
10428
  }, "strip", z.ZodTypeAny, {
10411
- firstname?: string | null | undefined;
10412
- surname?: string | null | undefined;
10429
+ firstname: string;
10430
+ surname: string;
10413
10431
  middlename?: string | null | undefined;
10414
10432
  }, {
10415
- firstname?: string | null | undefined;
10416
- surname?: string | null | undefined;
10433
+ firstname: string;
10434
+ surname: string;
10417
10435
  middlename?: string | null | undefined;
10418
10436
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
10419
10437
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -10579,16 +10597,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10579
10597
  addressLine3?: string | null | undefined;
10580
10598
  postcodeOrZip?: string | null | undefined;
10581
10599
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10582
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10583
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10600
+ firstname: z.ZodString;
10601
+ surname: z.ZodString;
10584
10602
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10585
10603
  }, "strip", z.ZodTypeAny, {
10586
- firstname?: string | null | undefined;
10587
- surname?: string | null | undefined;
10604
+ firstname: string;
10605
+ surname: string;
10588
10606
  middlename?: string | null | undefined;
10589
10607
  }, {
10590
- firstname?: string | null | undefined;
10591
- surname?: string | null | undefined;
10608
+ firstname: string;
10609
+ surname: string;
10592
10610
  middlename?: string | null | undefined;
10593
10611
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
10594
10612
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -10714,16 +10732,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10714
10732
  addressLine3?: string | null | undefined;
10715
10733
  postcodeOrZip?: string | null | undefined;
10716
10734
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10717
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10718
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10735
+ firstname: z.ZodString;
10736
+ surname: z.ZodString;
10719
10737
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10720
10738
  }, "strip", z.ZodTypeAny, {
10721
- firstname?: string | null | undefined;
10722
- surname?: string | null | undefined;
10739
+ firstname: string;
10740
+ surname: string;
10723
10741
  middlename?: string | null | undefined;
10724
10742
  }, {
10725
- firstname?: string | null | undefined;
10726
- surname?: string | null | undefined;
10743
+ firstname: string;
10744
+ surname: string;
10727
10745
  middlename?: string | null | undefined;
10728
10746
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
10729
10747
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -10755,8 +10773,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10755
10773
  street?: string | null | undefined;
10756
10774
  zipCode?: string | null | undefined;
10757
10775
  } | {
10758
- firstname?: string | null | undefined;
10759
- surname?: string | null | undefined;
10776
+ firstname: string;
10777
+ surname: string;
10760
10778
  middlename?: string | null | undefined;
10761
10779
  } | {
10762
10780
  country: string;
@@ -10802,8 +10820,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10802
10820
  street?: string | null | undefined;
10803
10821
  zipCode?: string | null | undefined;
10804
10822
  } | {
10805
- firstname?: string | null | undefined;
10806
- surname?: string | null | undefined;
10823
+ firstname: string;
10824
+ surname: string;
10807
10825
  middlename?: string | null | undefined;
10808
10826
  } | {
10809
10827
  country: string;
@@ -10857,8 +10875,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10857
10875
  street?: string | null | undefined;
10858
10876
  zipCode?: string | null | undefined;
10859
10877
  } | {
10860
- firstname?: string | null | undefined;
10861
- surname?: string | null | undefined;
10878
+ firstname: string;
10879
+ surname: string;
10862
10880
  middlename?: string | null | undefined;
10863
10881
  } | {
10864
10882
  country: string;
@@ -10904,8 +10922,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10904
10922
  street?: string | null | undefined;
10905
10923
  zipCode?: string | null | undefined;
10906
10924
  } | {
10907
- firstname?: string | null | undefined;
10908
- surname?: string | null | undefined;
10925
+ firstname: string;
10926
+ surname: string;
10909
10927
  middlename?: string | null | undefined;
10910
10928
  } | {
10911
10929
  country: string;
@@ -11066,16 +11084,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11066
11084
  addressLine3?: string | null | undefined;
11067
11085
  postcodeOrZip?: string | null | undefined;
11068
11086
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11069
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11070
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11087
+ firstname: z.ZodString;
11088
+ surname: z.ZodString;
11071
11089
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11072
11090
  }, "strip", z.ZodTypeAny, {
11073
- firstname?: string | null | undefined;
11074
- surname?: string | null | undefined;
11091
+ firstname: string;
11092
+ surname: string;
11075
11093
  middlename?: string | null | undefined;
11076
11094
  }, {
11077
- firstname?: string | null | undefined;
11078
- surname?: string | null | undefined;
11095
+ firstname: string;
11096
+ surname: string;
11079
11097
  middlename?: string | null | undefined;
11080
11098
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
11081
11099
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -11201,16 +11219,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11201
11219
  addressLine3?: string | null | undefined;
11202
11220
  postcodeOrZip?: string | null | undefined;
11203
11221
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11204
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11205
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11222
+ firstname: z.ZodString;
11223
+ surname: z.ZodString;
11206
11224
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11207
11225
  }, "strip", z.ZodTypeAny, {
11208
- firstname?: string | null | undefined;
11209
- surname?: string | null | undefined;
11226
+ firstname: string;
11227
+ surname: string;
11210
11228
  middlename?: string | null | undefined;
11211
11229
  }, {
11212
- firstname?: string | null | undefined;
11213
- surname?: string | null | undefined;
11230
+ firstname: string;
11231
+ surname: string;
11214
11232
  middlename?: string | null | undefined;
11215
11233
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
11216
11234
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -11242,8 +11260,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11242
11260
  street?: string | null | undefined;
11243
11261
  zipCode?: string | null | undefined;
11244
11262
  } | {
11245
- firstname?: string | null | undefined;
11246
- surname?: string | null | undefined;
11263
+ firstname: string;
11264
+ surname: string;
11247
11265
  middlename?: string | null | undefined;
11248
11266
  } | {
11249
11267
  country: string;
@@ -11289,8 +11307,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11289
11307
  street?: string | null | undefined;
11290
11308
  zipCode?: string | null | undefined;
11291
11309
  } | {
11292
- firstname?: string | null | undefined;
11293
- surname?: string | null | undefined;
11310
+ firstname: string;
11311
+ surname: string;
11294
11312
  middlename?: string | null | undefined;
11295
11313
  } | {
11296
11314
  country: string;
@@ -11344,8 +11362,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11344
11362
  street?: string | null | undefined;
11345
11363
  zipCode?: string | null | undefined;
11346
11364
  } | {
11347
- firstname?: string | null | undefined;
11348
- surname?: string | null | undefined;
11365
+ firstname: string;
11366
+ surname: string;
11349
11367
  middlename?: string | null | undefined;
11350
11368
  } | {
11351
11369
  country: string;
@@ -11391,8 +11409,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11391
11409
  street?: string | null | undefined;
11392
11410
  zipCode?: string | null | undefined;
11393
11411
  } | {
11394
- firstname?: string | null | undefined;
11395
- surname?: string | null | undefined;
11412
+ firstname: string;
11413
+ surname: string;
11396
11414
  middlename?: string | null | undefined;
11397
11415
  } | {
11398
11416
  country: string;
@@ -11553,16 +11571,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11553
11571
  addressLine3?: string | null | undefined;
11554
11572
  postcodeOrZip?: string | null | undefined;
11555
11573
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11556
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11557
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11574
+ firstname: z.ZodString;
11575
+ surname: z.ZodString;
11558
11576
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11559
11577
  }, "strip", z.ZodTypeAny, {
11560
- firstname?: string | null | undefined;
11561
- surname?: string | null | undefined;
11578
+ firstname: string;
11579
+ surname: string;
11562
11580
  middlename?: string | null | undefined;
11563
11581
  }, {
11564
- firstname?: string | null | undefined;
11565
- surname?: string | null | undefined;
11582
+ firstname: string;
11583
+ surname: string;
11566
11584
  middlename?: string | null | undefined;
11567
11585
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
11568
11586
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -11688,16 +11706,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11688
11706
  addressLine3?: string | null | undefined;
11689
11707
  postcodeOrZip?: string | null | undefined;
11690
11708
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11691
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11692
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11709
+ firstname: z.ZodString;
11710
+ surname: z.ZodString;
11693
11711
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11694
11712
  }, "strip", z.ZodTypeAny, {
11695
- firstname?: string | null | undefined;
11696
- surname?: string | null | undefined;
11713
+ firstname: string;
11714
+ surname: string;
11697
11715
  middlename?: string | null | undefined;
11698
11716
  }, {
11699
- firstname?: string | null | undefined;
11700
- surname?: string | null | undefined;
11717
+ firstname: string;
11718
+ surname: string;
11701
11719
  middlename?: string | null | undefined;
11702
11720
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
11703
11721
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -11743,8 +11761,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11743
11761
  street?: string | null | undefined;
11744
11762
  zipCode?: string | null | undefined;
11745
11763
  } | {
11746
- firstname?: string | null | undefined;
11747
- surname?: string | null | undefined;
11764
+ firstname: string;
11765
+ surname: string;
11748
11766
  middlename?: string | null | undefined;
11749
11767
  } | {
11750
11768
  country: string;
@@ -11790,8 +11808,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11790
11808
  street?: string | null | undefined;
11791
11809
  zipCode?: string | null | undefined;
11792
11810
  } | {
11793
- firstname?: string | null | undefined;
11794
- surname?: string | null | undefined;
11811
+ firstname: string;
11812
+ surname: string;
11795
11813
  middlename?: string | null | undefined;
11796
11814
  } | {
11797
11815
  country: string;
@@ -11849,8 +11867,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11849
11867
  street?: string | null | undefined;
11850
11868
  zipCode?: string | null | undefined;
11851
11869
  } | {
11852
- firstname?: string | null | undefined;
11853
- surname?: string | null | undefined;
11870
+ firstname: string;
11871
+ surname: string;
11854
11872
  middlename?: string | null | undefined;
11855
11873
  } | {
11856
11874
  country: string;
@@ -11896,8 +11914,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11896
11914
  street?: string | null | undefined;
11897
11915
  zipCode?: string | null | undefined;
11898
11916
  } | {
11899
- firstname?: string | null | undefined;
11900
- surname?: string | null | undefined;
11917
+ firstname: string;
11918
+ surname: string;
11901
11919
  middlename?: string | null | undefined;
11902
11920
  } | {
11903
11921
  country: string;
@@ -12058,16 +12076,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12058
12076
  addressLine3?: string | null | undefined;
12059
12077
  postcodeOrZip?: string | null | undefined;
12060
12078
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12061
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12062
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12079
+ firstname: z.ZodString;
12080
+ surname: z.ZodString;
12063
12081
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12064
12082
  }, "strip", z.ZodTypeAny, {
12065
- firstname?: string | null | undefined;
12066
- surname?: string | null | undefined;
12083
+ firstname: string;
12084
+ surname: string;
12067
12085
  middlename?: string | null | undefined;
12068
12086
  }, {
12069
- firstname?: string | null | undefined;
12070
- surname?: string | null | undefined;
12087
+ firstname: string;
12088
+ surname: string;
12071
12089
  middlename?: string | null | undefined;
12072
12090
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
12073
12091
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -12193,16 +12211,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12193
12211
  addressLine3?: string | null | undefined;
12194
12212
  postcodeOrZip?: string | null | undefined;
12195
12213
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12196
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12197
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12214
+ firstname: z.ZodString;
12215
+ surname: z.ZodString;
12198
12216
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12199
12217
  }, "strip", z.ZodTypeAny, {
12200
- firstname?: string | null | undefined;
12201
- surname?: string | null | undefined;
12218
+ firstname: string;
12219
+ surname: string;
12202
12220
  middlename?: string | null | undefined;
12203
12221
  }, {
12204
- firstname?: string | null | undefined;
12205
- surname?: string | null | undefined;
12222
+ firstname: string;
12223
+ surname: string;
12206
12224
  middlename?: string | null | undefined;
12207
12225
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
12208
12226
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -12234,8 +12252,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12234
12252
  street?: string | null | undefined;
12235
12253
  zipCode?: string | null | undefined;
12236
12254
  } | {
12237
- firstname?: string | null | undefined;
12238
- surname?: string | null | undefined;
12255
+ firstname: string;
12256
+ surname: string;
12239
12257
  middlename?: string | null | undefined;
12240
12258
  } | {
12241
12259
  country: string;
@@ -12281,8 +12299,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12281
12299
  street?: string | null | undefined;
12282
12300
  zipCode?: string | null | undefined;
12283
12301
  } | {
12284
- firstname?: string | null | undefined;
12285
- surname?: string | null | undefined;
12302
+ firstname: string;
12303
+ surname: string;
12286
12304
  middlename?: string | null | undefined;
12287
12305
  } | {
12288
12306
  country: string;
@@ -12336,8 +12354,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12336
12354
  street?: string | null | undefined;
12337
12355
  zipCode?: string | null | undefined;
12338
12356
  } | {
12339
- firstname?: string | null | undefined;
12340
- surname?: string | null | undefined;
12357
+ firstname: string;
12358
+ surname: string;
12341
12359
  middlename?: string | null | undefined;
12342
12360
  } | {
12343
12361
  country: string;
@@ -12383,8 +12401,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12383
12401
  street?: string | null | undefined;
12384
12402
  zipCode?: string | null | undefined;
12385
12403
  } | {
12386
- firstname?: string | null | undefined;
12387
- surname?: string | null | undefined;
12404
+ firstname: string;
12405
+ surname: string;
12388
12406
  middlename?: string | null | undefined;
12389
12407
  } | {
12390
12408
  country: string;
@@ -12545,16 +12563,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12545
12563
  addressLine3?: string | null | undefined;
12546
12564
  postcodeOrZip?: string | null | undefined;
12547
12565
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12548
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12549
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12566
+ firstname: z.ZodString;
12567
+ surname: z.ZodString;
12550
12568
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12551
12569
  }, "strip", z.ZodTypeAny, {
12552
- firstname?: string | null | undefined;
12553
- surname?: string | null | undefined;
12570
+ firstname: string;
12571
+ surname: string;
12554
12572
  middlename?: string | null | undefined;
12555
12573
  }, {
12556
- firstname?: string | null | undefined;
12557
- surname?: string | null | undefined;
12574
+ firstname: string;
12575
+ surname: string;
12558
12576
  middlename?: string | null | undefined;
12559
12577
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
12560
12578
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -12680,16 +12698,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12680
12698
  addressLine3?: string | null | undefined;
12681
12699
  postcodeOrZip?: string | null | undefined;
12682
12700
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12683
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12684
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12701
+ firstname: z.ZodString;
12702
+ surname: z.ZodString;
12685
12703
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12686
12704
  }, "strip", z.ZodTypeAny, {
12687
- firstname?: string | null | undefined;
12688
- surname?: string | null | undefined;
12705
+ firstname: string;
12706
+ surname: string;
12689
12707
  middlename?: string | null | undefined;
12690
12708
  }, {
12691
- firstname?: string | null | undefined;
12692
- surname?: string | null | undefined;
12709
+ firstname: string;
12710
+ surname: string;
12693
12711
  middlename?: string | null | undefined;
12694
12712
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
12695
12713
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -12735,8 +12753,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12735
12753
  street?: string | null | undefined;
12736
12754
  zipCode?: string | null | undefined;
12737
12755
  } | {
12738
- firstname?: string | null | undefined;
12739
- surname?: string | null | undefined;
12756
+ firstname: string;
12757
+ surname: string;
12740
12758
  middlename?: string | null | undefined;
12741
12759
  } | {
12742
12760
  country: string;
@@ -12782,8 +12800,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12782
12800
  street?: string | null | undefined;
12783
12801
  zipCode?: string | null | undefined;
12784
12802
  } | {
12785
- firstname?: string | null | undefined;
12786
- surname?: string | null | undefined;
12803
+ firstname: string;
12804
+ surname: string;
12787
12805
  middlename?: string | null | undefined;
12788
12806
  } | {
12789
12807
  country: string;
@@ -12841,8 +12859,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12841
12859
  street?: string | null | undefined;
12842
12860
  zipCode?: string | null | undefined;
12843
12861
  } | {
12844
- firstname?: string | null | undefined;
12845
- surname?: string | null | undefined;
12862
+ firstname: string;
12863
+ surname: string;
12846
12864
  middlename?: string | null | undefined;
12847
12865
  } | {
12848
12866
  country: string;
@@ -12888,8 +12906,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12888
12906
  street?: string | null | undefined;
12889
12907
  zipCode?: string | null | undefined;
12890
12908
  } | {
12891
- firstname?: string | null | undefined;
12892
- surname?: string | null | undefined;
12909
+ firstname: string;
12910
+ surname: string;
12893
12911
  middlename?: string | null | undefined;
12894
12912
  } | {
12895
12913
  country: string;
@@ -13050,16 +13068,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13050
13068
  addressLine3?: string | null | undefined;
13051
13069
  postcodeOrZip?: string | null | undefined;
13052
13070
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13053
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13054
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13071
+ firstname: z.ZodString;
13072
+ surname: z.ZodString;
13055
13073
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13056
13074
  }, "strip", z.ZodTypeAny, {
13057
- firstname?: string | null | undefined;
13058
- surname?: string | null | undefined;
13075
+ firstname: string;
13076
+ surname: string;
13059
13077
  middlename?: string | null | undefined;
13060
13078
  }, {
13061
- firstname?: string | null | undefined;
13062
- surname?: string | null | undefined;
13079
+ firstname: string;
13080
+ surname: string;
13063
13081
  middlename?: string | null | undefined;
13064
13082
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
13065
13083
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -13185,16 +13203,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13185
13203
  addressLine3?: string | null | undefined;
13186
13204
  postcodeOrZip?: string | null | undefined;
13187
13205
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13188
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13189
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13206
+ firstname: z.ZodString;
13207
+ surname: z.ZodString;
13190
13208
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13191
13209
  }, "strip", z.ZodTypeAny, {
13192
- firstname?: string | null | undefined;
13193
- surname?: string | null | undefined;
13210
+ firstname: string;
13211
+ surname: string;
13194
13212
  middlename?: string | null | undefined;
13195
13213
  }, {
13196
- firstname?: string | null | undefined;
13197
- surname?: string | null | undefined;
13214
+ firstname: string;
13215
+ surname: string;
13198
13216
  middlename?: string | null | undefined;
13199
13217
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
13200
13218
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -13226,8 +13244,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13226
13244
  street?: string | null | undefined;
13227
13245
  zipCode?: string | null | undefined;
13228
13246
  } | {
13229
- firstname?: string | null | undefined;
13230
- surname?: string | null | undefined;
13247
+ firstname: string;
13248
+ surname: string;
13231
13249
  middlename?: string | null | undefined;
13232
13250
  } | {
13233
13251
  country: string;
@@ -13273,8 +13291,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13273
13291
  street?: string | null | undefined;
13274
13292
  zipCode?: string | null | undefined;
13275
13293
  } | {
13276
- firstname?: string | null | undefined;
13277
- surname?: string | null | undefined;
13294
+ firstname: string;
13295
+ surname: string;
13278
13296
  middlename?: string | null | undefined;
13279
13297
  } | {
13280
13298
  country: string;
@@ -13328,8 +13346,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13328
13346
  street?: string | null | undefined;
13329
13347
  zipCode?: string | null | undefined;
13330
13348
  } | {
13331
- firstname?: string | null | undefined;
13332
- surname?: string | null | undefined;
13349
+ firstname: string;
13350
+ surname: string;
13333
13351
  middlename?: string | null | undefined;
13334
13352
  } | {
13335
13353
  country: string;
@@ -13375,8 +13393,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13375
13393
  street?: string | null | undefined;
13376
13394
  zipCode?: string | null | undefined;
13377
13395
  } | {
13378
- firstname?: string | null | undefined;
13379
- surname?: string | null | undefined;
13396
+ firstname: string;
13397
+ surname: string;
13380
13398
  middlename?: string | null | undefined;
13381
13399
  } | {
13382
13400
  country: string;
@@ -13537,16 +13555,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13537
13555
  addressLine3?: string | null | undefined;
13538
13556
  postcodeOrZip?: string | null | undefined;
13539
13557
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13540
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13541
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13558
+ firstname: z.ZodString;
13559
+ surname: z.ZodString;
13542
13560
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13543
13561
  }, "strip", z.ZodTypeAny, {
13544
- firstname?: string | null | undefined;
13545
- surname?: string | null | undefined;
13562
+ firstname: string;
13563
+ surname: string;
13546
13564
  middlename?: string | null | undefined;
13547
13565
  }, {
13548
- firstname?: string | null | undefined;
13549
- surname?: string | null | undefined;
13566
+ firstname: string;
13567
+ surname: string;
13550
13568
  middlename?: string | null | undefined;
13551
13569
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
13552
13570
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -13672,16 +13690,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13672
13690
  addressLine3?: string | null | undefined;
13673
13691
  postcodeOrZip?: string | null | undefined;
13674
13692
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13675
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13676
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13693
+ firstname: z.ZodString;
13694
+ surname: z.ZodString;
13677
13695
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13678
13696
  }, "strip", z.ZodTypeAny, {
13679
- firstname?: string | null | undefined;
13680
- surname?: string | null | undefined;
13697
+ firstname: string;
13698
+ surname: string;
13681
13699
  middlename?: string | null | undefined;
13682
13700
  }, {
13683
- firstname?: string | null | undefined;
13684
- surname?: string | null | undefined;
13701
+ firstname: string;
13702
+ surname: string;
13685
13703
  middlename?: string | null | undefined;
13686
13704
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
13687
13705
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -13714,8 +13732,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13714
13732
  street?: string | null | undefined;
13715
13733
  zipCode?: string | null | undefined;
13716
13734
  } | {
13717
- firstname?: string | null | undefined;
13718
- surname?: string | null | undefined;
13735
+ firstname: string;
13736
+ surname: string;
13719
13737
  middlename?: string | null | undefined;
13720
13738
  } | {
13721
13739
  country: string;
@@ -13761,8 +13779,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13761
13779
  street?: string | null | undefined;
13762
13780
  zipCode?: string | null | undefined;
13763
13781
  } | {
13764
- firstname?: string | null | undefined;
13765
- surname?: string | null | undefined;
13782
+ firstname: string;
13783
+ surname: string;
13766
13784
  middlename?: string | null | undefined;
13767
13785
  } | {
13768
13786
  country: string;
@@ -13817,8 +13835,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13817
13835
  street?: string | null | undefined;
13818
13836
  zipCode?: string | null | undefined;
13819
13837
  } | {
13820
- firstname?: string | null | undefined;
13821
- surname?: string | null | undefined;
13838
+ firstname: string;
13839
+ surname: string;
13822
13840
  middlename?: string | null | undefined;
13823
13841
  } | {
13824
13842
  country: string;
@@ -13864,8 +13882,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13864
13882
  street?: string | null | undefined;
13865
13883
  zipCode?: string | null | undefined;
13866
13884
  } | {
13867
- firstname?: string | null | undefined;
13868
- surname?: string | null | undefined;
13885
+ firstname: string;
13886
+ surname: string;
13869
13887
  middlename?: string | null | undefined;
13870
13888
  } | {
13871
13889
  country: string;
@@ -14027,16 +14045,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14027
14045
  addressLine3?: string | null | undefined;
14028
14046
  postcodeOrZip?: string | null | undefined;
14029
14047
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
14030
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14031
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14048
+ firstname: z.ZodString;
14049
+ surname: z.ZodString;
14032
14050
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14033
14051
  }, "strip", z.ZodTypeAny, {
14034
- firstname?: string | null | undefined;
14035
- surname?: string | null | undefined;
14052
+ firstname: string;
14053
+ surname: string;
14036
14054
  middlename?: string | null | undefined;
14037
14055
  }, {
14038
- firstname?: string | null | undefined;
14039
- surname?: string | null | undefined;
14056
+ firstname: string;
14057
+ surname: string;
14040
14058
  middlename?: string | null | undefined;
14041
14059
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
14042
14060
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -14162,16 +14180,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14162
14180
  addressLine3?: string | null | undefined;
14163
14181
  postcodeOrZip?: string | null | undefined;
14164
14182
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
14165
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14166
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14183
+ firstname: z.ZodString;
14184
+ surname: z.ZodString;
14167
14185
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14168
14186
  }, "strip", z.ZodTypeAny, {
14169
- firstname?: string | null | undefined;
14170
- surname?: string | null | undefined;
14187
+ firstname: string;
14188
+ surname: string;
14171
14189
  middlename?: string | null | undefined;
14172
14190
  }, {
14173
- firstname?: string | null | undefined;
14174
- surname?: string | null | undefined;
14191
+ firstname: string;
14192
+ surname: string;
14175
14193
  middlename?: string | null | undefined;
14176
14194
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
14177
14195
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -14203,8 +14221,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14203
14221
  street?: string | null | undefined;
14204
14222
  zipCode?: string | null | undefined;
14205
14223
  } | {
14206
- firstname?: string | null | undefined;
14207
- surname?: string | null | undefined;
14224
+ firstname: string;
14225
+ surname: string;
14208
14226
  middlename?: string | null | undefined;
14209
14227
  } | {
14210
14228
  country: string;
@@ -14250,8 +14268,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14250
14268
  street?: string | null | undefined;
14251
14269
  zipCode?: string | null | undefined;
14252
14270
  } | {
14253
- firstname?: string | null | undefined;
14254
- surname?: string | null | undefined;
14271
+ firstname: string;
14272
+ surname: string;
14255
14273
  middlename?: string | null | undefined;
14256
14274
  } | {
14257
14275
  country: string;
@@ -14305,8 +14323,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14305
14323
  street?: string | null | undefined;
14306
14324
  zipCode?: string | null | undefined;
14307
14325
  } | {
14308
- firstname?: string | null | undefined;
14309
- surname?: string | null | undefined;
14326
+ firstname: string;
14327
+ surname: string;
14310
14328
  middlename?: string | null | undefined;
14311
14329
  } | {
14312
14330
  country: string;
@@ -14352,8 +14370,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14352
14370
  street?: string | null | undefined;
14353
14371
  zipCode?: string | null | undefined;
14354
14372
  } | {
14355
- firstname?: string | null | undefined;
14356
- surname?: string | null | undefined;
14373
+ firstname: string;
14374
+ surname: string;
14357
14375
  middlename?: string | null | undefined;
14358
14376
  } | {
14359
14377
  country: string;
@@ -14514,16 +14532,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14514
14532
  addressLine3?: string | null | undefined;
14515
14533
  postcodeOrZip?: string | null | undefined;
14516
14534
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
14517
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14518
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14535
+ firstname: z.ZodString;
14536
+ surname: z.ZodString;
14519
14537
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14520
14538
  }, "strip", z.ZodTypeAny, {
14521
- firstname?: string | null | undefined;
14522
- surname?: string | null | undefined;
14539
+ firstname: string;
14540
+ surname: string;
14523
14541
  middlename?: string | null | undefined;
14524
14542
  }, {
14525
- firstname?: string | null | undefined;
14526
- surname?: string | null | undefined;
14543
+ firstname: string;
14544
+ surname: string;
14527
14545
  middlename?: string | null | undefined;
14528
14546
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
14529
14547
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -14649,16 +14667,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14649
14667
  addressLine3?: string | null | undefined;
14650
14668
  postcodeOrZip?: string | null | undefined;
14651
14669
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
14652
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14653
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14670
+ firstname: z.ZodString;
14671
+ surname: z.ZodString;
14654
14672
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14655
14673
  }, "strip", z.ZodTypeAny, {
14656
- firstname?: string | null | undefined;
14657
- surname?: string | null | undefined;
14674
+ firstname: string;
14675
+ surname: string;
14658
14676
  middlename?: string | null | undefined;
14659
14677
  }, {
14660
- firstname?: string | null | undefined;
14661
- surname?: string | null | undefined;
14678
+ firstname: string;
14679
+ surname: string;
14662
14680
  middlename?: string | null | undefined;
14663
14681
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
14664
14682
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -14691,8 +14709,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14691
14709
  street?: string | null | undefined;
14692
14710
  zipCode?: string | null | undefined;
14693
14711
  } | {
14694
- firstname?: string | null | undefined;
14695
- surname?: string | null | undefined;
14712
+ firstname: string;
14713
+ surname: string;
14696
14714
  middlename?: string | null | undefined;
14697
14715
  } | {
14698
14716
  country: string;
@@ -14739,8 +14757,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14739
14757
  street?: string | null | undefined;
14740
14758
  zipCode?: string | null | undefined;
14741
14759
  } | {
14742
- firstname?: string | null | undefined;
14743
- surname?: string | null | undefined;
14760
+ firstname: string;
14761
+ surname: string;
14744
14762
  middlename?: string | null | undefined;
14745
14763
  } | {
14746
14764
  country: string;
@@ -14794,8 +14812,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14794
14812
  street?: string | null | undefined;
14795
14813
  zipCode?: string | null | undefined;
14796
14814
  } | {
14797
- firstname?: string | null | undefined;
14798
- surname?: string | null | undefined;
14815
+ firstname: string;
14816
+ surname: string;
14799
14817
  middlename?: string | null | undefined;
14800
14818
  } | {
14801
14819
  country: string;
@@ -14842,8 +14860,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14842
14860
  street?: string | null | undefined;
14843
14861
  zipCode?: string | null | undefined;
14844
14862
  } | {
14845
- firstname?: string | null | undefined;
14846
- surname?: string | null | undefined;
14863
+ firstname: string;
14864
+ surname: string;
14847
14865
  middlename?: string | null | undefined;
14848
14866
  } | {
14849
14867
  country: string;
@@ -15004,16 +15022,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15004
15022
  addressLine3?: string | null | undefined;
15005
15023
  postcodeOrZip?: string | null | undefined;
15006
15024
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
15007
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15008
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15025
+ firstname: z.ZodString;
15026
+ surname: z.ZodString;
15009
15027
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15010
15028
  }, "strip", z.ZodTypeAny, {
15011
- firstname?: string | null | undefined;
15012
- surname?: string | null | undefined;
15029
+ firstname: string;
15030
+ surname: string;
15013
15031
  middlename?: string | null | undefined;
15014
15032
  }, {
15015
- firstname?: string | null | undefined;
15016
- surname?: string | null | undefined;
15033
+ firstname: string;
15034
+ surname: string;
15017
15035
  middlename?: string | null | undefined;
15018
15036
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
15019
15037
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -15139,16 +15157,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15139
15157
  addressLine3?: string | null | undefined;
15140
15158
  postcodeOrZip?: string | null | undefined;
15141
15159
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
15142
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15143
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15160
+ firstname: z.ZodString;
15161
+ surname: z.ZodString;
15144
15162
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15145
15163
  }, "strip", z.ZodTypeAny, {
15146
- firstname?: string | null | undefined;
15147
- surname?: string | null | undefined;
15164
+ firstname: string;
15165
+ surname: string;
15148
15166
  middlename?: string | null | undefined;
15149
15167
  }, {
15150
- firstname?: string | null | undefined;
15151
- surname?: string | null | undefined;
15168
+ firstname: string;
15169
+ surname: string;
15152
15170
  middlename?: string | null | undefined;
15153
15171
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
15154
15172
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -15180,8 +15198,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15180
15198
  street?: string | null | undefined;
15181
15199
  zipCode?: string | null | undefined;
15182
15200
  } | {
15183
- firstname?: string | null | undefined;
15184
- surname?: string | null | undefined;
15201
+ firstname: string;
15202
+ surname: string;
15185
15203
  middlename?: string | null | undefined;
15186
15204
  } | {
15187
15205
  country: string;
@@ -15227,8 +15245,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15227
15245
  street?: string | null | undefined;
15228
15246
  zipCode?: string | null | undefined;
15229
15247
  } | {
15230
- firstname?: string | null | undefined;
15231
- surname?: string | null | undefined;
15248
+ firstname: string;
15249
+ surname: string;
15232
15250
  middlename?: string | null | undefined;
15233
15251
  } | {
15234
15252
  country: string;
@@ -15282,8 +15300,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15282
15300
  street?: string | null | undefined;
15283
15301
  zipCode?: string | null | undefined;
15284
15302
  } | {
15285
- firstname?: string | null | undefined;
15286
- surname?: string | null | undefined;
15303
+ firstname: string;
15304
+ surname: string;
15287
15305
  middlename?: string | null | undefined;
15288
15306
  } | {
15289
15307
  country: string;
@@ -15329,8 +15347,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15329
15347
  street?: string | null | undefined;
15330
15348
  zipCode?: string | null | undefined;
15331
15349
  } | {
15332
- firstname?: string | null | undefined;
15333
- surname?: string | null | undefined;
15350
+ firstname: string;
15351
+ surname: string;
15334
15352
  middlename?: string | null | undefined;
15335
15353
  } | {
15336
15354
  country: string;
@@ -15491,16 +15509,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15491
15509
  addressLine3?: string | null | undefined;
15492
15510
  postcodeOrZip?: string | null | undefined;
15493
15511
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
15494
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15495
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15512
+ firstname: z.ZodString;
15513
+ surname: z.ZodString;
15496
15514
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15497
15515
  }, "strip", z.ZodTypeAny, {
15498
- firstname?: string | null | undefined;
15499
- surname?: string | null | undefined;
15516
+ firstname: string;
15517
+ surname: string;
15500
15518
  middlename?: string | null | undefined;
15501
15519
  }, {
15502
- firstname?: string | null | undefined;
15503
- surname?: string | null | undefined;
15520
+ firstname: string;
15521
+ surname: string;
15504
15522
  middlename?: string | null | undefined;
15505
15523
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
15506
15524
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -15626,16 +15644,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15626
15644
  addressLine3?: string | null | undefined;
15627
15645
  postcodeOrZip?: string | null | undefined;
15628
15646
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
15629
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15630
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15647
+ firstname: z.ZodString;
15648
+ surname: z.ZodString;
15631
15649
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15632
15650
  }, "strip", z.ZodTypeAny, {
15633
- firstname?: string | null | undefined;
15634
- surname?: string | null | undefined;
15651
+ firstname: string;
15652
+ surname: string;
15635
15653
  middlename?: string | null | undefined;
15636
15654
  }, {
15637
- firstname?: string | null | undefined;
15638
- surname?: string | null | undefined;
15655
+ firstname: string;
15656
+ surname: string;
15639
15657
  middlename?: string | null | undefined;
15640
15658
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
15641
15659
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -15668,8 +15686,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15668
15686
  street?: string | null | undefined;
15669
15687
  zipCode?: string | null | undefined;
15670
15688
  } | {
15671
- firstname?: string | null | undefined;
15672
- surname?: string | null | undefined;
15689
+ firstname: string;
15690
+ surname: string;
15673
15691
  middlename?: string | null | undefined;
15674
15692
  } | {
15675
15693
  country: string;
@@ -15716,8 +15734,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15716
15734
  street?: string | null | undefined;
15717
15735
  zipCode?: string | null | undefined;
15718
15736
  } | {
15719
- firstname?: string | null | undefined;
15720
- surname?: string | null | undefined;
15737
+ firstname: string;
15738
+ surname: string;
15721
15739
  middlename?: string | null | undefined;
15722
15740
  } | {
15723
15741
  country: string;
@@ -15771,8 +15789,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15771
15789
  street?: string | null | undefined;
15772
15790
  zipCode?: string | null | undefined;
15773
15791
  } | {
15774
- firstname?: string | null | undefined;
15775
- surname?: string | null | undefined;
15792
+ firstname: string;
15793
+ surname: string;
15776
15794
  middlename?: string | null | undefined;
15777
15795
  } | {
15778
15796
  country: string;
@@ -15819,8 +15837,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15819
15837
  street?: string | null | undefined;
15820
15838
  zipCode?: string | null | undefined;
15821
15839
  } | {
15822
- firstname?: string | null | undefined;
15823
- surname?: string | null | undefined;
15840
+ firstname: string;
15841
+ surname: string;
15824
15842
  middlename?: string | null | undefined;
15825
15843
  } | {
15826
15844
  country: string;
@@ -15981,16 +15999,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15981
15999
  addressLine3?: string | null | undefined;
15982
16000
  postcodeOrZip?: string | null | undefined;
15983
16001
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
15984
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15985
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16002
+ firstname: z.ZodString;
16003
+ surname: z.ZodString;
15986
16004
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15987
16005
  }, "strip", z.ZodTypeAny, {
15988
- firstname?: string | null | undefined;
15989
- surname?: string | null | undefined;
16006
+ firstname: string;
16007
+ surname: string;
15990
16008
  middlename?: string | null | undefined;
15991
16009
  }, {
15992
- firstname?: string | null | undefined;
15993
- surname?: string | null | undefined;
16010
+ firstname: string;
16011
+ surname: string;
15994
16012
  middlename?: string | null | undefined;
15995
16013
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
15996
16014
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -16116,16 +16134,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16116
16134
  addressLine3?: string | null | undefined;
16117
16135
  postcodeOrZip?: string | null | undefined;
16118
16136
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
16119
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16120
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16137
+ firstname: z.ZodString;
16138
+ surname: z.ZodString;
16121
16139
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16122
16140
  }, "strip", z.ZodTypeAny, {
16123
- firstname?: string | null | undefined;
16124
- surname?: string | null | undefined;
16141
+ firstname: string;
16142
+ surname: string;
16125
16143
  middlename?: string | null | undefined;
16126
16144
  }, {
16127
- firstname?: string | null | undefined;
16128
- surname?: string | null | undefined;
16145
+ firstname: string;
16146
+ surname: string;
16129
16147
  middlename?: string | null | undefined;
16130
16148
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
16131
16149
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -16133,10 +16151,24 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16133
16151
  }, {
16134
16152
  type: z.ZodLiteral<"REJECT_CORRECTION">;
16135
16153
  requestId: z.ZodString;
16154
+ reason: z.ZodObject<{
16155
+ message: z.ZodString;
16156
+ isDuplicate: z.ZodOptional<z.ZodBoolean>;
16157
+ }, "strip", z.ZodTypeAny, {
16158
+ message: string;
16159
+ isDuplicate?: boolean | undefined;
16160
+ }, {
16161
+ message: string;
16162
+ isDuplicate?: boolean | undefined;
16163
+ }>;
16136
16164
  }>, "strip", z.ZodTypeAny, {
16137
16165
  type: "REJECT_CORRECTION";
16138
16166
  id: string & z.BRAND<"UUID">;
16139
16167
  status: "Rejected" | "Requested" | "Accepted";
16168
+ reason: {
16169
+ message: string;
16170
+ isDuplicate?: boolean | undefined;
16171
+ };
16140
16172
  transactionId: string;
16141
16173
  createdByUserType: "system" | "user";
16142
16174
  createdAt: string;
@@ -16158,8 +16190,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16158
16190
  street?: string | null | undefined;
16159
16191
  zipCode?: string | null | undefined;
16160
16192
  } | {
16161
- firstname?: string | null | undefined;
16162
- surname?: string | null | undefined;
16193
+ firstname: string;
16194
+ surname: string;
16163
16195
  middlename?: string | null | undefined;
16164
16196
  } | {
16165
16197
  country: string;
@@ -16206,8 +16238,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16206
16238
  street?: string | null | undefined;
16207
16239
  zipCode?: string | null | undefined;
16208
16240
  } | {
16209
- firstname?: string | null | undefined;
16210
- surname?: string | null | undefined;
16241
+ firstname: string;
16242
+ surname: string;
16211
16243
  middlename?: string | null | undefined;
16212
16244
  } | {
16213
16245
  country: string;
@@ -16240,6 +16272,10 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16240
16272
  type: "REJECT_CORRECTION";
16241
16273
  id: string;
16242
16274
  status: "Rejected" | "Requested" | "Accepted";
16275
+ reason: {
16276
+ message: string;
16277
+ isDuplicate?: boolean | undefined;
16278
+ };
16243
16279
  transactionId: string;
16244
16280
  createdByUserType: "system" | "user";
16245
16281
  createdAt: string;
@@ -16261,8 +16297,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16261
16297
  street?: string | null | undefined;
16262
16298
  zipCode?: string | null | undefined;
16263
16299
  } | {
16264
- firstname?: string | null | undefined;
16265
- surname?: string | null | undefined;
16300
+ firstname: string;
16301
+ surname: string;
16266
16302
  middlename?: string | null | undefined;
16267
16303
  } | {
16268
16304
  country: string;
@@ -16309,8 +16345,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16309
16345
  street?: string | null | undefined;
16310
16346
  zipCode?: string | null | undefined;
16311
16347
  } | {
16312
- firstname?: string | null | undefined;
16313
- surname?: string | null | undefined;
16348
+ firstname: string;
16349
+ surname: string;
16314
16350
  middlename?: string | null | undefined;
16315
16351
  } | {
16316
16352
  country: string;
@@ -16471,16 +16507,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16471
16507
  addressLine3?: string | null | undefined;
16472
16508
  postcodeOrZip?: string | null | undefined;
16473
16509
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
16474
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16475
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16510
+ firstname: z.ZodString;
16511
+ surname: z.ZodString;
16476
16512
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16477
16513
  }, "strip", z.ZodTypeAny, {
16478
- firstname?: string | null | undefined;
16479
- surname?: string | null | undefined;
16514
+ firstname: string;
16515
+ surname: string;
16480
16516
  middlename?: string | null | undefined;
16481
16517
  }, {
16482
- firstname?: string | null | undefined;
16483
- surname?: string | null | undefined;
16518
+ firstname: string;
16519
+ surname: string;
16484
16520
  middlename?: string | null | undefined;
16485
16521
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
16486
16522
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -16606,16 +16642,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16606
16642
  addressLine3?: string | null | undefined;
16607
16643
  postcodeOrZip?: string | null | undefined;
16608
16644
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
16609
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16610
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16645
+ firstname: z.ZodString;
16646
+ surname: z.ZodString;
16611
16647
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16612
16648
  }, "strip", z.ZodTypeAny, {
16613
- firstname?: string | null | undefined;
16614
- surname?: string | null | undefined;
16649
+ firstname: string;
16650
+ surname: string;
16615
16651
  middlename?: string | null | undefined;
16616
16652
  }, {
16617
- firstname?: string | null | undefined;
16618
- surname?: string | null | undefined;
16653
+ firstname: string;
16654
+ surname: string;
16619
16655
  middlename?: string | null | undefined;
16620
16656
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
16621
16657
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -16647,8 +16683,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16647
16683
  street?: string | null | undefined;
16648
16684
  zipCode?: string | null | undefined;
16649
16685
  } | {
16650
- firstname?: string | null | undefined;
16651
- surname?: string | null | undefined;
16686
+ firstname: string;
16687
+ surname: string;
16652
16688
  middlename?: string | null | undefined;
16653
16689
  } | {
16654
16690
  country: string;
@@ -16694,8 +16730,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16694
16730
  street?: string | null | undefined;
16695
16731
  zipCode?: string | null | undefined;
16696
16732
  } | {
16697
- firstname?: string | null | undefined;
16698
- surname?: string | null | undefined;
16733
+ firstname: string;
16734
+ surname: string;
16699
16735
  middlename?: string | null | undefined;
16700
16736
  } | {
16701
16737
  country: string;
@@ -16749,8 +16785,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16749
16785
  street?: string | null | undefined;
16750
16786
  zipCode?: string | null | undefined;
16751
16787
  } | {
16752
- firstname?: string | null | undefined;
16753
- surname?: string | null | undefined;
16788
+ firstname: string;
16789
+ surname: string;
16754
16790
  middlename?: string | null | undefined;
16755
16791
  } | {
16756
16792
  country: string;
@@ -16796,8 +16832,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16796
16832
  street?: string | null | undefined;
16797
16833
  zipCode?: string | null | undefined;
16798
16834
  } | {
16799
- firstname?: string | null | undefined;
16800
- surname?: string | null | undefined;
16835
+ firstname: string;
16836
+ surname: string;
16801
16837
  middlename?: string | null | undefined;
16802
16838
  } | {
16803
16839
  country: string;
@@ -16958,16 +16994,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16958
16994
  addressLine3?: string | null | undefined;
16959
16995
  postcodeOrZip?: string | null | undefined;
16960
16996
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
16961
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16962
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16997
+ firstname: z.ZodString;
16998
+ surname: z.ZodString;
16963
16999
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16964
17000
  }, "strip", z.ZodTypeAny, {
16965
- firstname?: string | null | undefined;
16966
- surname?: string | null | undefined;
17001
+ firstname: string;
17002
+ surname: string;
16967
17003
  middlename?: string | null | undefined;
16968
17004
  }, {
16969
- firstname?: string | null | undefined;
16970
- surname?: string | null | undefined;
17005
+ firstname: string;
17006
+ surname: string;
16971
17007
  middlename?: string | null | undefined;
16972
17008
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
16973
17009
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -17093,23 +17129,23 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
17093
17129
  addressLine3?: string | null | undefined;
17094
17130
  postcodeOrZip?: string | null | undefined;
17095
17131
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
17096
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17097
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17132
+ firstname: z.ZodString;
17133
+ surname: z.ZodString;
17098
17134
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17099
17135
  }, "strip", z.ZodTypeAny, {
17100
- firstname?: string | null | undefined;
17101
- surname?: string | null | undefined;
17136
+ firstname: string;
17137
+ surname: string;
17102
17138
  middlename?: string | null | undefined;
17103
17139
  }, {
17104
- firstname?: string | null | undefined;
17105
- surname?: string | null | undefined;
17140
+ firstname: string;
17141
+ surname: string;
17106
17142
  middlename?: string | null | undefined;
17107
17143
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
17108
17144
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
17109
17145
  originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
17110
17146
  }, {
17111
17147
  type: z.ZodLiteral<"PRINT_CERTIFICATE">;
17112
- actionDetails: z.ZodNullable<z.ZodOptional<z.ZodObject<{
17148
+ content: z.ZodNullable<z.ZodOptional<z.ZodObject<{
17113
17149
  templateId: z.ZodOptional<z.ZodString>;
17114
17150
  }, "strip", z.ZodTypeAny, {
17115
17151
  templateId?: string | undefined;
@@ -17141,8 +17177,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
17141
17177
  street?: string | null | undefined;
17142
17178
  zipCode?: string | null | undefined;
17143
17179
  } | {
17144
- firstname?: string | null | undefined;
17145
- surname?: string | null | undefined;
17180
+ firstname: string;
17181
+ surname: string;
17146
17182
  middlename?: string | null | undefined;
17147
17183
  } | {
17148
17184
  country: string;
@@ -17170,6 +17206,9 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
17170
17206
  start: string;
17171
17207
  end: string;
17172
17208
  } | null | undefined>;
17209
+ content?: {
17210
+ templateId?: string | undefined;
17211
+ } | null | undefined;
17173
17212
  createdBySignature?: string | null | undefined;
17174
17213
  createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
17175
17214
  annotation?: Record<string, string | number | boolean | {
@@ -17188,8 +17227,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
17188
17227
  street?: string | null | undefined;
17189
17228
  zipCode?: string | null | undefined;
17190
17229
  } | {
17191
- firstname?: string | null | undefined;
17192
- surname?: string | null | undefined;
17230
+ firstname: string;
17231
+ surname: string;
17193
17232
  middlename?: string | null | undefined;
17194
17233
  } | {
17195
17234
  country: string;
@@ -17218,9 +17257,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
17218
17257
  end: string;
17219
17258
  } | null | undefined> | null | undefined;
17220
17259
  originalActionId?: (string & z.BRAND<"UUID">) | null | undefined;
17221
- actionDetails?: {
17222
- templateId?: string | undefined;
17223
- } | null | undefined;
17224
17260
  }, {
17225
17261
  type: "PRINT_CERTIFICATE";
17226
17262
  id: string;
@@ -17246,8 +17282,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
17246
17282
  street?: string | null | undefined;
17247
17283
  zipCode?: string | null | undefined;
17248
17284
  } | {
17249
- firstname?: string | null | undefined;
17250
- surname?: string | null | undefined;
17285
+ firstname: string;
17286
+ surname: string;
17251
17287
  middlename?: string | null | undefined;
17252
17288
  } | {
17253
17289
  country: string;
@@ -17275,6 +17311,9 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
17275
17311
  start: string;
17276
17312
  end: string;
17277
17313
  } | null | undefined>;
17314
+ content?: {
17315
+ templateId?: string | undefined;
17316
+ } | null | undefined;
17278
17317
  createdBySignature?: string | null | undefined;
17279
17318
  createdAtLocation?: string | null | undefined;
17280
17319
  annotation?: Record<string, string | number | boolean | {
@@ -17293,8 +17332,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
17293
17332
  street?: string | null | undefined;
17294
17333
  zipCode?: string | null | undefined;
17295
17334
  } | {
17296
- firstname?: string | null | undefined;
17297
- surname?: string | null | undefined;
17335
+ firstname: string;
17336
+ surname: string;
17298
17337
  middlename?: string | null | undefined;
17299
17338
  } | {
17300
17339
  country: string;
@@ -17323,9 +17362,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
17323
17362
  end: string;
17324
17363
  } | null | undefined> | null | undefined;
17325
17364
  originalActionId?: string | null | undefined;
17326
- actionDetails?: {
17327
- templateId?: string | undefined;
17328
- } | null | undefined;
17329
17365
  }>, z.ZodObject<z.objectUtil.extendShape<{
17330
17366
  id: z.ZodBranded<z.ZodString, "UUID">;
17331
17367
  transactionId: z.ZodString;
@@ -17458,16 +17494,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
17458
17494
  addressLine3?: string | null | undefined;
17459
17495
  postcodeOrZip?: string | null | undefined;
17460
17496
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
17461
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17462
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17497
+ firstname: z.ZodString;
17498
+ surname: z.ZodString;
17463
17499
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17464
17500
  }, "strip", z.ZodTypeAny, {
17465
- firstname?: string | null | undefined;
17466
- surname?: string | null | undefined;
17501
+ firstname: string;
17502
+ surname: string;
17467
17503
  middlename?: string | null | undefined;
17468
17504
  }, {
17469
- firstname?: string | null | undefined;
17470
- surname?: string | null | undefined;
17505
+ firstname: string;
17506
+ surname: string;
17471
17507
  middlename?: string | null | undefined;
17472
17508
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
17473
17509
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -17593,16 +17629,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
17593
17629
  addressLine3?: string | null | undefined;
17594
17630
  postcodeOrZip?: string | null | undefined;
17595
17631
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
17596
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17597
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17632
+ firstname: z.ZodString;
17633
+ surname: z.ZodString;
17598
17634
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17599
17635
  }, "strip", z.ZodTypeAny, {
17600
- firstname?: string | null | undefined;
17601
- surname?: string | null | undefined;
17636
+ firstname: string;
17637
+ surname: string;
17602
17638
  middlename?: string | null | undefined;
17603
17639
  }, {
17604
- firstname?: string | null | undefined;
17605
- surname?: string | null | undefined;
17640
+ firstname: string;
17641
+ surname: string;
17606
17642
  middlename?: string | null | undefined;
17607
17643
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
17608
17644
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -17634,8 +17670,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
17634
17670
  street?: string | null | undefined;
17635
17671
  zipCode?: string | null | undefined;
17636
17672
  } | {
17637
- firstname?: string | null | undefined;
17638
- surname?: string | null | undefined;
17673
+ firstname: string;
17674
+ surname: string;
17639
17675
  middlename?: string | null | undefined;
17640
17676
  } | {
17641
17677
  country: string;
@@ -17681,8 +17717,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
17681
17717
  street?: string | null | undefined;
17682
17718
  zipCode?: string | null | undefined;
17683
17719
  } | {
17684
- firstname?: string | null | undefined;
17685
- surname?: string | null | undefined;
17720
+ firstname: string;
17721
+ surname: string;
17686
17722
  middlename?: string | null | undefined;
17687
17723
  } | {
17688
17724
  country: string;
@@ -17736,8 +17772,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
17736
17772
  street?: string | null | undefined;
17737
17773
  zipCode?: string | null | undefined;
17738
17774
  } | {
17739
- firstname?: string | null | undefined;
17740
- surname?: string | null | undefined;
17775
+ firstname: string;
17776
+ surname: string;
17741
17777
  middlename?: string | null | undefined;
17742
17778
  } | {
17743
17779
  country: string;
@@ -17783,8 +17819,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
17783
17819
  street?: string | null | undefined;
17784
17820
  zipCode?: string | null | undefined;
17785
17821
  } | {
17786
- firstname?: string | null | undefined;
17787
- surname?: string | null | undefined;
17822
+ firstname: string;
17823
+ surname: string;
17788
17824
  middlename?: string | null | undefined;
17789
17825
  } | {
17790
17826
  country: string;
@@ -17945,16 +17981,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
17945
17981
  addressLine3?: string | null | undefined;
17946
17982
  postcodeOrZip?: string | null | undefined;
17947
17983
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
17948
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17949
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17984
+ firstname: z.ZodString;
17985
+ surname: z.ZodString;
17950
17986
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17951
17987
  }, "strip", z.ZodTypeAny, {
17952
- firstname?: string | null | undefined;
17953
- surname?: string | null | undefined;
17988
+ firstname: string;
17989
+ surname: string;
17954
17990
  middlename?: string | null | undefined;
17955
17991
  }, {
17956
- firstname?: string | null | undefined;
17957
- surname?: string | null | undefined;
17992
+ firstname: string;
17993
+ surname: string;
17958
17994
  middlename?: string | null | undefined;
17959
17995
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
17960
17996
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -18080,16 +18116,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
18080
18116
  addressLine3?: string | null | undefined;
18081
18117
  postcodeOrZip?: string | null | undefined;
18082
18118
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
18083
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18084
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18119
+ firstname: z.ZodString;
18120
+ surname: z.ZodString;
18085
18121
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18086
18122
  }, "strip", z.ZodTypeAny, {
18087
- firstname?: string | null | undefined;
18088
- surname?: string | null | undefined;
18123
+ firstname: string;
18124
+ surname: string;
18089
18125
  middlename?: string | null | undefined;
18090
18126
  }, {
18091
- firstname?: string | null | undefined;
18092
- surname?: string | null | undefined;
18127
+ firstname: string;
18128
+ surname: string;
18093
18129
  middlename?: string | null | undefined;
18094
18130
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
18095
18131
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;