@opencrvs/toolkit 1.8.1-rc.c6281e8 → 1.8.1-rc.c7fcaa3

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 +412 -395
  2. package/dist/commons/conditionals/validate.d.ts +11 -2
  3. package/dist/commons/events/ActionConfig.d.ts +3924 -642
  4. package/dist/commons/events/ActionDocument.d.ts +1252 -716
  5. package/dist/commons/events/ActionInput.d.ts +626 -600
  6. package/dist/commons/events/AdvancedSearchConfig.d.ts +49 -31
  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 +56 -56
  10. package/dist/commons/events/EventConfig.d.ts +1259 -240
  11. package/dist/commons/events/EventDocument.d.ts +451 -432
  12. package/dist/commons/events/EventIndex.d.ts +62 -62
  13. package/dist/commons/events/EventMetadata.d.ts +9 -9
  14. package/dist/commons/events/FieldConfig.d.ts +1064 -71
  15. package/dist/commons/events/FieldType.d.ts +5 -0
  16. package/dist/commons/events/FieldTypeMapping.d.ts +16 -16
  17. package/dist/commons/events/FieldValue.d.ts +12 -12
  18. package/dist/commons/events/FormConfig.d.ts +1956 -378
  19. package/dist/commons/events/PageConfig.d.ts +524 -82
  20. package/dist/commons/events/WorkqueueConfig.d.ts +199 -164
  21. package/dist/commons/events/defineConfig.d.ts +181 -46
  22. package/dist/commons/events/event.d.ts +61 -7
  23. package/dist/commons/events/test.utils.d.ts +14 -13
  24. package/dist/commons/events/utils.d.ts +341 -195
  25. package/dist/conditionals/index.js +3 -2
  26. package/dist/events/index.js +1084 -858
  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,514 @@ 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
+ middlename?: string | null | undefined;
1698
+ } | {
1699
+ country: string;
1700
+ district: string;
1701
+ addressType: "DOMESTIC";
1702
+ province: string;
1703
+ urbanOrRural: "RURAL";
1704
+ village?: string | null | undefined;
1705
+ } | {
1706
+ country: string;
1707
+ state: string;
1708
+ addressType: "INTERNATIONAL";
1709
+ district2: string;
1710
+ cityOrTown?: string | null | undefined;
1711
+ addressLine1?: string | null | undefined;
1712
+ addressLine2?: string | null | undefined;
1713
+ addressLine3?: string | null | undefined;
1714
+ postcodeOrZip?: string | null | undefined;
1715
+ } | {
1716
+ type: string;
1717
+ option: string;
1718
+ path: string;
1719
+ originalFilename: string;
1720
+ }[] | {
1721
+ start: string;
1722
+ end: string;
1723
+ } | null | undefined>;
1724
+ createdBySignature?: string | null | undefined;
1725
+ createdAtLocation?: string | null | undefined;
1726
+ annotation?: Record<string, string | number | boolean | {
1727
+ type: string;
1728
+ path: string;
1729
+ originalFilename: string;
1730
+ } | {
1731
+ country: string;
1732
+ district: string;
1733
+ addressType: "DOMESTIC";
1734
+ province: string;
1735
+ urbanOrRural: "URBAN";
1736
+ number?: string | null | undefined;
1737
+ town?: string | null | undefined;
1738
+ residentialArea?: string | null | undefined;
1739
+ street?: string | null | undefined;
1740
+ zipCode?: string | null | undefined;
1741
+ } | {
1742
+ firstname: string;
1743
+ surname: string;
1744
+ middlename?: string | null | undefined;
1745
+ } | {
1746
+ country: string;
1747
+ district: string;
1748
+ addressType: "DOMESTIC";
1749
+ province: string;
1750
+ urbanOrRural: "RURAL";
1751
+ village?: string | null | undefined;
1752
+ } | {
1753
+ country: string;
1754
+ state: string;
1755
+ addressType: "INTERNATIONAL";
1756
+ district2: string;
1757
+ cityOrTown?: string | null | undefined;
1758
+ addressLine1?: string | null | undefined;
1759
+ addressLine2?: string | null | undefined;
1760
+ addressLine3?: string | null | undefined;
1761
+ postcodeOrZip?: string | null | undefined;
1762
+ } | {
1763
+ type: string;
1764
+ option: string;
1765
+ path: string;
1766
+ originalFilename: string;
1767
+ }[] | {
1768
+ start: string;
1769
+ end: string;
1770
+ } | null | undefined> | null | undefined;
1771
+ originalActionId?: string | null | undefined;
1772
+ }>;
1773
+ export declare const PrintContent: z.ZodObject<{
1774
+ templateId: z.ZodOptional<z.ZodString>;
1775
+ }, "strip", z.ZodTypeAny, {
1776
+ templateId?: string | undefined;
1777
+ }, {
1778
+ templateId?: string | undefined;
1779
+ }>;
1780
+ export type PrintContent = z.infer<typeof PrintContent>;
1781
+ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
1782
+ id: z.ZodBranded<z.ZodString, "UUID">;
1783
+ transactionId: z.ZodString;
1784
+ createdByUserType: z.ZodEnum<["user", "system"]>;
1785
+ createdAt: z.ZodString;
1786
+ createdBy: z.ZodString;
1787
+ createdByRole: z.ZodString;
1788
+ createdBySignature: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1789
+ createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodBranded<z.ZodString, "UUID">>>;
1790
+ declaration: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
1791
+ start: z.ZodString;
1792
+ end: z.ZodString;
1793
+ }, "strip", z.ZodTypeAny, {
1794
+ start: string;
1795
+ end: string;
1796
+ }, {
1797
+ start: string;
1798
+ end: string;
1799
+ }>, z.ZodString]>, z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
1800
+ path: z.ZodEffects<z.ZodString, string, string>;
1801
+ originalFilename: z.ZodString;
1802
+ type: z.ZodString;
1803
+ }, "strip", z.ZodTypeAny, {
1804
+ type: string;
1805
+ path: string;
1806
+ originalFilename: string;
1807
+ }, {
1808
+ type: string;
1809
+ path: string;
1810
+ originalFilename: string;
1811
+ }>, z.ZodArray<z.ZodObject<{
1812
+ path: z.ZodEffects<z.ZodString, string, string>;
1813
+ originalFilename: z.ZodString;
1814
+ type: z.ZodString;
1815
+ option: z.ZodString;
1816
+ }, "strip", z.ZodTypeAny, {
1817
+ type: string;
1818
+ option: string;
1819
+ path: string;
1820
+ originalFilename: string;
1821
+ }, {
1822
+ type: string;
1823
+ option: string;
1824
+ path: string;
1825
+ originalFilename: string;
1826
+ }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
1827
+ country: z.ZodString;
1828
+ addressType: z.ZodLiteral<"DOMESTIC">;
1829
+ province: z.ZodString;
1830
+ district: z.ZodString;
1831
+ }, {
1832
+ urbanOrRural: z.ZodLiteral<"URBAN">;
1833
+ town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1834
+ residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1835
+ street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1836
+ number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1837
+ zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1838
+ }>, "strip", z.ZodTypeAny, {
1839
+ country: string;
1840
+ district: string;
1841
+ addressType: "DOMESTIC";
1842
+ province: string;
1843
+ urbanOrRural: "URBAN";
1844
+ number?: string | null | undefined;
1845
+ town?: string | null | undefined;
1846
+ residentialArea?: string | null | undefined;
1847
+ street?: string | null | undefined;
1848
+ zipCode?: string | null | undefined;
1849
+ }, {
1850
+ country: string;
1851
+ district: string;
1852
+ addressType: "DOMESTIC";
1853
+ province: string;
1854
+ urbanOrRural: "URBAN";
1855
+ number?: string | null | undefined;
1856
+ town?: string | null | undefined;
1857
+ residentialArea?: string | null | undefined;
1858
+ street?: string | null | undefined;
1859
+ zipCode?: string | null | undefined;
1860
+ }>, z.ZodObject<z.objectUtil.extendShape<{
1861
+ country: z.ZodString;
1862
+ addressType: z.ZodLiteral<"DOMESTIC">;
1863
+ province: z.ZodString;
1864
+ district: z.ZodString;
1865
+ }, {
1866
+ urbanOrRural: z.ZodLiteral<"RURAL">;
1867
+ village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1868
+ }>, "strip", z.ZodTypeAny, {
1869
+ country: string;
1870
+ district: string;
1871
+ addressType: "DOMESTIC";
1872
+ province: string;
1873
+ urbanOrRural: "RURAL";
1874
+ village?: string | null | undefined;
1875
+ }, {
1876
+ country: string;
1877
+ district: string;
1878
+ addressType: "DOMESTIC";
1879
+ province: string;
1880
+ urbanOrRural: "RURAL";
1881
+ village?: string | null | undefined;
1882
+ }>, z.ZodUndefined, z.ZodObject<{
1883
+ country: z.ZodString;
1884
+ addressType: z.ZodLiteral<"INTERNATIONAL">;
1885
+ state: z.ZodString;
1886
+ district2: z.ZodString;
1887
+ cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1888
+ addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1889
+ addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1890
+ addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1891
+ postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1892
+ }, "strip", z.ZodTypeAny, {
1893
+ country: string;
1894
+ state: string;
1895
+ addressType: "INTERNATIONAL";
1896
+ district2: string;
1897
+ cityOrTown?: string | null | undefined;
1898
+ addressLine1?: string | null | undefined;
1899
+ addressLine2?: string | null | undefined;
1900
+ addressLine3?: string | null | undefined;
1901
+ postcodeOrZip?: string | null | undefined;
1902
+ }, {
1903
+ country: string;
1904
+ state: string;
1905
+ addressType: "INTERNATIONAL";
1906
+ district2: string;
1907
+ cityOrTown?: string | null | undefined;
1908
+ addressLine1?: string | null | undefined;
1909
+ addressLine2?: string | null | undefined;
1910
+ addressLine3?: string | null | undefined;
1911
+ postcodeOrZip?: string | null | undefined;
1912
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1913
+ firstname: z.ZodString;
1914
+ surname: z.ZodString;
1915
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1916
+ }, "strip", z.ZodTypeAny, {
1917
+ firstname: string;
1918
+ surname: string;
1919
+ middlename?: string | null | undefined;
1920
+ }, {
1921
+ firstname: string;
1922
+ surname: string;
1923
+ middlename?: string | null | undefined;
1924
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>;
1925
+ annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
1926
+ start: z.ZodString;
1927
+ end: z.ZodString;
1928
+ }, "strip", z.ZodTypeAny, {
1929
+ start: string;
1930
+ end: string;
1931
+ }, {
1932
+ start: string;
1933
+ end: string;
1934
+ }>, z.ZodString]>, z.ZodEnum<["last7Days", "last30Days", "last90Days", "last365Days"]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
1935
+ path: z.ZodEffects<z.ZodString, string, string>;
1936
+ originalFilename: z.ZodString;
1937
+ type: z.ZodString;
1938
+ }, "strip", z.ZodTypeAny, {
1939
+ type: string;
1940
+ path: string;
1941
+ originalFilename: string;
1942
+ }, {
1943
+ type: string;
1944
+ path: string;
1945
+ originalFilename: string;
1946
+ }>, z.ZodArray<z.ZodObject<{
1947
+ path: z.ZodEffects<z.ZodString, string, string>;
1948
+ originalFilename: z.ZodString;
1949
+ type: z.ZodString;
1950
+ option: z.ZodString;
1951
+ }, "strip", z.ZodTypeAny, {
1952
+ type: string;
1953
+ option: string;
1954
+ path: string;
1955
+ originalFilename: string;
1956
+ }, {
1957
+ type: string;
1958
+ option: string;
1959
+ path: string;
1960
+ originalFilename: string;
1961
+ }>, "many">, z.ZodObject<z.objectUtil.extendShape<{
1962
+ country: z.ZodString;
1963
+ addressType: z.ZodLiteral<"DOMESTIC">;
1964
+ province: z.ZodString;
1965
+ district: z.ZodString;
1966
+ }, {
1967
+ urbanOrRural: z.ZodLiteral<"URBAN">;
1968
+ town: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1969
+ residentialArea: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1970
+ street: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1971
+ number: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1972
+ zipCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1973
+ }>, "strip", z.ZodTypeAny, {
1974
+ country: string;
1975
+ district: string;
1976
+ addressType: "DOMESTIC";
1977
+ province: string;
1978
+ urbanOrRural: "URBAN";
1979
+ number?: string | null | undefined;
1980
+ town?: string | null | undefined;
1981
+ residentialArea?: string | null | undefined;
1982
+ street?: string | null | undefined;
1983
+ zipCode?: string | null | undefined;
1984
+ }, {
1985
+ country: string;
1986
+ district: string;
1987
+ addressType: "DOMESTIC";
1988
+ province: string;
1989
+ urbanOrRural: "URBAN";
1990
+ number?: string | null | undefined;
1991
+ town?: string | null | undefined;
1992
+ residentialArea?: string | null | undefined;
1993
+ street?: string | null | undefined;
1994
+ zipCode?: string | null | undefined;
1995
+ }>, z.ZodObject<z.objectUtil.extendShape<{
1996
+ country: z.ZodString;
1997
+ addressType: z.ZodLiteral<"DOMESTIC">;
1998
+ province: z.ZodString;
1999
+ district: z.ZodString;
2000
+ }, {
2001
+ urbanOrRural: z.ZodLiteral<"RURAL">;
2002
+ village: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2003
+ }>, "strip", z.ZodTypeAny, {
2004
+ country: string;
2005
+ district: string;
2006
+ addressType: "DOMESTIC";
2007
+ province: string;
2008
+ urbanOrRural: "RURAL";
2009
+ village?: string | null | undefined;
2010
+ }, {
2011
+ country: string;
2012
+ district: string;
2013
+ addressType: "DOMESTIC";
2014
+ province: string;
2015
+ urbanOrRural: "RURAL";
2016
+ village?: string | null | undefined;
2017
+ }>, z.ZodUndefined, z.ZodObject<{
2018
+ country: z.ZodString;
2019
+ addressType: z.ZodLiteral<"INTERNATIONAL">;
2020
+ state: z.ZodString;
2021
+ district2: z.ZodString;
2022
+ cityOrTown: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2023
+ addressLine1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2024
+ addressLine2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2025
+ addressLine3: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2026
+ postcodeOrZip: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2027
+ }, "strip", z.ZodTypeAny, {
2028
+ country: string;
2029
+ state: string;
2030
+ addressType: "INTERNATIONAL";
2031
+ district2: string;
2032
+ cityOrTown?: string | null | undefined;
2033
+ addressLine1?: string | null | undefined;
2034
+ addressLine2?: string | null | undefined;
2035
+ addressLine3?: string | null | undefined;
2036
+ postcodeOrZip?: string | null | undefined;
2037
+ }, {
2038
+ country: string;
2039
+ state: string;
2040
+ addressType: "INTERNATIONAL";
2041
+ district2: string;
2042
+ cityOrTown?: string | null | undefined;
2043
+ addressLine1?: string | null | undefined;
2044
+ addressLine2?: string | null | undefined;
2045
+ addressLine3?: string | null | undefined;
2046
+ postcodeOrZip?: string | null | undefined;
2047
+ }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2048
+ firstname: z.ZodString;
2049
+ surname: z.ZodString;
2050
+ middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2051
+ }, "strip", z.ZodTypeAny, {
2052
+ firstname: string;
2053
+ surname: string;
2054
+ middlename?: string | null | undefined;
2055
+ }, {
2056
+ firstname: string;
2057
+ surname: string;
2058
+ middlename?: string | null | undefined;
2059
+ }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
2060
+ status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
2061
+ originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
2062
+ }, {
2063
+ type: z.ZodLiteral<"PRINT_CERTIFICATE">;
2064
+ content: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2065
+ templateId: z.ZodOptional<z.ZodString>;
2066
+ }, "strip", z.ZodTypeAny, {
2067
+ templateId?: string | undefined;
2068
+ }, {
2069
+ templateId?: string | undefined;
2070
+ }>>>;
2071
+ }>, "strip", z.ZodTypeAny, {
2072
+ type: "PRINT_CERTIFICATE";
2073
+ id: string & z.BRAND<"UUID">;
2074
+ status: "Rejected" | "Requested" | "Accepted";
2075
+ transactionId: string;
2076
+ createdByUserType: "system" | "user";
2077
+ createdAt: string;
2078
+ createdBy: string;
2079
+ createdByRole: string;
2080
+ declaration: Record<string, string | number | boolean | {
2081
+ type: string;
2082
+ path: string;
2083
+ originalFilename: string;
2084
+ } | {
2085
+ country: string;
2086
+ district: string;
2087
+ addressType: "DOMESTIC";
2088
+ province: string;
2089
+ urbanOrRural: "URBAN";
2090
+ number?: string | null | undefined;
2091
+ town?: string | null | undefined;
2092
+ residentialArea?: string | null | undefined;
2093
+ street?: string | null | undefined;
2094
+ zipCode?: string | null | undefined;
2095
+ } | {
2096
+ firstname: string;
2097
+ surname: string;
2098
+ middlename?: string | null | undefined;
2099
+ } | {
2100
+ country: string;
2101
+ district: string;
2102
+ addressType: "DOMESTIC";
2103
+ province: string;
2104
+ urbanOrRural: "RURAL";
2105
+ village?: string | null | undefined;
2106
+ } | {
2107
+ country: string;
2108
+ state: string;
2109
+ addressType: "INTERNATIONAL";
2110
+ district2: string;
2111
+ cityOrTown?: string | null | undefined;
2112
+ addressLine1?: string | null | undefined;
2113
+ addressLine2?: string | null | undefined;
2114
+ addressLine3?: string | null | undefined;
2115
+ postcodeOrZip?: string | null | undefined;
2116
+ } | {
2117
+ type: string;
2118
+ option: string;
2119
+ path: string;
2120
+ originalFilename: string;
2121
+ }[] | {
2122
+ start: string;
2123
+ end: string;
2124
+ } | null | undefined>;
2125
+ content?: {
2126
+ templateId?: string | undefined;
2127
+ } | null | undefined;
2128
+ createdBySignature?: string | null | undefined;
2129
+ createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
2130
+ annotation?: Record<string, string | number | boolean | {
2131
+ type: string;
2132
+ path: string;
2133
+ originalFilename: string;
2134
+ } | {
2135
+ country: string;
2136
+ district: string;
2137
+ addressType: "DOMESTIC";
2138
+ province: string;
2139
+ urbanOrRural: "URBAN";
2140
+ number?: string | null | undefined;
2141
+ town?: string | null | undefined;
2142
+ residentialArea?: string | null | undefined;
2143
+ street?: string | null | undefined;
2144
+ zipCode?: string | null | undefined;
2145
+ } | {
2146
+ firstname: string;
2147
+ surname: string;
2148
+ middlename?: string | null | undefined;
2149
+ } | {
2150
+ country: string;
2151
+ district: string;
2152
+ addressType: "DOMESTIC";
2153
+ province: string;
2154
+ urbanOrRural: "RURAL";
2155
+ village?: string | null | undefined;
2156
+ } | {
2157
+ country: string;
2158
+ state: string;
2159
+ addressType: "INTERNATIONAL";
2160
+ district2: string;
2161
+ cityOrTown?: string | null | undefined;
2162
+ addressLine1?: string | null | undefined;
2163
+ addressLine2?: string | null | undefined;
2164
+ addressLine3?: string | null | undefined;
2165
+ postcodeOrZip?: string | null | undefined;
2166
+ } | {
2167
+ type: string;
2168
+ option: string;
2169
+ path: string;
2170
+ originalFilename: string;
2171
+ }[] | {
2172
+ start: string;
2173
+ end: string;
2174
+ } | null | undefined> | null | undefined;
2175
+ originalActionId?: (string & z.BRAND<"UUID">) | null | undefined;
2176
+ }, {
2177
+ type: "PRINT_CERTIFICATE";
2178
+ id: string;
2179
+ status: "Rejected" | "Requested" | "Accepted";
2180
+ transactionId: string;
2181
+ createdByUserType: "system" | "user";
2182
+ createdAt: string;
2183
+ createdBy: string;
2184
+ createdByRole: string;
2185
+ declaration: Record<string, string | number | boolean | {
2186
+ type: string;
2187
+ path: string;
2188
+ originalFilename: string;
2189
+ } | {
2190
+ country: string;
2191
+ district: string;
2192
+ addressType: "DOMESTIC";
2193
+ province: string;
2194
+ urbanOrRural: "URBAN";
2195
+ number?: string | null | undefined;
2196
+ town?: string | null | undefined;
2197
+ residentialArea?: string | null | undefined;
2198
+ street?: string | null | undefined;
2199
+ zipCode?: string | null | undefined;
2200
+ } | {
2201
+ firstname: string;
2202
+ surname: string;
1697
2203
  middlename?: string | null | undefined;
1698
2204
  } | {
1699
2205
  country: string;
@@ -1721,6 +2227,9 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
1721
2227
  start: string;
1722
2228
  end: string;
1723
2229
  } | null | undefined>;
2230
+ content?: {
2231
+ templateId?: string | undefined;
2232
+ } | null | undefined;
1724
2233
  createdBySignature?: string | null | undefined;
1725
2234
  createdAtLocation?: string | null | undefined;
1726
2235
  annotation?: Record<string, string | number | boolean | {
@@ -1739,8 +2248,8 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
1739
2248
  street?: string | null | undefined;
1740
2249
  zipCode?: string | null | undefined;
1741
2250
  } | {
1742
- firstname?: string | null | undefined;
1743
- surname?: string | null | undefined;
2251
+ firstname: string;
2252
+ surname: string;
1744
2253
  middlename?: string | null | undefined;
1745
2254
  } | {
1746
2255
  country: string;
@@ -1770,6 +2279,7 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
1770
2279
  } | null | undefined> | null | undefined;
1771
2280
  originalActionId?: string | null | undefined;
1772
2281
  }>;
