@opencrvs/toolkit 1.8.1-rc.c39f8f6 → 1.8.1-rc.c7fcaa3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commons/api/router.d.ts +394 -393
- package/dist/commons/conditionals/validate.d.ts +11 -2
- package/dist/commons/events/ActionConfig.d.ts +3924 -642
- package/dist/commons/events/ActionDocument.d.ts +736 -736
- package/dist/commons/events/ActionInput.d.ts +600 -600
- package/dist/commons/events/AdvancedSearchConfig.d.ts +49 -31
- 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 +56 -56
- package/dist/commons/events/EventConfig.d.ts +1259 -240
- package/dist/commons/events/EventDocument.d.ts +432 -432
- package/dist/commons/events/EventIndex.d.ts +62 -62
- package/dist/commons/events/EventMetadata.d.ts +9 -9
- package/dist/commons/events/FieldConfig.d.ts +1064 -71
- package/dist/commons/events/FieldType.d.ts +5 -0
- package/dist/commons/events/FieldTypeMapping.d.ts +16 -16
- package/dist/commons/events/FieldValue.d.ts +12 -12
- package/dist/commons/events/FormConfig.d.ts +1956 -378
- package/dist/commons/events/PageConfig.d.ts +524 -82
- package/dist/commons/events/WorkqueueConfig.d.ts +199 -164
- package/dist/commons/events/defineConfig.d.ts +181 -46
- package/dist/commons/events/event.d.ts +61 -7
- package/dist/commons/events/test.utils.d.ts +14 -13
- package/dist/commons/events/utils.d.ts +341 -195
- package/dist/conditionals/index.js +3 -2
- package/dist/events/index.js +1071 -860
- package/package.json +1 -1
- package/tsconfig.json +1 -1
- package/dist/commons/conditionals/conditionals.test.d.ts +0 -2
- package/dist/commons/conditionals/validate-address.test.d.ts +0 -2
- package/dist/commons/conditionals/validate.test.d.ts +0 -2
- package/dist/commons/events/utils.test.d.ts +0 -2
@@ -125,16 +125,16 @@ export declare const ActionUpdate: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodStr
|
|
125
125
|
addressLine3?: string | null | undefined;
|
126
126
|
postcodeOrZip?: string | null | undefined;
|
127
127
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
128
|
-
firstname: z.
|
129
|
-
surname: z.
|
128
|
+
firstname: z.ZodString;
|
129
|
+
surname: z.ZodString;
|
130
130
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
131
131
|
}, "strip", z.ZodTypeAny, {
|
132
|
-
firstname
|
133
|
-
surname
|
132
|
+
firstname: string;
|
133
|
+
surname: string;
|
134
134
|
middlename?: string | null | undefined;
|
135
135
|
}, {
|
136
|
-
firstname
|
137
|
-
surname
|
136
|
+
firstname: string;
|
137
|
+
surname: string;
|
138
138
|
middlename?: string | null | undefined;
|
139
139
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
140
140
|
export type ActionUpdate = z.infer<typeof ActionUpdate>;
|
@@ -276,16 +276,16 @@ export declare const EventState: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodStrin
|
|
276
276
|
surname: string;
|
277
277
|
middlename?: string | undefined;
|
278
278
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
279
|
-
firstname: z.
|
280
|
-
surname: z.
|
279
|
+
firstname: z.ZodString;
|
280
|
+
surname: z.ZodString;
|
281
281
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
282
282
|
}, "strip", z.ZodTypeAny, {
|
283
|
-
firstname
|
284
|
-
surname
|
283
|
+
firstname: string;
|
284
|
+
surname: string;
|
285
285
|
middlename?: string | null | undefined;
|
286
286
|
}, {
|
287
|
-
firstname
|
288
|
-
surname
|
287
|
+
firstname: string;
|
288
|
+
surname: string;
|
289
289
|
middlename?: string | null | undefined;
|
290
290
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
291
291
|
export type EventState = z.infer<typeof EventState>;
|
@@ -427,16 +427,16 @@ export declare const ActionBase: z.ZodObject<{
|
|
427
427
|
addressLine3?: string | null | undefined;
|
428
428
|
postcodeOrZip?: string | null | undefined;
|
429
429
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
430
|
-
firstname: z.
|
431
|
-
surname: z.
|
430
|
+
firstname: z.ZodString;
|
431
|
+
surname: z.ZodString;
|
432
432
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
433
433
|
}, "strip", z.ZodTypeAny, {
|
434
|
-
firstname
|
435
|
-
surname
|
434
|
+
firstname: string;
|
435
|
+
surname: string;
|
436
436
|
middlename?: string | null | undefined;
|
437
437
|
}, {
|
438
|
-
firstname
|
439
|
-
surname
|
438
|
+
firstname: string;
|
439
|
+
surname: string;
|
440
440
|
middlename?: string | null | undefined;
|
441
441
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
442
442
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -562,16 +562,16 @@ export declare const ActionBase: z.ZodObject<{
|
|
562
562
|
addressLine3?: string | null | undefined;
|
563
563
|
postcodeOrZip?: string | null | undefined;
|
564
564
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
565
|
-
firstname: z.
|
566
|
-
surname: z.
|
565
|
+
firstname: z.ZodString;
|
566
|
+
surname: z.ZodString;
|
567
567
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
568
568
|
}, "strip", z.ZodTypeAny, {
|
569
|
-
firstname
|
570
|
-
surname
|
569
|
+
firstname: string;
|
570
|
+
surname: string;
|
571
571
|
middlename?: string | null | undefined;
|
572
572
|
}, {
|
573
|
-
firstname
|
574
|
-
surname
|
573
|
+
firstname: string;
|
574
|
+
surname: string;
|
575
575
|
middlename?: string | null | undefined;
|
576
576
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
577
577
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -600,8 +600,8 @@ export declare const ActionBase: z.ZodObject<{
|
|
600
600
|
street?: string | null | undefined;
|
601
601
|
zipCode?: string | null | undefined;
|
602
602
|
} | {
|
603
|
-
firstname
|
604
|
-
surname
|
603
|
+
firstname: string;
|
604
|
+
surname: string;
|
605
605
|
middlename?: string | null | undefined;
|
606
606
|
} | {
|
607
607
|
country: string;
|
@@ -647,8 +647,8 @@ export declare const ActionBase: z.ZodObject<{
|
|
647
647
|
street?: string | null | undefined;
|
648
648
|
zipCode?: string | null | undefined;
|
649
649
|
} | {
|
650
|
-
firstname
|
651
|
-
surname
|
650
|
+
firstname: string;
|
651
|
+
surname: string;
|
652
652
|
middlename?: string | null | undefined;
|
653
653
|
} | {
|
654
654
|
country: string;
|
@@ -701,8 +701,8 @@ export declare const ActionBase: z.ZodObject<{
|
|
701
701
|
street?: string | null | undefined;
|
702
702
|
zipCode?: string | null | undefined;
|
703
703
|
} | {
|
704
|
-
firstname
|
705
|
-
surname
|
704
|
+
firstname: string;
|
705
|
+
surname: string;
|
706
706
|
middlename?: string | null | undefined;
|
707
707
|
} | {
|
708
708
|
country: string;
|
@@ -748,8 +748,8 @@ export declare const ActionBase: z.ZodObject<{
|
|
748
748
|
street?: string | null | undefined;
|
749
749
|
zipCode?: string | null | undefined;
|
750
750
|
} | {
|
751
|
-
firstname
|
752
|
-
surname
|
751
|
+
firstname: string;
|
752
|
+
surname: string;
|
753
753
|
middlename?: string | null | undefined;
|
754
754
|
} | {
|
755
755
|
country: string;
|
@@ -912,16 +912,16 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
912
912
|
addressLine3?: string | null | undefined;
|
913
913
|
postcodeOrZip?: string | null | undefined;
|
914
914
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
915
|
-
firstname: z.
|
916
|
-
surname: z.
|
915
|
+
firstname: z.ZodString;
|
916
|
+
surname: z.ZodString;
|
917
917
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
918
918
|
}, "strip", z.ZodTypeAny, {
|
919
|
-
firstname
|
920
|
-
surname
|
919
|
+
firstname: string;
|
920
|
+
surname: string;
|
921
921
|
middlename?: string | null | undefined;
|
922
922
|
}, {
|
923
|
-
firstname
|
924
|
-
surname
|
923
|
+
firstname: string;
|
924
|
+
surname: string;
|
925
925
|
middlename?: string | null | undefined;
|
926
926
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
927
927
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -1047,16 +1047,16 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1047
1047
|
addressLine3?: string | null | undefined;
|
1048
1048
|
postcodeOrZip?: string | null | undefined;
|
1049
1049
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1050
|
-
firstname: z.
|
1051
|
-
surname: z.
|
1050
|
+
firstname: z.ZodString;
|
1051
|
+
surname: z.ZodString;
|
1052
1052
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1053
1053
|
}, "strip", z.ZodTypeAny, {
|
1054
|
-
firstname
|
1055
|
-
surname
|
1054
|
+
firstname: string;
|
1055
|
+
surname: string;
|
1056
1056
|
middlename?: string | null | undefined;
|
1057
1057
|
}, {
|
1058
|
-
firstname
|
1059
|
-
surname
|
1058
|
+
firstname: string;
|
1059
|
+
surname: string;
|
1060
1060
|
middlename?: string | null | undefined;
|
1061
1061
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
1062
1062
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -1089,8 +1089,8 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1089
1089
|
street?: string | null | undefined;
|
1090
1090
|
zipCode?: string | null | undefined;
|
1091
1091
|
} | {
|
1092
|
-
firstname
|
1093
|
-
surname
|
1092
|
+
firstname: string;
|
1093
|
+
surname: string;
|
1094
1094
|
middlename?: string | null | undefined;
|
1095
1095
|
} | {
|
1096
1096
|
country: string;
|
@@ -1136,8 +1136,8 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1136
1136
|
street?: string | null | undefined;
|
1137
1137
|
zipCode?: string | null | undefined;
|
1138
1138
|
} | {
|
1139
|
-
firstname
|
1140
|
-
surname
|
1139
|
+
firstname: string;
|
1140
|
+
surname: string;
|
1141
1141
|
middlename?: string | null | undefined;
|
1142
1142
|
} | {
|
1143
1143
|
country: string;
|
@@ -1192,8 +1192,8 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1192
1192
|
street?: string | null | undefined;
|
1193
1193
|
zipCode?: string | null | undefined;
|
1194
1194
|
} | {
|
1195
|
-
firstname
|
1196
|
-
surname
|
1195
|
+
firstname: string;
|
1196
|
+
surname: string;
|
1197
1197
|
middlename?: string | null | undefined;
|
1198
1198
|
} | {
|
1199
1199
|
country: string;
|
@@ -1239,8 +1239,8 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1239
1239
|
street?: string | null | undefined;
|
1240
1240
|
zipCode?: string | null | undefined;
|
1241
1241
|
} | {
|
1242
|
-
firstname
|
1243
|
-
surname
|
1242
|
+
firstname: string;
|
1243
|
+
surname: string;
|
1244
1244
|
middlename?: string | null | undefined;
|
1245
1245
|
} | {
|
1246
1246
|
country: string;
|
@@ -1414,16 +1414,16 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1414
1414
|
addressLine3?: string | null | undefined;
|
1415
1415
|
postcodeOrZip?: string | null | undefined;
|
1416
1416
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1417
|
-
firstname: z.
|
1418
|
-
surname: z.
|
1417
|
+
firstname: z.ZodString;
|
1418
|
+
surname: z.ZodString;
|
1419
1419
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1420
1420
|
}, "strip", z.ZodTypeAny, {
|
1421
|
-
firstname
|
1422
|
-
surname
|
1421
|
+
firstname: string;
|
1422
|
+
surname: string;
|
1423
1423
|
middlename?: string | null | undefined;
|
1424
1424
|
}, {
|
1425
|
-
firstname
|
1426
|
-
surname
|
1425
|
+
firstname: string;
|
1426
|
+
surname: string;
|
1427
1427
|
middlename?: string | null | undefined;
|
1428
1428
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
1429
1429
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -1549,16 +1549,16 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1549
1549
|
addressLine3?: string | null | undefined;
|
1550
1550
|
postcodeOrZip?: string | null | undefined;
|
1551
1551
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1552
|
-
firstname: z.
|
1553
|
-
surname: z.
|
1552
|
+
firstname: z.ZodString;
|
1553
|
+
surname: z.ZodString;
|
1554
1554
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1555
1555
|
}, "strip", z.ZodTypeAny, {
|
1556
|
-
firstname
|
1557
|
-
surname
|
1556
|
+
firstname: string;
|
1557
|
+
surname: string;
|
1558
1558
|
middlename?: string | null | undefined;
|
1559
1559
|
}, {
|
1560
|
-
firstname
|
1561
|
-
surname
|
1560
|
+
firstname: string;
|
1561
|
+
surname: string;
|
1562
1562
|
middlename?: string | null | undefined;
|
1563
1563
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
1564
1564
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -1590,8 +1590,8 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1590
1590
|
street?: string | null | undefined;
|
1591
1591
|
zipCode?: string | null | undefined;
|
1592
1592
|
} | {
|
1593
|
-
firstname
|
1594
|
-
surname
|
1593
|
+
firstname: string;
|
1594
|
+
surname: string;
|
1595
1595
|
middlename?: string | null | undefined;
|
1596
1596
|
} | {
|
1597
1597
|
country: string;
|
@@ -1637,8 +1637,8 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1637
1637
|
street?: string | null | undefined;
|
1638
1638
|
zipCode?: string | null | undefined;
|
1639
1639
|
} | {
|
1640
|
-
firstname
|
1641
|
-
surname
|
1640
|
+
firstname: string;
|
1641
|
+
surname: string;
|
1642
1642
|
middlename?: string | null | undefined;
|
1643
1643
|
} | {
|
1644
1644
|
country: string;
|
@@ -1692,8 +1692,8 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1692
1692
|
street?: string | null | undefined;
|
1693
1693
|
zipCode?: string | null | undefined;
|
1694
1694
|
} | {
|
1695
|
-
firstname
|
1696
|
-
surname
|
1695
|
+
firstname: string;
|
1696
|
+
surname: string;
|
1697
1697
|
middlename?: string | null | undefined;
|
1698
1698
|
} | {
|
1699
1699
|
country: string;
|
@@ -1739,8 +1739,8 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1739
1739
|
street?: string | null | undefined;
|
1740
1740
|
zipCode?: string | null | undefined;
|
1741
1741
|
} | {
|
1742
|
-
firstname
|
1743
|
-
surname
|
1742
|
+
firstname: string;
|
1743
|
+
surname: string;
|
1744
1744
|
middlename?: string | null | undefined;
|
1745
1745
|
} | {
|
1746
1746
|
country: string;
|
@@ -1910,16 +1910,16 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1910
1910
|
addressLine3?: string | null | undefined;
|
1911
1911
|
postcodeOrZip?: string | null | undefined;
|
1912
1912
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1913
|
-
firstname: z.
|
1914
|
-
surname: z.
|
1913
|
+
firstname: z.ZodString;
|
1914
|
+
surname: z.ZodString;
|
1915
1915
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1916
1916
|
}, "strip", z.ZodTypeAny, {
|
1917
|
-
firstname
|
1918
|
-
surname
|
1917
|
+
firstname: string;
|
1918
|
+
surname: string;
|
1919
1919
|
middlename?: string | null | undefined;
|
1920
1920
|
}, {
|
1921
|
-
firstname
|
1922
|
-
surname
|
1921
|
+
firstname: string;
|
1922
|
+
surname: string;
|
1923
1923
|
middlename?: string | null | undefined;
|
1924
1924
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
1925
1925
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -2045,16 +2045,16 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2045
2045
|
addressLine3?: string | null | undefined;
|
2046
2046
|
postcodeOrZip?: string | null | undefined;
|
2047
2047
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2048
|
-
firstname: z.
|
2049
|
-
surname: z.
|
2048
|
+
firstname: z.ZodString;
|
2049
|
+
surname: z.ZodString;
|
2050
2050
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2051
2051
|
}, "strip", z.ZodTypeAny, {
|
2052
|
-
firstname
|
2053
|
-
surname
|
2052
|
+
firstname: string;
|
2053
|
+
surname: string;
|
2054
2054
|
middlename?: string | null | undefined;
|
2055
2055
|
}, {
|
2056
|
-
firstname
|
2057
|
-
surname
|
2056
|
+
firstname: string;
|
2057
|
+
surname: string;
|
2058
2058
|
middlename?: string | null | undefined;
|
2059
2059
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
2060
2060
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -2093,8 +2093,8 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2093
2093
|
street?: string | null | undefined;
|
2094
2094
|
zipCode?: string | null | undefined;
|
2095
2095
|
} | {
|
2096
|
-
firstname
|
2097
|
-
surname
|
2096
|
+
firstname: string;
|
2097
|
+
surname: string;
|
2098
2098
|
middlename?: string | null | undefined;
|
2099
2099
|
} | {
|
2100
2100
|
country: string;
|
@@ -2143,8 +2143,8 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2143
2143
|
street?: string | null | undefined;
|
2144
2144
|
zipCode?: string | null | undefined;
|
2145
2145
|
} | {
|
2146
|
-
firstname
|
2147
|
-
surname
|
2146
|
+
firstname: string;
|
2147
|
+
surname: string;
|
2148
2148
|
middlename?: string | null | undefined;
|
2149
2149
|
} | {
|
2150
2150
|
country: string;
|
@@ -2198,8 +2198,8 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2198
2198
|
street?: string | null | undefined;
|
2199
2199
|
zipCode?: string | null | undefined;
|
2200
2200
|
} | {
|
2201
|
-
firstname
|
2202
|
-
surname
|
2201
|
+
firstname: string;
|
2202
|
+
surname: string;
|
2203
2203
|
middlename?: string | null | undefined;
|
2204
2204
|
} | {
|
2205
2205
|
country: string;
|
@@ -2248,8 +2248,8 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2248
2248
|
street?: string | null | undefined;
|
2249
2249
|
zipCode?: string | null | undefined;
|
2250
2250
|
} | {
|
2251
|
-
firstname
|
2252
|
-
surname
|
2251
|
+
firstname: string;
|
2252
|
+
surname: string;
|
2253
2253
|
middlename?: string | null | undefined;
|
2254
2254
|
} | {
|
2255
2255
|
country: string;
|
@@ -2412,16 +2412,16 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2412
2412
|
addressLine3?: string | null | undefined;
|
2413
2413
|
postcodeOrZip?: string | null | undefined;
|
2414
2414
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2415
|
-
firstname: z.
|
2416
|
-
surname: z.
|
2415
|
+
firstname: z.ZodString;
|
2416
|
+
surname: z.ZodString;
|
2417
2417
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2418
2418
|
}, "strip", z.ZodTypeAny, {
|
2419
|
-
firstname
|
2420
|
-
surname
|
2419
|
+
firstname: string;
|
2420
|
+
surname: string;
|
2421
2421
|
middlename?: string | null | undefined;
|
2422
2422
|
}, {
|
2423
|
-
firstname
|
2424
|
-
surname
|
2423
|
+
firstname: string;
|
2424
|
+
surname: string;
|
2425
2425
|
middlename?: string | null | undefined;
|
2426
2426
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
2427
2427
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -2547,16 +2547,16 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2547
2547
|
addressLine3?: string | null | undefined;
|
2548
2548
|
postcodeOrZip?: string | null | undefined;
|
2549
2549
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2550
|
-
firstname: z.
|
2551
|
-
surname: z.
|
2550
|
+
firstname: z.ZodString;
|
2551
|
+
surname: z.ZodString;
|
2552
2552
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2553
2553
|
}, "strip", z.ZodTypeAny, {
|
2554
|
-
firstname
|
2555
|
-
surname
|
2554
|
+
firstname: string;
|
2555
|
+
surname: string;
|
2556
2556
|
middlename?: string | null | undefined;
|
2557
2557
|
}, {
|
2558
|
-
firstname
|
2559
|
-
surname
|
2558
|
+
firstname: string;
|
2559
|
+
surname: string;
|
2560
2560
|
middlename?: string | null | undefined;
|
2561
2561
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
2562
2562
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -2588,8 +2588,8 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2588
2588
|
street?: string | null | undefined;
|
2589
2589
|
zipCode?: string | null | undefined;
|
2590
2590
|
} | {
|
2591
|
-
firstname
|
2592
|
-
surname
|
2591
|
+
firstname: string;
|
2592
|
+
surname: string;
|
2593
2593
|
middlename?: string | null | undefined;
|
2594
2594
|
} | {
|
2595
2595
|
country: string;
|
@@ -2635,8 +2635,8 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2635
2635
|
street?: string | null | undefined;
|
2636
2636
|
zipCode?: string | null | undefined;
|
2637
2637
|
} | {
|
2638
|
-
firstname
|
2639
|
-
surname
|
2638
|
+
firstname: string;
|
2639
|
+
surname: string;
|
2640
2640
|
middlename?: string | null | undefined;
|
2641
2641
|
} | {
|
2642
2642
|
country: string;
|
@@ -2690,8 +2690,8 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2690
2690
|
street?: string | null | undefined;
|
2691
2691
|
zipCode?: string | null | undefined;
|
2692
2692
|
} | {
|
2693
|
-
firstname
|
2694
|
-
surname
|
2693
|
+
firstname: string;
|
2694
|
+
surname: string;
|
2695
2695
|
middlename?: string | null | undefined;
|
2696
2696
|
} | {
|
2697
2697
|
country: string;
|
@@ -2737,8 +2737,8 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2737
2737
|
street?: string | null | undefined;
|
2738
2738
|
zipCode?: string | null | undefined;
|
2739
2739
|
} | {
|
2740
|
-
firstname
|
2741
|
-
surname
|
2740
|
+
firstname: string;
|
2741
|
+
surname: string;
|
2742
2742
|
middlename?: string | null | undefined;
|
2743
2743
|
} | {
|
2744
2744
|
country: string;
|
@@ -2901,16 +2901,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2901
2901
|
addressLine3?: string | null | undefined;
|
2902
2902
|
postcodeOrZip?: string | null | undefined;
|
2903
2903
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2904
|
-
firstname: z.
|
2905
|
-
surname: z.
|
2904
|
+
firstname: z.ZodString;
|
2905
|
+
surname: z.ZodString;
|
2906
2906
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2907
2907
|
}, "strip", z.ZodTypeAny, {
|
2908
|
-
firstname
|
2909
|
-
surname
|
2908
|
+
firstname: string;
|
2909
|
+
surname: string;
|
2910
2910
|
middlename?: string | null | undefined;
|
2911
2911
|
}, {
|
2912
|
-
firstname
|
2913
|
-
surname
|
2912
|
+
firstname: string;
|
2913
|
+
surname: string;
|
2914
2914
|
middlename?: string | null | undefined;
|
2915
2915
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
2916
2916
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -3036,16 +3036,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3036
3036
|
addressLine3?: string | null | undefined;
|
3037
3037
|
postcodeOrZip?: string | null | undefined;
|
3038
3038
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3039
|
-
firstname: z.
|
3040
|
-
surname: z.
|
3039
|
+
firstname: z.ZodString;
|
3040
|
+
surname: z.ZodString;
|
3041
3041
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3042
3042
|
}, "strip", z.ZodTypeAny, {
|
3043
|
-
firstname
|
3044
|
-
surname
|
3043
|
+
firstname: string;
|
3044
|
+
surname: string;
|
3045
3045
|
middlename?: string | null | undefined;
|
3046
3046
|
}, {
|
3047
|
-
firstname
|
3048
|
-
surname
|
3047
|
+
firstname: string;
|
3048
|
+
surname: string;
|
3049
3049
|
middlename?: string | null | undefined;
|
3050
3050
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
3051
3051
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -3077,8 +3077,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3077
3077
|
street?: string | null | undefined;
|
3078
3078
|
zipCode?: string | null | undefined;
|
3079
3079
|
} | {
|
3080
|
-
firstname
|
3081
|
-
surname
|
3080
|
+
firstname: string;
|
3081
|
+
surname: string;
|
3082
3082
|
middlename?: string | null | undefined;
|
3083
3083
|
} | {
|
3084
3084
|
country: string;
|
@@ -3124,8 +3124,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3124
3124
|
street?: string | null | undefined;
|
3125
3125
|
zipCode?: string | null | undefined;
|
3126
3126
|
} | {
|
3127
|
-
firstname
|
3128
|
-
surname
|
3127
|
+
firstname: string;
|
3128
|
+
surname: string;
|
3129
3129
|
middlename?: string | null | undefined;
|
3130
3130
|
} | {
|
3131
3131
|
country: string;
|
@@ -3179,8 +3179,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3179
3179
|
street?: string | null | undefined;
|
3180
3180
|
zipCode?: string | null | undefined;
|
3181
3181
|
} | {
|
3182
|
-
firstname
|
3183
|
-
surname
|
3182
|
+
firstname: string;
|
3183
|
+
surname: string;
|
3184
3184
|
middlename?: string | null | undefined;
|
3185
3185
|
} | {
|
3186
3186
|
country: string;
|
@@ -3226,8 +3226,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3226
3226
|
street?: string | null | undefined;
|
3227
3227
|
zipCode?: string | null | undefined;
|
3228
3228
|
} | {
|
3229
|
-
firstname
|
3230
|
-
surname
|
3229
|
+
firstname: string;
|
3230
|
+
surname: string;
|
3231
3231
|
middlename?: string | null | undefined;
|
3232
3232
|
} | {
|
3233
3233
|
country: string;
|
@@ -3388,16 +3388,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3388
3388
|
addressLine3?: string | null | undefined;
|
3389
3389
|
postcodeOrZip?: string | null | undefined;
|
3390
3390
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3391
|
-
firstname: z.
|
3392
|
-
surname: z.
|
3391
|
+
firstname: z.ZodString;
|
3392
|
+
surname: z.ZodString;
|
3393
3393
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3394
3394
|
}, "strip", z.ZodTypeAny, {
|
3395
|
-
firstname
|
3396
|
-
surname
|
3395
|
+
firstname: string;
|
3396
|
+
surname: string;
|
3397
3397
|
middlename?: string | null | undefined;
|
3398
3398
|
}, {
|
3399
|
-
firstname
|
3400
|
-
surname
|
3399
|
+
firstname: string;
|
3400
|
+
surname: string;
|
3401
3401
|
middlename?: string | null | undefined;
|
3402
3402
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
3403
3403
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -3523,16 +3523,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3523
3523
|
addressLine3?: string | null | undefined;
|
3524
3524
|
postcodeOrZip?: string | null | undefined;
|
3525
3525
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3526
|
-
firstname: z.
|
3527
|
-
surname: z.
|
3526
|
+
firstname: z.ZodString;
|
3527
|
+
surname: z.ZodString;
|
3528
3528
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3529
3529
|
}, "strip", z.ZodTypeAny, {
|
3530
|
-
firstname
|
3531
|
-
surname
|
3530
|
+
firstname: string;
|
3531
|
+
surname: string;
|
3532
3532
|
middlename?: string | null | undefined;
|
3533
3533
|
}, {
|
3534
|
-
firstname
|
3535
|
-
surname
|
3534
|
+
firstname: string;
|
3535
|
+
surname: string;
|
3536
3536
|
middlename?: string | null | undefined;
|
3537
3537
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
3538
3538
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -3564,8 +3564,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3564
3564
|
street?: string | null | undefined;
|
3565
3565
|
zipCode?: string | null | undefined;
|
3566
3566
|
} | {
|
3567
|
-
firstname
|
3568
|
-
surname
|
3567
|
+
firstname: string;
|
3568
|
+
surname: string;
|
3569
3569
|
middlename?: string | null | undefined;
|
3570
3570
|
} | {
|
3571
3571
|
country: string;
|
@@ -3611,8 +3611,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3611
3611
|
street?: string | null | undefined;
|
3612
3612
|
zipCode?: string | null | undefined;
|
3613
3613
|
} | {
|
3614
|
-
firstname
|
3615
|
-
surname
|
3614
|
+
firstname: string;
|
3615
|
+
surname: string;
|
3616
3616
|
middlename?: string | null | undefined;
|
3617
3617
|
} | {
|
3618
3618
|
country: string;
|
@@ -3666,8 +3666,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3666
3666
|
street?: string | null | undefined;
|
3667
3667
|
zipCode?: string | null | undefined;
|
3668
3668
|
} | {
|
3669
|
-
firstname
|
3670
|
-
surname
|
3669
|
+
firstname: string;
|
3670
|
+
surname: string;
|
3671
3671
|
middlename?: string | null | undefined;
|
3672
3672
|
} | {
|
3673
3673
|
country: string;
|
@@ -3713,8 +3713,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3713
3713
|
street?: string | null | undefined;
|
3714
3714
|
zipCode?: string | null | undefined;
|
3715
3715
|
} | {
|
3716
|
-
firstname
|
3717
|
-
surname
|
3716
|
+
firstname: string;
|
3717
|
+
surname: string;
|
3718
3718
|
middlename?: string | null | undefined;
|
3719
3719
|
} | {
|
3720
3720
|
country: string;
|
@@ -3875,16 +3875,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3875
3875
|
addressLine3?: string | null | undefined;
|
3876
3876
|
postcodeOrZip?: string | null | undefined;
|
3877
3877
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3878
|
-
firstname: z.
|
3879
|
-
surname: z.
|
3878
|
+
firstname: z.ZodString;
|
3879
|
+
surname: z.ZodString;
|
3880
3880
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3881
3881
|
}, "strip", z.ZodTypeAny, {
|
3882
|
-
firstname
|
3883
|
-
surname
|
3882
|
+
firstname: string;
|
3883
|
+
surname: string;
|
3884
3884
|
middlename?: string | null | undefined;
|
3885
3885
|
}, {
|
3886
|
-
firstname
|
3887
|
-
surname
|
3886
|
+
firstname: string;
|
3887
|
+
surname: string;
|
3888
3888
|
middlename?: string | null | undefined;
|
3889
3889
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
3890
3890
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -4010,16 +4010,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4010
4010
|
addressLine3?: string | null | undefined;
|
4011
4011
|
postcodeOrZip?: string | null | undefined;
|
4012
4012
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4013
|
-
firstname: z.
|
4014
|
-
surname: z.
|
4013
|
+
firstname: z.ZodString;
|
4014
|
+
surname: z.ZodString;
|
4015
4015
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4016
4016
|
}, "strip", z.ZodTypeAny, {
|
4017
|
-
firstname
|
4018
|
-
surname
|
4017
|
+
firstname: string;
|
4018
|
+
surname: string;
|
4019
4019
|
middlename?: string | null | undefined;
|
4020
4020
|
}, {
|
4021
|
-
firstname
|
4022
|
-
surname
|
4021
|
+
firstname: string;
|
4022
|
+
surname: string;
|
4023
4023
|
middlename?: string | null | undefined;
|
4024
4024
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
4025
4025
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -4065,8 +4065,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4065
4065
|
street?: string | null | undefined;
|
4066
4066
|
zipCode?: string | null | undefined;
|
4067
4067
|
} | {
|
4068
|
-
firstname
|
4069
|
-
surname
|
4068
|
+
firstname: string;
|
4069
|
+
surname: string;
|
4070
4070
|
middlename?: string | null | undefined;
|
4071
4071
|
} | {
|
4072
4072
|
country: string;
|
@@ -4112,8 +4112,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4112
4112
|
street?: string | null | undefined;
|
4113
4113
|
zipCode?: string | null | undefined;
|
4114
4114
|
} | {
|
4115
|
-
firstname
|
4116
|
-
surname
|
4115
|
+
firstname: string;
|
4116
|
+
surname: string;
|
4117
4117
|
middlename?: string | null | undefined;
|
4118
4118
|
} | {
|
4119
4119
|
country: string;
|
@@ -4171,8 +4171,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4171
4171
|
street?: string | null | undefined;
|
4172
4172
|
zipCode?: string | null | undefined;
|
4173
4173
|
} | {
|
4174
|
-
firstname
|
4175
|
-
surname
|
4174
|
+
firstname: string;
|
4175
|
+
surname: string;
|
4176
4176
|
middlename?: string | null | undefined;
|
4177
4177
|
} | {
|
4178
4178
|
country: string;
|
@@ -4218,8 +4218,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4218
4218
|
street?: string | null | undefined;
|
4219
4219
|
zipCode?: string | null | undefined;
|
4220
4220
|
} | {
|
4221
|
-
firstname
|
4222
|
-
surname
|
4221
|
+
firstname: string;
|
4222
|
+
surname: string;
|
4223
4223
|
middlename?: string | null | undefined;
|
4224
4224
|
} | {
|
4225
4225
|
country: string;
|
@@ -4380,16 +4380,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4380
4380
|
addressLine3?: string | null | undefined;
|
4381
4381
|
postcodeOrZip?: string | null | undefined;
|
4382
4382
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4383
|
-
firstname: z.
|
4384
|
-
surname: z.
|
4383
|
+
firstname: z.ZodString;
|
4384
|
+
surname: z.ZodString;
|
4385
4385
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4386
4386
|
}, "strip", z.ZodTypeAny, {
|
4387
|
-
firstname
|
4388
|
-
surname
|
4387
|
+
firstname: string;
|
4388
|
+
surname: string;
|
4389
4389
|
middlename?: string | null | undefined;
|
4390
4390
|
}, {
|
4391
|
-
firstname
|
4392
|
-
surname
|
4391
|
+
firstname: string;
|
4392
|
+
surname: string;
|
4393
4393
|
middlename?: string | null | undefined;
|
4394
4394
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
4395
4395
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -4515,16 +4515,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4515
4515
|
addressLine3?: string | null | undefined;
|
4516
4516
|
postcodeOrZip?: string | null | undefined;
|
4517
4517
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4518
|
-
firstname: z.
|
4519
|
-
surname: z.
|
4518
|
+
firstname: z.ZodString;
|
4519
|
+
surname: z.ZodString;
|
4520
4520
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4521
4521
|
}, "strip", z.ZodTypeAny, {
|
4522
|
-
firstname
|
4523
|
-
surname
|
4522
|
+
firstname: string;
|
4523
|
+
surname: string;
|
4524
4524
|
middlename?: string | null | undefined;
|
4525
4525
|
}, {
|
4526
|
-
firstname
|
4527
|
-
surname
|
4526
|
+
firstname: string;
|
4527
|
+
surname: string;
|
4528
4528
|
middlename?: string | null | undefined;
|
4529
4529
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
4530
4530
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -4556,8 +4556,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4556
4556
|
street?: string | null | undefined;
|
4557
4557
|
zipCode?: string | null | undefined;
|
4558
4558
|
} | {
|
4559
|
-
firstname
|
4560
|
-
surname
|
4559
|
+
firstname: string;
|
4560
|
+
surname: string;
|
4561
4561
|
middlename?: string | null | undefined;
|
4562
4562
|
} | {
|
4563
4563
|
country: string;
|
@@ -4603,8 +4603,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4603
4603
|
street?: string | null | undefined;
|
4604
4604
|
zipCode?: string | null | undefined;
|
4605
4605
|
} | {
|
4606
|
-
firstname
|
4607
|
-
surname
|
4606
|
+
firstname: string;
|
4607
|
+
surname: string;
|
4608
4608
|
middlename?: string | null | undefined;
|
4609
4609
|
} | {
|
4610
4610
|
country: string;
|
@@ -4658,8 +4658,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4658
4658
|
street?: string | null | undefined;
|
4659
4659
|
zipCode?: string | null | undefined;
|
4660
4660
|
} | {
|
4661
|
-
firstname
|
4662
|
-
surname
|
4661
|
+
firstname: string;
|
4662
|
+
surname: string;
|
4663
4663
|
middlename?: string | null | undefined;
|
4664
4664
|
} | {
|
4665
4665
|
country: string;
|
@@ -4705,8 +4705,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4705
4705
|
street?: string | null | undefined;
|
4706
4706
|
zipCode?: string | null | undefined;
|
4707
4707
|
} | {
|
4708
|
-
firstname
|
4709
|
-
surname
|
4708
|
+
firstname: string;
|
4709
|
+
surname: string;
|
4710
4710
|
middlename?: string | null | undefined;
|
4711
4711
|
} | {
|
4712
4712
|
country: string;
|
@@ -4867,16 +4867,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4867
4867
|
addressLine3?: string | null | undefined;
|
4868
4868
|
postcodeOrZip?: string | null | undefined;
|
4869
4869
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4870
|
-
firstname: z.
|
4871
|
-
surname: z.
|
4870
|
+
firstname: z.ZodString;
|
4871
|
+
surname: z.ZodString;
|
4872
4872
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4873
4873
|
}, "strip", z.ZodTypeAny, {
|
4874
|
-
firstname
|
4875
|
-
surname
|
4874
|
+
firstname: string;
|
4875
|
+
surname: string;
|
4876
4876
|
middlename?: string | null | undefined;
|
4877
4877
|
}, {
|
4878
|
-
firstname
|
4879
|
-
surname
|
4878
|
+
firstname: string;
|
4879
|
+
surname: string;
|
4880
4880
|
middlename?: string | null | undefined;
|
4881
4881
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
4882
4882
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -5002,16 +5002,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5002
5002
|
addressLine3?: string | null | undefined;
|
5003
5003
|
postcodeOrZip?: string | null | undefined;
|
5004
5004
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5005
|
-
firstname: z.
|
5006
|
-
surname: z.
|
5005
|
+
firstname: z.ZodString;
|
5006
|
+
surname: z.ZodString;
|
5007
5007
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5008
5008
|
}, "strip", z.ZodTypeAny, {
|
5009
|
-
firstname
|
5010
|
-
surname
|
5009
|
+
firstname: string;
|
5010
|
+
surname: string;
|
5011
5011
|
middlename?: string | null | undefined;
|
5012
5012
|
}, {
|
5013
|
-
firstname
|
5014
|
-
surname
|
5013
|
+
firstname: string;
|
5014
|
+
surname: string;
|
5015
5015
|
middlename?: string | null | undefined;
|
5016
5016
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
5017
5017
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -5057,8 +5057,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5057
5057
|
street?: string | null | undefined;
|
5058
5058
|
zipCode?: string | null | undefined;
|
5059
5059
|
} | {
|
5060
|
-
firstname
|
5061
|
-
surname
|
5060
|
+
firstname: string;
|
5061
|
+
surname: string;
|
5062
5062
|
middlename?: string | null | undefined;
|
5063
5063
|
} | {
|
5064
5064
|
country: string;
|
@@ -5104,8 +5104,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5104
5104
|
street?: string | null | undefined;
|
5105
5105
|
zipCode?: string | null | undefined;
|
5106
5106
|
} | {
|
5107
|
-
firstname
|
5108
|
-
surname
|
5107
|
+
firstname: string;
|
5108
|
+
surname: string;
|
5109
5109
|
middlename?: string | null | undefined;
|
5110
5110
|
} | {
|
5111
5111
|
country: string;
|
@@ -5163,8 +5163,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5163
5163
|
street?: string | null | undefined;
|
5164
5164
|
zipCode?: string | null | undefined;
|
5165
5165
|
} | {
|
5166
|
-
firstname
|
5167
|
-
surname
|
5166
|
+
firstname: string;
|
5167
|
+
surname: string;
|
5168
5168
|
middlename?: string | null | undefined;
|
5169
5169
|
} | {
|
5170
5170
|
country: string;
|
@@ -5210,8 +5210,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5210
5210
|
street?: string | null | undefined;
|
5211
5211
|
zipCode?: string | null | undefined;
|
5212
5212
|
} | {
|
5213
|
-
firstname
|
5214
|
-
surname
|
5213
|
+
firstname: string;
|
5214
|
+
surname: string;
|
5215
5215
|
middlename?: string | null | undefined;
|
5216
5216
|
} | {
|
5217
5217
|
country: string;
|
@@ -5372,16 +5372,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5372
5372
|
addressLine3?: string | null | undefined;
|
5373
5373
|
postcodeOrZip?: string | null | undefined;
|
5374
5374
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5375
|
-
firstname: z.
|
5376
|
-
surname: z.
|
5375
|
+
firstname: z.ZodString;
|
5376
|
+
surname: z.ZodString;
|
5377
5377
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5378
5378
|
}, "strip", z.ZodTypeAny, {
|
5379
|
-
firstname
|
5380
|
-
surname
|
5379
|
+
firstname: string;
|
5380
|
+
surname: string;
|
5381
5381
|
middlename?: string | null | undefined;
|
5382
5382
|
}, {
|
5383
|
-
firstname
|
5384
|
-
surname
|
5383
|
+
firstname: string;
|
5384
|
+
surname: string;
|
5385
5385
|
middlename?: string | null | undefined;
|
5386
5386
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
5387
5387
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -5507,16 +5507,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5507
5507
|
addressLine3?: string | null | undefined;
|
5508
5508
|
postcodeOrZip?: string | null | undefined;
|
5509
5509
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5510
|
-
firstname: z.
|
5511
|
-
surname: z.
|
5510
|
+
firstname: z.ZodString;
|
5511
|
+
surname: z.ZodString;
|
5512
5512
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5513
5513
|
}, "strip", z.ZodTypeAny, {
|
5514
|
-
firstname
|
5515
|
-
surname
|
5514
|
+
firstname: string;
|
5515
|
+
surname: string;
|
5516
5516
|
middlename?: string | null | undefined;
|
5517
5517
|
}, {
|
5518
|
-
firstname
|
5519
|
-
surname
|
5518
|
+
firstname: string;
|
5519
|
+
surname: string;
|
5520
5520
|
middlename?: string | null | undefined;
|
5521
5521
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
5522
5522
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -5548,8 +5548,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5548
5548
|
street?: string | null | undefined;
|
5549
5549
|
zipCode?: string | null | undefined;
|
5550
5550
|
} | {
|
5551
|
-
firstname
|
5552
|
-
surname
|
5551
|
+
firstname: string;
|
5552
|
+
surname: string;
|
5553
5553
|
middlename?: string | null | undefined;
|
5554
5554
|
} | {
|
5555
5555
|
country: string;
|
@@ -5595,8 +5595,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5595
5595
|
street?: string | null | undefined;
|
5596
5596
|
zipCode?: string | null | undefined;
|
5597
5597
|
} | {
|
5598
|
-
firstname
|
5599
|
-
surname
|
5598
|
+
firstname: string;
|
5599
|
+
surname: string;
|
5600
5600
|
middlename?: string | null | undefined;
|
5601
5601
|
} | {
|
5602
5602
|
country: string;
|
@@ -5650,8 +5650,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5650
5650
|
street?: string | null | undefined;
|
5651
5651
|
zipCode?: string | null | undefined;
|
5652
5652
|
} | {
|
5653
|
-
firstname
|
5654
|
-
surname
|
5653
|
+
firstname: string;
|
5654
|
+
surname: string;
|
5655
5655
|
middlename?: string | null | undefined;
|
5656
5656
|
} | {
|
5657
5657
|
country: string;
|
@@ -5697,8 +5697,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5697
5697
|
street?: string | null | undefined;
|
5698
5698
|
zipCode?: string | null | undefined;
|
5699
5699
|
} | {
|
5700
|
-
firstname
|
5701
|
-
surname
|
5700
|
+
firstname: string;
|
5701
|
+
surname: string;
|
5702
5702
|
middlename?: string | null | undefined;
|
5703
5703
|
} | {
|
5704
5704
|
country: string;
|
@@ -5859,16 +5859,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5859
5859
|
addressLine3?: string | null | undefined;
|
5860
5860
|
postcodeOrZip?: string | null | undefined;
|
5861
5861
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5862
|
-
firstname: z.
|
5863
|
-
surname: z.
|
5862
|
+
firstname: z.ZodString;
|
5863
|
+
surname: z.ZodString;
|
5864
5864
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5865
5865
|
}, "strip", z.ZodTypeAny, {
|
5866
|
-
firstname
|
5867
|
-
surname
|
5866
|
+
firstname: string;
|
5867
|
+
surname: string;
|
5868
5868
|
middlename?: string | null | undefined;
|
5869
5869
|
}, {
|
5870
|
-
firstname
|
5871
|
-
surname
|
5870
|
+
firstname: string;
|
5871
|
+
surname: string;
|
5872
5872
|
middlename?: string | null | undefined;
|
5873
5873
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
5874
5874
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -5994,16 +5994,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5994
5994
|
addressLine3?: string | null | undefined;
|
5995
5995
|
postcodeOrZip?: string | null | undefined;
|
5996
5996
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5997
|
-
firstname: z.
|
5998
|
-
surname: z.
|
5997
|
+
firstname: z.ZodString;
|
5998
|
+
surname: z.ZodString;
|
5999
5999
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6000
6000
|
}, "strip", z.ZodTypeAny, {
|
6001
|
-
firstname
|
6002
|
-
surname
|
6001
|
+
firstname: string;
|
6002
|
+
surname: string;
|
6003
6003
|
middlename?: string | null | undefined;
|
6004
6004
|
}, {
|
6005
|
-
firstname
|
6006
|
-
surname
|
6005
|
+
firstname: string;
|
6006
|
+
surname: string;
|
6007
6007
|
middlename?: string | null | undefined;
|
6008
6008
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
6009
6009
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -6036,8 +6036,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6036
6036
|
street?: string | null | undefined;
|
6037
6037
|
zipCode?: string | null | undefined;
|
6038
6038
|
} | {
|
6039
|
-
firstname
|
6040
|
-
surname
|
6039
|
+
firstname: string;
|
6040
|
+
surname: string;
|
6041
6041
|
middlename?: string | null | undefined;
|
6042
6042
|
} | {
|
6043
6043
|
country: string;
|
@@ -6083,8 +6083,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6083
6083
|
street?: string | null | undefined;
|
6084
6084
|
zipCode?: string | null | undefined;
|
6085
6085
|
} | {
|
6086
|
-
firstname
|
6087
|
-
surname
|
6086
|
+
firstname: string;
|
6087
|
+
surname: string;
|
6088
6088
|
middlename?: string | null | undefined;
|
6089
6089
|
} | {
|
6090
6090
|
country: string;
|
@@ -6139,8 +6139,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6139
6139
|
street?: string | null | undefined;
|
6140
6140
|
zipCode?: string | null | undefined;
|
6141
6141
|
} | {
|
6142
|
-
firstname
|
6143
|
-
surname
|
6142
|
+
firstname: string;
|
6143
|
+
surname: string;
|
6144
6144
|
middlename?: string | null | undefined;
|
6145
6145
|
} | {
|
6146
6146
|
country: string;
|
@@ -6186,8 +6186,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6186
6186
|
street?: string | null | undefined;
|
6187
6187
|
zipCode?: string | null | undefined;
|
6188
6188
|
} | {
|
6189
|
-
firstname
|
6190
|
-
surname
|
6189
|
+
firstname: string;
|
6190
|
+
surname: string;
|
6191
6191
|
middlename?: string | null | undefined;
|
6192
6192
|
} | {
|
6193
6193
|
country: string;
|
@@ -6349,16 +6349,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6349
6349
|
addressLine3?: string | null | undefined;
|
6350
6350
|
postcodeOrZip?: string | null | undefined;
|
6351
6351
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6352
|
-
firstname: z.
|
6353
|
-
surname: z.
|
6352
|
+
firstname: z.ZodString;
|
6353
|
+
surname: z.ZodString;
|
6354
6354
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6355
6355
|
}, "strip", z.ZodTypeAny, {
|
6356
|
-
firstname
|
6357
|
-
surname
|
6356
|
+
firstname: string;
|
6357
|
+
surname: string;
|
6358
6358
|
middlename?: string | null | undefined;
|
6359
6359
|
}, {
|
6360
|
-
firstname
|
6361
|
-
surname
|
6360
|
+
firstname: string;
|
6361
|
+
surname: string;
|
6362
6362
|
middlename?: string | null | undefined;
|
6363
6363
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
6364
6364
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -6484,16 +6484,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6484
6484
|
addressLine3?: string | null | undefined;
|
6485
6485
|
postcodeOrZip?: string | null | undefined;
|
6486
6486
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6487
|
-
firstname: z.
|
6488
|
-
surname: z.
|
6487
|
+
firstname: z.ZodString;
|
6488
|
+
surname: z.ZodString;
|
6489
6489
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6490
6490
|
}, "strip", z.ZodTypeAny, {
|
6491
|
-
firstname
|
6492
|
-
surname
|
6491
|
+
firstname: string;
|
6492
|
+
surname: string;
|
6493
6493
|
middlename?: string | null | undefined;
|
6494
6494
|
}, {
|
6495
|
-
firstname
|
6496
|
-
surname
|
6495
|
+
firstname: string;
|
6496
|
+
surname: string;
|
6497
6497
|
middlename?: string | null | undefined;
|
6498
6498
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
6499
6499
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -6525,8 +6525,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6525
6525
|
street?: string | null | undefined;
|
6526
6526
|
zipCode?: string | null | undefined;
|
6527
6527
|
} | {
|
6528
|
-
firstname
|
6529
|
-
surname
|
6528
|
+
firstname: string;
|
6529
|
+
surname: string;
|
6530
6530
|
middlename?: string | null | undefined;
|
6531
6531
|
} | {
|
6532
6532
|
country: string;
|
@@ -6572,8 +6572,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6572
6572
|
street?: string | null | undefined;
|
6573
6573
|
zipCode?: string | null | undefined;
|
6574
6574
|
} | {
|
6575
|
-
firstname
|
6576
|
-
surname
|
6575
|
+
firstname: string;
|
6576
|
+
surname: string;
|
6577
6577
|
middlename?: string | null | undefined;
|
6578
6578
|
} | {
|
6579
6579
|
country: string;
|
@@ -6627,8 +6627,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6627
6627
|
street?: string | null | undefined;
|
6628
6628
|
zipCode?: string | null | undefined;
|
6629
6629
|
} | {
|
6630
|
-
firstname
|
6631
|
-
surname
|
6630
|
+
firstname: string;
|
6631
|
+
surname: string;
|
6632
6632
|
middlename?: string | null | undefined;
|
6633
6633
|
} | {
|
6634
6634
|
country: string;
|
@@ -6674,8 +6674,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6674
6674
|
street?: string | null | undefined;
|
6675
6675
|
zipCode?: string | null | undefined;
|
6676
6676
|
} | {
|
6677
|
-
firstname
|
6678
|
-
surname
|
6677
|
+
firstname: string;
|
6678
|
+
surname: string;
|
6679
6679
|
middlename?: string | null | undefined;
|
6680
6680
|
} | {
|
6681
6681
|
country: string;
|
@@ -6836,16 +6836,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6836
6836
|
addressLine3?: string | null | undefined;
|
6837
6837
|
postcodeOrZip?: string | null | undefined;
|
6838
6838
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6839
|
-
firstname: z.
|
6840
|
-
surname: z.
|
6839
|
+
firstname: z.ZodString;
|
6840
|
+
surname: z.ZodString;
|
6841
6841
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6842
6842
|
}, "strip", z.ZodTypeAny, {
|
6843
|
-
firstname
|
6844
|
-
surname
|
6843
|
+
firstname: string;
|
6844
|
+
surname: string;
|
6845
6845
|
middlename?: string | null | undefined;
|
6846
6846
|
}, {
|
6847
|
-
firstname
|
6848
|
-
surname
|
6847
|
+
firstname: string;
|
6848
|
+
surname: string;
|
6849
6849
|
middlename?: string | null | undefined;
|
6850
6850
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
6851
6851
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -6971,16 +6971,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6971
6971
|
addressLine3?: string | null | undefined;
|
6972
6972
|
postcodeOrZip?: string | null | undefined;
|
6973
6973
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6974
|
-
firstname: z.
|
6975
|
-
surname: z.
|
6974
|
+
firstname: z.ZodString;
|
6975
|
+
surname: z.ZodString;
|
6976
6976
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6977
6977
|
}, "strip", z.ZodTypeAny, {
|
6978
|
-
firstname
|
6979
|
-
surname
|
6978
|
+
firstname: string;
|
6979
|
+
surname: string;
|
6980
6980
|
middlename?: string | null | undefined;
|
6981
6981
|
}, {
|
6982
|
-
firstname
|
6983
|
-
surname
|
6982
|
+
firstname: string;
|
6983
|
+
surname: string;
|
6984
6984
|
middlename?: string | null | undefined;
|
6985
6985
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
6986
6986
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -7013,8 +7013,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7013
7013
|
street?: string | null | undefined;
|
7014
7014
|
zipCode?: string | null | undefined;
|
7015
7015
|
} | {
|
7016
|
-
firstname
|
7017
|
-
surname
|
7016
|
+
firstname: string;
|
7017
|
+
surname: string;
|
7018
7018
|
middlename?: string | null | undefined;
|
7019
7019
|
} | {
|
7020
7020
|
country: string;
|
@@ -7061,8 +7061,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7061
7061
|
street?: string | null | undefined;
|
7062
7062
|
zipCode?: string | null | undefined;
|
7063
7063
|
} | {
|
7064
|
-
firstname
|
7065
|
-
surname
|
7064
|
+
firstname: string;
|
7065
|
+
surname: string;
|
7066
7066
|
middlename?: string | null | undefined;
|
7067
7067
|
} | {
|
7068
7068
|
country: string;
|
@@ -7116,8 +7116,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7116
7116
|
street?: string | null | undefined;
|
7117
7117
|
zipCode?: string | null | undefined;
|
7118
7118
|
} | {
|
7119
|
-
firstname
|
7120
|
-
surname
|
7119
|
+
firstname: string;
|
7120
|
+
surname: string;
|
7121
7121
|
middlename?: string | null | undefined;
|
7122
7122
|
} | {
|
7123
7123
|
country: string;
|
@@ -7164,8 +7164,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7164
7164
|
street?: string | null | undefined;
|
7165
7165
|
zipCode?: string | null | undefined;
|
7166
7166
|
} | {
|
7167
|
-
firstname
|
7168
|
-
surname
|
7167
|
+
firstname: string;
|
7168
|
+
surname: string;
|
7169
7169
|
middlename?: string | null | undefined;
|
7170
7170
|
} | {
|
7171
7171
|
country: string;
|
@@ -7326,16 +7326,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7326
7326
|
addressLine3?: string | null | undefined;
|
7327
7327
|
postcodeOrZip?: string | null | undefined;
|
7328
7328
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7329
|
-
firstname: z.
|
7330
|
-
surname: z.
|
7329
|
+
firstname: z.ZodString;
|
7330
|
+
surname: z.ZodString;
|
7331
7331
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7332
7332
|
}, "strip", z.ZodTypeAny, {
|
7333
|
-
firstname
|
7334
|
-
surname
|
7333
|
+
firstname: string;
|
7334
|
+
surname: string;
|
7335
7335
|
middlename?: string | null | undefined;
|
7336
7336
|
}, {
|
7337
|
-
firstname
|
7338
|
-
surname
|
7337
|
+
firstname: string;
|
7338
|
+
surname: string;
|
7339
7339
|
middlename?: string | null | undefined;
|
7340
7340
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
7341
7341
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -7461,16 +7461,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7461
7461
|
addressLine3?: string | null | undefined;
|
7462
7462
|
postcodeOrZip?: string | null | undefined;
|
7463
7463
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7464
|
-
firstname: z.
|
7465
|
-
surname: z.
|
7464
|
+
firstname: z.ZodString;
|
7465
|
+
surname: z.ZodString;
|
7466
7466
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7467
7467
|
}, "strip", z.ZodTypeAny, {
|
7468
|
-
firstname
|
7469
|
-
surname
|
7468
|
+
firstname: string;
|
7469
|
+
surname: string;
|
7470
7470
|
middlename?: string | null | undefined;
|
7471
7471
|
}, {
|
7472
|
-
firstname
|
7473
|
-
surname
|
7472
|
+
firstname: string;
|
7473
|
+
surname: string;
|
7474
7474
|
middlename?: string | null | undefined;
|
7475
7475
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
7476
7476
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -7502,8 +7502,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7502
7502
|
street?: string | null | undefined;
|
7503
7503
|
zipCode?: string | null | undefined;
|
7504
7504
|
} | {
|
7505
|
-
firstname
|
7506
|
-
surname
|
7505
|
+
firstname: string;
|
7506
|
+
surname: string;
|
7507
7507
|
middlename?: string | null | undefined;
|
7508
7508
|
} | {
|
7509
7509
|
country: string;
|
@@ -7549,8 +7549,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7549
7549
|
street?: string | null | undefined;
|
7550
7550
|
zipCode?: string | null | undefined;
|
7551
7551
|
} | {
|
7552
|
-
firstname
|
7553
|
-
surname
|
7552
|
+
firstname: string;
|
7553
|
+
surname: string;
|
7554
7554
|
middlename?: string | null | undefined;
|
7555
7555
|
} | {
|
7556
7556
|
country: string;
|
@@ -7604,8 +7604,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7604
7604
|
street?: string | null | undefined;
|
7605
7605
|
zipCode?: string | null | undefined;
|
7606
7606
|
} | {
|
7607
|
-
firstname
|
7608
|
-
surname
|
7607
|
+
firstname: string;
|
7608
|
+
surname: string;
|
7609
7609
|
middlename?: string | null | undefined;
|
7610
7610
|
} | {
|
7611
7611
|
country: string;
|
@@ -7651,8 +7651,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7651
7651
|
street?: string | null | undefined;
|
7652
7652
|
zipCode?: string | null | undefined;
|
7653
7653
|
} | {
|
7654
|
-
firstname
|
7655
|
-
surname
|
7654
|
+
firstname: string;
|
7655
|
+
surname: string;
|
7656
7656
|
middlename?: string | null | undefined;
|
7657
7657
|
} | {
|
7658
7658
|
country: string;
|
@@ -7813,16 +7813,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7813
7813
|
addressLine3?: string | null | undefined;
|
7814
7814
|
postcodeOrZip?: string | null | undefined;
|
7815
7815
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7816
|
-
firstname: z.
|
7817
|
-
surname: z.
|
7816
|
+
firstname: z.ZodString;
|
7817
|
+
surname: z.ZodString;
|
7818
7818
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7819
7819
|
}, "strip", z.ZodTypeAny, {
|
7820
|
-
firstname
|
7821
|
-
surname
|
7820
|
+
firstname: string;
|
7821
|
+
surname: string;
|
7822
7822
|
middlename?: string | null | undefined;
|
7823
7823
|
}, {
|
7824
|
-
firstname
|
7825
|
-
surname
|
7824
|
+
firstname: string;
|
7825
|
+
surname: string;
|
7826
7826
|
middlename?: string | null | undefined;
|
7827
7827
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
7828
7828
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -7948,16 +7948,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7948
7948
|
addressLine3?: string | null | undefined;
|
7949
7949
|
postcodeOrZip?: string | null | undefined;
|
7950
7950
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7951
|
-
firstname: z.
|
7952
|
-
surname: z.
|
7951
|
+
firstname: z.ZodString;
|
7952
|
+
surname: z.ZodString;
|
7953
7953
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7954
7954
|
}, "strip", z.ZodTypeAny, {
|
7955
|
-
firstname
|
7956
|
-
surname
|
7955
|
+
firstname: string;
|
7956
|
+
surname: string;
|
7957
7957
|
middlename?: string | null | undefined;
|
7958
7958
|
}, {
|
7959
|
-
firstname
|
7960
|
-
surname
|
7959
|
+
firstname: string;
|
7960
|
+
surname: string;
|
7961
7961
|
middlename?: string | null | undefined;
|
7962
7962
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
7963
7963
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -7990,8 +7990,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7990
7990
|
street?: string | null | undefined;
|
7991
7991
|
zipCode?: string | null | undefined;
|
7992
7992
|
} | {
|
7993
|
-
firstname
|
7994
|
-
surname
|
7993
|
+
firstname: string;
|
7994
|
+
surname: string;
|
7995
7995
|
middlename?: string | null | undefined;
|
7996
7996
|
} | {
|
7997
7997
|
country: string;
|
@@ -8038,8 +8038,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8038
8038
|
street?: string | null | undefined;
|
8039
8039
|
zipCode?: string | null | undefined;
|
8040
8040
|
} | {
|
8041
|
-
firstname
|
8042
|
-
surname
|
8041
|
+
firstname: string;
|
8042
|
+
surname: string;
|
8043
8043
|
middlename?: string | null | undefined;
|
8044
8044
|
} | {
|
8045
8045
|
country: string;
|
@@ -8093,8 +8093,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8093
8093
|
street?: string | null | undefined;
|
8094
8094
|
zipCode?: string | null | undefined;
|
8095
8095
|
} | {
|
8096
|
-
firstname
|
8097
|
-
surname
|
8096
|
+
firstname: string;
|
8097
|
+
surname: string;
|
8098
8098
|
middlename?: string | null | undefined;
|
8099
8099
|
} | {
|
8100
8100
|
country: string;
|
@@ -8141,8 +8141,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8141
8141
|
street?: string | null | undefined;
|
8142
8142
|
zipCode?: string | null | undefined;
|
8143
8143
|
} | {
|
8144
|
-
firstname
|
8145
|
-
surname
|
8144
|
+
firstname: string;
|
8145
|
+
surname: string;
|
8146
8146
|
middlename?: string | null | undefined;
|
8147
8147
|
} | {
|
8148
8148
|
country: string;
|
@@ -8303,16 +8303,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8303
8303
|
addressLine3?: string | null | undefined;
|
8304
8304
|
postcodeOrZip?: string | null | undefined;
|
8305
8305
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8306
|
-
firstname: z.
|
8307
|
-
surname: z.
|
8306
|
+
firstname: z.ZodString;
|
8307
|
+
surname: z.ZodString;
|
8308
8308
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8309
8309
|
}, "strip", z.ZodTypeAny, {
|
8310
|
-
firstname
|
8311
|
-
surname
|
8310
|
+
firstname: string;
|
8311
|
+
surname: string;
|
8312
8312
|
middlename?: string | null | undefined;
|
8313
8313
|
}, {
|
8314
|
-
firstname
|
8315
|
-
surname
|
8314
|
+
firstname: string;
|
8315
|
+
surname: string;
|
8316
8316
|
middlename?: string | null | undefined;
|
8317
8317
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
8318
8318
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -8438,16 +8438,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8438
8438
|
addressLine3?: string | null | undefined;
|
8439
8439
|
postcodeOrZip?: string | null | undefined;
|
8440
8440
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8441
|
-
firstname: z.
|
8442
|
-
surname: z.
|
8441
|
+
firstname: z.ZodString;
|
8442
|
+
surname: z.ZodString;
|
8443
8443
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8444
8444
|
}, "strip", z.ZodTypeAny, {
|
8445
|
-
firstname
|
8446
|
-
surname
|
8445
|
+
firstname: string;
|
8446
|
+
surname: string;
|
8447
8447
|
middlename?: string | null | undefined;
|
8448
8448
|
}, {
|
8449
|
-
firstname
|
8450
|
-
surname
|
8449
|
+
firstname: string;
|
8450
|
+
surname: string;
|
8451
8451
|
middlename?: string | null | undefined;
|
8452
8452
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
8453
8453
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -8494,8 +8494,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8494
8494
|
street?: string | null | undefined;
|
8495
8495
|
zipCode?: string | null | undefined;
|
8496
8496
|
} | {
|
8497
|
-
firstname
|
8498
|
-
surname
|
8497
|
+
firstname: string;
|
8498
|
+
surname: string;
|
8499
8499
|
middlename?: string | null | undefined;
|
8500
8500
|
} | {
|
8501
8501
|
country: string;
|
@@ -8542,8 +8542,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8542
8542
|
street?: string | null | undefined;
|
8543
8543
|
zipCode?: string | null | undefined;
|
8544
8544
|
} | {
|
8545
|
-
firstname
|
8546
|
-
surname
|
8545
|
+
firstname: string;
|
8546
|
+
surname: string;
|
8547
8547
|
middlename?: string | null | undefined;
|
8548
8548
|
} | {
|
8549
8549
|
country: string;
|
@@ -8601,8 +8601,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8601
8601
|
street?: string | null | undefined;
|
8602
8602
|
zipCode?: string | null | undefined;
|
8603
8603
|
} | {
|
8604
|
-
firstname
|
8605
|
-
surname
|
8604
|
+
firstname: string;
|
8605
|
+
surname: string;
|
8606
8606
|
middlename?: string | null | undefined;
|
8607
8607
|
} | {
|
8608
8608
|
country: string;
|
@@ -8649,8 +8649,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8649
8649
|
street?: string | null | undefined;
|
8650
8650
|
zipCode?: string | null | undefined;
|
8651
8651
|
} | {
|
8652
|
-
firstname
|
8653
|
-
surname
|
8652
|
+
firstname: string;
|
8653
|
+
surname: string;
|
8654
8654
|
middlename?: string | null | undefined;
|
8655
8655
|
} | {
|
8656
8656
|
country: string;
|
@@ -8811,16 +8811,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8811
8811
|
addressLine3?: string | null | undefined;
|
8812
8812
|
postcodeOrZip?: string | null | undefined;
|
8813
8813
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8814
|
-
firstname: z.
|
8815
|
-
surname: z.
|
8814
|
+
firstname: z.ZodString;
|
8815
|
+
surname: z.ZodString;
|
8816
8816
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8817
8817
|
}, "strip", z.ZodTypeAny, {
|
8818
|
-
firstname
|
8819
|
-
surname
|
8818
|
+
firstname: string;
|
8819
|
+
surname: string;
|
8820
8820
|
middlename?: string | null | undefined;
|
8821
8821
|
}, {
|
8822
|
-
firstname
|
8823
|
-
surname
|
8822
|
+
firstname: string;
|
8823
|
+
surname: string;
|
8824
8824
|
middlename?: string | null | undefined;
|
8825
8825
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
8826
8826
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -8946,16 +8946,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8946
8946
|
addressLine3?: string | null | undefined;
|
8947
8947
|
postcodeOrZip?: string | null | undefined;
|
8948
8948
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8949
|
-
firstname: z.
|
8950
|
-
surname: z.
|
8949
|
+
firstname: z.ZodString;
|
8950
|
+
surname: z.ZodString;
|
8951
8951
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8952
8952
|
}, "strip", z.ZodTypeAny, {
|
8953
|
-
firstname
|
8954
|
-
surname
|
8953
|
+
firstname: string;
|
8954
|
+
surname: string;
|
8955
8955
|
middlename?: string | null | undefined;
|
8956
8956
|
}, {
|
8957
|
-
firstname
|
8958
|
-
surname
|
8957
|
+
firstname: string;
|
8958
|
+
surname: string;
|
8959
8959
|
middlename?: string | null | undefined;
|
8960
8960
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
8961
8961
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -8987,8 +8987,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8987
8987
|
street?: string | null | undefined;
|
8988
8988
|
zipCode?: string | null | undefined;
|
8989
8989
|
} | {
|
8990
|
-
firstname
|
8991
|
-
surname
|
8990
|
+
firstname: string;
|
8991
|
+
surname: string;
|
8992
8992
|
middlename?: string | null | undefined;
|
8993
8993
|
} | {
|
8994
8994
|
country: string;
|
@@ -9034,8 +9034,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9034
9034
|
street?: string | null | undefined;
|
9035
9035
|
zipCode?: string | null | undefined;
|
9036
9036
|
} | {
|
9037
|
-
firstname
|
9038
|
-
surname
|
9037
|
+
firstname: string;
|
9038
|
+
surname: string;
|
9039
9039
|
middlename?: string | null | undefined;
|
9040
9040
|
} | {
|
9041
9041
|
country: string;
|
@@ -9089,8 +9089,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9089
9089
|
street?: string | null | undefined;
|
9090
9090
|
zipCode?: string | null | undefined;
|
9091
9091
|
} | {
|
9092
|
-
firstname
|
9093
|
-
surname
|
9092
|
+
firstname: string;
|
9093
|
+
surname: string;
|
9094
9094
|
middlename?: string | null | undefined;
|
9095
9095
|
} | {
|
9096
9096
|
country: string;
|
@@ -9136,8 +9136,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9136
9136
|
street?: string | null | undefined;
|
9137
9137
|
zipCode?: string | null | undefined;
|
9138
9138
|
} | {
|
9139
|
-
firstname
|
9140
|
-
surname
|
9139
|
+
firstname: string;
|
9140
|
+
surname: string;
|
9141
9141
|
middlename?: string | null | undefined;
|
9142
9142
|
} | {
|
9143
9143
|
country: string;
|
@@ -9298,16 +9298,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9298
9298
|
addressLine3?: string | null | undefined;
|
9299
9299
|
postcodeOrZip?: string | null | undefined;
|
9300
9300
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9301
|
-
firstname: z.
|
9302
|
-
surname: z.
|
9301
|
+
firstname: z.ZodString;
|
9302
|
+
surname: z.ZodString;
|
9303
9303
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9304
9304
|
}, "strip", z.ZodTypeAny, {
|
9305
|
-
firstname
|
9306
|
-
surname
|
9305
|
+
firstname: string;
|
9306
|
+
surname: string;
|
9307
9307
|
middlename?: string | null | undefined;
|
9308
9308
|
}, {
|
9309
|
-
firstname
|
9310
|
-
surname
|
9309
|
+
firstname: string;
|
9310
|
+
surname: string;
|
9311
9311
|
middlename?: string | null | undefined;
|
9312
9312
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
9313
9313
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -9433,16 +9433,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9433
9433
|
addressLine3?: string | null | undefined;
|
9434
9434
|
postcodeOrZip?: string | null | undefined;
|
9435
9435
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9436
|
-
firstname: z.
|
9437
|
-
surname: z.
|
9436
|
+
firstname: z.ZodString;
|
9437
|
+
surname: z.ZodString;
|
9438
9438
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9439
9439
|
}, "strip", z.ZodTypeAny, {
|
9440
|
-
firstname
|
9441
|
-
surname
|
9440
|
+
firstname: string;
|
9441
|
+
surname: string;
|
9442
9442
|
middlename?: string | null | undefined;
|
9443
9443
|
}, {
|
9444
|
-
firstname
|
9445
|
-
surname
|
9444
|
+
firstname: string;
|
9445
|
+
surname: string;
|
9446
9446
|
middlename?: string | null | undefined;
|
9447
9447
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
9448
9448
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -9481,8 +9481,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9481
9481
|
street?: string | null | undefined;
|
9482
9482
|
zipCode?: string | null | undefined;
|
9483
9483
|
} | {
|
9484
|
-
firstname
|
9485
|
-
surname
|
9484
|
+
firstname: string;
|
9485
|
+
surname: string;
|
9486
9486
|
middlename?: string | null | undefined;
|
9487
9487
|
} | {
|
9488
9488
|
country: string;
|
@@ -9531,8 +9531,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9531
9531
|
street?: string | null | undefined;
|
9532
9532
|
zipCode?: string | null | undefined;
|
9533
9533
|
} | {
|
9534
|
-
firstname
|
9535
|
-
surname
|
9534
|
+
firstname: string;
|
9535
|
+
surname: string;
|
9536
9536
|
middlename?: string | null | undefined;
|
9537
9537
|
} | {
|
9538
9538
|
country: string;
|
@@ -9586,8 +9586,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9586
9586
|
street?: string | null | undefined;
|
9587
9587
|
zipCode?: string | null | undefined;
|
9588
9588
|
} | {
|
9589
|
-
firstname
|
9590
|
-
surname
|
9589
|
+
firstname: string;
|
9590
|
+
surname: string;
|
9591
9591
|
middlename?: string | null | undefined;
|
9592
9592
|
} | {
|
9593
9593
|
country: string;
|
@@ -9636,8 +9636,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9636
9636
|
street?: string | null | undefined;
|
9637
9637
|
zipCode?: string | null | undefined;
|
9638
9638
|
} | {
|
9639
|
-
firstname
|
9640
|
-
surname
|
9639
|
+
firstname: string;
|
9640
|
+
surname: string;
|
9641
9641
|
middlename?: string | null | undefined;
|
9642
9642
|
} | {
|
9643
9643
|
country: string;
|
@@ -9798,16 +9798,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9798
9798
|
addressLine3?: string | null | undefined;
|
9799
9799
|
postcodeOrZip?: string | null | undefined;
|
9800
9800
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9801
|
-
firstname: z.
|
9802
|
-
surname: z.
|
9801
|
+
firstname: z.ZodString;
|
9802
|
+
surname: z.ZodString;
|
9803
9803
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9804
9804
|
}, "strip", z.ZodTypeAny, {
|
9805
|
-
firstname
|
9806
|
-
surname
|
9805
|
+
firstname: string;
|
9806
|
+
surname: string;
|
9807
9807
|
middlename?: string | null | undefined;
|
9808
9808
|
}, {
|
9809
|
-
firstname
|
9810
|
-
surname
|
9809
|
+
firstname: string;
|
9810
|
+
surname: string;
|
9811
9811
|
middlename?: string | null | undefined;
|
9812
9812
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
9813
9813
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -9933,16 +9933,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9933
9933
|
addressLine3?: string | null | undefined;
|
9934
9934
|
postcodeOrZip?: string | null | undefined;
|
9935
9935
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9936
|
-
firstname: z.
|
9937
|
-
surname: z.
|
9936
|
+
firstname: z.ZodString;
|
9937
|
+
surname: z.ZodString;
|
9938
9938
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9939
9939
|
}, "strip", z.ZodTypeAny, {
|
9940
|
-
firstname
|
9941
|
-
surname
|
9940
|
+
firstname: string;
|
9941
|
+
surname: string;
|
9942
9942
|
middlename?: string | null | undefined;
|
9943
9943
|
}, {
|
9944
|
-
firstname
|
9945
|
-
surname
|
9944
|
+
firstname: string;
|
9945
|
+
surname: string;
|
9946
9946
|
middlename?: string | null | undefined;
|
9947
9947
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
9948
9948
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -9974,8 +9974,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9974
9974
|
street?: string | null | undefined;
|
9975
9975
|
zipCode?: string | null | undefined;
|
9976
9976
|
} | {
|
9977
|
-
firstname
|
9978
|
-
surname
|
9977
|
+
firstname: string;
|
9978
|
+
surname: string;
|
9979
9979
|
middlename?: string | null | undefined;
|
9980
9980
|
} | {
|
9981
9981
|
country: string;
|
@@ -10021,8 +10021,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
10021
10021
|
street?: string | null | undefined;
|
10022
10022
|
zipCode?: string | null | undefined;
|
10023
10023
|
} | {
|
10024
|
-
firstname
|
10025
|
-
surname
|
10024
|
+
firstname: string;
|
10025
|
+
surname: string;
|
10026
10026
|
middlename?: string | null | undefined;
|
10027
10027
|
} | {
|
10028
10028
|
country: string;
|
@@ -10076,8 +10076,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
10076
10076
|
street?: string | null | undefined;
|
10077
10077
|
zipCode?: string | null | undefined;
|
10078
10078
|
} | {
|
10079
|
-
firstname
|
10080
|
-
surname
|
10079
|
+
firstname: string;
|
10080
|
+
surname: string;
|
10081
10081
|
middlename?: string | null | undefined;
|
10082
10082
|
} | {
|
10083
10083
|
country: string;
|
@@ -10123,8 +10123,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
10123
10123
|
street?: string | null | undefined;
|
10124
10124
|
zipCode?: string | null | undefined;
|
10125
10125
|
} | {
|
10126
|
-
firstname
|
10127
|
-
surname
|
10126
|
+
firstname: string;
|
10127
|
+
surname: string;
|
10128
10128
|
middlename?: string | null | undefined;
|
10129
10129
|
} | {
|
10130
10130
|
country: string;
|
@@ -10287,16 +10287,16 @@ export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendS
|
|
10287
10287
|
addressLine3?: string | null | undefined;
|
10288
10288
|
postcodeOrZip?: string | null | undefined;
|
10289
10289
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10290
|
-
firstname: z.
|
10291
|
-
surname: z.
|
10290
|
+
firstname: z.ZodString;
|
10291
|
+
surname: z.ZodString;
|
10292
10292
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10293
10293
|
}, "strip", z.ZodTypeAny, {
|
10294
|
-
firstname
|
10295
|
-
surname
|
10294
|
+
firstname: string;
|
10295
|
+
surname: string;
|
10296
10296
|
middlename?: string | null | undefined;
|
10297
10297
|
}, {
|
10298
|
-
firstname
|
10299
|
-
surname
|
10298
|
+
firstname: string;
|
10299
|
+
surname: string;
|
10300
10300
|
middlename?: string | null | undefined;
|
10301
10301
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
10302
10302
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -10422,16 +10422,16 @@ export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendS
|
|
10422
10422
|
addressLine3?: string | null | undefined;
|
10423
10423
|
postcodeOrZip?: string | null | undefined;
|
10424
10424
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10425
|
-
firstname: z.
|
10426
|
-
surname: z.
|
10425
|
+
firstname: z.ZodString;
|
10426
|
+
surname: z.ZodString;
|
10427
10427
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10428
10428
|
}, "strip", z.ZodTypeAny, {
|
10429
|
-
firstname
|
10430
|
-
surname
|
10429
|
+
firstname: string;
|
10430
|
+
surname: string;
|
10431
10431
|
middlename?: string | null | undefined;
|
10432
10432
|
}, {
|
10433
|
-
firstname
|
10434
|
-
surname
|
10433
|
+
firstname: string;
|
10434
|
+
surname: string;
|
10435
10435
|
middlename?: string | null | undefined;
|
10436
10436
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
10437
10437
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -10597,16 +10597,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10597
10597
|
addressLine3?: string | null | undefined;
|
10598
10598
|
postcodeOrZip?: string | null | undefined;
|
10599
10599
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10600
|
-
firstname: z.
|
10601
|
-
surname: z.
|
10600
|
+
firstname: z.ZodString;
|
10601
|
+
surname: z.ZodString;
|
10602
10602
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10603
10603
|
}, "strip", z.ZodTypeAny, {
|
10604
|
-
firstname
|
10605
|
-
surname
|
10604
|
+
firstname: string;
|
10605
|
+
surname: string;
|
10606
10606
|
middlename?: string | null | undefined;
|
10607
10607
|
}, {
|
10608
|
-
firstname
|
10609
|
-
surname
|
10608
|
+
firstname: string;
|
10609
|
+
surname: string;
|
10610
10610
|
middlename?: string | null | undefined;
|
10611
10611
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
10612
10612
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -10732,16 +10732,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10732
10732
|
addressLine3?: string | null | undefined;
|
10733
10733
|
postcodeOrZip?: string | null | undefined;
|
10734
10734
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10735
|
-
firstname: z.
|
10736
|
-
surname: z.
|
10735
|
+
firstname: z.ZodString;
|
10736
|
+
surname: z.ZodString;
|
10737
10737
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10738
10738
|
}, "strip", z.ZodTypeAny, {
|
10739
|
-
firstname
|
10740
|
-
surname
|
10739
|
+
firstname: string;
|
10740
|
+
surname: string;
|
10741
10741
|
middlename?: string | null | undefined;
|
10742
10742
|
}, {
|
10743
|
-
firstname
|
10744
|
-
surname
|
10743
|
+
firstname: string;
|
10744
|
+
surname: string;
|
10745
10745
|
middlename?: string | null | undefined;
|
10746
10746
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
10747
10747
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -10773,8 +10773,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10773
10773
|
street?: string | null | undefined;
|
10774
10774
|
zipCode?: string | null | undefined;
|
10775
10775
|
} | {
|
10776
|
-
firstname
|
10777
|
-
surname
|
10776
|
+
firstname: string;
|
10777
|
+
surname: string;
|
10778
10778
|
middlename?: string | null | undefined;
|
10779
10779
|
} | {
|
10780
10780
|
country: string;
|
@@ -10820,8 +10820,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10820
10820
|
street?: string | null | undefined;
|
10821
10821
|
zipCode?: string | null | undefined;
|
10822
10822
|
} | {
|
10823
|
-
firstname
|
10824
|
-
surname
|
10823
|
+
firstname: string;
|
10824
|
+
surname: string;
|
10825
10825
|
middlename?: string | null | undefined;
|
10826
10826
|
} | {
|
10827
10827
|
country: string;
|
@@ -10875,8 +10875,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10875
10875
|
street?: string | null | undefined;
|
10876
10876
|
zipCode?: string | null | undefined;
|
10877
10877
|
} | {
|
10878
|
-
firstname
|
10879
|
-
surname
|
10878
|
+
firstname: string;
|
10879
|
+
surname: string;
|
10880
10880
|
middlename?: string | null | undefined;
|
10881
10881
|
} | {
|
10882
10882
|
country: string;
|
@@ -10922,8 +10922,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10922
10922
|
street?: string | null | undefined;
|
10923
10923
|
zipCode?: string | null | undefined;
|
10924
10924
|
} | {
|
10925
|
-
firstname
|
10926
|
-
surname
|
10925
|
+
firstname: string;
|
10926
|
+
surname: string;
|
10927
10927
|
middlename?: string | null | undefined;
|
10928
10928
|
} | {
|
10929
10929
|
country: string;
|
@@ -11084,16 +11084,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11084
11084
|
addressLine3?: string | null | undefined;
|
11085
11085
|
postcodeOrZip?: string | null | undefined;
|
11086
11086
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11087
|
-
firstname: z.
|
11088
|
-
surname: z.
|
11087
|
+
firstname: z.ZodString;
|
11088
|
+
surname: z.ZodString;
|
11089
11089
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11090
11090
|
}, "strip", z.ZodTypeAny, {
|
11091
|
-
firstname
|
11092
|
-
surname
|
11091
|
+
firstname: string;
|
11092
|
+
surname: string;
|
11093
11093
|
middlename?: string | null | undefined;
|
11094
11094
|
}, {
|
11095
|
-
firstname
|
11096
|
-
surname
|
11095
|
+
firstname: string;
|
11096
|
+
surname: string;
|
11097
11097
|
middlename?: string | null | undefined;
|
11098
11098
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
11099
11099
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -11219,16 +11219,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11219
11219
|
addressLine3?: string | null | undefined;
|
11220
11220
|
postcodeOrZip?: string | null | undefined;
|
11221
11221
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11222
|
-
firstname: z.
|
11223
|
-
surname: z.
|
11222
|
+
firstname: z.ZodString;
|
11223
|
+
surname: z.ZodString;
|
11224
11224
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11225
11225
|
}, "strip", z.ZodTypeAny, {
|
11226
|
-
firstname
|
11227
|
-
surname
|
11226
|
+
firstname: string;
|
11227
|
+
surname: string;
|
11228
11228
|
middlename?: string | null | undefined;
|
11229
11229
|
}, {
|
11230
|
-
firstname
|
11231
|
-
surname
|
11230
|
+
firstname: string;
|
11231
|
+
surname: string;
|
11232
11232
|
middlename?: string | null | undefined;
|
11233
11233
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
11234
11234
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -11260,8 +11260,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11260
11260
|
street?: string | null | undefined;
|
11261
11261
|
zipCode?: string | null | undefined;
|
11262
11262
|
} | {
|
11263
|
-
firstname
|
11264
|
-
surname
|
11263
|
+
firstname: string;
|
11264
|
+
surname: string;
|
11265
11265
|
middlename?: string | null | undefined;
|
11266
11266
|
} | {
|
11267
11267
|
country: string;
|
@@ -11307,8 +11307,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11307
11307
|
street?: string | null | undefined;
|
11308
11308
|
zipCode?: string | null | undefined;
|
11309
11309
|
} | {
|
11310
|
-
firstname
|
11311
|
-
surname
|
11310
|
+
firstname: string;
|
11311
|
+
surname: string;
|
11312
11312
|
middlename?: string | null | undefined;
|
11313
11313
|
} | {
|
11314
11314
|
country: string;
|
@@ -11362,8 +11362,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11362
11362
|
street?: string | null | undefined;
|
11363
11363
|
zipCode?: string | null | undefined;
|
11364
11364
|
} | {
|
11365
|
-
firstname
|
11366
|
-
surname
|
11365
|
+
firstname: string;
|
11366
|
+
surname: string;
|
11367
11367
|
middlename?: string | null | undefined;
|
11368
11368
|
} | {
|
11369
11369
|
country: string;
|
@@ -11409,8 +11409,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11409
11409
|
street?: string | null | undefined;
|
11410
11410
|
zipCode?: string | null | undefined;
|
11411
11411
|
} | {
|
11412
|
-
firstname
|
11413
|
-
surname
|
11412
|
+
firstname: string;
|
11413
|
+
surname: string;
|
11414
11414
|
middlename?: string | null | undefined;
|
11415
11415
|
} | {
|
11416
11416
|
country: string;
|
@@ -11571,16 +11571,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11571
11571
|
addressLine3?: string | null | undefined;
|
11572
11572
|
postcodeOrZip?: string | null | undefined;
|
11573
11573
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11574
|
-
firstname: z.
|
11575
|
-
surname: z.
|
11574
|
+
firstname: z.ZodString;
|
11575
|
+
surname: z.ZodString;
|
11576
11576
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11577
11577
|
}, "strip", z.ZodTypeAny, {
|
11578
|
-
firstname
|
11579
|
-
surname
|
11578
|
+
firstname: string;
|
11579
|
+
surname: string;
|
11580
11580
|
middlename?: string | null | undefined;
|
11581
11581
|
}, {
|
11582
|
-
firstname
|
11583
|
-
surname
|
11582
|
+
firstname: string;
|
11583
|
+
surname: string;
|
11584
11584
|
middlename?: string | null | undefined;
|
11585
11585
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
11586
11586
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -11706,16 +11706,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11706
11706
|
addressLine3?: string | null | undefined;
|
11707
11707
|
postcodeOrZip?: string | null | undefined;
|
11708
11708
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11709
|
-
firstname: z.
|
11710
|
-
surname: z.
|
11709
|
+
firstname: z.ZodString;
|
11710
|
+
surname: z.ZodString;
|
11711
11711
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11712
11712
|
}, "strip", z.ZodTypeAny, {
|
11713
|
-
firstname
|
11714
|
-
surname
|
11713
|
+
firstname: string;
|
11714
|
+
surname: string;
|
11715
11715
|
middlename?: string | null | undefined;
|
11716
11716
|
}, {
|
11717
|
-
firstname
|
11718
|
-
surname
|
11717
|
+
firstname: string;
|
11718
|
+
surname: string;
|
11719
11719
|
middlename?: string | null | undefined;
|
11720
11720
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
11721
11721
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -11761,8 +11761,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11761
11761
|
street?: string | null | undefined;
|
11762
11762
|
zipCode?: string | null | undefined;
|
11763
11763
|
} | {
|
11764
|
-
firstname
|
11765
|
-
surname
|
11764
|
+
firstname: string;
|
11765
|
+
surname: string;
|
11766
11766
|
middlename?: string | null | undefined;
|
11767
11767
|
} | {
|
11768
11768
|
country: string;
|
@@ -11808,8 +11808,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11808
11808
|
street?: string | null | undefined;
|
11809
11809
|
zipCode?: string | null | undefined;
|
11810
11810
|
} | {
|
11811
|
-
firstname
|
11812
|
-
surname
|
11811
|
+
firstname: string;
|
11812
|
+
surname: string;
|
11813
11813
|
middlename?: string | null | undefined;
|
11814
11814
|
} | {
|
11815
11815
|
country: string;
|
@@ -11867,8 +11867,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11867
11867
|
street?: string | null | undefined;
|
11868
11868
|
zipCode?: string | null | undefined;
|
11869
11869
|
} | {
|
11870
|
-
firstname
|
11871
|
-
surname
|
11870
|
+
firstname: string;
|
11871
|
+
surname: string;
|
11872
11872
|
middlename?: string | null | undefined;
|
11873
11873
|
} | {
|
11874
11874
|
country: string;
|
@@ -11914,8 +11914,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11914
11914
|
street?: string | null | undefined;
|
11915
11915
|
zipCode?: string | null | undefined;
|
11916
11916
|
} | {
|
11917
|
-
firstname
|
11918
|
-
surname
|
11917
|
+
firstname: string;
|
11918
|
+
surname: string;
|
11919
11919
|
middlename?: string | null | undefined;
|
11920
11920
|
} | {
|
11921
11921
|
country: string;
|
@@ -12076,16 +12076,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12076
12076
|
addressLine3?: string | null | undefined;
|
12077
12077
|
postcodeOrZip?: string | null | undefined;
|
12078
12078
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12079
|
-
firstname: z.
|
12080
|
-
surname: z.
|
12079
|
+
firstname: z.ZodString;
|
12080
|
+
surname: z.ZodString;
|
12081
12081
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12082
12082
|
}, "strip", z.ZodTypeAny, {
|
12083
|
-
firstname
|
12084
|
-
surname
|
12083
|
+
firstname: string;
|
12084
|
+
surname: string;
|
12085
12085
|
middlename?: string | null | undefined;
|
12086
12086
|
}, {
|
12087
|
-
firstname
|
12088
|
-
surname
|
12087
|
+
firstname: string;
|
12088
|
+
surname: string;
|
12089
12089
|
middlename?: string | null | undefined;
|
12090
12090
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
12091
12091
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -12211,16 +12211,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12211
12211
|
addressLine3?: string | null | undefined;
|
12212
12212
|
postcodeOrZip?: string | null | undefined;
|
12213
12213
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12214
|
-
firstname: z.
|
12215
|
-
surname: z.
|
12214
|
+
firstname: z.ZodString;
|
12215
|
+
surname: z.ZodString;
|
12216
12216
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12217
12217
|
}, "strip", z.ZodTypeAny, {
|
12218
|
-
firstname
|
12219
|
-
surname
|
12218
|
+
firstname: string;
|
12219
|
+
surname: string;
|
12220
12220
|
middlename?: string | null | undefined;
|
12221
12221
|
}, {
|
12222
|
-
firstname
|
12223
|
-
surname
|
12222
|
+
firstname: string;
|
12223
|
+
surname: string;
|
12224
12224
|
middlename?: string | null | undefined;
|
12225
12225
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
12226
12226
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -12252,8 +12252,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12252
12252
|
street?: string | null | undefined;
|
12253
12253
|
zipCode?: string | null | undefined;
|
12254
12254
|
} | {
|
12255
|
-
firstname
|
12256
|
-
surname
|
12255
|
+
firstname: string;
|
12256
|
+
surname: string;
|
12257
12257
|
middlename?: string | null | undefined;
|
12258
12258
|
} | {
|
12259
12259
|
country: string;
|
@@ -12299,8 +12299,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12299
12299
|
street?: string | null | undefined;
|
12300
12300
|
zipCode?: string | null | undefined;
|
12301
12301
|
} | {
|
12302
|
-
firstname
|
12303
|
-
surname
|
12302
|
+
firstname: string;
|
12303
|
+
surname: string;
|
12304
12304
|
middlename?: string | null | undefined;
|
12305
12305
|
} | {
|
12306
12306
|
country: string;
|
@@ -12354,8 +12354,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12354
12354
|
street?: string | null | undefined;
|
12355
12355
|
zipCode?: string | null | undefined;
|
12356
12356
|
} | {
|
12357
|
-
firstname
|
12358
|
-
surname
|
12357
|
+
firstname: string;
|
12358
|
+
surname: string;
|
12359
12359
|
middlename?: string | null | undefined;
|
12360
12360
|
} | {
|
12361
12361
|
country: string;
|
@@ -12401,8 +12401,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12401
12401
|
street?: string | null | undefined;
|
12402
12402
|
zipCode?: string | null | undefined;
|
12403
12403
|
} | {
|
12404
|
-
firstname
|
12405
|
-
surname
|
12404
|
+
firstname: string;
|
12405
|
+
surname: string;
|
12406
12406
|
middlename?: string | null | undefined;
|
12407
12407
|
} | {
|
12408
12408
|
country: string;
|
@@ -12563,16 +12563,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12563
12563
|
addressLine3?: string | null | undefined;
|
12564
12564
|
postcodeOrZip?: string | null | undefined;
|
12565
12565
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12566
|
-
firstname: z.
|
12567
|
-
surname: z.
|
12566
|
+
firstname: z.ZodString;
|
12567
|
+
surname: z.ZodString;
|
12568
12568
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12569
12569
|
}, "strip", z.ZodTypeAny, {
|
12570
|
-
firstname
|
12571
|
-
surname
|
12570
|
+
firstname: string;
|
12571
|
+
surname: string;
|
12572
12572
|
middlename?: string | null | undefined;
|
12573
12573
|
}, {
|
12574
|
-
firstname
|
12575
|
-
surname
|
12574
|
+
firstname: string;
|
12575
|
+
surname: string;
|
12576
12576
|
middlename?: string | null | undefined;
|
12577
12577
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
12578
12578
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -12698,16 +12698,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12698
12698
|
addressLine3?: string | null | undefined;
|
12699
12699
|
postcodeOrZip?: string | null | undefined;
|
12700
12700
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12701
|
-
firstname: z.
|
12702
|
-
surname: z.
|
12701
|
+
firstname: z.ZodString;
|
12702
|
+
surname: z.ZodString;
|
12703
12703
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12704
12704
|
}, "strip", z.ZodTypeAny, {
|
12705
|
-
firstname
|
12706
|
-
surname
|
12705
|
+
firstname: string;
|
12706
|
+
surname: string;
|
12707
12707
|
middlename?: string | null | undefined;
|
12708
12708
|
}, {
|
12709
|
-
firstname
|
12710
|
-
surname
|
12709
|
+
firstname: string;
|
12710
|
+
surname: string;
|
12711
12711
|
middlename?: string | null | undefined;
|
12712
12712
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
12713
12713
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -12753,8 +12753,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12753
12753
|
street?: string | null | undefined;
|
12754
12754
|
zipCode?: string | null | undefined;
|
12755
12755
|
} | {
|
12756
|
-
firstname
|
12757
|
-
surname
|
12756
|
+
firstname: string;
|
12757
|
+
surname: string;
|
12758
12758
|
middlename?: string | null | undefined;
|
12759
12759
|
} | {
|
12760
12760
|
country: string;
|
@@ -12800,8 +12800,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12800
12800
|
street?: string | null | undefined;
|
12801
12801
|
zipCode?: string | null | undefined;
|
12802
12802
|
} | {
|
12803
|
-
firstname
|
12804
|
-
surname
|
12803
|
+
firstname: string;
|
12804
|
+
surname: string;
|
12805
12805
|
middlename?: string | null | undefined;
|
12806
12806
|
} | {
|
12807
12807
|
country: string;
|
@@ -12859,8 +12859,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12859
12859
|
street?: string | null | undefined;
|
12860
12860
|
zipCode?: string | null | undefined;
|
12861
12861
|
} | {
|
12862
|
-
firstname
|
12863
|
-
surname
|
12862
|
+
firstname: string;
|
12863
|
+
surname: string;
|
12864
12864
|
middlename?: string | null | undefined;
|
12865
12865
|
} | {
|
12866
12866
|
country: string;
|
@@ -12906,8 +12906,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12906
12906
|
street?: string | null | undefined;
|
12907
12907
|
zipCode?: string | null | undefined;
|
12908
12908
|
} | {
|
12909
|
-
firstname
|
12910
|
-
surname
|
12909
|
+
firstname: string;
|
12910
|
+
surname: string;
|
12911
12911
|
middlename?: string | null | undefined;
|
12912
12912
|
} | {
|
12913
12913
|
country: string;
|
@@ -13068,16 +13068,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13068
13068
|
addressLine3?: string | null | undefined;
|
13069
13069
|
postcodeOrZip?: string | null | undefined;
|
13070
13070
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13071
|
-
firstname: z.
|
13072
|
-
surname: z.
|
13071
|
+
firstname: z.ZodString;
|
13072
|
+
surname: z.ZodString;
|
13073
13073
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13074
13074
|
}, "strip", z.ZodTypeAny, {
|
13075
|
-
firstname
|
13076
|
-
surname
|
13075
|
+
firstname: string;
|
13076
|
+
surname: string;
|
13077
13077
|
middlename?: string | null | undefined;
|
13078
13078
|
}, {
|
13079
|
-
firstname
|
13080
|
-
surname
|
13079
|
+
firstname: string;
|
13080
|
+
surname: string;
|
13081
13081
|
middlename?: string | null | undefined;
|
13082
13082
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
13083
13083
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -13203,16 +13203,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13203
13203
|
addressLine3?: string | null | undefined;
|
13204
13204
|
postcodeOrZip?: string | null | undefined;
|
13205
13205
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13206
|
-
firstname: z.
|
13207
|
-
surname: z.
|
13206
|
+
firstname: z.ZodString;
|
13207
|
+
surname: z.ZodString;
|
13208
13208
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13209
13209
|
}, "strip", z.ZodTypeAny, {
|
13210
|
-
firstname
|
13211
|
-
surname
|
13210
|
+
firstname: string;
|
13211
|
+
surname: string;
|
13212
13212
|
middlename?: string | null | undefined;
|
13213
13213
|
}, {
|
13214
|
-
firstname
|
13215
|
-
surname
|
13214
|
+
firstname: string;
|
13215
|
+
surname: string;
|
13216
13216
|
middlename?: string | null | undefined;
|
13217
13217
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
13218
13218
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -13244,8 +13244,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13244
13244
|
street?: string | null | undefined;
|
13245
13245
|
zipCode?: string | null | undefined;
|
13246
13246
|
} | {
|
13247
|
-
firstname
|
13248
|
-
surname
|
13247
|
+
firstname: string;
|
13248
|
+
surname: string;
|
13249
13249
|
middlename?: string | null | undefined;
|
13250
13250
|
} | {
|
13251
13251
|
country: string;
|
@@ -13291,8 +13291,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13291
13291
|
street?: string | null | undefined;
|
13292
13292
|
zipCode?: string | null | undefined;
|
13293
13293
|
} | {
|
13294
|
-
firstname
|
13295
|
-
surname
|
13294
|
+
firstname: string;
|
13295
|
+
surname: string;
|
13296
13296
|
middlename?: string | null | undefined;
|
13297
13297
|
} | {
|
13298
13298
|
country: string;
|
@@ -13346,8 +13346,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13346
13346
|
street?: string | null | undefined;
|
13347
13347
|
zipCode?: string | null | undefined;
|
13348
13348
|
} | {
|
13349
|
-
firstname
|
13350
|
-
surname
|
13349
|
+
firstname: string;
|
13350
|
+
surname: string;
|
13351
13351
|
middlename?: string | null | undefined;
|
13352
13352
|
} | {
|
13353
13353
|
country: string;
|
@@ -13393,8 +13393,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13393
13393
|
street?: string | null | undefined;
|
13394
13394
|
zipCode?: string | null | undefined;
|
13395
13395
|
} | {
|
13396
|
-
firstname
|
13397
|
-
surname
|
13396
|
+
firstname: string;
|
13397
|
+
surname: string;
|
13398
13398
|
middlename?: string | null | undefined;
|
13399
13399
|
} | {
|
13400
13400
|
country: string;
|
@@ -13555,16 +13555,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13555
13555
|
addressLine3?: string | null | undefined;
|
13556
13556
|
postcodeOrZip?: string | null | undefined;
|
13557
13557
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13558
|
-
firstname: z.
|
13559
|
-
surname: z.
|
13558
|
+
firstname: z.ZodString;
|
13559
|
+
surname: z.ZodString;
|
13560
13560
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13561
13561
|
}, "strip", z.ZodTypeAny, {
|
13562
|
-
firstname
|
13563
|
-
surname
|
13562
|
+
firstname: string;
|
13563
|
+
surname: string;
|
13564
13564
|
middlename?: string | null | undefined;
|
13565
13565
|
}, {
|
13566
|
-
firstname
|
13567
|
-
surname
|
13566
|
+
firstname: string;
|
13567
|
+
surname: string;
|
13568
13568
|
middlename?: string | null | undefined;
|
13569
13569
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
13570
13570
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -13690,16 +13690,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13690
13690
|
addressLine3?: string | null | undefined;
|
13691
13691
|
postcodeOrZip?: string | null | undefined;
|
13692
13692
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13693
|
-
firstname: z.
|
13694
|
-
surname: z.
|
13693
|
+
firstname: z.ZodString;
|
13694
|
+
surname: z.ZodString;
|
13695
13695
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13696
13696
|
}, "strip", z.ZodTypeAny, {
|
13697
|
-
firstname
|
13698
|
-
surname
|
13697
|
+
firstname: string;
|
13698
|
+
surname: string;
|
13699
13699
|
middlename?: string | null | undefined;
|
13700
13700
|
}, {
|
13701
|
-
firstname
|
13702
|
-
surname
|
13701
|
+
firstname: string;
|
13702
|
+
surname: string;
|
13703
13703
|
middlename?: string | null | undefined;
|
13704
13704
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
13705
13705
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -13732,8 +13732,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13732
13732
|
street?: string | null | undefined;
|
13733
13733
|
zipCode?: string | null | undefined;
|
13734
13734
|
} | {
|
13735
|
-
firstname
|
13736
|
-
surname
|
13735
|
+
firstname: string;
|
13736
|
+
surname: string;
|
13737
13737
|
middlename?: string | null | undefined;
|
13738
13738
|
} | {
|
13739
13739
|
country: string;
|
@@ -13779,8 +13779,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13779
13779
|
street?: string | null | undefined;
|
13780
13780
|
zipCode?: string | null | undefined;
|
13781
13781
|
} | {
|
13782
|
-
firstname
|
13783
|
-
surname
|
13782
|
+
firstname: string;
|
13783
|
+
surname: string;
|
13784
13784
|
middlename?: string | null | undefined;
|
13785
13785
|
} | {
|
13786
13786
|
country: string;
|
@@ -13835,8 +13835,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13835
13835
|
street?: string | null | undefined;
|
13836
13836
|
zipCode?: string | null | undefined;
|
13837
13837
|
} | {
|
13838
|
-
firstname
|
13839
|
-
surname
|
13838
|
+
firstname: string;
|
13839
|
+
surname: string;
|
13840
13840
|
middlename?: string | null | undefined;
|
13841
13841
|
} | {
|
13842
13842
|
country: string;
|
@@ -13882,8 +13882,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13882
13882
|
street?: string | null | undefined;
|
13883
13883
|
zipCode?: string | null | undefined;
|
13884
13884
|
} | {
|
13885
|
-
firstname
|
13886
|
-
surname
|
13885
|
+
firstname: string;
|
13886
|
+
surname: string;
|
13887
13887
|
middlename?: string | null | undefined;
|
13888
13888
|
} | {
|
13889
13889
|
country: string;
|
@@ -14045,16 +14045,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14045
14045
|
addressLine3?: string | null | undefined;
|
14046
14046
|
postcodeOrZip?: string | null | undefined;
|
14047
14047
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
14048
|
-
firstname: z.
|
14049
|
-
surname: z.
|
14048
|
+
firstname: z.ZodString;
|
14049
|
+
surname: z.ZodString;
|
14050
14050
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
14051
14051
|
}, "strip", z.ZodTypeAny, {
|
14052
|
-
firstname
|
14053
|
-
surname
|
14052
|
+
firstname: string;
|
14053
|
+
surname: string;
|
14054
14054
|
middlename?: string | null | undefined;
|
14055
14055
|
}, {
|
14056
|
-
firstname
|
14057
|
-
surname
|
14056
|
+
firstname: string;
|
14057
|
+
surname: string;
|
14058
14058
|
middlename?: string | null | undefined;
|
14059
14059
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
14060
14060
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -14180,16 +14180,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14180
14180
|
addressLine3?: string | null | undefined;
|
14181
14181
|
postcodeOrZip?: string | null | undefined;
|
14182
14182
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
14183
|
-
firstname: z.
|
14184
|
-
surname: z.
|
14183
|
+
firstname: z.ZodString;
|
14184
|
+
surname: z.ZodString;
|
14185
14185
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
14186
14186
|
}, "strip", z.ZodTypeAny, {
|
14187
|
-
firstname
|
14188
|
-
surname
|
14187
|
+
firstname: string;
|
14188
|
+
surname: string;
|
14189
14189
|
middlename?: string | null | undefined;
|
14190
14190
|
}, {
|
14191
|
-
firstname
|
14192
|
-
surname
|
14191
|
+
firstname: string;
|
14192
|
+
surname: string;
|
14193
14193
|
middlename?: string | null | undefined;
|
14194
14194
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
14195
14195
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -14221,8 +14221,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14221
14221
|
street?: string | null | undefined;
|
14222
14222
|
zipCode?: string | null | undefined;
|
14223
14223
|
} | {
|
14224
|
-
firstname
|
14225
|
-
surname
|
14224
|
+
firstname: string;
|
14225
|
+
surname: string;
|
14226
14226
|
middlename?: string | null | undefined;
|
14227
14227
|
} | {
|
14228
14228
|
country: string;
|
@@ -14268,8 +14268,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14268
14268
|
street?: string | null | undefined;
|
14269
14269
|
zipCode?: string | null | undefined;
|
14270
14270
|
} | {
|
14271
|
-
firstname
|
14272
|
-
surname
|
14271
|
+
firstname: string;
|
14272
|
+
surname: string;
|
14273
14273
|
middlename?: string | null | undefined;
|
14274
14274
|
} | {
|
14275
14275
|
country: string;
|
@@ -14323,8 +14323,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14323
14323
|
street?: string | null | undefined;
|
14324
14324
|
zipCode?: string | null | undefined;
|
14325
14325
|
} | {
|
14326
|
-
firstname
|
14327
|
-
surname
|
14326
|
+
firstname: string;
|
14327
|
+
surname: string;
|
14328
14328
|
middlename?: string | null | undefined;
|
14329
14329
|
} | {
|
14330
14330
|
country: string;
|
@@ -14370,8 +14370,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14370
14370
|
street?: string | null | undefined;
|
14371
14371
|
zipCode?: string | null | undefined;
|
14372
14372
|
} | {
|
14373
|
-
firstname
|
14374
|
-
surname
|
14373
|
+
firstname: string;
|
14374
|
+
surname: string;
|
14375
14375
|
middlename?: string | null | undefined;
|
14376
14376
|
} | {
|
14377
14377
|
country: string;
|
@@ -14532,16 +14532,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14532
14532
|
addressLine3?: string | null | undefined;
|
14533
14533
|
postcodeOrZip?: string | null | undefined;
|
14534
14534
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
14535
|
-
firstname: z.
|
14536
|
-
surname: z.
|
14535
|
+
firstname: z.ZodString;
|
14536
|
+
surname: z.ZodString;
|
14537
14537
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
14538
14538
|
}, "strip", z.ZodTypeAny, {
|
14539
|
-
firstname
|
14540
|
-
surname
|
14539
|
+
firstname: string;
|
14540
|
+
surname: string;
|
14541
14541
|
middlename?: string | null | undefined;
|
14542
14542
|
}, {
|
14543
|
-
firstname
|
14544
|
-
surname
|
14543
|
+
firstname: string;
|
14544
|
+
surname: string;
|
14545
14545
|
middlename?: string | null | undefined;
|
14546
14546
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
14547
14547
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -14667,16 +14667,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14667
14667
|
addressLine3?: string | null | undefined;
|
14668
14668
|
postcodeOrZip?: string | null | undefined;
|
14669
14669
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
14670
|
-
firstname: z.
|
14671
|
-
surname: z.
|
14670
|
+
firstname: z.ZodString;
|
14671
|
+
surname: z.ZodString;
|
14672
14672
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
14673
14673
|
}, "strip", z.ZodTypeAny, {
|
14674
|
-
firstname
|
14675
|
-
surname
|
14674
|
+
firstname: string;
|
14675
|
+
surname: string;
|
14676
14676
|
middlename?: string | null | undefined;
|
14677
14677
|
}, {
|
14678
|
-
firstname
|
14679
|
-
surname
|
14678
|
+
firstname: string;
|
14679
|
+
surname: string;
|
14680
14680
|
middlename?: string | null | undefined;
|
14681
14681
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
14682
14682
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -14709,8 +14709,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14709
14709
|
street?: string | null | undefined;
|
14710
14710
|
zipCode?: string | null | undefined;
|
14711
14711
|
} | {
|
14712
|
-
firstname
|
14713
|
-
surname
|
14712
|
+
firstname: string;
|
14713
|
+
surname: string;
|
14714
14714
|
middlename?: string | null | undefined;
|
14715
14715
|
} | {
|
14716
14716
|
country: string;
|
@@ -14757,8 +14757,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14757
14757
|
street?: string | null | undefined;
|
14758
14758
|
zipCode?: string | null | undefined;
|
14759
14759
|
} | {
|
14760
|
-
firstname
|
14761
|
-
surname
|
14760
|
+
firstname: string;
|
14761
|
+
surname: string;
|
14762
14762
|
middlename?: string | null | undefined;
|
14763
14763
|
} | {
|
14764
14764
|
country: string;
|
@@ -14812,8 +14812,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14812
14812
|
street?: string | null | undefined;
|
14813
14813
|
zipCode?: string | null | undefined;
|
14814
14814
|
} | {
|
14815
|
-
firstname
|
14816
|
-
surname
|
14815
|
+
firstname: string;
|
14816
|
+
surname: string;
|
14817
14817
|
middlename?: string | null | undefined;
|
14818
14818
|
} | {
|
14819
14819
|
country: string;
|
@@ -14860,8 +14860,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14860
14860
|
street?: string | null | undefined;
|
14861
14861
|
zipCode?: string | null | undefined;
|
14862
14862
|
} | {
|
14863
|
-
firstname
|
14864
|
-
surname
|
14863
|
+
firstname: string;
|
14864
|
+
surname: string;
|
14865
14865
|
middlename?: string | null | undefined;
|
14866
14866
|
} | {
|
14867
14867
|
country: string;
|
@@ -15022,16 +15022,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15022
15022
|
addressLine3?: string | null | undefined;
|
15023
15023
|
postcodeOrZip?: string | null | undefined;
|
15024
15024
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
15025
|
-
firstname: z.
|
15026
|
-
surname: z.
|
15025
|
+
firstname: z.ZodString;
|
15026
|
+
surname: z.ZodString;
|
15027
15027
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
15028
15028
|
}, "strip", z.ZodTypeAny, {
|
15029
|
-
firstname
|
15030
|
-
surname
|
15029
|
+
firstname: string;
|
15030
|
+
surname: string;
|
15031
15031
|
middlename?: string | null | undefined;
|
15032
15032
|
}, {
|
15033
|
-
firstname
|
15034
|
-
surname
|
15033
|
+
firstname: string;
|
15034
|
+
surname: string;
|
15035
15035
|
middlename?: string | null | undefined;
|
15036
15036
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
15037
15037
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -15157,16 +15157,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15157
15157
|
addressLine3?: string | null | undefined;
|
15158
15158
|
postcodeOrZip?: string | null | undefined;
|
15159
15159
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
15160
|
-
firstname: z.
|
15161
|
-
surname: z.
|
15160
|
+
firstname: z.ZodString;
|
15161
|
+
surname: z.ZodString;
|
15162
15162
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
15163
15163
|
}, "strip", z.ZodTypeAny, {
|
15164
|
-
firstname
|
15165
|
-
surname
|
15164
|
+
firstname: string;
|
15165
|
+
surname: string;
|
15166
15166
|
middlename?: string | null | undefined;
|
15167
15167
|
}, {
|
15168
|
-
firstname
|
15169
|
-
surname
|
15168
|
+
firstname: string;
|
15169
|
+
surname: string;
|
15170
15170
|
middlename?: string | null | undefined;
|
15171
15171
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
15172
15172
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -15198,8 +15198,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15198
15198
|
street?: string | null | undefined;
|
15199
15199
|
zipCode?: string | null | undefined;
|
15200
15200
|
} | {
|
15201
|
-
firstname
|
15202
|
-
surname
|
15201
|
+
firstname: string;
|
15202
|
+
surname: string;
|
15203
15203
|
middlename?: string | null | undefined;
|
15204
15204
|
} | {
|
15205
15205
|
country: string;
|
@@ -15245,8 +15245,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15245
15245
|
street?: string | null | undefined;
|
15246
15246
|
zipCode?: string | null | undefined;
|
15247
15247
|
} | {
|
15248
|
-
firstname
|
15249
|
-
surname
|
15248
|
+
firstname: string;
|
15249
|
+
surname: string;
|
15250
15250
|
middlename?: string | null | undefined;
|
15251
15251
|
} | {
|
15252
15252
|
country: string;
|
@@ -15300,8 +15300,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15300
15300
|
street?: string | null | undefined;
|
15301
15301
|
zipCode?: string | null | undefined;
|
15302
15302
|
} | {
|
15303
|
-
firstname
|
15304
|
-
surname
|
15303
|
+
firstname: string;
|
15304
|
+
surname: string;
|
15305
15305
|
middlename?: string | null | undefined;
|
15306
15306
|
} | {
|
15307
15307
|
country: string;
|
@@ -15347,8 +15347,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15347
15347
|
street?: string | null | undefined;
|
15348
15348
|
zipCode?: string | null | undefined;
|
15349
15349
|
} | {
|
15350
|
-
firstname
|
15351
|
-
surname
|
15350
|
+
firstname: string;
|
15351
|
+
surname: string;
|
15352
15352
|
middlename?: string | null | undefined;
|
15353
15353
|
} | {
|
15354
15354
|
country: string;
|
@@ -15509,16 +15509,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15509
15509
|
addressLine3?: string | null | undefined;
|
15510
15510
|
postcodeOrZip?: string | null | undefined;
|
15511
15511
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
15512
|
-
firstname: z.
|
15513
|
-
surname: z.
|
15512
|
+
firstname: z.ZodString;
|
15513
|
+
surname: z.ZodString;
|
15514
15514
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
15515
15515
|
}, "strip", z.ZodTypeAny, {
|
15516
|
-
firstname
|
15517
|
-
surname
|
15516
|
+
firstname: string;
|
15517
|
+
surname: string;
|
15518
15518
|
middlename?: string | null | undefined;
|
15519
15519
|
}, {
|
15520
|
-
firstname
|
15521
|
-
surname
|
15520
|
+
firstname: string;
|
15521
|
+
surname: string;
|
15522
15522
|
middlename?: string | null | undefined;
|
15523
15523
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
15524
15524
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -15644,16 +15644,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15644
15644
|
addressLine3?: string | null | undefined;
|
15645
15645
|
postcodeOrZip?: string | null | undefined;
|
15646
15646
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
15647
|
-
firstname: z.
|
15648
|
-
surname: z.
|
15647
|
+
firstname: z.ZodString;
|
15648
|
+
surname: z.ZodString;
|
15649
15649
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
15650
15650
|
}, "strip", z.ZodTypeAny, {
|
15651
|
-
firstname
|
15652
|
-
surname
|
15651
|
+
firstname: string;
|
15652
|
+
surname: string;
|
15653
15653
|
middlename?: string | null | undefined;
|
15654
15654
|
}, {
|
15655
|
-
firstname
|
15656
|
-
surname
|
15655
|
+
firstname: string;
|
15656
|
+
surname: string;
|
15657
15657
|
middlename?: string | null | undefined;
|
15658
15658
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
15659
15659
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -15686,8 +15686,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15686
15686
|
street?: string | null | undefined;
|
15687
15687
|
zipCode?: string | null | undefined;
|
15688
15688
|
} | {
|
15689
|
-
firstname
|
15690
|
-
surname
|
15689
|
+
firstname: string;
|
15690
|
+
surname: string;
|
15691
15691
|
middlename?: string | null | undefined;
|
15692
15692
|
} | {
|
15693
15693
|
country: string;
|
@@ -15734,8 +15734,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15734
15734
|
street?: string | null | undefined;
|
15735
15735
|
zipCode?: string | null | undefined;
|
15736
15736
|
} | {
|
15737
|
-
firstname
|
15738
|
-
surname
|
15737
|
+
firstname: string;
|
15738
|
+
surname: string;
|
15739
15739
|
middlename?: string | null | undefined;
|
15740
15740
|
} | {
|
15741
15741
|
country: string;
|
@@ -15789,8 +15789,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15789
15789
|
street?: string | null | undefined;
|
15790
15790
|
zipCode?: string | null | undefined;
|
15791
15791
|
} | {
|
15792
|
-
firstname
|
15793
|
-
surname
|
15792
|
+
firstname: string;
|
15793
|
+
surname: string;
|
15794
15794
|
middlename?: string | null | undefined;
|
15795
15795
|
} | {
|
15796
15796
|
country: string;
|
@@ -15837,8 +15837,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15837
15837
|
street?: string | null | undefined;
|
15838
15838
|
zipCode?: string | null | undefined;
|
15839
15839
|
} | {
|
15840
|
-
firstname
|
15841
|
-
surname
|
15840
|
+
firstname: string;
|
15841
|
+
surname: string;
|
15842
15842
|
middlename?: string | null | undefined;
|
15843
15843
|
} | {
|
15844
15844
|
country: string;
|
@@ -15999,16 +15999,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15999
15999
|
addressLine3?: string | null | undefined;
|
16000
16000
|
postcodeOrZip?: string | null | undefined;
|
16001
16001
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
16002
|
-
firstname: z.
|
16003
|
-
surname: z.
|
16002
|
+
firstname: z.ZodString;
|
16003
|
+
surname: z.ZodString;
|
16004
16004
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
16005
16005
|
}, "strip", z.ZodTypeAny, {
|
16006
|
-
firstname
|
16007
|
-
surname
|
16006
|
+
firstname: string;
|
16007
|
+
surname: string;
|
16008
16008
|
middlename?: string | null | undefined;
|
16009
16009
|
}, {
|
16010
|
-
firstname
|
16011
|
-
surname
|
16010
|
+
firstname: string;
|
16011
|
+
surname: string;
|
16012
16012
|
middlename?: string | null | undefined;
|
16013
16013
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
16014
16014
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -16134,16 +16134,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16134
16134
|
addressLine3?: string | null | undefined;
|
16135
16135
|
postcodeOrZip?: string | null | undefined;
|
16136
16136
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
16137
|
-
firstname: z.
|
16138
|
-
surname: z.
|
16137
|
+
firstname: z.ZodString;
|
16138
|
+
surname: z.ZodString;
|
16139
16139
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
16140
16140
|
}, "strip", z.ZodTypeAny, {
|
16141
|
-
firstname
|
16142
|
-
surname
|
16141
|
+
firstname: string;
|
16142
|
+
surname: string;
|
16143
16143
|
middlename?: string | null | undefined;
|
16144
16144
|
}, {
|
16145
|
-
firstname
|
16146
|
-
surname
|
16145
|
+
firstname: string;
|
16146
|
+
surname: string;
|
16147
16147
|
middlename?: string | null | undefined;
|
16148
16148
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
16149
16149
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -16190,8 +16190,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16190
16190
|
street?: string | null | undefined;
|
16191
16191
|
zipCode?: string | null | undefined;
|
16192
16192
|
} | {
|
16193
|
-
firstname
|
16194
|
-
surname
|
16193
|
+
firstname: string;
|
16194
|
+
surname: string;
|
16195
16195
|
middlename?: string | null | undefined;
|
16196
16196
|
} | {
|
16197
16197
|
country: string;
|
@@ -16238,8 +16238,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16238
16238
|
street?: string | null | undefined;
|
16239
16239
|
zipCode?: string | null | undefined;
|
16240
16240
|
} | {
|
16241
|
-
firstname
|
16242
|
-
surname
|
16241
|
+
firstname: string;
|
16242
|
+
surname: string;
|
16243
16243
|
middlename?: string | null | undefined;
|
16244
16244
|
} | {
|
16245
16245
|
country: string;
|
@@ -16297,8 +16297,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16297
16297
|
street?: string | null | undefined;
|
16298
16298
|
zipCode?: string | null | undefined;
|
16299
16299
|
} | {
|
16300
|
-
firstname
|
16301
|
-
surname
|
16300
|
+
firstname: string;
|
16301
|
+
surname: string;
|
16302
16302
|
middlename?: string | null | undefined;
|
16303
16303
|
} | {
|
16304
16304
|
country: string;
|
@@ -16345,8 +16345,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16345
16345
|
street?: string | null | undefined;
|
16346
16346
|
zipCode?: string | null | undefined;
|
16347
16347
|
} | {
|
16348
|
-
firstname
|
16349
|
-
surname
|
16348
|
+
firstname: string;
|
16349
|
+
surname: string;
|
16350
16350
|
middlename?: string | null | undefined;
|
16351
16351
|
} | {
|
16352
16352
|
country: string;
|
@@ -16507,16 +16507,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16507
16507
|
addressLine3?: string | null | undefined;
|
16508
16508
|
postcodeOrZip?: string | null | undefined;
|
16509
16509
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
16510
|
-
firstname: z.
|
16511
|
-
surname: z.
|
16510
|
+
firstname: z.ZodString;
|
16511
|
+
surname: z.ZodString;
|
16512
16512
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
16513
16513
|
}, "strip", z.ZodTypeAny, {
|
16514
|
-
firstname
|
16515
|
-
surname
|
16514
|
+
firstname: string;
|
16515
|
+
surname: string;
|
16516
16516
|
middlename?: string | null | undefined;
|
16517
16517
|
}, {
|
16518
|
-
firstname
|
16519
|
-
surname
|
16518
|
+
firstname: string;
|
16519
|
+
surname: string;
|
16520
16520
|
middlename?: string | null | undefined;
|
16521
16521
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
16522
16522
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -16642,16 +16642,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16642
16642
|
addressLine3?: string | null | undefined;
|
16643
16643
|
postcodeOrZip?: string | null | undefined;
|
16644
16644
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
16645
|
-
firstname: z.
|
16646
|
-
surname: z.
|
16645
|
+
firstname: z.ZodString;
|
16646
|
+
surname: z.ZodString;
|
16647
16647
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
16648
16648
|
}, "strip", z.ZodTypeAny, {
|
16649
|
-
firstname
|
16650
|
-
surname
|
16649
|
+
firstname: string;
|
16650
|
+
surname: string;
|
16651
16651
|
middlename?: string | null | undefined;
|
16652
16652
|
}, {
|
16653
|
-
firstname
|
16654
|
-
surname
|
16653
|
+
firstname: string;
|
16654
|
+
surname: string;
|
16655
16655
|
middlename?: string | null | undefined;
|
16656
16656
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
16657
16657
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -16683,8 +16683,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16683
16683
|
street?: string | null | undefined;
|
16684
16684
|
zipCode?: string | null | undefined;
|
16685
16685
|
} | {
|
16686
|
-
firstname
|
16687
|
-
surname
|
16686
|
+
firstname: string;
|
16687
|
+
surname: string;
|
16688
16688
|
middlename?: string | null | undefined;
|
16689
16689
|
} | {
|
16690
16690
|
country: string;
|
@@ -16730,8 +16730,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16730
16730
|
street?: string | null | undefined;
|
16731
16731
|
zipCode?: string | null | undefined;
|
16732
16732
|
} | {
|
16733
|
-
firstname
|
16734
|
-
surname
|
16733
|
+
firstname: string;
|
16734
|
+
surname: string;
|
16735
16735
|
middlename?: string | null | undefined;
|
16736
16736
|
} | {
|
16737
16737
|
country: string;
|
@@ -16785,8 +16785,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16785
16785
|
street?: string | null | undefined;
|
16786
16786
|
zipCode?: string | null | undefined;
|
16787
16787
|
} | {
|
16788
|
-
firstname
|
16789
|
-
surname
|
16788
|
+
firstname: string;
|
16789
|
+
surname: string;
|
16790
16790
|
middlename?: string | null | undefined;
|
16791
16791
|
} | {
|
16792
16792
|
country: string;
|
@@ -16832,8 +16832,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16832
16832
|
street?: string | null | undefined;
|
16833
16833
|
zipCode?: string | null | undefined;
|
16834
16834
|
} | {
|
16835
|
-
firstname
|
16836
|
-
surname
|
16835
|
+
firstname: string;
|
16836
|
+
surname: string;
|
16837
16837
|
middlename?: string | null | undefined;
|
16838
16838
|
} | {
|
16839
16839
|
country: string;
|
@@ -16994,16 +16994,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16994
16994
|
addressLine3?: string | null | undefined;
|
16995
16995
|
postcodeOrZip?: string | null | undefined;
|
16996
16996
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
16997
|
-
firstname: z.
|
16998
|
-
surname: z.
|
16997
|
+
firstname: z.ZodString;
|
16998
|
+
surname: z.ZodString;
|
16999
16999
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
17000
17000
|
}, "strip", z.ZodTypeAny, {
|
17001
|
-
firstname
|
17002
|
-
surname
|
17001
|
+
firstname: string;
|
17002
|
+
surname: string;
|
17003
17003
|
middlename?: string | null | undefined;
|
17004
17004
|
}, {
|
17005
|
-
firstname
|
17006
|
-
surname
|
17005
|
+
firstname: string;
|
17006
|
+
surname: string;
|
17007
17007
|
middlename?: string | null | undefined;
|
17008
17008
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
17009
17009
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -17129,16 +17129,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17129
17129
|
addressLine3?: string | null | undefined;
|
17130
17130
|
postcodeOrZip?: string | null | undefined;
|
17131
17131
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
17132
|
-
firstname: z.
|
17133
|
-
surname: z.
|
17132
|
+
firstname: z.ZodString;
|
17133
|
+
surname: z.ZodString;
|
17134
17134
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
17135
17135
|
}, "strip", z.ZodTypeAny, {
|
17136
|
-
firstname
|
17137
|
-
surname
|
17136
|
+
firstname: string;
|
17137
|
+
surname: string;
|
17138
17138
|
middlename?: string | null | undefined;
|
17139
17139
|
}, {
|
17140
|
-
firstname
|
17141
|
-
surname
|
17140
|
+
firstname: string;
|
17141
|
+
surname: string;
|
17142
17142
|
middlename?: string | null | undefined;
|
17143
17143
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
17144
17144
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -17177,8 +17177,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17177
17177
|
street?: string | null | undefined;
|
17178
17178
|
zipCode?: string | null | undefined;
|
17179
17179
|
} | {
|
17180
|
-
firstname
|
17181
|
-
surname
|
17180
|
+
firstname: string;
|
17181
|
+
surname: string;
|
17182
17182
|
middlename?: string | null | undefined;
|
17183
17183
|
} | {
|
17184
17184
|
country: string;
|
@@ -17227,8 +17227,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17227
17227
|
street?: string | null | undefined;
|
17228
17228
|
zipCode?: string | null | undefined;
|
17229
17229
|
} | {
|
17230
|
-
firstname
|
17231
|
-
surname
|
17230
|
+
firstname: string;
|
17231
|
+
surname: string;
|
17232
17232
|
middlename?: string | null | undefined;
|
17233
17233
|
} | {
|
17234
17234
|
country: string;
|
@@ -17282,8 +17282,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17282
17282
|
street?: string | null | undefined;
|
17283
17283
|
zipCode?: string | null | undefined;
|
17284
17284
|
} | {
|
17285
|
-
firstname
|
17286
|
-
surname
|
17285
|
+
firstname: string;
|
17286
|
+
surname: string;
|
17287
17287
|
middlename?: string | null | undefined;
|
17288
17288
|
} | {
|
17289
17289
|
country: string;
|
@@ -17332,8 +17332,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17332
17332
|
street?: string | null | undefined;
|
17333
17333
|
zipCode?: string | null | undefined;
|
17334
17334
|
} | {
|
17335
|
-
firstname
|
17336
|
-
surname
|
17335
|
+
firstname: string;
|
17336
|
+
surname: string;
|
17337
17337
|
middlename?: string | null | undefined;
|
17338
17338
|
} | {
|
17339
17339
|
country: string;
|
@@ -17494,16 +17494,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17494
17494
|
addressLine3?: string | null | undefined;
|
17495
17495
|
postcodeOrZip?: string | null | undefined;
|
17496
17496
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
17497
|
-
firstname: z.
|
17498
|
-
surname: z.
|
17497
|
+
firstname: z.ZodString;
|
17498
|
+
surname: z.ZodString;
|
17499
17499
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
17500
17500
|
}, "strip", z.ZodTypeAny, {
|
17501
|
-
firstname
|
17502
|
-
surname
|
17501
|
+
firstname: string;
|
17502
|
+
surname: string;
|
17503
17503
|
middlename?: string | null | undefined;
|
17504
17504
|
}, {
|
17505
|
-
firstname
|
17506
|
-
surname
|
17505
|
+
firstname: string;
|
17506
|
+
surname: string;
|
17507
17507
|
middlename?: string | null | undefined;
|
17508
17508
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
17509
17509
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -17629,16 +17629,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17629
17629
|
addressLine3?: string | null | undefined;
|
17630
17630
|
postcodeOrZip?: string | null | undefined;
|
17631
17631
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
17632
|
-
firstname: z.
|
17633
|
-
surname: z.
|
17632
|
+
firstname: z.ZodString;
|
17633
|
+
surname: z.ZodString;
|
17634
17634
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
17635
17635
|
}, "strip", z.ZodTypeAny, {
|
17636
|
-
firstname
|
17637
|
-
surname
|
17636
|
+
firstname: string;
|
17637
|
+
surname: string;
|
17638
17638
|
middlename?: string | null | undefined;
|
17639
17639
|
}, {
|
17640
|
-
firstname
|
17641
|
-
surname
|
17640
|
+
firstname: string;
|
17641
|
+
surname: string;
|
17642
17642
|
middlename?: string | null | undefined;
|
17643
17643
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
17644
17644
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -17670,8 +17670,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17670
17670
|
street?: string | null | undefined;
|
17671
17671
|
zipCode?: string | null | undefined;
|
17672
17672
|
} | {
|
17673
|
-
firstname
|
17674
|
-
surname
|
17673
|
+
firstname: string;
|
17674
|
+
surname: string;
|
17675
17675
|
middlename?: string | null | undefined;
|
17676
17676
|
} | {
|
17677
17677
|
country: string;
|
@@ -17717,8 +17717,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17717
17717
|
street?: string | null | undefined;
|
17718
17718
|
zipCode?: string | null | undefined;
|
17719
17719
|
} | {
|
17720
|
-
firstname
|
17721
|
-
surname
|
17720
|
+
firstname: string;
|
17721
|
+
surname: string;
|
17722
17722
|
middlename?: string | null | undefined;
|
17723
17723
|
} | {
|
17724
17724
|
country: string;
|
@@ -17772,8 +17772,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17772
17772
|
street?: string | null | undefined;
|
17773
17773
|
zipCode?: string | null | undefined;
|
17774
17774
|
} | {
|
17775
|
-
firstname
|
17776
|
-
surname
|
17775
|
+
firstname: string;
|
17776
|
+
surname: string;
|
17777
17777
|
middlename?: string | null | undefined;
|
17778
17778
|
} | {
|
17779
17779
|
country: string;
|
@@ -17819,8 +17819,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17819
17819
|
street?: string | null | undefined;
|
17820
17820
|
zipCode?: string | null | undefined;
|
17821
17821
|
} | {
|
17822
|
-
firstname
|
17823
|
-
surname
|
17822
|
+
firstname: string;
|
17823
|
+
surname: string;
|
17824
17824
|
middlename?: string | null | undefined;
|
17825
17825
|
} | {
|
17826
17826
|
country: string;
|
@@ -17981,16 +17981,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17981
17981
|
addressLine3?: string | null | undefined;
|
17982
17982
|
postcodeOrZip?: string | null | undefined;
|
17983
17983
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
17984
|
-
firstname: z.
|
17985
|
-
surname: z.
|
17984
|
+
firstname: z.ZodString;
|
17985
|
+
surname: z.ZodString;
|
17986
17986
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
17987
17987
|
}, "strip", z.ZodTypeAny, {
|
17988
|
-
firstname
|
17989
|
-
surname
|
17988
|
+
firstname: string;
|
17989
|
+
surname: string;
|
17990
17990
|
middlename?: string | null | undefined;
|
17991
17991
|
}, {
|
17992
|
-
firstname
|
17993
|
-
surname
|
17992
|
+
firstname: string;
|
17993
|
+
surname: string;
|
17994
17994
|
middlename?: string | null | undefined;
|
17995
17995
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
17996
17996
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
@@ -18116,16 +18116,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
18116
18116
|
addressLine3?: string | null | undefined;
|
18117
18117
|
postcodeOrZip?: string | null | undefined;
|
18118
18118
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
18119
|
-
firstname: z.
|
18120
|
-
surname: z.
|
18119
|
+
firstname: z.ZodString;
|
18120
|
+
surname: z.ZodString;
|
18121
18121
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
18122
18122
|
}, "strip", z.ZodTypeAny, {
|
18123
|
-
firstname
|
18124
|
-
surname
|
18123
|
+
firstname: string;
|
18124
|
+
surname: string;
|
18125
18125
|
middlename?: string | null | undefined;
|
18126
18126
|
}, {
|
18127
|
-
firstname
|
18128
|
-
surname
|
18127
|
+
firstname: string;
|
18128
|
+
surname: string;
|
18129
18129
|
middlename?: string | null | undefined;
|
18130
18130
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
18131
18131
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|