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