2282
+ export type PrintCertificateAction = z.infer<typeof PrintCertificateAction>;
1773
2283
  declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
1774
2284
  id: z.ZodBranded<z.ZodString, "UUID">;
1775
2285
  transactionId: z.ZodString;
@@ -1902,16 +2412,16 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
1902
2412
  addressLine3?: string | null | undefined;
1903
2413
  postcodeOrZip?: string | null | undefined;
1904
2414
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
1905
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1906
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2415
+ firstname: z.ZodString;
2416
+ surname: z.ZodString;
1907
2417
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1908
2418
  }, "strip", z.ZodTypeAny, {
1909
- firstname?: string | null | undefined;
1910
- surname?: string | null | undefined;
2419
+ firstname: string;
2420
+ surname: string;
1911
2421
  middlename?: string | null | undefined;
1912
2422
  }, {
1913
- firstname?: string | null | undefined;
1914
- surname?: string | null | undefined;
2423
+ firstname: string;
2424
+ surname: string;
1915
2425
  middlename?: string | null | undefined;
1916
2426
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
1917
2427
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -2037,16 +2547,16 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
2037
2547
  addressLine3?: string | null | undefined;
2038
2548
  postcodeOrZip?: string | null | undefined;
2039
2549
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2040
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2041
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2550
+ firstname: z.ZodString;
2551
+ surname: z.ZodString;
2042
2552
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2043
2553
  }, "strip", z.ZodTypeAny, {
2044
- firstname?: string | null | undefined;
2045
- surname?: string | null | undefined;
2554
+ firstname: string;
2555
+ surname: string;
2046
2556
  middlename?: string | null | undefined;
2047
2557
  }, {
2048
- firstname?: string | null | undefined;
2049
- surname?: string | null | undefined;
2558
+ firstname: string;
2559
+ surname: string;
2050
2560
  middlename?: string | null | undefined;
2051
2561
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
2052
2562
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -2078,8 +2588,8 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
2078
2588
  street?: string | null | undefined;
2079
2589
  zipCode?: string | null | undefined;
2080
2590
  } | {
2081
- firstname?: string | null | undefined;
2082
- surname?: string | null | undefined;
2591
+ firstname: string;
2592
+ surname: string;
2083
2593
  middlename?: string | null | undefined;
2084
2594
  } | {
2085
2595
  country: string;
@@ -2125,8 +2635,8 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
2125
2635
  street?: string | null | undefined;
2126
2636
  zipCode?: string | null | undefined;
2127
2637
  } | {
2128
- firstname?: string | null | undefined;
2129
- surname?: string | null | undefined;
2638
+ firstname: string;
2639
+ surname: string;
2130
2640
  middlename?: string | null | undefined;
2131
2641
  } | {
2132
2642
  country: string;
@@ -2180,8 +2690,8 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
2180
2690
  street?: string | null | undefined;
2181
2691
  zipCode?: string | null | undefined;
2182
2692
  } | {
2183
- firstname?: string | null | undefined;
2184
- surname?: string | null | undefined;
2693
+ firstname: string;
2694
+ surname: string;
2185
2695
  middlename?: string | null | undefined;
2186
2696
  } | {
2187
2697
  country: string;
@@ -2227,8 +2737,8 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
2227
2737
  street?: string | null | undefined;
2228
2738
  zipCode?: string | null | undefined;
2229
2739
  } | {
2230
- firstname?: string | null | undefined;
2231
- surname?: string | null | undefined;
2740
+ firstname: string;
2741
+ surname: string;
2232
2742
  middlename?: string | null | undefined;
2233
2743
  } | {
2234
2744
  country: string;
@@ -2391,16 +2901,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2391
2901
  addressLine3?: string | null | undefined;
2392
2902
  postcodeOrZip?: string | null | undefined;
2393
2903
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2394
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2395
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2904
+ firstname: z.ZodString;
2905
+ surname: z.ZodString;
2396
2906
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2397
2907
  }, "strip", z.ZodTypeAny, {
2398
- firstname?: string | null | undefined;
2399
- surname?: string | null | undefined;
2908
+ firstname: string;
2909
+ surname: string;
2400
2910
  middlename?: string | null | undefined;
2401
2911
  }, {
2402
- firstname?: string | null | undefined;
2403
- surname?: string | null | undefined;
2912
+ firstname: string;
2913
+ surname: string;
2404
2914
  middlename?: string | null | undefined;
2405
2915
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
2406
2916
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -2526,16 +3036,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2526
3036
  addressLine3?: string | null | undefined;
2527
3037
  postcodeOrZip?: string | null | undefined;
2528
3038
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2529
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2530
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3039
+ firstname: z.ZodString;
3040
+ surname: z.ZodString;
2531
3041
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2532
3042
  }, "strip", z.ZodTypeAny, {
2533
- firstname?: string | null | undefined;
2534
- surname?: string | null | undefined;
3043
+ firstname: string;
3044
+ surname: string;
2535
3045
  middlename?: string | null | undefined;
2536
3046
  }, {
2537
- firstname?: string | null | undefined;
2538
- surname?: string | null | undefined;
3047
+ firstname: string;
3048
+ surname: string;
2539
3049
  middlename?: string | null | undefined;
2540
3050
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
2541
3051
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -2567,8 +3077,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2567
3077
  street?: string | null | undefined;
2568
3078
  zipCode?: string | null | undefined;
2569
3079
  } | {
2570
- firstname?: string | null | undefined;
2571
- surname?: string | null | undefined;
3080
+ firstname: string;
3081
+ surname: string;
2572
3082
  middlename?: string | null | undefined;
2573
3083
  } | {
2574
3084
  country: string;
@@ -2614,8 +3124,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2614
3124
  street?: string | null | undefined;
2615
3125
  zipCode?: string | null | undefined;
2616
3126
  } | {
2617
- firstname?: string | null | undefined;
2618
- surname?: string | null | undefined;
3127
+ firstname: string;
3128
+ surname: string;
2619
3129
  middlename?: string | null | undefined;
2620
3130
  } | {
2621
3131
  country: string;
@@ -2669,8 +3179,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2669
3179
  street?: string | null | undefined;
2670
3180
  zipCode?: string | null | undefined;
2671
3181
  } | {
2672
- firstname?: string | null | undefined;
2673
- surname?: string | null | undefined;
3182
+ firstname: string;
3183
+ surname: string;
2674
3184
  middlename?: string | null | undefined;
2675
3185
  } | {
2676
3186
  country: string;
@@ -2716,8 +3226,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2716
3226
  street?: string | null | undefined;
2717
3227
  zipCode?: string | null | undefined;
2718
3228
  } | {
2719
- firstname?: string | null | undefined;
2720
- surname?: string | null | undefined;
3229
+ firstname: string;
3230
+ surname: string;
2721
3231
  middlename?: string | null | undefined;
2722
3232
  } | {
2723
3233
  country: string;
@@ -2878,16 +3388,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
2878
3388
  addressLine3?: string | null | undefined;
2879
3389
  postcodeOrZip?: string | null | undefined;
2880
3390
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
2881
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2882
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3391
+ firstname: z.ZodString;
3392
+ surname: z.ZodString;
2883
3393
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2884
3394
  }, "strip", z.ZodTypeAny, {
2885
- firstname?: string | null | undefined;
2886
- surname?: string | null | undefined;
3395
+ firstname: string;
3396
+ surname: string;
2887
3397
  middlename?: string | null | undefined;
2888
3398
  }, {
2889
- firstname?: string | null | undefined;
2890
- surname?: string | null | undefined;
3399
+ firstname: string;
3400
+ surname: string;
2891
3401
  middlename?: string | null | undefined;
2892
3402
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
2893
3403
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -3013,16 +3523,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3013
3523
  addressLine3?: string | null | undefined;
3014
3524
  postcodeOrZip?: string | null | undefined;
3015
3525
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3016
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3017
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3526
+ firstname: z.ZodString;
3527
+ surname: z.ZodString;
3018
3528
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3019
3529
  }, "strip", z.ZodTypeAny, {
3020
- firstname?: string | null | undefined;
3021
- surname?: string | null | undefined;
3530
+ firstname: string;
3531
+ surname: string;
3022
3532
  middlename?: string | null | undefined;
3023
3533
  }, {
3024
- firstname?: string | null | undefined;
3025
- surname?: string | null | undefined;
3534
+ firstname: string;
3535
+ surname: string;
3026
3536
  middlename?: string | null | undefined;
3027
3537
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
3028
3538
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -3054,8 +3564,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3054
3564
  street?: string | null | undefined;
3055
3565
  zipCode?: string | null | undefined;
3056
3566
  } | {
3057
- firstname?: string | null | undefined;
3058
- surname?: string | null | undefined;
3567
+ firstname: string;
3568
+ surname: string;
3059
3569
  middlename?: string | null | undefined;
3060
3570
  } | {
3061
3571
  country: string;
@@ -3101,8 +3611,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3101
3611
  street?: string | null | undefined;
3102
3612
  zipCode?: string | null | undefined;
3103
3613
  } | {
3104
- firstname?: string | null | undefined;
3105
- surname?: string | null | undefined;
3614
+ firstname: string;
3615
+ surname: string;
3106
3616
  middlename?: string | null | undefined;
3107
3617
  } | {
3108
3618
  country: string;
@@ -3156,8 +3666,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3156
3666
  street?: string | null | undefined;
3157
3667
  zipCode?: string | null | undefined;
3158
3668
  } | {
3159
- firstname?: string | null | undefined;
3160
- surname?: string | null | undefined;
3669
+ firstname: string;
3670
+ surname: string;
3161
3671
  middlename?: string | null | undefined;
3162
3672
  } | {
3163
3673
  country: string;
@@ -3203,8 +3713,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3203
3713
  street?: string | null | undefined;
3204
3714
  zipCode?: string | null | undefined;
3205
3715
  } | {
3206
- firstname?: string | null | undefined;
3207
- surname?: string | null | undefined;
3716
+ firstname: string;
3717
+ surname: string;
3208
3718
  middlename?: string | null | undefined;
3209
3719
  } | {
3210
3720
  country: string;
@@ -3365,16 +3875,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3365
3875
  addressLine3?: string | null | undefined;
3366
3876
  postcodeOrZip?: string | null | undefined;
3367
3877
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3368
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3369
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3878
+ firstname: z.ZodString;
3879
+ surname: z.ZodString;
3370
3880
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3371
3881
  }, "strip", z.ZodTypeAny, {
3372
- firstname?: string | null | undefined;
3373
- surname?: string | null | undefined;
3882
+ firstname: string;
3883
+ surname: string;
3374
3884
  middlename?: string | null | undefined;
3375
3885
  }, {
3376
- firstname?: string | null | undefined;
3377
- surname?: string | null | undefined;
3886
+ firstname: string;
3887
+ surname: string;
3378
3888
  middlename?: string | null | undefined;
3379
3889
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
3380
3890
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -3500,16 +4010,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3500
4010
  addressLine3?: string | null | undefined;
3501
4011
  postcodeOrZip?: string | null | undefined;
3502
4012
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3503
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3504
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4013
+ firstname: z.ZodString;
4014
+ surname: z.ZodString;
3505
4015
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3506
4016
  }, "strip", z.ZodTypeAny, {
3507
- firstname?: string | null | undefined;
3508
- surname?: string | null | undefined;
4017
+ firstname: string;
4018
+ surname: string;
3509
4019
  middlename?: string | null | undefined;
3510
4020
  }, {
3511
- firstname?: string | null | undefined;
3512
- surname?: string | null | undefined;
4021
+ firstname: string;
4022
+ surname: string;
3513
4023
  middlename?: string | null | undefined;
3514
4024
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
3515
4025
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -3555,8 +4065,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3555
4065
  street?: string | null | undefined;
3556
4066
  zipCode?: string | null | undefined;
3557
4067
  } | {
3558
- firstname?: string | null | undefined;
3559
- surname?: string | null | undefined;
4068
+ firstname: string;
4069
+ surname: string;
3560
4070
  middlename?: string | null | undefined;
3561
4071
  } | {
3562
4072
  country: string;
@@ -3602,8 +4112,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3602
4112
  street?: string | null | undefined;
3603
4113
  zipCode?: string | null | undefined;
3604
4114
  } | {
3605
- firstname?: string | null | undefined;
3606
- surname?: string | null | undefined;
4115
+ firstname: string;
4116
+ surname: string;
3607
4117
  middlename?: string | null | undefined;
3608
4118
  } | {
3609
4119
  country: string;
@@ -3661,8 +4171,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3661
4171
  street?: string | null | undefined;
3662
4172
  zipCode?: string | null | undefined;
3663
4173
  } | {
3664
- firstname?: string | null | undefined;
3665
- surname?: string | null | undefined;
4174
+ firstname: string;
4175
+ surname: string;
3666
4176
  middlename?: string | null | undefined;
3667
4177
  } | {
3668
4178
  country: string;
@@ -3708,8 +4218,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3708
4218
  street?: string | null | undefined;
3709
4219
  zipCode?: string | null | undefined;
3710
4220
  } | {
3711
- firstname?: string | null | undefined;
3712
- surname?: string | null | undefined;
4221
+ firstname: string;
4222
+ surname: string;
3713
4223
  middlename?: string | null | undefined;
3714
4224
  } | {
3715
4225
  country: string;
@@ -3870,16 +4380,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
3870
4380
  addressLine3?: string | null | undefined;
3871
4381
  postcodeOrZip?: string | null | undefined;
3872
4382
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
3873
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3874
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4383
+ firstname: z.ZodString;
4384
+ surname: z.ZodString;
3875
4385
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
3876
4386
  }, "strip", z.ZodTypeAny, {
3877
- firstname?: string | null | undefined;
3878
- surname?: string | null | undefined;
4387
+ firstname: string;
4388
+ surname: string;
3879
4389
  middlename?: string | null | undefined;
3880
4390
  }, {
3881
- firstname?: string | null | undefined;
3882
- surname?: string | null | undefined;
4391
+ firstname: string;
4392
+ surname: string;
3883
4393
  middlename?: string | null | undefined;
3884
4394
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
3885
4395
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -4005,16 +4515,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4005
4515
  addressLine3?: string | null | undefined;
4006
4516
  postcodeOrZip?: string | null | undefined;
4007
4517
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4008
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4009
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4518
+ firstname: z.ZodString;
4519
+ surname: z.ZodString;
4010
4520
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4011
4521
  }, "strip", z.ZodTypeAny, {
4012
- firstname?: string | null | undefined;
4013
- surname?: string | null | undefined;
4522
+ firstname: string;
4523
+ surname: string;
4014
4524
  middlename?: string | null | undefined;
4015
4525
  }, {
4016
- firstname?: string | null | undefined;
4017
- surname?: string | null | undefined;
4526
+ firstname: string;
4527
+ surname: string;
4018
4528
  middlename?: string | null | undefined;
4019
4529
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
4020
4530
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -4046,8 +4556,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4046
4556
  street?: string | null | undefined;
4047
4557
  zipCode?: string | null | undefined;
4048
4558
  } | {
4049
- firstname?: string | null | undefined;
4050
- surname?: string | null | undefined;
4559
+ firstname: string;
4560
+ surname: string;
4051
4561
  middlename?: string | null | undefined;
4052
4562
  } | {
4053
4563
  country: string;
@@ -4093,8 +4603,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4093
4603
  street?: string | null | undefined;
4094
4604
  zipCode?: string | null | undefined;
4095
4605
  } | {
4096
- firstname?: string | null | undefined;
4097
- surname?: string | null | undefined;
4606
+ firstname: string;
4607
+ surname: string;
4098
4608
  middlename?: string | null | undefined;
4099
4609
  } | {
4100
4610
  country: string;
@@ -4148,8 +4658,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4148
4658
  street?: string | null | undefined;
4149
4659
  zipCode?: string | null | undefined;
4150
4660
  } | {
4151
- firstname?: string | null | undefined;
4152
- surname?: string | null | undefined;
4661
+ firstname: string;
4662
+ surname: string;
4153
4663
  middlename?: string | null | undefined;
4154
4664
  } | {
4155
4665
  country: string;
@@ -4195,8 +4705,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4195
4705
  street?: string | null | undefined;
4196
4706
  zipCode?: string | null | undefined;
4197
4707
  } | {
4198
- firstname?: string | null | undefined;
4199
- surname?: string | null | undefined;
4708
+ firstname: string;
4709
+ surname: string;
4200
4710
  middlename?: string | null | undefined;
4201
4711
  } | {
4202
4712
  country: string;
@@ -4357,16 +4867,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4357
4867
  addressLine3?: string | null | undefined;
4358
4868
  postcodeOrZip?: string | null | undefined;
4359
4869
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4360
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4361
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4870
+ firstname: z.ZodString;
4871
+ surname: z.ZodString;
4362
4872
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4363
4873
  }, "strip", z.ZodTypeAny, {
4364
- firstname?: string | null | undefined;
4365
- surname?: string | null | undefined;
4874
+ firstname: string;
4875
+ surname: string;
4366
4876
  middlename?: string | null | undefined;
4367
4877
  }, {
4368
- firstname?: string | null | undefined;
4369
- surname?: string | null | undefined;
4878
+ firstname: string;
4879
+ surname: string;
4370
4880
  middlename?: string | null | undefined;
4371
4881
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
4372
4882
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -4492,16 +5002,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4492
5002
  addressLine3?: string | null | undefined;
4493
5003
  postcodeOrZip?: string | null | undefined;
4494
5004
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4495
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4496
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5005
+ firstname: z.ZodString;
5006
+ surname: z.ZodString;
4497
5007
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4498
5008
  }, "strip", z.ZodTypeAny, {
4499
- firstname?: string | null | undefined;
4500
- surname?: string | null | undefined;
5009
+ firstname: string;
5010
+ surname: string;
4501
5011
  middlename?: string | null | undefined;
4502
5012
  }, {
4503
- firstname?: string | null | undefined;
4504
- surname?: string | null | undefined;
5013
+ firstname: string;
5014
+ surname: string;
4505
5015
  middlename?: string | null | undefined;
4506
5016
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
4507
5017
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -4547,8 +5057,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4547
5057
  street?: string | null | undefined;
4548
5058
  zipCode?: string | null | undefined;
4549
5059
  } | {
4550
- firstname?: string | null | undefined;
4551
- surname?: string | null | undefined;
5060
+ firstname: string;
5061
+ surname: string;
4552
5062
  middlename?: string | null | undefined;
4553
5063
  } | {
4554
5064
  country: string;
@@ -4594,8 +5104,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4594
5104
  street?: string | null | undefined;
4595
5105
  zipCode?: string | null | undefined;
4596
5106
  } | {
4597
- firstname?: string | null | undefined;
4598
- surname?: string | null | undefined;
5107
+ firstname: string;
5108
+ surname: string;
4599
5109
  middlename?: string | null | undefined;
4600
5110
  } | {
4601
5111
  country: string;
@@ -4653,8 +5163,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4653
5163
  street?: string | null | undefined;
4654
5164
  zipCode?: string | null | undefined;
4655
5165
  } | {
4656
- firstname?: string | null | undefined;
4657
- surname?: string | null | undefined;
5166
+ firstname: string;
5167
+ surname: string;
4658
5168
  middlename?: string | null | undefined;
4659
5169
  } | {
4660
5170
  country: string;
@@ -4700,8 +5210,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4700
5210
  street?: string | null | undefined;
4701
5211
  zipCode?: string | null | undefined;
4702
5212
  } | {
4703
- firstname?: string | null | undefined;
4704
- surname?: string | null | undefined;
5213
+ firstname: string;
5214
+ surname: string;
4705
5215
  middlename?: string | null | undefined;
4706
5216
  } | {
4707
5217
  country: string;
@@ -4862,16 +5372,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4862
5372
  addressLine3?: string | null | undefined;
4863
5373
  postcodeOrZip?: string | null | undefined;
4864
5374
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
4865
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4866
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5375
+ firstname: z.ZodString;
5376
+ surname: z.ZodString;
4867
5377
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
4868
5378
  }, "strip", z.ZodTypeAny, {
4869
- firstname?: string | null | undefined;
4870
- surname?: string | null | undefined;
5379
+ firstname: string;
5380
+ surname: string;
4871
5381
  middlename?: string | null | undefined;
4872
5382
  }, {
4873
- firstname?: string | null | undefined;
4874
- surname?: string | null | undefined;
5383
+ firstname: string;
5384
+ surname: string;
4875
5385
  middlename?: string | null | undefined;
4876
5386
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
4877
5387
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -4997,16 +5507,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
4997
5507
  addressLine3?: string | null | undefined;
4998
5508
  postcodeOrZip?: string | null | undefined;
4999
5509
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5000
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5001
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5510
+ firstname: z.ZodString;
5511
+ surname: z.ZodString;
5002
5512
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5003
5513
  }, "strip", z.ZodTypeAny, {
5004
- firstname?: string | null | undefined;
5005
- surname?: string | null | undefined;
5514
+ firstname: string;
5515
+ surname: string;
5006
5516
  middlename?: string | null | undefined;
5007
5517
  }, {
5008
- firstname?: string | null | undefined;
5009
- surname?: string | null | undefined;
5518
+ firstname: string;
5519
+ surname: string;
5010
5520
  middlename?: string | null | undefined;
5011
5521
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
5012
5522
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -5038,8 +5548,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5038
5548
  street?: string | null | undefined;
5039
5549
  zipCode?: string | null | undefined;
5040
5550
  } | {
5041
- firstname?: string | null | undefined;
5042
- surname?: string | null | undefined;
5551
+ firstname: string;
5552
+ surname: string;
5043
5553
  middlename?: string | null | undefined;
5044
5554
  } | {
5045
5555
  country: string;
@@ -5085,8 +5595,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5085
5595
  street?: string | null | undefined;
5086
5596
  zipCode?: string | null | undefined;
5087
5597
  } | {
5088
- firstname?: string | null | undefined;
5089
- surname?: string | null | undefined;
5598
+ firstname: string;
5599
+ surname: string;
5090
5600
  middlename?: string | null | undefined;
5091
5601
  } | {
5092
5602
  country: string;
@@ -5140,8 +5650,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5140
5650
  street?: string | null | undefined;
5141
5651
  zipCode?: string | null | undefined;
5142
5652
  } | {
5143
- firstname?: string | null | undefined;
5144
- surname?: string | null | undefined;
5653
+ firstname: string;
5654
+ surname: string;
5145
5655
  middlename?: string | null | undefined;
5146
5656
  } | {
5147
5657
  country: string;
@@ -5187,8 +5697,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5187
5697
  street?: string | null | undefined;
5188
5698
  zipCode?: string | null | undefined;
5189
5699
  } | {
5190
- firstname?: string | null | undefined;
5191
- surname?: string | null | undefined;
5700
+ firstname: string;
5701
+ surname: string;
5192
5702
  middlename?: string | null | undefined;
5193
5703
  } | {
5194
5704
  country: string;
@@ -5349,16 +5859,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5349
5859
  addressLine3?: string | null | undefined;
5350
5860
  postcodeOrZip?: string | null | undefined;
5351
5861
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5352
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5353
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5862
+ firstname: z.ZodString;
5863
+ surname: z.ZodString;
5354
5864
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5355
5865
  }, "strip", z.ZodTypeAny, {
5356
- firstname?: string | null | undefined;
5357
- surname?: string | null | undefined;
5866
+ firstname: string;
5867
+ surname: string;
5358
5868
  middlename?: string | null | undefined;
5359
5869
  }, {
5360
- firstname?: string | null | undefined;
5361
- surname?: string | null | undefined;
5870
+ firstname: string;
5871
+ surname: string;
5362
5872
  middlename?: string | null | undefined;
5363
5873
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
5364
5874
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -5484,16 +5994,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5484
5994
  addressLine3?: string | null | undefined;
5485
5995
  postcodeOrZip?: string | null | undefined;
5486
5996
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5487
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5488
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5997
+ firstname: z.ZodString;
5998
+ surname: z.ZodString;
5489
5999
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5490
6000
  }, "strip", z.ZodTypeAny, {
5491
- firstname?: string | null | undefined;
5492
- surname?: string | null | undefined;
6001
+ firstname: string;
6002
+ surname: string;
5493
6003
  middlename?: string | null | undefined;
5494
6004
  }, {
5495
- firstname?: string | null | undefined;
5496
- surname?: string | null | undefined;
6005
+ firstname: string;
6006
+ surname: string;
5497
6007
  middlename?: string | null | undefined;
5498
6008
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
5499
6009
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -5526,8 +6036,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5526
6036
  street?: string | null | undefined;
5527
6037
  zipCode?: string | null | undefined;
5528
6038
  } | {
5529
- firstname?: string | null | undefined;
5530
- surname?: string | null | undefined;
6039
+ firstname: string;
6040
+ surname: string;
5531
6041
  middlename?: string | null | undefined;
5532
6042
  } | {
5533
6043
  country: string;
@@ -5573,8 +6083,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5573
6083
  street?: string | null | undefined;
5574
6084
  zipCode?: string | null | undefined;
5575
6085
  } | {
5576
- firstname?: string | null | undefined;
5577
- surname?: string | null | undefined;
6086
+ firstname: string;
6087
+ surname: string;
5578
6088
  middlename?: string | null | undefined;
5579
6089
  } | {
5580
6090
  country: string;
@@ -5629,8 +6139,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5629
6139
  street?: string | null | undefined;
5630
6140
  zipCode?: string | null | undefined;
5631
6141
  } | {
5632
- firstname?: string | null | undefined;
5633
- surname?: string | null | undefined;
6142
+ firstname: string;
6143
+ surname: string;
5634
6144
  middlename?: string | null | undefined;
5635
6145
  } | {
5636
6146
  country: string;
@@ -5676,8 +6186,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5676
6186
  street?: string | null | undefined;
5677
6187
  zipCode?: string | null | undefined;
5678
6188
  } | {
5679
- firstname?: string | null | undefined;
5680
- surname?: string | null | undefined;
6189
+ firstname: string;
6190
+ surname: string;
5681
6191
  middlename?: string | null | undefined;
5682
6192
  } | {
5683
6193
  country: string;
@@ -5839,16 +6349,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5839
6349
  addressLine3?: string | null | undefined;
5840
6350
  postcodeOrZip?: string | null | undefined;
5841
6351
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5842
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5843
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6352
+ firstname: z.ZodString;
6353
+ surname: z.ZodString;
5844
6354
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5845
6355
  }, "strip", z.ZodTypeAny, {
5846
- firstname?: string | null | undefined;
5847
- surname?: string | null | undefined;
6356
+ firstname: string;
6357
+ surname: string;
5848
6358
  middlename?: string | null | undefined;
5849
6359
  }, {
5850
- firstname?: string | null | undefined;
5851
- surname?: string | null | undefined;
6360
+ firstname: string;
6361
+ surname: string;
5852
6362
  middlename?: string | null | undefined;
5853
6363
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
5854
6364
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -5974,16 +6484,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
5974
6484
  addressLine3?: string | null | undefined;
5975
6485
  postcodeOrZip?: string | null | undefined;
5976
6486
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
5977
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5978
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6487
+ firstname: z.ZodString;
6488
+ surname: z.ZodString;
5979
6489
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5980
6490
  }, "strip", z.ZodTypeAny, {
5981
- firstname?: string | null | undefined;
5982
- surname?: string | null | undefined;
6491
+ firstname: string;
6492
+ surname: string;
5983
6493
  middlename?: string | null | undefined;
5984
6494
  }, {
5985
- firstname?: string | null | undefined;
5986
- surname?: string | null | undefined;
6495
+ firstname: string;
6496
+ surname: string;
5987
6497
  middlename?: string | null | undefined;
5988
6498
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
5989
6499
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -6015,8 +6525,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6015
6525
  street?: string | null | undefined;
6016
6526
  zipCode?: string | null | undefined;
6017
6527
  } | {
6018
- firstname?: string | null | undefined;
6019
- surname?: string | null | undefined;
6528
+ firstname: string;
6529
+ surname: string;
6020
6530
  middlename?: string | null | undefined;
6021
6531
  } | {
6022
6532
  country: string;
@@ -6062,8 +6572,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6062
6572
  street?: string | null | undefined;
6063
6573
  zipCode?: string | null | undefined;
6064
6574
  } | {
6065
- firstname?: string | null | undefined;
6066
- surname?: string | null | undefined;
6575
+ firstname: string;
6576
+ surname: string;
6067
6577
  middlename?: string | null | undefined;
6068
6578
  } | {
6069
6579
  country: string;
@@ -6117,8 +6627,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6117
6627
  street?: string | null | undefined;
6118
6628
  zipCode?: string | null | undefined;
6119
6629
  } | {
6120
- firstname?: string | null | undefined;
6121
- surname?: string | null | undefined;
6630
+ firstname: string;
6631
+ surname: string;
6122
6632
  middlename?: string | null | undefined;
6123
6633
  } | {
6124
6634
  country: string;
@@ -6164,8 +6674,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6164
6674
  street?: string | null | undefined;
6165
6675
  zipCode?: string | null | undefined;
6166
6676
  } | {
6167
- firstname?: string | null | undefined;
6168
- surname?: string | null | undefined;
6677
+ firstname: string;
6678
+ surname: string;
6169
6679
  middlename?: string | null | undefined;
6170
6680
  } | {
6171
6681
  country: string;
@@ -6326,16 +6836,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6326
6836
  addressLine3?: string | null | undefined;
6327
6837
  postcodeOrZip?: string | null | undefined;
6328
6838
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6329
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6330
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6839
+ firstname: z.ZodString;
6840
+ surname: z.ZodString;
6331
6841
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6332
6842
  }, "strip", z.ZodTypeAny, {
6333
- firstname?: string | null | undefined;
6334
- surname?: string | null | undefined;
6843
+ firstname: string;
6844
+ surname: string;
6335
6845
  middlename?: string | null | undefined;
6336
6846
  }, {
6337
- firstname?: string | null | undefined;
6338
- surname?: string | null | undefined;
6847
+ firstname: string;
6848
+ surname: string;
6339
6849
  middlename?: string | null | undefined;
6340
6850
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
6341
6851
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -6461,16 +6971,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6461
6971
  addressLine3?: string | null | undefined;
6462
6972
  postcodeOrZip?: string | null | undefined;
6463
6973
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6464
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6465
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6974
+ firstname: z.ZodString;
6975
+ surname: z.ZodString;
6466
6976
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6467
6977
  }, "strip", z.ZodTypeAny, {
6468
- firstname?: string | null | undefined;
6469
- surname?: string | null | undefined;
6978
+ firstname: string;
6979
+ surname: string;
6470
6980
  middlename?: string | null | undefined;
6471
6981
  }, {
6472
- firstname?: string | null | undefined;
6473
- surname?: string | null | undefined;
6982
+ firstname: string;
6983
+ surname: string;
6474
6984
  middlename?: string | null | undefined;
6475
6985
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
6476
6986
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -6503,8 +7013,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6503
7013
  street?: string | null | undefined;
6504
7014
  zipCode?: string | null | undefined;
6505
7015
  } | {
6506
- firstname?: string | null | undefined;
6507
- surname?: string | null | undefined;
7016
+ firstname: string;
7017
+ surname: string;
6508
7018
  middlename?: string | null | undefined;
6509
7019
  } | {
6510
7020
  country: string;
@@ -6551,8 +7061,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6551
7061
  street?: string | null | undefined;
6552
7062
  zipCode?: string | null | undefined;
6553
7063
  } | {
6554
- firstname?: string | null | undefined;
6555
- surname?: string | null | undefined;
7064
+ firstname: string;
7065
+ surname: string;
6556
7066
  middlename?: string | null | undefined;
6557
7067
  } | {
6558
7068
  country: string;
@@ -6606,8 +7116,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6606
7116
  street?: string | null | undefined;
6607
7117
  zipCode?: string | null | undefined;
6608
7118
  } | {
6609
- firstname?: string | null | undefined;
6610
- surname?: string | null | undefined;
7119
+ firstname: string;
7120
+ surname: string;
6611
7121
  middlename?: string | null | undefined;
6612
7122
  } | {
6613
7123
  country: string;
@@ -6654,8 +7164,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6654
7164
  street?: string | null | undefined;
6655
7165
  zipCode?: string | null | undefined;
6656
7166
  } | {
6657
- firstname?: string | null | undefined;
6658
- surname?: string | null | undefined;
7167
+ firstname: string;
7168
+ surname: string;
6659
7169
  middlename?: string | null | undefined;
6660
7170
  } | {
6661
7171
  country: string;
@@ -6816,16 +7326,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6816
7326
  addressLine3?: string | null | undefined;
6817
7327
  postcodeOrZip?: string | null | undefined;
6818
7328
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6819
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6820
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7329
+ firstname: z.ZodString;
7330
+ surname: z.ZodString;
6821
7331
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6822
7332
  }, "strip", z.ZodTypeAny, {
6823
- firstname?: string | null | undefined;
6824
- surname?: string | null | undefined;
7333
+ firstname: string;
7334
+ surname: string;
6825
7335
  middlename?: string | null | undefined;
6826
7336
  }, {
6827
- firstname?: string | null | undefined;
6828
- surname?: string | null | undefined;
7337
+ firstname: string;
7338
+ surname: string;
6829
7339
  middlename?: string | null | undefined;
6830
7340
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
6831
7341
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -6951,16 +7461,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6951
7461
  addressLine3?: string | null | undefined;
6952
7462
  postcodeOrZip?: string | null | undefined;
6953
7463
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
6954
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6955
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7464
+ firstname: z.ZodString;
7465
+ surname: z.ZodString;
6956
7466
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6957
7467
  }, "strip", z.ZodTypeAny, {
6958
- firstname?: string | null | undefined;
6959
- surname?: string | null | undefined;
7468
+ firstname: string;
7469
+ surname: string;
6960
7470
  middlename?: string | null | undefined;
6961
7471
  }, {
6962
- firstname?: string | null | undefined;
6963
- surname?: string | null | undefined;
7472
+ firstname: string;
7473
+ surname: string;
6964
7474
  middlename?: string | null | undefined;
6965
7475
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
6966
7476
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -6992,8 +7502,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
6992
7502
  street?: string | null | undefined;
6993
7503
  zipCode?: string | null | undefined;
6994
7504
  } | {
6995
- firstname?: string | null | undefined;
6996
- surname?: string | null | undefined;
7505
+ firstname: string;
7506
+ surname: string;
6997
7507
  middlename?: string | null | undefined;
6998
7508
  } | {
6999
7509
  country: string;
@@ -7039,8 +7549,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7039
7549
  street?: string | null | undefined;
7040
7550
  zipCode?: string | null | undefined;
7041
7551
  } | {
7042
- firstname?: string | null | undefined;
7043
- surname?: string | null | undefined;
7552
+ firstname: string;
7553
+ surname: string;
7044
7554
  middlename?: string | null | undefined;
7045
7555
  } | {
7046
7556
  country: string;
@@ -7094,8 +7604,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7094
7604
  street?: string | null | undefined;
7095
7605
  zipCode?: string | null | undefined;
7096
7606
  } | {
7097
- firstname?: string | null | undefined;
7098
- surname?: string | null | undefined;
7607
+ firstname: string;
7608
+ surname: string;
7099
7609
  middlename?: string | null | undefined;
7100
7610
  } | {
7101
7611
  country: string;
@@ -7141,8 +7651,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7141
7651
  street?: string | null | undefined;
7142
7652
  zipCode?: string | null | undefined;
7143
7653
  } | {
7144
- firstname?: string | null | undefined;
7145
- surname?: string | null | undefined;
7654
+ firstname: string;
7655
+ surname: string;
7146
7656
  middlename?: string | null | undefined;
7147
7657
  } | {
7148
7658
  country: string;
@@ -7303,16 +7813,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7303
7813
  addressLine3?: string | null | undefined;
7304
7814
  postcodeOrZip?: string | null | undefined;
7305
7815
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7306
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7307
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7816
+ firstname: z.ZodString;
7817
+ surname: z.ZodString;
7308
7818
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7309
7819
  }, "strip", z.ZodTypeAny, {
7310
- firstname?: string | null | undefined;
7311
- surname?: string | null | undefined;
7820
+ firstname: string;
7821
+ surname: string;
7312
7822
  middlename?: string | null | undefined;
7313
7823
  }, {
7314
- firstname?: string | null | undefined;
7315
- surname?: string | null | undefined;
7824
+ firstname: string;
7825
+ surname: string;
7316
7826
  middlename?: string | null | undefined;
7317
7827
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
7318
7828
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -7438,16 +7948,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7438
7948
  addressLine3?: string | null | undefined;
7439
7949
  postcodeOrZip?: string | null | undefined;
7440
7950
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7441
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7442
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7951
+ firstname: z.ZodString;
7952
+ surname: z.ZodString;
7443
7953
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7444
7954
  }, "strip", z.ZodTypeAny, {
7445
- firstname?: string | null | undefined;
7446
- surname?: string | null | undefined;
7955
+ firstname: string;
7956
+ surname: string;
7447
7957
  middlename?: string | null | undefined;
7448
7958
  }, {
7449
- firstname?: string | null | undefined;
7450
- surname?: string | null | undefined;
7959
+ firstname: string;
7960
+ surname: string;
7451
7961
  middlename?: string | null | undefined;
7452
7962
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
7453
7963
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -7480,8 +7990,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7480
7990
  street?: string | null | undefined;
7481
7991
  zipCode?: string | null | undefined;
7482
7992
  } | {
7483
- firstname?: string | null | undefined;
7484
- surname?: string | null | undefined;
7993
+ firstname: string;
7994
+ surname: string;
7485
7995
  middlename?: string | null | undefined;
7486
7996
  } | {
7487
7997
  country: string;
@@ -7528,8 +8038,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7528
8038
  street?: string | null | undefined;
7529
8039
  zipCode?: string | null | undefined;
7530
8040
  } | {
7531
- firstname?: string | null | undefined;
7532
- surname?: string | null | undefined;
8041
+ firstname: string;
8042
+ surname: string;
7533
8043
  middlename?: string | null | undefined;
7534
8044
  } | {
7535
8045
  country: string;
@@ -7583,8 +8093,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7583
8093
  street?: string | null | undefined;
7584
8094
  zipCode?: string | null | undefined;
7585
8095
  } | {
7586
- firstname?: string | null | undefined;
7587
- surname?: string | null | undefined;
8096
+ firstname: string;
8097
+ surname: string;
7588
8098
  middlename?: string | null | undefined;
7589
8099
  } | {
7590
8100
  country: string;
@@ -7631,8 +8141,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7631
8141
  street?: string | null | undefined;
7632
8142
  zipCode?: string | null | undefined;
7633
8143
  } | {
7634
- firstname?: string | null | undefined;
7635
- surname?: string | null | undefined;
8144
+ firstname: string;
8145
+ surname: string;
7636
8146
  middlename?: string | null | undefined;
7637
8147
  } | {
7638
8148
  country: string;
@@ -7793,16 +8303,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7793
8303
  addressLine3?: string | null | undefined;
7794
8304
  postcodeOrZip?: string | null | undefined;
7795
8305
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7796
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7797
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8306
+ firstname: z.ZodString;
8307
+ surname: z.ZodString;
7798
8308
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7799
8309
  }, "strip", z.ZodTypeAny, {
7800
- firstname?: string | null | undefined;
7801
- surname?: string | null | undefined;
8310
+ firstname: string;
8311
+ surname: string;
7802
8312
  middlename?: string | null | undefined;
7803
8313
  }, {
7804
- firstname?: string | null | undefined;
7805
- surname?: string | null | undefined;
8314
+ firstname: string;
8315
+ surname: string;
7806
8316
  middlename?: string | null | undefined;
7807
8317
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
7808
8318
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -7928,16 +8438,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7928
8438
  addressLine3?: string | null | undefined;
7929
8439
  postcodeOrZip?: string | null | undefined;
7930
8440
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
7931
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7932
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8441
+ firstname: z.ZodString;
8442
+ surname: z.ZodString;
7933
8443
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
7934
8444
  }, "strip", z.ZodTypeAny, {
7935
- firstname?: string | null | undefined;
7936
- surname?: string | null | undefined;
8445
+ firstname: string;
8446
+ surname: string;
7937
8447
  middlename?: string | null | undefined;
7938
8448
  }, {
7939
- firstname?: string | null | undefined;
7940
- surname?: string | null | undefined;
8449
+ firstname: string;
8450
+ surname: string;
7941
8451
  middlename?: string | null | undefined;
7942
8452
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
7943
8453
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -7984,8 +8494,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
7984
8494
  street?: string | null | undefined;
7985
8495
  zipCode?: string | null | undefined;
7986
8496
  } | {
7987
- firstname?: string | null | undefined;
7988
- surname?: string | null | undefined;
8497
+ firstname: string;
8498
+ surname: string;
7989
8499
  middlename?: string | null | undefined;
7990
8500
  } | {
7991
8501
  country: string;
@@ -8032,8 +8542,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8032
8542
  street?: string | null | undefined;
8033
8543
  zipCode?: string | null | undefined;
8034
8544
  } | {
8035
- firstname?: string | null | undefined;
8036
- surname?: string | null | undefined;
8545
+ firstname: string;
8546
+ surname: string;
8037
8547
  middlename?: string | null | undefined;
8038
8548
  } | {
8039
8549
  country: string;
@@ -8091,8 +8601,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8091
8601
  street?: string | null | undefined;
8092
8602
  zipCode?: string | null | undefined;
8093
8603
  } | {
8094
- firstname?: string | null | undefined;
8095
- surname?: string | null | undefined;
8604
+ firstname: string;
8605
+ surname: string;
8096
8606
  middlename?: string | null | undefined;
8097
8607
  } | {
8098
8608
  country: string;
@@ -8139,8 +8649,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8139
8649
  street?: string | null | undefined;
8140
8650
  zipCode?: string | null | undefined;
8141
8651
  } | {
8142
- firstname?: string | null | undefined;
8143
- surname?: string | null | undefined;
8652
+ firstname: string;
8653
+ surname: string;
8144
8654
  middlename?: string | null | undefined;
8145
8655
  } | {
8146
8656
  country: string;
@@ -8301,16 +8811,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8301
8811
  addressLine3?: string | null | undefined;
8302
8812
  postcodeOrZip?: string | null | undefined;
8303
8813
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8304
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8305
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8814
+ firstname: z.ZodString;
8815
+ surname: z.ZodString;
8306
8816
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8307
8817
  }, "strip", z.ZodTypeAny, {
8308
- firstname?: string | null | undefined;
8309
- surname?: string | null | undefined;
8818
+ firstname: string;
8819
+ surname: string;
8310
8820
  middlename?: string | null | undefined;
8311
8821
  }, {
8312
- firstname?: string | null | undefined;
8313
- surname?: string | null | undefined;
8822
+ firstname: string;
8823
+ surname: string;
8314
8824
  middlename?: string | null | undefined;
8315
8825
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
8316
8826
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -8436,16 +8946,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8436
8946
  addressLine3?: string | null | undefined;
8437
8947
  postcodeOrZip?: string | null | undefined;
8438
8948
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8439
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8440
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8949
+ firstname: z.ZodString;
8950
+ surname: z.ZodString;
8441
8951
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8442
8952
  }, "strip", z.ZodTypeAny, {
8443
- firstname?: string | null | undefined;
8444
- surname?: string | null | undefined;
8953
+ firstname: string;
8954
+ surname: string;
8445
8955
  middlename?: string | null | undefined;
8446
8956
  }, {
8447
- firstname?: string | null | undefined;
8448
- surname?: string | null | undefined;
8957
+ firstname: string;
8958
+ surname: string;
8449
8959
  middlename?: string | null | undefined;
8450
8960
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
8451
8961
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -8477,8 +8987,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8477
8987
  street?: string | null | undefined;
8478
8988
  zipCode?: string | null | undefined;
8479
8989
  } | {
8480
- firstname?: string | null | undefined;
8481
- surname?: string | null | undefined;
8990
+ firstname: string;
8991
+ surname: string;
8482
8992
  middlename?: string | null | undefined;
8483
8993
  } | {
8484
8994
  country: string;
@@ -8524,8 +9034,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8524
9034
  street?: string | null | undefined;
8525
9035
  zipCode?: string | null | undefined;
8526
9036
  } | {
8527
- firstname?: string | null | undefined;
8528
- surname?: string | null | undefined;
9037
+ firstname: string;
9038
+ surname: string;
8529
9039
  middlename?: string | null | undefined;
8530
9040
  } | {
8531
9041
  country: string;
@@ -8579,8 +9089,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8579
9089
  street?: string | null | undefined;
8580
9090
  zipCode?: string | null | undefined;
8581
9091
  } | {
8582
- firstname?: string | null | undefined;
8583
- surname?: string | null | undefined;
9092
+ firstname: string;
9093
+ surname: string;
8584
9094
  middlename?: string | null | undefined;
8585
9095
  } | {
8586
9096
  country: string;
@@ -8626,8 +9136,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8626
9136
  street?: string | null | undefined;
8627
9137
  zipCode?: string | null | undefined;
8628
9138
  } | {
8629
- firstname?: string | null | undefined;
8630
- surname?: string | null | undefined;
9139
+ firstname: string;
9140
+ surname: string;
8631
9141
  middlename?: string | null | undefined;
8632
9142
  } | {
8633
9143
  country: string;
@@ -8788,16 +9298,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8788
9298
  addressLine3?: string | null | undefined;
8789
9299
  postcodeOrZip?: string | null | undefined;
8790
9300
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8791
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8792
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9301
+ firstname: z.ZodString;
9302
+ surname: z.ZodString;
8793
9303
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8794
9304
  }, "strip", z.ZodTypeAny, {
8795
- firstname?: string | null | undefined;
8796
- surname?: string | null | undefined;
9305
+ firstname: string;
9306
+ surname: string;
8797
9307
  middlename?: string | null | undefined;
8798
9308
  }, {
8799
- firstname?: string | null | undefined;
8800
- surname?: string | null | undefined;
9309
+ firstname: string;
9310
+ surname: string;
8801
9311
  middlename?: string | null | undefined;
8802
9312
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
8803
9313
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -8923,22 +9433,29 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8923
9433
  addressLine3?: string | null | undefined;
8924
9434
  postcodeOrZip?: string | null | undefined;
8925
9435
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
8926
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8927
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9436
+ firstname: z.ZodString;
9437
+ surname: z.ZodString;
8928
9438
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8929
9439
  }, "strip", z.ZodTypeAny, {
8930
- firstname?: string | null | undefined;
8931
- surname?: string | null | undefined;
9440
+ firstname: string;
9441
+ surname: string;
8932
9442
  middlename?: string | null | undefined;
8933
9443
  }, {
8934
- firstname?: string | null | undefined;
8935
- surname?: string | null | undefined;
9444
+ firstname: string;
9445
+ surname: string;
8936
9446
  middlename?: string | null | undefined;
8937
9447
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
8938
9448
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
8939
9449
  originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
8940
9450
  }, {
8941
9451
  type: z.ZodLiteral<"PRINT_CERTIFICATE">;
9452
+ content: z.ZodNullable<z.ZodOptional<z.ZodObject<{
9453
+ templateId: z.ZodOptional<z.ZodString>;
9454
+ }, "strip", z.ZodTypeAny, {
9455
+ templateId?: string | undefined;
9456
+ }, {
9457
+ templateId?: string | undefined;
9458
+ }>>>;
8942
9459
  }>, "strip", z.ZodTypeAny, {
8943
9460
  type: "PRINT_CERTIFICATE";
8944
9461
  id: string & z.BRAND<"UUID">;
@@ -8964,8 +9481,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8964
9481
  street?: string | null | undefined;
8965
9482
  zipCode?: string | null | undefined;
8966
9483
  } | {
8967
- firstname?: string | null | undefined;
8968
- surname?: string | null | undefined;
9484
+ firstname: string;
9485
+ surname: string;
8969
9486
  middlename?: string | null | undefined;
8970
9487
  } | {
8971
9488
  country: string;
@@ -8993,6 +9510,9 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
8993
9510
  start: string;
8994
9511
  end: string;
8995
9512
  } | null | undefined>;
9513
+ content?: {
9514
+ templateId?: string | undefined;
9515
+ } | null | undefined;
8996
9516
  createdBySignature?: string | null | undefined;
8997
9517
  createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
8998
9518
  annotation?: Record<string, string | number | boolean | {
@@ -9011,8 +9531,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9011
9531
  street?: string | null | undefined;
9012
9532
  zipCode?: string | null | undefined;
9013
9533
  } | {
9014
- firstname?: string | null | undefined;
9015
- surname?: string | null | undefined;
9534
+ firstname: string;
9535
+ surname: string;
9016
9536
  middlename?: string | null | undefined;
9017
9537
  } | {
9018
9538
  country: string;
@@ -9066,8 +9586,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9066
9586
  street?: string | null | undefined;
9067
9587
  zipCode?: string | null | undefined;
9068
9588
  } | {
9069
- firstname?: string | null | undefined;
9070
- surname?: string | null | undefined;
9589
+ firstname: string;
9590
+ surname: string;
9071
9591
  middlename?: string | null | undefined;
9072
9592
  } | {
9073
9593
  country: string;
@@ -9095,6 +9615,9 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9095
9615
  start: string;
9096
9616
  end: string;
9097
9617
  } | null | undefined>;
9618
+ content?: {
9619
+ templateId?: string | undefined;
9620
+ } | null | undefined;
9098
9621
  createdBySignature?: string | null | undefined;
9099
9622
  createdAtLocation?: string | null | undefined;
9100
9623
  annotation?: Record<string, string | number | boolean | {
@@ -9113,8 +9636,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9113
9636
  street?: string | null | undefined;
9114
9637
  zipCode?: string | null | undefined;
9115
9638
  } | {
9116
- firstname?: string | null | undefined;
9117
- surname?: string | null | undefined;
9639
+ firstname: string;
9640
+ surname: string;
9118
9641
  middlename?: string | null | undefined;
9119
9642
  } | {
9120
9643
  country: string;
@@ -9275,16 +9798,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9275
9798
  addressLine3?: string | null | undefined;
9276
9799
  postcodeOrZip?: string | null | undefined;
9277
9800
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9278
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9279
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9801
+ firstname: z.ZodString;
9802
+ surname: z.ZodString;
9280
9803
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9281
9804
  }, "strip", z.ZodTypeAny, {
9282
- firstname?: string | null | undefined;
9283
- surname?: string | null | undefined;
9805
+ firstname: string;
9806
+ surname: string;
9284
9807
  middlename?: string | null | undefined;
9285
9808
  }, {
9286
- firstname?: string | null | undefined;
9287
- surname?: string | null | undefined;
9809
+ firstname: string;
9810
+ surname: string;
9288
9811
  middlename?: string | null | undefined;
9289
9812
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
9290
9813
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -9410,16 +9933,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9410
9933
  addressLine3?: string | null | undefined;
9411
9934
  postcodeOrZip?: string | null | undefined;
9412
9935
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9413
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9414
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9936
+ firstname: z.ZodString;
9937
+ surname: z.ZodString;
9415
9938
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9416
9939
  }, "strip", z.ZodTypeAny, {
9417
- firstname?: string | null | undefined;
9418
- surname?: string | null | undefined;
9940
+ firstname: string;
9941
+ surname: string;
9419
9942
  middlename?: string | null | undefined;
9420
9943
  }, {
9421
- firstname?: string | null | undefined;
9422
- surname?: string | null | undefined;
9944
+ firstname: string;
9945
+ surname: string;
9423
9946
  middlename?: string | null | undefined;
9424
9947
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
9425
9948
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -9451,8 +9974,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9451
9974
  street?: string | null | undefined;
9452
9975
  zipCode?: string | null | undefined;
9453
9976
  } | {
9454
- firstname?: string | null | undefined;
9455
- surname?: string | null | undefined;
9977
+ firstname: string;
9978
+ surname: string;
9456
9979
  middlename?: string | null | undefined;
9457
9980
  } | {
9458
9981
  country: string;
@@ -9498,8 +10021,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9498
10021
  street?: string | null | undefined;
9499
10022
  zipCode?: string | null | undefined;
9500
10023
  } | {
9501
- firstname?: string | null | undefined;
9502
- surname?: string | null | undefined;
10024
+ firstname: string;
10025
+ surname: string;
9503
10026
  middlename?: string | null | undefined;
9504
10027
  } | {
9505
10028
  country: string;
@@ -9553,8 +10076,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9553
10076
  street?: string | null | undefined;
9554
10077
  zipCode?: string | null | undefined;
9555
10078
  } | {
9556
- firstname?: string | null | undefined;
9557
- surname?: string | null | undefined;
10079
+ firstname: string;
10080
+ surname: string;
9558
10081
  middlename?: string | null | undefined;
9559
10082
  } | {
9560
10083
  country: string;
@@ -9600,8 +10123,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
9600
10123
  street?: string | null | undefined;
9601
10124
  zipCode?: string | null | undefined;
9602
10125
  } | {
9603
- firstname?: string | null | undefined;
9604
- surname?: string | null | undefined;
10126
+ firstname: string;
10127
+ surname: string;
9605
10128
  middlename?: string | null | undefined;
9606
10129
  } | {
9607
10130
  country: string;
@@ -9764,16 +10287,16 @@ export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendS
9764
10287
  addressLine3?: string | null | undefined;
9765
10288
  postcodeOrZip?: string | null | undefined;
9766
10289
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9767
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9768
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10290
+ firstname: z.ZodString;
10291
+ surname: z.ZodString;
9769
10292
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9770
10293
  }, "strip", z.ZodTypeAny, {
9771
- firstname?: string | null | undefined;
9772
- surname?: string | null | undefined;
10294
+ firstname: string;
10295
+ surname: string;
9773
10296
  middlename?: string | null | undefined;
9774
10297
  }, {
9775
- firstname?: string | null | undefined;
9776
- surname?: string | null | undefined;
10298
+ firstname: string;
10299
+ surname: string;
9777
10300
  middlename?: string | null | undefined;
9778
10301
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
9779
10302
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -9899,16 +10422,16 @@ export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendS
9899
10422
  addressLine3?: string | null | undefined;
9900
10423
  postcodeOrZip?: string | null | undefined;
9901
10424
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
9902
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9903
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10425
+ firstname: z.ZodString;
10426
+ surname: z.ZodString;
9904
10427
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
9905
10428
  }, "strip", z.ZodTypeAny, {
9906
- firstname?: string | null | undefined;
9907
- surname?: string | null | undefined;
10429
+ firstname: string;
10430
+ surname: string;
9908
10431
  middlename?: string | null | undefined;
9909
10432
  }, {
9910
- firstname?: string | null | undefined;
9911
- surname?: string | null | undefined;
10433
+ firstname: string;
10434
+ surname: string;
9912
10435
  middlename?: string | null | undefined;
9913
10436
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
9914
10437
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -10074,16 +10597,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10074
10597
  addressLine3?: string | null | undefined;
10075
10598
  postcodeOrZip?: string | null | undefined;
10076
10599
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10077
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10078
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10600
+ firstname: z.ZodString;
10601
+ surname: z.ZodString;
10079
10602
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10080
10603
  }, "strip", z.ZodTypeAny, {
10081
- firstname?: string | null | undefined;
10082
- surname?: string | null | undefined;
10604
+ firstname: string;
10605
+ surname: string;
10083
10606
  middlename?: string | null | undefined;
10084
10607
  }, {
10085
- firstname?: string | null | undefined;
10086
- surname?: string | null | undefined;
10608
+ firstname: string;
10609
+ surname: string;
10087
10610
  middlename?: string | null | undefined;
10088
10611
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
10089
10612
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -10209,16 +10732,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10209
10732
  addressLine3?: string | null | undefined;
10210
10733
  postcodeOrZip?: string | null | undefined;
10211
10734
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10212
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10213
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10735
+ firstname: z.ZodString;
10736
+ surname: z.ZodString;
10214
10737
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10215
10738
  }, "strip", z.ZodTypeAny, {
10216
- firstname?: string | null | undefined;
10217
- surname?: string | null | undefined;
10739
+ firstname: string;
10740
+ surname: string;
10218
10741
  middlename?: string | null | undefined;
10219
10742
  }, {
10220
- firstname?: string | null | undefined;
10221
- surname?: string | null | undefined;
10743
+ firstname: string;
10744
+ surname: string;
10222
10745
  middlename?: string | null | undefined;
10223
10746
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
10224
10747
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -10250,8 +10773,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10250
10773
  street?: string | null | undefined;
10251
10774
  zipCode?: string | null | undefined;
10252
10775
  } | {
10253
- firstname?: string | null | undefined;
10254
- surname?: string | null | undefined;
10776
+ firstname: string;
10777
+ surname: string;
10255
10778
  middlename?: string | null | undefined;
10256
10779
  } | {
10257
10780
  country: string;
@@ -10297,8 +10820,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10297
10820
  street?: string | null | undefined;
10298
10821
  zipCode?: string | null | undefined;
10299
10822
  } | {
10300
- firstname?: string | null | undefined;
10301
- surname?: string | null | undefined;
10823
+ firstname: string;
10824
+ surname: string;
10302
10825
  middlename?: string | null | undefined;
10303
10826
  } | {
10304
10827
  country: string;
@@ -10352,8 +10875,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10352
10875
  street?: string | null | undefined;
10353
10876
  zipCode?: string | null | undefined;
10354
10877
  } | {
10355
- firstname?: string | null | undefined;
10356
- surname?: string | null | undefined;
10878
+ firstname: string;
10879
+ surname: string;
10357
10880
  middlename?: string | null | undefined;
10358
10881
  } | {
10359
10882
  country: string;
@@ -10399,8 +10922,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10399
10922
  street?: string | null | undefined;
10400
10923
  zipCode?: string | null | undefined;
10401
10924
  } | {
10402
- firstname?: string | null | undefined;
10403
- surname?: string | null | undefined;
10925
+ firstname: string;
10926
+ surname: string;
10404
10927
  middlename?: string | null | undefined;
10405
10928
  } | {
10406
10929
  country: string;
@@ -10561,16 +11084,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10561
11084
  addressLine3?: string | null | undefined;
10562
11085
  postcodeOrZip?: string | null | undefined;
10563
11086
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10564
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10565
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11087
+ firstname: z.ZodString;
11088
+ surname: z.ZodString;
10566
11089
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10567
11090
  }, "strip", z.ZodTypeAny, {
10568
- firstname?: string | null | undefined;
10569
- surname?: string | null | undefined;
11091
+ firstname: string;
11092
+ surname: string;
10570
11093
  middlename?: string | null | undefined;
10571
11094
  }, {
10572
- firstname?: string | null | undefined;
10573
- surname?: string | null | undefined;
11095
+ firstname: string;
11096
+ surname: string;
10574
11097
  middlename?: string | null | undefined;
10575
11098
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
10576
11099
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -10696,16 +11219,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10696
11219
  addressLine3?: string | null | undefined;
10697
11220
  postcodeOrZip?: string | null | undefined;
10698
11221
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
10699
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10700
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11222
+ firstname: z.ZodString;
11223
+ surname: z.ZodString;
10701
11224
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
10702
11225
  }, "strip", z.ZodTypeAny, {
10703
- firstname?: string | null | undefined;
10704
- surname?: string | null | undefined;
11226
+ firstname: string;
11227
+ surname: string;
10705
11228
  middlename?: string | null | undefined;
10706
11229
  }, {
10707
- firstname?: string | null | undefined;
10708
- surname?: string | null | undefined;
11230
+ firstname: string;
11231
+ surname: string;
10709
11232
  middlename?: string | null | undefined;
10710
11233
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
10711
11234
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -10737,8 +11260,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10737
11260
  street?: string | null | undefined;
10738
11261
  zipCode?: string | null | undefined;
10739
11262
  } | {
10740
- firstname?: string | null | undefined;
10741
- surname?: string | null | undefined;
11263
+ firstname: string;
11264
+ surname: string;
10742
11265
  middlename?: string | null | undefined;
10743
11266
  } | {
10744
11267
  country: string;
@@ -10784,8 +11307,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10784
11307
  street?: string | null | undefined;
10785
11308
  zipCode?: string | null | undefined;
10786
11309
  } | {
10787
- firstname?: string | null | undefined;
10788
- surname?: string | null | undefined;
11310
+ firstname: string;
11311
+ surname: string;
10789
11312
  middlename?: string | null | undefined;
10790
11313
  } | {
10791
11314
  country: string;
@@ -10839,8 +11362,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10839
11362
  street?: string | null | undefined;
10840
11363
  zipCode?: string | null | undefined;
10841
11364
  } | {
10842
- firstname?: string | null | undefined;
10843
- surname?: string | null | undefined;
11365
+ firstname: string;
11366
+ surname: string;
10844
11367
  middlename?: string | null | undefined;
10845
11368
  } | {
10846
11369
  country: string;
@@ -10886,8 +11409,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
10886
11409
  street?: string | null | undefined;
10887
11410
  zipCode?: string | null | undefined;
10888
11411
  } | {
10889
- firstname?: string | null | undefined;
10890
- surname?: string | null | undefined;
11412
+ firstname: string;
11413
+ surname: string;
10891
11414
  middlename?: string | null | undefined;
10892
11415
  } | {
10893
11416
  country: string;
@@ -11048,16 +11571,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11048
11571
  addressLine3?: string | null | undefined;
11049
11572
  postcodeOrZip?: string | null | undefined;
11050
11573
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11051
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11052
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11574
+ firstname: z.ZodString;
11575
+ surname: z.ZodString;
11053
11576
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11054
11577
  }, "strip", z.ZodTypeAny, {
11055
- firstname?: string | null | undefined;
11056
- surname?: string | null | undefined;
11578
+ firstname: string;
11579
+ surname: string;
11057
11580
  middlename?: string | null | undefined;
11058
11581
  }, {
11059
- firstname?: string | null | undefined;
11060
- surname?: string | null | undefined;
11582
+ firstname: string;
11583
+ surname: string;
11061
11584
  middlename?: string | null | undefined;
11062
11585
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
11063
11586
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -11183,16 +11706,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11183
11706
  addressLine3?: string | null | undefined;
11184
11707
  postcodeOrZip?: string | null | undefined;
11185
11708
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11186
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11187
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11709
+ firstname: z.ZodString;
11710
+ surname: z.ZodString;
11188
11711
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11189
11712
  }, "strip", z.ZodTypeAny, {
11190
- firstname?: string | null | undefined;
11191
- surname?: string | null | undefined;
11713
+ firstname: string;
11714
+ surname: string;
11192
11715
  middlename?: string | null | undefined;
11193
11716
  }, {
11194
- firstname?: string | null | undefined;
11195
- surname?: string | null | undefined;
11717
+ firstname: string;
11718
+ surname: string;
11196
11719
  middlename?: string | null | undefined;
11197
11720
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
11198
11721
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -11238,8 +11761,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11238
11761
  street?: string | null | undefined;
11239
11762
  zipCode?: string | null | undefined;
11240
11763
  } | {
11241
- firstname?: string | null | undefined;
11242
- surname?: string | null | undefined;
11764
+ firstname: string;
11765
+ surname: string;
11243
11766
  middlename?: string | null | undefined;
11244
11767
  } | {
11245
11768
  country: string;
@@ -11285,8 +11808,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11285
11808
  street?: string | null | undefined;
11286
11809
  zipCode?: string | null | undefined;
11287
11810
  } | {
11288
- firstname?: string | null | undefined;
11289
- surname?: string | null | undefined;
11811
+ firstname: string;
11812
+ surname: string;
11290
11813
  middlename?: string | null | undefined;
11291
11814
  } | {
11292
11815
  country: string;
@@ -11344,8 +11867,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11344
11867
  street?: string | null | undefined;
11345
11868
  zipCode?: string | null | undefined;
11346
11869
  } | {
11347
- firstname?: string | null | undefined;
11348
- surname?: string | null | undefined;
11870
+ firstname: string;
11871
+ surname: string;
11349
11872
  middlename?: string | null | undefined;
11350
11873
  } | {
11351
11874
  country: string;
@@ -11391,8 +11914,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11391
11914
  street?: string | null | undefined;
11392
11915
  zipCode?: string | null | undefined;
11393
11916
  } | {
11394
- firstname?: string | null | undefined;
11395
- surname?: string | null | undefined;
11917
+ firstname: string;
11918
+ surname: string;
11396
11919
  middlename?: string | null | undefined;
11397
11920
  } | {
11398
11921
  country: string;
@@ -11553,16 +12076,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11553
12076
  addressLine3?: string | null | undefined;
11554
12077
  postcodeOrZip?: string | null | undefined;
11555
12078
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11556
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11557
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12079
+ firstname: z.ZodString;
12080
+ surname: z.ZodString;
11558
12081
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11559
12082
  }, "strip", z.ZodTypeAny, {
11560
- firstname?: string | null | undefined;
11561
- surname?: string | null | undefined;
12083
+ firstname: string;
12084
+ surname: string;
11562
12085
  middlename?: string | null | undefined;
11563
12086
  }, {
11564
- firstname?: string | null | undefined;
11565
- surname?: string | null | undefined;
12087
+ firstname: string;
12088
+ surname: string;
11566
12089
  middlename?: string | null | undefined;
11567
12090
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
11568
12091
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -11688,16 +12211,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11688
12211
  addressLine3?: string | null | undefined;
11689
12212
  postcodeOrZip?: string | null | undefined;
11690
12213
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
11691
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11692
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12214
+ firstname: z.ZodString;
12215
+ surname: z.ZodString;
11693
12216
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
11694
12217
  }, "strip", z.ZodTypeAny, {
11695
- firstname?: string | null | undefined;
11696
- surname?: string | null | undefined;
12218
+ firstname: string;
12219
+ surname: string;
11697
12220
  middlename?: string | null | undefined;
11698
12221
  }, {
11699
- firstname?: string | null | undefined;
11700
- surname?: string | null | undefined;
12222
+ firstname: string;
12223
+ surname: string;
11701
12224
  middlename?: string | null | undefined;
11702
12225
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
11703
12226
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -11729,8 +12252,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11729
12252
  street?: string | null | undefined;
11730
12253
  zipCode?: string | null | undefined;
11731
12254
  } | {
11732
- firstname?: string | null | undefined;
11733
- surname?: string | null | undefined;
12255
+ firstname: string;
12256
+ surname: string;
11734
12257
  middlename?: string | null | undefined;
11735
12258
  } | {
11736
12259
  country: string;
@@ -11776,8 +12299,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11776
12299
  street?: string | null | undefined;
11777
12300
  zipCode?: string | null | undefined;
11778
12301
  } | {
11779
- firstname?: string | null | undefined;
11780
- surname?: string | null | undefined;
12302
+ firstname: string;
12303
+ surname: string;
11781
12304
  middlename?: string | null | undefined;
11782
12305
  } | {
11783
12306
  country: string;
@@ -11831,8 +12354,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11831
12354
  street?: string | null | undefined;
11832
12355
  zipCode?: string | null | undefined;
11833
12356
  } | {
11834
- firstname?: string | null | undefined;
11835
- surname?: string | null | undefined;
12357
+ firstname: string;
12358
+ surname: string;
11836
12359
  middlename?: string | null | undefined;
11837
12360
  } | {
11838
12361
  country: string;
@@ -11878,8 +12401,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
11878
12401
  street?: string | null | undefined;
11879
12402
  zipCode?: string | null | undefined;
11880
12403
  } | {
11881
- firstname?: string | null | undefined;
11882
- surname?: string | null | undefined;
12404
+ firstname: string;
12405
+ surname: string;
11883
12406
  middlename?: string | null | undefined;
11884
12407
  } | {
11885
12408
  country: string;
@@ -12040,16 +12563,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12040
12563
  addressLine3?: string | null | undefined;
12041
12564
  postcodeOrZip?: string | null | undefined;
12042
12565
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12043
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12044
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12566
+ firstname: z.ZodString;
12567
+ surname: z.ZodString;
12045
12568
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12046
12569
  }, "strip", z.ZodTypeAny, {
12047
- firstname?: string | null | undefined;
12048
- surname?: string | null | undefined;
12570
+ firstname: string;
12571
+ surname: string;
12049
12572
  middlename?: string | null | undefined;
12050
12573
  }, {
12051
- firstname?: string | null | undefined;
12052
- surname?: string | null | undefined;
12574
+ firstname: string;
12575
+ surname: string;
12053
12576
  middlename?: string | null | undefined;
12054
12577
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
12055
12578
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -12175,16 +12698,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12175
12698
  addressLine3?: string | null | undefined;
12176
12699
  postcodeOrZip?: string | null | undefined;
12177
12700
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12178
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12179
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12701
+ firstname: z.ZodString;
12702
+ surname: z.ZodString;
12180
12703
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12181
12704
  }, "strip", z.ZodTypeAny, {
12182
- firstname?: string | null | undefined;
12183
- surname?: string | null | undefined;
12705
+ firstname: string;
12706
+ surname: string;
12184
12707
  middlename?: string | null | undefined;
12185
12708
  }, {
12186
- firstname?: string | null | undefined;
12187
- surname?: string | null | undefined;
12709
+ firstname: string;
12710
+ surname: string;
12188
12711
  middlename?: string | null | undefined;
12189
12712
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
12190
12713
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -12230,8 +12753,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12230
12753
  street?: string | null | undefined;
12231
12754
  zipCode?: string | null | undefined;
12232
12755
  } | {
12233
- firstname?: string | null | undefined;
12234
- surname?: string | null | undefined;
12756
+ firstname: string;
12757
+ surname: string;
12235
12758
  middlename?: string | null | undefined;
12236
12759
  } | {
12237
12760
  country: string;
@@ -12277,8 +12800,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12277
12800
  street?: string | null | undefined;
12278
12801
  zipCode?: string | null | undefined;
12279
12802
  } | {
12280
- firstname?: string | null | undefined;
12281
- surname?: string | null | undefined;
12803
+ firstname: string;
12804
+ surname: string;
12282
12805
  middlename?: string | null | undefined;
12283
12806
  } | {
12284
12807
  country: string;
@@ -12336,8 +12859,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12336
12859
  street?: string | null | undefined;
12337
12860
  zipCode?: string | null | undefined;
12338
12861
  } | {
12339
- firstname?: string | null | undefined;
12340
- surname?: string | null | undefined;
12862
+ firstname: string;
12863
+ surname: string;
12341
12864
  middlename?: string | null | undefined;
12342
12865
  } | {
12343
12866
  country: string;
@@ -12383,8 +12906,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12383
12906
  street?: string | null | undefined;
12384
12907
  zipCode?: string | null | undefined;
12385
12908
  } | {
12386
- firstname?: string | null | undefined;
12387
- surname?: string | null | undefined;
12909
+ firstname: string;
12910
+ surname: string;
12388
12911
  middlename?: string | null | undefined;
12389
12912
  } | {
12390
12913
  country: string;
@@ -12545,16 +13068,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12545
13068
  addressLine3?: string | null | undefined;
12546
13069
  postcodeOrZip?: string | null | undefined;
12547
13070
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12548
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12549
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13071
+ firstname: z.ZodString;
13072
+ surname: z.ZodString;
12550
13073
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12551
13074
  }, "strip", z.ZodTypeAny, {
12552
- firstname?: string | null | undefined;
12553
- surname?: string | null | undefined;
13075
+ firstname: string;
13076
+ surname: string;
12554
13077
  middlename?: string | null | undefined;
12555
13078
  }, {
12556
- firstname?: string | null | undefined;
12557
- surname?: string | null | undefined;
13079
+ firstname: string;
13080
+ surname: string;
12558
13081
  middlename?: string | null | undefined;
12559
13082
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
12560
13083
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -12680,16 +13203,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12680
13203
  addressLine3?: string | null | undefined;
12681
13204
  postcodeOrZip?: string | null | undefined;
12682
13205
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
12683
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12684
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13206
+ firstname: z.ZodString;
13207
+ surname: z.ZodString;
12685
13208
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
12686
13209
  }, "strip", z.ZodTypeAny, {
12687
- firstname?: string | null | undefined;
12688
- surname?: string | null | undefined;
13210
+ firstname: string;
13211
+ surname: string;
12689
13212
  middlename?: string | null | undefined;
12690
13213
  }, {
12691
- firstname?: string | null | undefined;
12692
- surname?: string | null | undefined;
13214
+ firstname: string;
13215
+ surname: string;
12693
13216
  middlename?: string | null | undefined;
12694
13217
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
12695
13218
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -12721,8 +13244,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12721
13244
  street?: string | null | undefined;
12722
13245
  zipCode?: string | null | undefined;
12723
13246
  } | {
12724
- firstname?: string | null | undefined;
12725
- surname?: string | null | undefined;
13247
+ firstname: string;
13248
+ surname: string;
12726
13249
  middlename?: string | null | undefined;
12727
13250
  } | {
12728
13251
  country: string;
@@ -12768,8 +13291,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12768
13291
  street?: string | null | undefined;
12769
13292
  zipCode?: string | null | undefined;
12770
13293
  } | {
12771
- firstname?: string | null | undefined;
12772
- surname?: string | null | undefined;
13294
+ firstname: string;
13295
+ surname: string;
12773
13296
  middlename?: string | null | undefined;
12774
13297
  } | {
12775
13298
  country: string;
@@ -12823,8 +13346,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12823
13346
  street?: string | null | undefined;
12824
13347
  zipCode?: string | null | undefined;
12825
13348
  } | {
12826
- firstname?: string | null | undefined;
12827
- surname?: string | null | undefined;
13349
+ firstname: string;
13350
+ surname: string;
12828
13351
  middlename?: string | null | undefined;
12829
13352
  } | {
12830
13353
  country: string;
@@ -12870,8 +13393,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
12870
13393
  street?: string | null | undefined;
12871
13394
  zipCode?: string | null | undefined;
12872
13395
  } | {
12873
- firstname?: string | null | undefined;
12874
- surname?: string | null | undefined;
13396
+ firstname: string;
13397
+ surname: string;
12875
13398
  middlename?: string | null | undefined;
12876
13399
  } | {
12877
13400
  country: string;
@@ -13032,16 +13555,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13032
13555
  addressLine3?: string | null | undefined;
13033
13556
  postcodeOrZip?: string | null | undefined;
13034
13557
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13035
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13036
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13558
+ firstname: z.ZodString;
13559
+ surname: z.ZodString;
13037
13560
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13038
13561
  }, "strip", z.ZodTypeAny, {
13039
- firstname?: string | null | undefined;
13040
- surname?: string | null | undefined;
13562
+ firstname: string;
13563
+ surname: string;
13041
13564
  middlename?: string | null | undefined;
13042
13565
  }, {
13043
- firstname?: string | null | undefined;
13044
- surname?: string | null | undefined;
13566
+ firstname: string;
13567
+ surname: string;
13045
13568
  middlename?: string | null | undefined;
13046
13569
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
13047
13570
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -13167,16 +13690,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13167
13690
  addressLine3?: string | null | undefined;
13168
13691
  postcodeOrZip?: string | null | undefined;
13169
13692
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13170
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13171
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13693
+ firstname: z.ZodString;
13694
+ surname: z.ZodString;
13172
13695
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13173
13696
  }, "strip", z.ZodTypeAny, {
13174
- firstname?: string | null | undefined;
13175
- surname?: string | null | undefined;
13697
+ firstname: string;
13698
+ surname: string;
13176
13699
  middlename?: string | null | undefined;
13177
13700
  }, {
13178
- firstname?: string | null | undefined;
13179
- surname?: string | null | undefined;
13701
+ firstname: string;
13702
+ surname: string;
13180
13703
  middlename?: string | null | undefined;
13181
13704
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
13182
13705
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -13209,8 +13732,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13209
13732
  street?: string | null | undefined;
13210
13733
  zipCode?: string | null | undefined;
13211
13734
  } | {
13212
- firstname?: string | null | undefined;
13213
- surname?: string | null | undefined;
13735
+ firstname: string;
13736
+ surname: string;
13214
13737
  middlename?: string | null | undefined;
13215
13738
  } | {
13216
13739
  country: string;
@@ -13256,8 +13779,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13256
13779
  street?: string | null | undefined;
13257
13780
  zipCode?: string | null | undefined;
13258
13781
  } | {
13259
- firstname?: string | null | undefined;
13260
- surname?: string | null | undefined;
13782
+ firstname: string;
13783
+ surname: string;
13261
13784
  middlename?: string | null | undefined;
13262
13785
  } | {
13263
13786
  country: string;
@@ -13312,8 +13835,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13312
13835
  street?: string | null | undefined;
13313
13836
  zipCode?: string | null | undefined;
13314
13837
  } | {
13315
- firstname?: string | null | undefined;
13316
- surname?: string | null | undefined;
13838
+ firstname: string;
13839
+ surname: string;
13317
13840
  middlename?: string | null | undefined;
13318
13841
  } | {
13319
13842
  country: string;
@@ -13359,8 +13882,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13359
13882
  street?: string | null | undefined;
13360
13883
  zipCode?: string | null | undefined;
13361
13884
  } | {
13362
- firstname?: string | null | undefined;
13363
- surname?: string | null | undefined;
13885
+ firstname: string;
13886
+ surname: string;
13364
13887
  middlename?: string | null | undefined;
13365
13888
  } | {
13366
13889
  country: string;
@@ -13522,16 +14045,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13522
14045
  addressLine3?: string | null | undefined;
13523
14046
  postcodeOrZip?: string | null | undefined;
13524
14047
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13525
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13526
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14048
+ firstname: z.ZodString;
14049
+ surname: z.ZodString;
13527
14050
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13528
14051
  }, "strip", z.ZodTypeAny, {
13529
- firstname?: string | null | undefined;
13530
- surname?: string | null | undefined;
14052
+ firstname: string;
14053
+ surname: string;
13531
14054
  middlename?: string | null | undefined;
13532
14055
  }, {
13533
- firstname?: string | null | undefined;
13534
- surname?: string | null | undefined;
14056
+ firstname: string;
14057
+ surname: string;
13535
14058
  middlename?: string | null | undefined;
13536
14059
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
13537
14060
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -13657,16 +14180,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13657
14180
  addressLine3?: string | null | undefined;
13658
14181
  postcodeOrZip?: string | null | undefined;
13659
14182
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
13660
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13661
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14183
+ firstname: z.ZodString;
14184
+ surname: z.ZodString;
13662
14185
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
13663
14186
  }, "strip", z.ZodTypeAny, {
13664
- firstname?: string | null | undefined;
13665
- surname?: string | null | undefined;
14187
+ firstname: string;
14188
+ surname: string;
13666
14189
  middlename?: string | null | undefined;
13667
14190
  }, {
13668
- firstname?: string | null | undefined;
13669
- surname?: string | null | undefined;
14191
+ firstname: string;
14192
+ surname: string;
13670
14193
  middlename?: string | null | undefined;
13671
14194
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
13672
14195
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -13698,8 +14221,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13698
14221
  street?: string | null | undefined;
13699
14222
  zipCode?: string | null | undefined;
13700
14223
  } | {
13701
- firstname?: string | null | undefined;
13702
- surname?: string | null | undefined;
14224
+ firstname: string;
14225
+ surname: string;
13703
14226
  middlename?: string | null | undefined;
13704
14227
  } | {
13705
14228
  country: string;
@@ -13745,8 +14268,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13745
14268
  street?: string | null | undefined;
13746
14269
  zipCode?: string | null | undefined;
13747
14270
  } | {
13748
- firstname?: string | null | undefined;
13749
- surname?: string | null | undefined;
14271
+ firstname: string;
14272
+ surname: string;
13750
14273
  middlename?: string | null | undefined;
13751
14274
  } | {
13752
14275
  country: string;
@@ -13800,8 +14323,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13800
14323
  street?: string | null | undefined;
13801
14324
  zipCode?: string | null | undefined;
13802
14325
  } | {
13803
- firstname?: string | null | undefined;
13804
- surname?: string | null | undefined;
14326
+ firstname: string;
14327
+ surname: string;
13805
14328
  middlename?: string | null | undefined;
13806
14329
  } | {
13807
14330
  country: string;
@@ -13847,8 +14370,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
13847
14370
  street?: string | null | undefined;
13848
14371
  zipCode?: string | null | undefined;
13849
14372
  } | {
13850
- firstname?: string | null | undefined;
13851
- surname?: string | null | undefined;
14373
+ firstname: string;
14374
+ surname: string;
13852
14375
  middlename?: string | null | undefined;
13853
14376
  } | {
13854
14377
  country: string;
@@ -14009,16 +14532,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14009
14532
  addressLine3?: string | null | undefined;
14010
14533
  postcodeOrZip?: string | null | undefined;
14011
14534
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
14012
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14013
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14535
+ firstname: z.ZodString;
14536
+ surname: z.ZodString;
14014
14537
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14015
14538
  }, "strip", z.ZodTypeAny, {
14016
- firstname?: string | null | undefined;
14017
- surname?: string | null | undefined;
14539
+ firstname: string;
14540
+ surname: string;
14018
14541
  middlename?: string | null | undefined;
14019
14542
  }, {
14020
- firstname?: string | null | undefined;
14021
- surname?: string | null | undefined;
14543
+ firstname: string;
14544
+ surname: string;
14022
14545
  middlename?: string | null | undefined;
14023
14546
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
14024
14547
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -14144,16 +14667,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14144
14667
  addressLine3?: string | null | undefined;
14145
14668
  postcodeOrZip?: string | null | undefined;
14146
14669
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
14147
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14148
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14670
+ firstname: z.ZodString;
14671
+ surname: z.ZodString;
14149
14672
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14150
14673
  }, "strip", z.ZodTypeAny, {
14151
- firstname?: string | null | undefined;
14152
- surname?: string | null | undefined;
14674
+ firstname: string;
14675
+ surname: string;
14153
14676
  middlename?: string | null | undefined;
14154
14677
  }, {
14155
- firstname?: string | null | undefined;
14156
- surname?: string | null | undefined;
14678
+ firstname: string;
14679
+ surname: string;
14157
14680
  middlename?: string | null | undefined;
14158
14681
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
14159
14682
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -14186,8 +14709,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14186
14709
  street?: string | null | undefined;
14187
14710
  zipCode?: string | null | undefined;
14188
14711
  } | {
14189
- firstname?: string | null | undefined;
14190
- surname?: string | null | undefined;
14712
+ firstname: string;
14713
+ surname: string;
14191
14714
  middlename?: string | null | undefined;
14192
14715
  } | {
14193
14716
  country: string;
@@ -14234,8 +14757,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14234
14757
  street?: string | null | undefined;
14235
14758
  zipCode?: string | null | undefined;
14236
14759
  } | {
14237
- firstname?: string | null | undefined;
14238
- surname?: string | null | undefined;
14760
+ firstname: string;
14761
+ surname: string;
14239
14762
  middlename?: string | null | undefined;
14240
14763
  } | {
14241
14764
  country: string;
@@ -14289,8 +14812,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14289
14812
  street?: string | null | undefined;
14290
14813
  zipCode?: string | null | undefined;
14291
14814
  } | {
14292
- firstname?: string | null | undefined;
14293
- surname?: string | null | undefined;
14815
+ firstname: string;
14816
+ surname: string;
14294
14817
  middlename?: string | null | undefined;
14295
14818
  } | {
14296
14819
  country: string;
@@ -14337,8 +14860,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14337
14860
  street?: string | null | undefined;
14338
14861
  zipCode?: string | null | undefined;
14339
14862
  } | {
14340
- firstname?: string | null | undefined;
14341
- surname?: string | null | undefined;
14863
+ firstname: string;
14864
+ surname: string;
14342
14865
  middlename?: string | null | undefined;
14343
14866
  } | {
14344
14867
  country: string;
@@ -14499,16 +15022,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14499
15022
  addressLine3?: string | null | undefined;
14500
15023
  postcodeOrZip?: string | null | undefined;
14501
15024
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
14502
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14503
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15025
+ firstname: z.ZodString;
15026
+ surname: z.ZodString;
14504
15027
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14505
15028
  }, "strip", z.ZodTypeAny, {
14506
- firstname?: string | null | undefined;
14507
- surname?: string | null | undefined;
15029
+ firstname: string;
15030
+ surname: string;
14508
15031
  middlename?: string | null | undefined;
14509
15032
  }, {
14510
- firstname?: string | null | undefined;
14511
- surname?: string | null | undefined;
15033
+ firstname: string;
15034
+ surname: string;
14512
15035
  middlename?: string | null | undefined;
14513
15036
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
14514
15037
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -14634,16 +15157,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14634
15157
  addressLine3?: string | null | undefined;
14635
15158
  postcodeOrZip?: string | null | undefined;
14636
15159
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
14637
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14638
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15160
+ firstname: z.ZodString;
15161
+ surname: z.ZodString;
14639
15162
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14640
15163
  }, "strip", z.ZodTypeAny, {
14641
- firstname?: string | null | undefined;
14642
- surname?: string | null | undefined;
15164
+ firstname: string;
15165
+ surname: string;
14643
15166
  middlename?: string | null | undefined;
14644
15167
  }, {
14645
- firstname?: string | null | undefined;
14646
- surname?: string | null | undefined;
15168
+ firstname: string;
15169
+ surname: string;
14647
15170
  middlename?: string | null | undefined;
14648
15171
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
14649
15172
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -14675,8 +15198,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14675
15198
  street?: string | null | undefined;
14676
15199
  zipCode?: string | null | undefined;
14677
15200
  } | {
14678
- firstname?: string | null | undefined;
14679
- surname?: string | null | undefined;
15201
+ firstname: string;
15202
+ surname: string;
14680
15203
  middlename?: string | null | undefined;
14681
15204
  } | {
14682
15205
  country: string;
@@ -14722,8 +15245,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14722
15245
  street?: string | null | undefined;
14723
15246
  zipCode?: string | null | undefined;
14724
15247
  } | {
14725
- firstname?: string | null | undefined;
14726
- surname?: string | null | undefined;
15248
+ firstname: string;
15249
+ surname: string;
14727
15250
  middlename?: string | null | undefined;
14728
15251
  } | {
14729
15252
  country: string;
@@ -14777,8 +15300,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14777
15300
  street?: string | null | undefined;
14778
15301
  zipCode?: string | null | undefined;
14779
15302
  } | {
14780
- firstname?: string | null | undefined;
14781
- surname?: string | null | undefined;
15303
+ firstname: string;
15304
+ surname: string;
14782
15305
  middlename?: string | null | undefined;
14783
15306
  } | {
14784
15307
  country: string;
@@ -14824,8 +15347,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14824
15347
  street?: string | null | undefined;
14825
15348
  zipCode?: string | null | undefined;
14826
15349
  } | {
14827
- firstname?: string | null | undefined;
14828
- surname?: string | null | undefined;
15350
+ firstname: string;
15351
+ surname: string;
14829
15352
  middlename?: string | null | undefined;
14830
15353
  } | {
14831
15354
  country: string;
@@ -14986,16 +15509,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
14986
15509
  addressLine3?: string | null | undefined;
14987
15510
  postcodeOrZip?: string | null | undefined;
14988
15511
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
14989
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14990
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15512
+ firstname: z.ZodString;
15513
+ surname: z.ZodString;
14991
15514
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
14992
15515
  }, "strip", z.ZodTypeAny, {
14993
- firstname?: string | null | undefined;
14994
- surname?: string | null | undefined;
15516
+ firstname: string;
15517
+ surname: string;
14995
15518
  middlename?: string | null | undefined;
14996
15519
  }, {
14997
- firstname?: string | null | undefined;
14998
- surname?: string | null | undefined;
15520
+ firstname: string;
15521
+ surname: string;
14999
15522
  middlename?: string | null | undefined;
15000
15523
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
15001
15524
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -15121,16 +15644,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15121
15644
  addressLine3?: string | null | undefined;
15122
15645
  postcodeOrZip?: string | null | undefined;
15123
15646
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
15124
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15125
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15647
+ firstname: z.ZodString;
15648
+ surname: z.ZodString;
15126
15649
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15127
15650
  }, "strip", z.ZodTypeAny, {
15128
- firstname?: string | null | undefined;
15129
- surname?: string | null | undefined;
15651
+ firstname: string;
15652
+ surname: string;
15130
15653
  middlename?: string | null | undefined;
15131
15654
  }, {
15132
- firstname?: string | null | undefined;
15133
- surname?: string | null | undefined;
15655
+ firstname: string;
15656
+ surname: string;
15134
15657
  middlename?: string | null | undefined;
15135
15658
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
15136
15659
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -15163,8 +15686,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15163
15686
  street?: string | null | undefined;
15164
15687
  zipCode?: string | null | undefined;
15165
15688
  } | {
15166
- firstname?: string | null | undefined;
15167
- surname?: string | null | undefined;
15689
+ firstname: string;
15690
+ surname: string;
15168
15691
  middlename?: string | null | undefined;
15169
15692
  } | {
15170
15693
  country: string;
@@ -15211,8 +15734,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15211
15734
  street?: string | null | undefined;
15212
15735
  zipCode?: string | null | undefined;
15213
15736
  } | {
15214
- firstname?: string | null | undefined;
15215
- surname?: string | null | undefined;
15737
+ firstname: string;
15738
+ surname: string;
15216
15739
  middlename?: string | null | undefined;
15217
15740
  } | {
15218
15741
  country: string;
@@ -15266,8 +15789,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15266
15789
  street?: string | null | undefined;
15267
15790
  zipCode?: string | null | undefined;
15268
15791
  } | {
15269
- firstname?: string | null | undefined;
15270
- surname?: string | null | undefined;
15792
+ firstname: string;
15793
+ surname: string;
15271
15794
  middlename?: string | null | undefined;
15272
15795
  } | {
15273
15796
  country: string;
@@ -15314,8 +15837,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15314
15837
  street?: string | null | undefined;
15315
15838
  zipCode?: string | null | undefined;
15316
15839
  } | {
15317
- firstname?: string | null | undefined;
15318
- surname?: string | null | undefined;
15840
+ firstname: string;
15841
+ surname: string;
15319
15842
  middlename?: string | null | undefined;
15320
15843
  } | {
15321
15844
  country: string;
@@ -15476,16 +15999,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15476
15999
  addressLine3?: string | null | undefined;
15477
16000
  postcodeOrZip?: string | null | undefined;
15478
16001
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
15479
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15480
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16002
+ firstname: z.ZodString;
16003
+ surname: z.ZodString;
15481
16004
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15482
16005
  }, "strip", z.ZodTypeAny, {
15483
- firstname?: string | null | undefined;
15484
- surname?: string | null | undefined;
16006
+ firstname: string;
16007
+ surname: string;
15485
16008
  middlename?: string | null | undefined;
15486
16009
  }, {
15487
- firstname?: string | null | undefined;
15488
- surname?: string | null | undefined;
16010
+ firstname: string;
16011
+ surname: string;
15489
16012
  middlename?: string | null | undefined;
15490
16013
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
15491
16014
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -15611,16 +16134,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15611
16134
  addressLine3?: string | null | undefined;
15612
16135
  postcodeOrZip?: string | null | undefined;
15613
16136
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
15614
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15615
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16137
+ firstname: z.ZodString;
16138
+ surname: z.ZodString;
15616
16139
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15617
16140
  }, "strip", z.ZodTypeAny, {
15618
- firstname?: string | null | undefined;
15619
- surname?: string | null | undefined;
16141
+ firstname: string;
16142
+ surname: string;
15620
16143
  middlename?: string | null | undefined;
15621
16144
  }, {
15622
- firstname?: string | null | undefined;
15623
- surname?: string | null | undefined;
16145
+ firstname: string;
16146
+ surname: string;
15624
16147
  middlename?: string | null | undefined;
15625
16148
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
15626
16149
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -15667,8 +16190,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15667
16190
  street?: string | null | undefined;
15668
16191
  zipCode?: string | null | undefined;
15669
16192
  } | {
15670
- firstname?: string | null | undefined;
15671
- surname?: string | null | undefined;
16193
+ firstname: string;
16194
+ surname: string;
15672
16195
  middlename?: string | null | undefined;
15673
16196
  } | {
15674
16197
  country: string;
@@ -15715,8 +16238,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15715
16238
  street?: string | null | undefined;
15716
16239
  zipCode?: string | null | undefined;
15717
16240
  } | {
15718
- firstname?: string | null | undefined;
15719
- surname?: string | null | undefined;
16241
+ firstname: string;
16242
+ surname: string;
15720
16243
  middlename?: string | null | undefined;
15721
16244
  } | {
15722
16245
  country: string;
@@ -15774,8 +16297,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15774
16297
  street?: string | null | undefined;
15775
16298
  zipCode?: string | null | undefined;
15776
16299
  } | {
15777
- firstname?: string | null | undefined;
15778
- surname?: string | null | undefined;
16300
+ firstname: string;
16301
+ surname: string;
15779
16302
  middlename?: string | null | undefined;
15780
16303
  } | {
15781
16304
  country: string;
@@ -15822,8 +16345,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15822
16345
  street?: string | null | undefined;
15823
16346
  zipCode?: string | null | undefined;
15824
16347
  } | {
15825
- firstname?: string | null | undefined;
15826
- surname?: string | null | undefined;
16348
+ firstname: string;
16349
+ surname: string;
15827
16350
  middlename?: string | null | undefined;
15828
16351
  } | {
15829
16352
  country: string;
@@ -15984,16 +16507,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
15984
16507
  addressLine3?: string | null | undefined;
15985
16508
  postcodeOrZip?: string | null | undefined;
15986
16509
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
15987
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15988
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16510
+ firstname: z.ZodString;
16511
+ surname: z.ZodString;
15989
16512
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
15990
16513
  }, "strip", z.ZodTypeAny, {
15991
- firstname?: string | null | undefined;
15992
- surname?: string | null | undefined;
16514
+ firstname: string;
16515
+ surname: string;
15993
16516
  middlename?: string | null | undefined;
15994
16517
  }, {
15995
- firstname?: string | null | undefined;
15996
- surname?: string | null | undefined;
16518
+ firstname: string;
16519
+ surname: string;
15997
16520
  middlename?: string | null | undefined;
15998
16521
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
15999
16522
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -16119,16 +16642,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16119
16642
  addressLine3?: string | null | undefined;
16120
16643
  postcodeOrZip?: string | null | undefined;
16121
16644
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
16122
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16123
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16645
+ firstname: z.ZodString;
16646
+ surname: z.ZodString;
16124
16647
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16125
16648
  }, "strip", z.ZodTypeAny, {
16126
- firstname?: string | null | undefined;
16127
- surname?: string | null | undefined;
16649
+ firstname: string;
16650
+ surname: string;
16128
16651
  middlename?: string | null | undefined;
16129
16652
  }, {
16130
- firstname?: string | null | undefined;
16131
- surname?: string | null | undefined;
16653
+ firstname: string;
16654
+ surname: string;
16132
16655
  middlename?: string | null | undefined;
16133
16656
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
16134
16657
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -16160,8 +16683,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16160
16683
  street?: string | null | undefined;
16161
16684
  zipCode?: string | null | undefined;
16162
16685
  } | {
16163
- firstname?: string | null | undefined;
16164
- surname?: string | null | undefined;
16686
+ firstname: string;
16687
+ surname: string;
16165
16688
  middlename?: string | null | undefined;
16166
16689
  } | {
16167
16690
  country: string;
@@ -16207,8 +16730,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16207
16730
  street?: string | null | undefined;
16208
16731
  zipCode?: string | null | undefined;
16209
16732
  } | {
16210
- firstname?: string | null | undefined;
16211
- surname?: string | null | undefined;
16733
+ firstname: string;
16734
+ surname: string;
16212
16735
  middlename?: string | null | undefined;
16213
16736
  } | {
16214
16737
  country: string;
@@ -16262,8 +16785,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16262
16785
  street?: string | null | undefined;
16263
16786
  zipCode?: string | null | undefined;
16264
16787
  } | {
16265
- firstname?: string | null | undefined;
16266
- surname?: string | null | undefined;
16788
+ firstname: string;
16789
+ surname: string;
16267
16790
  middlename?: string | null | undefined;
16268
16791
  } | {
16269
16792
  country: string;
@@ -16309,8 +16832,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16309
16832
  street?: string | null | undefined;
16310
16833
  zipCode?: string | null | undefined;
16311
16834
  } | {
16312
- firstname?: string | null | undefined;
16313
- surname?: string | null | undefined;
16835
+ firstname: string;
16836
+ surname: string;
16314
16837
  middlename?: string | null | undefined;
16315
16838
  } | {
16316
16839
  country: string;
@@ -16471,16 +16994,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16471
16994
  addressLine3?: string | null | undefined;
16472
16995
  postcodeOrZip?: string | null | undefined;
16473
16996
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
16474
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16475
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16997
+ firstname: z.ZodString;
16998
+ surname: z.ZodString;
16476
16999
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16477
17000
  }, "strip", z.ZodTypeAny, {
16478
- firstname?: string | null | undefined;
16479
- surname?: string | null | undefined;
17001
+ firstname: string;
17002
+ surname: string;
16480
17003
  middlename?: string | null | undefined;
16481
17004
  }, {
16482
- firstname?: string | null | undefined;
16483
- surname?: string | null | undefined;
17005
+ firstname: string;
17006
+ surname: string;
16484
17007
  middlename?: string | null | undefined;
16485
17008
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
16486
17009
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -16606,22 +17129,29 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16606
17129
  addressLine3?: string | null | undefined;
16607
17130
  postcodeOrZip?: string | null | undefined;
16608
17131
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
16609
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16610
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17132
+ firstname: z.ZodString;
17133
+ surname: z.ZodString;
16611
17134
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16612
17135
  }, "strip", z.ZodTypeAny, {
16613
- firstname?: string | null | undefined;
16614
- surname?: string | null | undefined;
17136
+ firstname: string;
17137
+ surname: string;
16615
17138
  middlename?: string | null | undefined;
16616
17139
  }, {
16617
- firstname?: string | null | undefined;
16618
- surname?: string | null | undefined;
17140
+ firstname: string;
17141
+ surname: string;
16619
17142
  middlename?: string | null | undefined;
16620
17143
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
16621
17144
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
16622
17145
  originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
16623
17146
  }, {
16624
17147
  type: z.ZodLiteral<"PRINT_CERTIFICATE">;
17148
+ content: z.ZodNullable<z.ZodOptional<z.ZodObject<{
17149
+ templateId: z.ZodOptional<z.ZodString>;
17150
+ }, "strip", z.ZodTypeAny, {
17151
+ templateId?: string | undefined;
17152
+ }, {
17153
+ templateId?: string | undefined;
17154
+ }>>>;
16625
17155
  }>, "strip", z.ZodTypeAny, {
16626
17156
  type: "PRINT_CERTIFICATE";
16627
17157
  id: string & z.BRAND<"UUID">;
@@ -16647,8 +17177,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16647
17177
  street?: string | null | undefined;
16648
17178
  zipCode?: string | null | undefined;
16649
17179
  } | {
16650
- firstname?: string | null | undefined;
16651
- surname?: string | null | undefined;
17180
+ firstname: string;
17181
+ surname: string;
16652
17182
  middlename?: string | null | undefined;
16653
17183
  } | {
16654
17184
  country: string;
@@ -16676,6 +17206,9 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16676
17206
  start: string;
16677
17207
  end: string;
16678
17208
  } | null | undefined>;
17209
+ content?: {
17210
+ templateId?: string | undefined;
17211
+ } | null | undefined;
16679
17212
  createdBySignature?: string | null | undefined;
16680
17213
  createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
16681
17214
  annotation?: Record<string, string | number | boolean | {
@@ -16694,8 +17227,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16694
17227
  street?: string | null | undefined;
16695
17228
  zipCode?: string | null | undefined;
16696
17229
  } | {
16697
- firstname?: string | null | undefined;
16698
- surname?: string | null | undefined;
17230
+ firstname: string;
17231
+ surname: string;
16699
17232
  middlename?: string | null | undefined;
16700
17233
  } | {
16701
17234
  country: string;
@@ -16749,8 +17282,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16749
17282
  street?: string | null | undefined;
16750
17283
  zipCode?: string | null | undefined;
16751
17284
  } | {
16752
- firstname?: string | null | undefined;
16753
- surname?: string | null | undefined;
17285
+ firstname: string;
17286
+ surname: string;
16754
17287
  middlename?: string | null | undefined;
16755
17288
  } | {
16756
17289
  country: string;
@@ -16778,6 +17311,9 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16778
17311
  start: string;
16779
17312
  end: string;
16780
17313
  } | null | undefined>;
17314
+ content?: {
17315
+ templateId?: string | undefined;
17316
+ } | null | undefined;
16781
17317
  createdBySignature?: string | null | undefined;
16782
17318
  createdAtLocation?: string | null | undefined;
16783
17319
  annotation?: Record<string, string | number | boolean | {
@@ -16796,8 +17332,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16796
17332
  street?: string | null | undefined;
16797
17333
  zipCode?: string | null | undefined;
16798
17334
  } | {
16799
- firstname?: string | null | undefined;
16800
- surname?: string | null | undefined;
17335
+ firstname: string;
17336
+ surname: string;
16801
17337
  middlename?: string | null | undefined;
16802
17338
  } | {
16803
17339
  country: string;
@@ -16958,16 +17494,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
16958
17494
  addressLine3?: string | null | undefined;
16959
17495
  postcodeOrZip?: string | null | undefined;
16960
17496
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
16961
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16962
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17497
+ firstname: z.ZodString;
17498
+ surname: z.ZodString;
16963
17499
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
16964
17500
  }, "strip", z.ZodTypeAny, {
16965
- firstname?: string | null | undefined;
16966
- surname?: string | null | undefined;
17501
+ firstname: string;
17502
+ surname: string;
16967
17503
  middlename?: string | null | undefined;
16968
17504
  }, {
16969
- firstname?: string | null | undefined;
16970
- surname?: string | null | undefined;
17505
+ firstname: string;
17506
+ surname: string;
16971
17507
  middlename?: string | null | undefined;
16972
17508
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
16973
17509
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -17093,16 +17629,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
17093
17629
  addressLine3?: string | null | undefined;
17094
17630
  postcodeOrZip?: string | null | undefined;
17095
17631
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
17096
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17097
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17632
+ firstname: z.ZodString;
17633
+ surname: z.ZodString;
17098
17634
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17099
17635
  }, "strip", z.ZodTypeAny, {
17100
- firstname?: string | null | undefined;
17101
- surname?: string | null | undefined;
17636
+ firstname: string;
17637
+ surname: string;
17102
17638
  middlename?: string | null | undefined;
17103
17639
  }, {
17104
- firstname?: string | null | undefined;
17105
- surname?: string | null | undefined;
17640
+ firstname: string;
17641
+ surname: string;
17106
17642
  middlename?: string | null | undefined;
17107
17643
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
17108
17644
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
@@ -17134,8 +17670,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
17134
17670
  street?: string | null | undefined;
17135
17671
  zipCode?: string | null | undefined;
17136
17672
  } | {
17137
- firstname?: string | null | undefined;
17138
- surname?: string | null | undefined;
17673
+ firstname: string;
17674
+ surname: string;
17139
17675
  middlename?: string | null | undefined;
17140
17676
  } | {
17141
17677
  country: string;
@@ -17181,8 +17717,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
17181
17717
  street?: string | null | undefined;
17182
17718
  zipCode?: string | null | undefined;
17183
17719
  } | {
17184
- firstname?: string | null | undefined;
17185
- surname?: string | null | undefined;
17720
+ firstname: string;
17721
+ surname: string;
17186
17722
  middlename?: string | null | undefined;
17187
17723
  } | {
17188
17724
  country: string;
@@ -17236,8 +17772,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
17236
17772
  street?: string | null | undefined;
17237
17773
  zipCode?: string | null | undefined;
17238
17774
  } | {
17239
- firstname?: string | null | undefined;
17240
- surname?: string | null | undefined;
17775
+ firstname: string;
17776
+ surname: string;
17241
17777
  middlename?: string | null | undefined;
17242
17778
  } | {
17243
17779
  country: string;
@@ -17283,8 +17819,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
17283
17819
  street?: string | null | undefined;
17284
17820
  zipCode?: string | null | undefined;
17285
17821
  } | {
17286
- firstname?: string | null | undefined;
17287
- surname?: string | null | undefined;
17822
+ firstname: string;
17823
+ surname: string;
17288
17824
  middlename?: string | null | undefined;
17289
17825
  } | {
17290
17826
  country: string;
@@ -17445,16 +17981,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
17445
17981
  addressLine3?: string | null | undefined;
17446
17982
  postcodeOrZip?: string | null | undefined;
17447
17983
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
17448
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17449
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17984
+ firstname: z.ZodString;
17985
+ surname: z.ZodString;
17450
17986
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17451
17987
  }, "strip", z.ZodTypeAny, {
17452
- firstname?: string | null | undefined;
17453
- surname?: string | null | undefined;
17988
+ firstname: string;
17989
+ surname: string;
17454
17990
  middlename?: string | null | undefined;
17455
17991
  }, {
17456
- firstname?: string | null | undefined;
17457
- surname?: string | null | undefined;
17992
+ firstname: string;
17993
+ surname: string;
17458
17994
  middlename?: string | null | undefined;
17459
17995
  }>, z.ZodNull]>, z.ZodUndefined]>]>>;
17460
17996
  annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
@@ -17580,16 +18116,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
17580
18116
  addressLine3?: string | null | undefined;
17581
18117
  postcodeOrZip?: string | null | undefined;
17582
18118
  }>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
17583
- firstname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17584
- surname: z.ZodOptional<z.ZodNullable<z.ZodString>>;
18119
+ firstname: z.ZodString;
18120
+ surname: z.ZodString;
17585
18121
  middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
17586
18122
  }, "strip", z.ZodTypeAny, {
17587
- firstname?: string | null | undefined;
17588
- surname?: string | null | undefined;
18123
+ firstname: string;
18124
+ surname: string;
17589
18125
  middlename?: string | null | undefined;
17590
18126
  }, {
17591
- firstname?: string | null | undefined;
17592
- surname?: string | null | undefined;
18127
+ firstname: string;
18128
+ surname: string;
17593
18129
  middlename?: string | null | undefined;
17594
18130
  }>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
17595
18131
  status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;