@opencrvs/toolkit 1.8.0-rc.f8aa0c5 → 1.8.0-rc.f8be155
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 +9861 -5350
- package/dist/commons/events/ActionConfig.d.ts +0 -2856
- package/dist/commons/events/ActionDocument.d.ts +706 -805
- package/dist/commons/events/ActionInput.d.ts +602 -602
- package/dist/commons/events/AdvancedSearchConfig.d.ts +18 -222
- package/dist/commons/events/CompositeFieldValue.d.ts +6 -6
- package/dist/commons/events/CountryConfigQueryInput.d.ts +412 -1160
- package/dist/commons/events/Draft.d.ts +54 -59
- package/dist/commons/events/EventConfig.d.ts +0 -1564
- package/dist/commons/events/EventDocument.d.ts +441 -516
- package/dist/commons/events/EventIndex.d.ts +210 -630
- package/dist/commons/events/EventMetadata.d.ts +7 -49
- package/dist/commons/events/FieldConfig.d.ts +0 -198
- 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 +0 -1200
- package/dist/commons/events/PageConfig.d.ts +0 -288
- package/dist/commons/events/WorkqueueColumnConfig.d.ts +11 -11
- package/dist/commons/events/WorkqueueConfig.d.ts +750 -3247
- package/dist/commons/events/defineConfig.d.ts +0 -316
- package/dist/commons/events/field.d.ts +0 -5
- package/dist/commons/events/index.d.ts +0 -1
- package/dist/commons/events/scopes.d.ts +2 -1
- package/dist/commons/events/test.utils.d.ts +15 -37
- package/dist/commons/events/utils.d.ts +9 -466
- package/dist/conditionals/index.js +17 -20
- package/dist/events/index.js +654 -1053
- package/dist/scopes/index.d.ts +7 -96
- package/dist/scopes/index.js +26 -105
- package/package.json +3 -3
@@ -116,16 +116,16 @@ export declare const ActionUpdate: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodStr
|
|
116
116
|
addressLine3?: string | null | undefined;
|
117
117
|
postcodeOrZip?: string | null | undefined;
|
118
118
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
119
|
-
firstname: z.
|
120
|
-
surname: z.
|
119
|
+
firstname: z.ZodString;
|
120
|
+
surname: z.ZodString;
|
121
121
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
122
122
|
}, "strip", z.ZodTypeAny, {
|
123
|
-
firstname
|
124
|
-
surname
|
123
|
+
firstname: string;
|
124
|
+
surname: string;
|
125
125
|
middlename?: string | null | undefined;
|
126
126
|
}, {
|
127
|
-
firstname
|
128
|
-
surname
|
127
|
+
firstname: string;
|
128
|
+
surname: string;
|
129
129
|
middlename?: string | null | undefined;
|
130
130
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
131
131
|
export type ActionUpdate = z.infer<typeof ActionUpdate>;
|
@@ -258,16 +258,16 @@ export declare const EventState: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodStrin
|
|
258
258
|
surname: string;
|
259
259
|
middlename?: string | undefined;
|
260
260
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
261
|
-
firstname: z.
|
262
|
-
surname: z.
|
261
|
+
firstname: z.ZodString;
|
262
|
+
surname: z.ZodString;
|
263
263
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
264
264
|
}, "strip", z.ZodTypeAny, {
|
265
|
-
firstname
|
266
|
-
surname
|
265
|
+
firstname: string;
|
266
|
+
surname: string;
|
267
267
|
middlename?: string | null | undefined;
|
268
268
|
}, {
|
269
|
-
firstname
|
270
|
-
surname
|
269
|
+
firstname: string;
|
270
|
+
surname: string;
|
271
271
|
middlename?: string | null | undefined;
|
272
272
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
273
273
|
export type EventState = z.infer<typeof EventState>;
|
@@ -280,7 +280,6 @@ export type ActionStatus = keyof typeof ActionStatus;
|
|
280
280
|
export declare const ActionBase: z.ZodObject<{
|
281
281
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
282
282
|
transactionId: z.ZodString;
|
283
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
284
283
|
createdAt: z.ZodString;
|
285
284
|
createdBy: z.ZodString;
|
286
285
|
createdByRole: z.ZodString;
|
@@ -400,16 +399,16 @@ export declare const ActionBase: z.ZodObject<{
|
|
400
399
|
addressLine3?: string | null | undefined;
|
401
400
|
postcodeOrZip?: string | null | undefined;
|
402
401
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
403
|
-
firstname: z.
|
404
|
-
surname: z.
|
402
|
+
firstname: z.ZodString;
|
403
|
+
surname: z.ZodString;
|
405
404
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
406
405
|
}, "strip", z.ZodTypeAny, {
|
407
|
-
firstname
|
408
|
-
surname
|
406
|
+
firstname: string;
|
407
|
+
surname: string;
|
409
408
|
middlename?: string | null | undefined;
|
410
409
|
}, {
|
411
|
-
firstname
|
412
|
-
surname
|
410
|
+
firstname: string;
|
411
|
+
surname: string;
|
413
412
|
middlename?: string | null | undefined;
|
414
413
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
415
414
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -526,16 +525,16 @@ export declare const ActionBase: z.ZodObject<{
|
|
526
525
|
addressLine3?: string | null | undefined;
|
527
526
|
postcodeOrZip?: string | null | undefined;
|
528
527
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
529
|
-
firstname: z.
|
530
|
-
surname: z.
|
528
|
+
firstname: z.ZodString;
|
529
|
+
surname: z.ZodString;
|
531
530
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
532
531
|
}, "strip", z.ZodTypeAny, {
|
533
|
-
firstname
|
534
|
-
surname
|
532
|
+
firstname: string;
|
533
|
+
surname: string;
|
535
534
|
middlename?: string | null | undefined;
|
536
535
|
}, {
|
537
|
-
firstname
|
538
|
-
surname
|
536
|
+
firstname: string;
|
537
|
+
surname: string;
|
539
538
|
middlename?: string | null | undefined;
|
540
539
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
541
540
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -544,7 +543,6 @@ export declare const ActionBase: z.ZodObject<{
|
|
544
543
|
id: string & z.BRAND<"UUID">;
|
545
544
|
status: "Rejected" | "Requested" | "Accepted";
|
546
545
|
transactionId: string;
|
547
|
-
createdByUserType: "system" | "user";
|
548
546
|
createdAt: string;
|
549
547
|
createdBy: string;
|
550
548
|
createdByRole: string;
|
@@ -564,8 +562,8 @@ export declare const ActionBase: z.ZodObject<{
|
|
564
562
|
street?: string | null | undefined;
|
565
563
|
zipCode?: string | null | undefined;
|
566
564
|
} | {
|
567
|
-
firstname
|
568
|
-
surname
|
565
|
+
firstname: string;
|
566
|
+
surname: string;
|
569
567
|
middlename?: string | null | undefined;
|
570
568
|
} | {
|
571
569
|
country: string;
|
@@ -608,8 +606,8 @@ export declare const ActionBase: z.ZodObject<{
|
|
608
606
|
street?: string | null | undefined;
|
609
607
|
zipCode?: string | null | undefined;
|
610
608
|
} | {
|
611
|
-
firstname
|
612
|
-
surname
|
609
|
+
firstname: string;
|
610
|
+
surname: string;
|
613
611
|
middlename?: string | null | undefined;
|
614
612
|
} | {
|
615
613
|
country: string;
|
@@ -639,7 +637,6 @@ export declare const ActionBase: z.ZodObject<{
|
|
639
637
|
id: string;
|
640
638
|
status: "Rejected" | "Requested" | "Accepted";
|
641
639
|
transactionId: string;
|
642
|
-
createdByUserType: "system" | "user";
|
643
640
|
createdAt: string;
|
644
641
|
createdBy: string;
|
645
642
|
createdByRole: string;
|
@@ -659,8 +656,8 @@ export declare const ActionBase: z.ZodObject<{
|
|
659
656
|
street?: string | null | undefined;
|
660
657
|
zipCode?: string | null | undefined;
|
661
658
|
} | {
|
662
|
-
firstname
|
663
|
-
surname
|
659
|
+
firstname: string;
|
660
|
+
surname: string;
|
664
661
|
middlename?: string | null | undefined;
|
665
662
|
} | {
|
666
663
|
country: string;
|
@@ -703,8 +700,8 @@ export declare const ActionBase: z.ZodObject<{
|
|
703
700
|
street?: string | null | undefined;
|
704
701
|
zipCode?: string | null | undefined;
|
705
702
|
} | {
|
706
|
-
firstname
|
707
|
-
surname
|
703
|
+
firstname: string;
|
704
|
+
surname: string;
|
708
705
|
middlename?: string | null | undefined;
|
709
706
|
} | {
|
710
707
|
country: string;
|
@@ -735,7 +732,6 @@ export type ActionBase = z.infer<typeof ActionBase>;
|
|
735
732
|
export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
736
733
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
737
734
|
transactionId: z.ZodString;
|
738
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
739
735
|
createdAt: z.ZodString;
|
740
736
|
createdBy: z.ZodString;
|
741
737
|
createdByRole: z.ZodString;
|
@@ -855,16 +851,16 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
855
851
|
addressLine3?: string | null | undefined;
|
856
852
|
postcodeOrZip?: string | null | undefined;
|
857
853
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
858
|
-
firstname: z.
|
859
|
-
surname: z.
|
854
|
+
firstname: z.ZodString;
|
855
|
+
surname: z.ZodString;
|
860
856
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
861
857
|
}, "strip", z.ZodTypeAny, {
|
862
|
-
firstname
|
863
|
-
surname
|
858
|
+
firstname: string;
|
859
|
+
surname: string;
|
864
860
|
middlename?: string | null | undefined;
|
865
861
|
}, {
|
866
|
-
firstname
|
867
|
-
surname
|
862
|
+
firstname: string;
|
863
|
+
surname: string;
|
868
864
|
middlename?: string | null | undefined;
|
869
865
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
870
866
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -981,16 +977,16 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
981
977
|
addressLine3?: string | null | undefined;
|
982
978
|
postcodeOrZip?: string | null | undefined;
|
983
979
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
984
|
-
firstname: z.
|
985
|
-
surname: z.
|
980
|
+
firstname: z.ZodString;
|
981
|
+
surname: z.ZodString;
|
986
982
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
987
983
|
}, "strip", z.ZodTypeAny, {
|
988
|
-
firstname
|
989
|
-
surname
|
984
|
+
firstname: string;
|
985
|
+
surname: string;
|
990
986
|
middlename?: string | null | undefined;
|
991
987
|
}, {
|
992
|
-
firstname
|
993
|
-
surname
|
988
|
+
firstname: string;
|
989
|
+
surname: string;
|
994
990
|
middlename?: string | null | undefined;
|
995
991
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
996
992
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -1003,7 +999,6 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1003
999
|
id: string & z.BRAND<"UUID">;
|
1004
1000
|
status: "Rejected" | "Requested" | "Accepted";
|
1005
1001
|
transactionId: string;
|
1006
|
-
createdByUserType: "system" | "user";
|
1007
1002
|
createdAt: string;
|
1008
1003
|
createdBy: string;
|
1009
1004
|
createdByRole: string;
|
@@ -1023,8 +1018,8 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1023
1018
|
street?: string | null | undefined;
|
1024
1019
|
zipCode?: string | null | undefined;
|
1025
1020
|
} | {
|
1026
|
-
firstname
|
1027
|
-
surname
|
1021
|
+
firstname: string;
|
1022
|
+
surname: string;
|
1028
1023
|
middlename?: string | null | undefined;
|
1029
1024
|
} | {
|
1030
1025
|
country: string;
|
@@ -1067,8 +1062,8 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1067
1062
|
street?: string | null | undefined;
|
1068
1063
|
zipCode?: string | null | undefined;
|
1069
1064
|
} | {
|
1070
|
-
firstname
|
1071
|
-
surname
|
1065
|
+
firstname: string;
|
1066
|
+
surname: string;
|
1072
1067
|
middlename?: string | null | undefined;
|
1073
1068
|
} | {
|
1074
1069
|
country: string;
|
@@ -1100,7 +1095,6 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1100
1095
|
id: string;
|
1101
1096
|
status: "Rejected" | "Requested" | "Accepted";
|
1102
1097
|
transactionId: string;
|
1103
|
-
createdByUserType: "system" | "user";
|
1104
1098
|
createdAt: string;
|
1105
1099
|
createdBy: string;
|
1106
1100
|
createdByRole: string;
|
@@ -1120,8 +1114,8 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1120
1114
|
street?: string | null | undefined;
|
1121
1115
|
zipCode?: string | null | undefined;
|
1122
1116
|
} | {
|
1123
|
-
firstname
|
1124
|
-
surname
|
1117
|
+
firstname: string;
|
1118
|
+
surname: string;
|
1125
1119
|
middlename?: string | null | undefined;
|
1126
1120
|
} | {
|
1127
1121
|
country: string;
|
@@ -1164,8 +1158,8 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1164
1158
|
street?: string | null | undefined;
|
1165
1159
|
zipCode?: string | null | undefined;
|
1166
1160
|
} | {
|
1167
|
-
firstname
|
1168
|
-
surname
|
1161
|
+
firstname: string;
|
1162
|
+
surname: string;
|
1169
1163
|
middlename?: string | null | undefined;
|
1170
1164
|
} | {
|
1171
1165
|
country: string;
|
@@ -1207,7 +1201,6 @@ export declare const RejectionReason: z.ZodObject<{
|
|
1207
1201
|
declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
1208
1202
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
1209
1203
|
transactionId: z.ZodString;
|
1210
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
1211
1204
|
createdAt: z.ZodString;
|
1212
1205
|
createdBy: z.ZodString;
|
1213
1206
|
createdByRole: z.ZodString;
|
@@ -1327,16 +1320,16 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1327
1320
|
addressLine3?: string | null | undefined;
|
1328
1321
|
postcodeOrZip?: string | null | undefined;
|
1329
1322
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1330
|
-
firstname: z.
|
1331
|
-
surname: z.
|
1323
|
+
firstname: z.ZodString;
|
1324
|
+
surname: z.ZodString;
|
1332
1325
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1333
1326
|
}, "strip", z.ZodTypeAny, {
|
1334
|
-
firstname
|
1335
|
-
surname
|
1327
|
+
firstname: string;
|
1328
|
+
surname: string;
|
1336
1329
|
middlename?: string | null | undefined;
|
1337
1330
|
}, {
|
1338
|
-
firstname
|
1339
|
-
surname
|
1331
|
+
firstname: string;
|
1332
|
+
surname: string;
|
1340
1333
|
middlename?: string | null | undefined;
|
1341
1334
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
1342
1335
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -1453,16 +1446,16 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1453
1446
|
addressLine3?: string | null | undefined;
|
1454
1447
|
postcodeOrZip?: string | null | undefined;
|
1455
1448
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1456
|
-
firstname: z.
|
1457
|
-
surname: z.
|
1449
|
+
firstname: z.ZodString;
|
1450
|
+
surname: z.ZodString;
|
1458
1451
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1459
1452
|
}, "strip", z.ZodTypeAny, {
|
1460
|
-
firstname
|
1461
|
-
surname
|
1453
|
+
firstname: string;
|
1454
|
+
surname: string;
|
1462
1455
|
middlename?: string | null | undefined;
|
1463
1456
|
}, {
|
1464
|
-
firstname
|
1465
|
-
surname
|
1457
|
+
firstname: string;
|
1458
|
+
surname: string;
|
1466
1459
|
middlename?: string | null | undefined;
|
1467
1460
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
1468
1461
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -1474,7 +1467,6 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1474
1467
|
id: string & z.BRAND<"UUID">;
|
1475
1468
|
status: "Rejected" | "Requested" | "Accepted";
|
1476
1469
|
transactionId: string;
|
1477
|
-
createdByUserType: "system" | "user";
|
1478
1470
|
createdAt: string;
|
1479
1471
|
createdBy: string;
|
1480
1472
|
createdByRole: string;
|
@@ -1494,8 +1486,8 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1494
1486
|
street?: string | null | undefined;
|
1495
1487
|
zipCode?: string | null | undefined;
|
1496
1488
|
} | {
|
1497
|
-
firstname
|
1498
|
-
surname
|
1489
|
+
firstname: string;
|
1490
|
+
surname: string;
|
1499
1491
|
middlename?: string | null | undefined;
|
1500
1492
|
} | {
|
1501
1493
|
country: string;
|
@@ -1538,8 +1530,8 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1538
1530
|
street?: string | null | undefined;
|
1539
1531
|
zipCode?: string | null | undefined;
|
1540
1532
|
} | {
|
1541
|
-
firstname
|
1542
|
-
surname
|
1533
|
+
firstname: string;
|
1534
|
+
surname: string;
|
1543
1535
|
middlename?: string | null | undefined;
|
1544
1536
|
} | {
|
1545
1537
|
country: string;
|
@@ -1570,7 +1562,6 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1570
1562
|
id: string;
|
1571
1563
|
status: "Rejected" | "Requested" | "Accepted";
|
1572
1564
|
transactionId: string;
|
1573
|
-
createdByUserType: "system" | "user";
|
1574
1565
|
createdAt: string;
|
1575
1566
|
createdBy: string;
|
1576
1567
|
createdByRole: string;
|
@@ -1590,8 +1581,8 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1590
1581
|
street?: string | null | undefined;
|
1591
1582
|
zipCode?: string | null | undefined;
|
1592
1583
|
} | {
|
1593
|
-
firstname
|
1594
|
-
surname
|
1584
|
+
firstname: string;
|
1585
|
+
surname: string;
|
1595
1586
|
middlename?: string | null | undefined;
|
1596
1587
|
} | {
|
1597
1588
|
country: string;
|
@@ -1634,8 +1625,8 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1634
1625
|
street?: string | null | undefined;
|
1635
1626
|
zipCode?: string | null | undefined;
|
1636
1627
|
} | {
|
1637
|
-
firstname
|
1638
|
-
surname
|
1628
|
+
firstname: string;
|
1629
|
+
surname: string;
|
1639
1630
|
middlename?: string | null | undefined;
|
1640
1631
|
} | {
|
1641
1632
|
country: string;
|
@@ -1665,7 +1656,6 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1665
1656
|
export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
1666
1657
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
1667
1658
|
transactionId: z.ZodString;
|
1668
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
1669
1659
|
createdAt: z.ZodString;
|
1670
1660
|
createdBy: z.ZodString;
|
1671
1661
|
createdByRole: z.ZodString;
|
@@ -1785,16 +1775,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1785
1775
|
addressLine3?: string | null | undefined;
|
1786
1776
|
postcodeOrZip?: string | null | undefined;
|
1787
1777
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1788
|
-
firstname: z.
|
1789
|
-
surname: z.
|
1778
|
+
firstname: z.ZodString;
|
1779
|
+
surname: z.ZodString;
|
1790
1780
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1791
1781
|
}, "strip", z.ZodTypeAny, {
|
1792
|
-
firstname
|
1793
|
-
surname
|
1782
|
+
firstname: string;
|
1783
|
+
surname: string;
|
1794
1784
|
middlename?: string | null | undefined;
|
1795
1785
|
}, {
|
1796
|
-
firstname
|
1797
|
-
surname
|
1786
|
+
firstname: string;
|
1787
|
+
surname: string;
|
1798
1788
|
middlename?: string | null | undefined;
|
1799
1789
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
1800
1790
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -1911,16 +1901,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1911
1901
|
addressLine3?: string | null | undefined;
|
1912
1902
|
postcodeOrZip?: string | null | undefined;
|
1913
1903
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1914
|
-
firstname: z.
|
1915
|
-
surname: z.
|
1904
|
+
firstname: z.ZodString;
|
1905
|
+
surname: z.ZodString;
|
1916
1906
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
1917
1907
|
}, "strip", z.ZodTypeAny, {
|
1918
|
-
firstname
|
1919
|
-
surname
|
1908
|
+
firstname: string;
|
1909
|
+
surname: string;
|
1920
1910
|
middlename?: string | null | undefined;
|
1921
1911
|
}, {
|
1922
|
-
firstname
|
1923
|
-
surname
|
1912
|
+
firstname: string;
|
1913
|
+
surname: string;
|
1924
1914
|
middlename?: string | null | undefined;
|
1925
1915
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
1926
1916
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -1932,7 +1922,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1932
1922
|
id: string & z.BRAND<"UUID">;
|
1933
1923
|
status: "Rejected" | "Requested" | "Accepted";
|
1934
1924
|
transactionId: string;
|
1935
|
-
createdByUserType: "system" | "user";
|
1936
1925
|
createdAt: string;
|
1937
1926
|
createdBy: string;
|
1938
1927
|
createdByRole: string;
|
@@ -1952,8 +1941,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1952
1941
|
street?: string | null | undefined;
|
1953
1942
|
zipCode?: string | null | undefined;
|
1954
1943
|
} | {
|
1955
|
-
firstname
|
1956
|
-
surname
|
1944
|
+
firstname: string;
|
1945
|
+
surname: string;
|
1957
1946
|
middlename?: string | null | undefined;
|
1958
1947
|
} | {
|
1959
1948
|
country: string;
|
@@ -1996,8 +1985,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
1996
1985
|
street?: string | null | undefined;
|
1997
1986
|
zipCode?: string | null | undefined;
|
1998
1987
|
} | {
|
1999
|
-
firstname
|
2000
|
-
surname
|
1988
|
+
firstname: string;
|
1989
|
+
surname: string;
|
2001
1990
|
middlename?: string | null | undefined;
|
2002
1991
|
} | {
|
2003
1992
|
country: string;
|
@@ -2028,7 +2017,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2028
2017
|
id: string;
|
2029
2018
|
status: "Rejected" | "Requested" | "Accepted";
|
2030
2019
|
transactionId: string;
|
2031
|
-
createdByUserType: "system" | "user";
|
2032
2020
|
createdAt: string;
|
2033
2021
|
createdBy: string;
|
2034
2022
|
createdByRole: string;
|
@@ -2048,8 +2036,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2048
2036
|
street?: string | null | undefined;
|
2049
2037
|
zipCode?: string | null | undefined;
|
2050
2038
|
} | {
|
2051
|
-
firstname
|
2052
|
-
surname
|
2039
|
+
firstname: string;
|
2040
|
+
surname: string;
|
2053
2041
|
middlename?: string | null | undefined;
|
2054
2042
|
} | {
|
2055
2043
|
country: string;
|
@@ -2092,8 +2080,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2092
2080
|
street?: string | null | undefined;
|
2093
2081
|
zipCode?: string | null | undefined;
|
2094
2082
|
} | {
|
2095
|
-
firstname
|
2096
|
-
surname
|
2083
|
+
firstname: string;
|
2084
|
+
surname: string;
|
2097
2085
|
middlename?: string | null | undefined;
|
2098
2086
|
} | {
|
2099
2087
|
country: string;
|
@@ -2122,7 +2110,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2122
2110
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2123
2111
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
2124
2112
|
transactionId: z.ZodString;
|
2125
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
2126
2113
|
createdAt: z.ZodString;
|
2127
2114
|
createdBy: z.ZodString;
|
2128
2115
|
createdByRole: z.ZodString;
|
@@ -2242,16 +2229,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2242
2229
|
addressLine3?: string | null | undefined;
|
2243
2230
|
postcodeOrZip?: string | null | undefined;
|
2244
2231
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2245
|
-
firstname: z.
|
2246
|
-
surname: z.
|
2232
|
+
firstname: z.ZodString;
|
2233
|
+
surname: z.ZodString;
|
2247
2234
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2248
2235
|
}, "strip", z.ZodTypeAny, {
|
2249
|
-
firstname
|
2250
|
-
surname
|
2236
|
+
firstname: string;
|
2237
|
+
surname: string;
|
2251
2238
|
middlename?: string | null | undefined;
|
2252
2239
|
}, {
|
2253
|
-
firstname
|
2254
|
-
surname
|
2240
|
+
firstname: string;
|
2241
|
+
surname: string;
|
2255
2242
|
middlename?: string | null | undefined;
|
2256
2243
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
2257
2244
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -2368,16 +2355,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2368
2355
|
addressLine3?: string | null | undefined;
|
2369
2356
|
postcodeOrZip?: string | null | undefined;
|
2370
2357
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2371
|
-
firstname: z.
|
2372
|
-
surname: z.
|
2358
|
+
firstname: z.ZodString;
|
2359
|
+
surname: z.ZodString;
|
2373
2360
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2374
2361
|
}, "strip", z.ZodTypeAny, {
|
2375
|
-
firstname
|
2376
|
-
surname
|
2362
|
+
firstname: string;
|
2363
|
+
surname: string;
|
2377
2364
|
middlename?: string | null | undefined;
|
2378
2365
|
}, {
|
2379
|
-
firstname
|
2380
|
-
surname
|
2366
|
+
firstname: string;
|
2367
|
+
surname: string;
|
2381
2368
|
middlename?: string | null | undefined;
|
2382
2369
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
2383
2370
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -2389,7 +2376,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2389
2376
|
id: string & z.BRAND<"UUID">;
|
2390
2377
|
status: "Rejected" | "Requested" | "Accepted";
|
2391
2378
|
transactionId: string;
|
2392
|
-
createdByUserType: "system" | "user";
|
2393
2379
|
createdAt: string;
|
2394
2380
|
createdBy: string;
|
2395
2381
|
createdByRole: string;
|
@@ -2409,8 +2395,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2409
2395
|
street?: string | null | undefined;
|
2410
2396
|
zipCode?: string | null | undefined;
|
2411
2397
|
} | {
|
2412
|
-
firstname
|
2413
|
-
surname
|
2398
|
+
firstname: string;
|
2399
|
+
surname: string;
|
2414
2400
|
middlename?: string | null | undefined;
|
2415
2401
|
} | {
|
2416
2402
|
country: string;
|
@@ -2453,8 +2439,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2453
2439
|
street?: string | null | undefined;
|
2454
2440
|
zipCode?: string | null | undefined;
|
2455
2441
|
} | {
|
2456
|
-
firstname
|
2457
|
-
surname
|
2442
|
+
firstname: string;
|
2443
|
+
surname: string;
|
2458
2444
|
middlename?: string | null | undefined;
|
2459
2445
|
} | {
|
2460
2446
|
country: string;
|
@@ -2485,7 +2471,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2485
2471
|
id: string;
|
2486
2472
|
status: "Rejected" | "Requested" | "Accepted";
|
2487
2473
|
transactionId: string;
|
2488
|
-
createdByUserType: "system" | "user";
|
2489
2474
|
createdAt: string;
|
2490
2475
|
createdBy: string;
|
2491
2476
|
createdByRole: string;
|
@@ -2505,8 +2490,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2505
2490
|
street?: string | null | undefined;
|
2506
2491
|
zipCode?: string | null | undefined;
|
2507
2492
|
} | {
|
2508
|
-
firstname
|
2509
|
-
surname
|
2493
|
+
firstname: string;
|
2494
|
+
surname: string;
|
2510
2495
|
middlename?: string | null | undefined;
|
2511
2496
|
} | {
|
2512
2497
|
country: string;
|
@@ -2549,8 +2534,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2549
2534
|
street?: string | null | undefined;
|
2550
2535
|
zipCode?: string | null | undefined;
|
2551
2536
|
} | {
|
2552
|
-
firstname
|
2553
|
-
surname
|
2537
|
+
firstname: string;
|
2538
|
+
surname: string;
|
2554
2539
|
middlename?: string | null | undefined;
|
2555
2540
|
} | {
|
2556
2541
|
country: string;
|
@@ -2579,7 +2564,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2579
2564
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
2580
2565
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
2581
2566
|
transactionId: z.ZodString;
|
2582
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
2583
2567
|
createdAt: z.ZodString;
|
2584
2568
|
createdBy: z.ZodString;
|
2585
2569
|
createdByRole: z.ZodString;
|
@@ -2699,16 +2683,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2699
2683
|
addressLine3?: string | null | undefined;
|
2700
2684
|
postcodeOrZip?: string | null | undefined;
|
2701
2685
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2702
|
-
firstname: z.
|
2703
|
-
surname: z.
|
2686
|
+
firstname: z.ZodString;
|
2687
|
+
surname: z.ZodString;
|
2704
2688
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2705
2689
|
}, "strip", z.ZodTypeAny, {
|
2706
|
-
firstname
|
2707
|
-
surname
|
2690
|
+
firstname: string;
|
2691
|
+
surname: string;
|
2708
2692
|
middlename?: string | null | undefined;
|
2709
2693
|
}, {
|
2710
|
-
firstname
|
2711
|
-
surname
|
2694
|
+
firstname: string;
|
2695
|
+
surname: string;
|
2712
2696
|
middlename?: string | null | undefined;
|
2713
2697
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
2714
2698
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -2825,16 +2809,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2825
2809
|
addressLine3?: string | null | undefined;
|
2826
2810
|
postcodeOrZip?: string | null | undefined;
|
2827
2811
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2828
|
-
firstname: z.
|
2829
|
-
surname: z.
|
2812
|
+
firstname: z.ZodString;
|
2813
|
+
surname: z.ZodString;
|
2830
2814
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
2831
2815
|
}, "strip", z.ZodTypeAny, {
|
2832
|
-
firstname
|
2833
|
-
surname
|
2816
|
+
firstname: string;
|
2817
|
+
surname: string;
|
2834
2818
|
middlename?: string | null | undefined;
|
2835
2819
|
}, {
|
2836
|
-
firstname
|
2837
|
-
surname
|
2820
|
+
firstname: string;
|
2821
|
+
surname: string;
|
2838
2822
|
middlename?: string | null | undefined;
|
2839
2823
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
2840
2824
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -2860,7 +2844,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2860
2844
|
isDuplicate?: boolean | undefined;
|
2861
2845
|
};
|
2862
2846
|
transactionId: string;
|
2863
|
-
createdByUserType: "system" | "user";
|
2864
2847
|
createdAt: string;
|
2865
2848
|
createdBy: string;
|
2866
2849
|
createdByRole: string;
|
@@ -2880,8 +2863,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2880
2863
|
street?: string | null | undefined;
|
2881
2864
|
zipCode?: string | null | undefined;
|
2882
2865
|
} | {
|
2883
|
-
firstname
|
2884
|
-
surname
|
2866
|
+
firstname: string;
|
2867
|
+
surname: string;
|
2885
2868
|
middlename?: string | null | undefined;
|
2886
2869
|
} | {
|
2887
2870
|
country: string;
|
@@ -2924,8 +2907,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2924
2907
|
street?: string | null | undefined;
|
2925
2908
|
zipCode?: string | null | undefined;
|
2926
2909
|
} | {
|
2927
|
-
firstname
|
2928
|
-
surname
|
2910
|
+
firstname: string;
|
2911
|
+
surname: string;
|
2929
2912
|
middlename?: string | null | undefined;
|
2930
2913
|
} | {
|
2931
2914
|
country: string;
|
@@ -2960,7 +2943,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2960
2943
|
isDuplicate?: boolean | undefined;
|
2961
2944
|
};
|
2962
2945
|
transactionId: string;
|
2963
|
-
createdByUserType: "system" | "user";
|
2964
2946
|
createdAt: string;
|
2965
2947
|
createdBy: string;
|
2966
2948
|
createdByRole: string;
|
@@ -2980,8 +2962,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2980
2962
|
street?: string | null | undefined;
|
2981
2963
|
zipCode?: string | null | undefined;
|
2982
2964
|
} | {
|
2983
|
-
firstname
|
2984
|
-
surname
|
2965
|
+
firstname: string;
|
2966
|
+
surname: string;
|
2985
2967
|
middlename?: string | null | undefined;
|
2986
2968
|
} | {
|
2987
2969
|
country: string;
|
@@ -3024,8 +3006,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3024
3006
|
street?: string | null | undefined;
|
3025
3007
|
zipCode?: string | null | undefined;
|
3026
3008
|
} | {
|
3027
|
-
firstname
|
3028
|
-
surname
|
3009
|
+
firstname: string;
|
3010
|
+
surname: string;
|
3029
3011
|
middlename?: string | null | undefined;
|
3030
3012
|
} | {
|
3031
3013
|
country: string;
|
@@ -3054,7 +3036,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3054
3036
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3055
3037
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
3056
3038
|
transactionId: z.ZodString;
|
3057
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
3058
3039
|
createdAt: z.ZodString;
|
3059
3040
|
createdBy: z.ZodString;
|
3060
3041
|
createdByRole: z.ZodString;
|
@@ -3174,16 +3155,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3174
3155
|
addressLine3?: string | null | undefined;
|
3175
3156
|
postcodeOrZip?: string | null | undefined;
|
3176
3157
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3177
|
-
firstname: z.
|
3178
|
-
surname: z.
|
3158
|
+
firstname: z.ZodString;
|
3159
|
+
surname: z.ZodString;
|
3179
3160
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3180
3161
|
}, "strip", z.ZodTypeAny, {
|
3181
|
-
firstname
|
3182
|
-
surname
|
3162
|
+
firstname: string;
|
3163
|
+
surname: string;
|
3183
3164
|
middlename?: string | null | undefined;
|
3184
3165
|
}, {
|
3185
|
-
firstname
|
3186
|
-
surname
|
3166
|
+
firstname: string;
|
3167
|
+
surname: string;
|
3187
3168
|
middlename?: string | null | undefined;
|
3188
3169
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
3189
3170
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -3300,16 +3281,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3300
3281
|
addressLine3?: string | null | undefined;
|
3301
3282
|
postcodeOrZip?: string | null | undefined;
|
3302
3283
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3303
|
-
firstname: z.
|
3304
|
-
surname: z.
|
3284
|
+
firstname: z.ZodString;
|
3285
|
+
surname: z.ZodString;
|
3305
3286
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3306
3287
|
}, "strip", z.ZodTypeAny, {
|
3307
|
-
firstname
|
3308
|
-
surname
|
3288
|
+
firstname: string;
|
3289
|
+
surname: string;
|
3309
3290
|
middlename?: string | null | undefined;
|
3310
3291
|
}, {
|
3311
|
-
firstname
|
3312
|
-
surname
|
3292
|
+
firstname: string;
|
3293
|
+
surname: string;
|
3313
3294
|
middlename?: string | null | undefined;
|
3314
3295
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
3315
3296
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -3321,7 +3302,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3321
3302
|
id: string & z.BRAND<"UUID">;
|
3322
3303
|
status: "Rejected" | "Requested" | "Accepted";
|
3323
3304
|
transactionId: string;
|
3324
|
-
createdByUserType: "system" | "user";
|
3325
3305
|
createdAt: string;
|
3326
3306
|
createdBy: string;
|
3327
3307
|
createdByRole: string;
|
@@ -3341,8 +3321,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3341
3321
|
street?: string | null | undefined;
|
3342
3322
|
zipCode?: string | null | undefined;
|
3343
3323
|
} | {
|
3344
|
-
firstname
|
3345
|
-
surname
|
3324
|
+
firstname: string;
|
3325
|
+
surname: string;
|
3346
3326
|
middlename?: string | null | undefined;
|
3347
3327
|
} | {
|
3348
3328
|
country: string;
|
@@ -3385,8 +3365,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3385
3365
|
street?: string | null | undefined;
|
3386
3366
|
zipCode?: string | null | undefined;
|
3387
3367
|
} | {
|
3388
|
-
firstname
|
3389
|
-
surname
|
3368
|
+
firstname: string;
|
3369
|
+
surname: string;
|
3390
3370
|
middlename?: string | null | undefined;
|
3391
3371
|
} | {
|
3392
3372
|
country: string;
|
@@ -3417,7 +3397,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3417
3397
|
id: string;
|
3418
3398
|
status: "Rejected" | "Requested" | "Accepted";
|
3419
3399
|
transactionId: string;
|
3420
|
-
createdByUserType: "system" | "user";
|
3421
3400
|
createdAt: string;
|
3422
3401
|
createdBy: string;
|
3423
3402
|
createdByRole: string;
|
@@ -3437,8 +3416,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3437
3416
|
street?: string | null | undefined;
|
3438
3417
|
zipCode?: string | null | undefined;
|
3439
3418
|
} | {
|
3440
|
-
firstname
|
3441
|
-
surname
|
3419
|
+
firstname: string;
|
3420
|
+
surname: string;
|
3442
3421
|
middlename?: string | null | undefined;
|
3443
3422
|
} | {
|
3444
3423
|
country: string;
|
@@ -3481,8 +3460,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3481
3460
|
street?: string | null | undefined;
|
3482
3461
|
zipCode?: string | null | undefined;
|
3483
3462
|
} | {
|
3484
|
-
firstname
|
3485
|
-
surname
|
3463
|
+
firstname: string;
|
3464
|
+
surname: string;
|
3486
3465
|
middlename?: string | null | undefined;
|
3487
3466
|
} | {
|
3488
3467
|
country: string;
|
@@ -3511,7 +3490,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3511
3490
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3512
3491
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
3513
3492
|
transactionId: z.ZodString;
|
3514
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
3515
3493
|
createdAt: z.ZodString;
|
3516
3494
|
createdBy: z.ZodString;
|
3517
3495
|
createdByRole: z.ZodString;
|
@@ -3631,16 +3609,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3631
3609
|
addressLine3?: string | null | undefined;
|
3632
3610
|
postcodeOrZip?: string | null | undefined;
|
3633
3611
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3634
|
-
firstname: z.
|
3635
|
-
surname: z.
|
3612
|
+
firstname: z.ZodString;
|
3613
|
+
surname: z.ZodString;
|
3636
3614
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3637
3615
|
}, "strip", z.ZodTypeAny, {
|
3638
|
-
firstname
|
3639
|
-
surname
|
3616
|
+
firstname: string;
|
3617
|
+
surname: string;
|
3640
3618
|
middlename?: string | null | undefined;
|
3641
3619
|
}, {
|
3642
|
-
firstname
|
3643
|
-
surname
|
3620
|
+
firstname: string;
|
3621
|
+
surname: string;
|
3644
3622
|
middlename?: string | null | undefined;
|
3645
3623
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
3646
3624
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -3757,16 +3735,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3757
3735
|
addressLine3?: string | null | undefined;
|
3758
3736
|
postcodeOrZip?: string | null | undefined;
|
3759
3737
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3760
|
-
firstname: z.
|
3761
|
-
surname: z.
|
3738
|
+
firstname: z.ZodString;
|
3739
|
+
surname: z.ZodString;
|
3762
3740
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
3763
3741
|
}, "strip", z.ZodTypeAny, {
|
3764
|
-
firstname
|
3765
|
-
surname
|
3742
|
+
firstname: string;
|
3743
|
+
surname: string;
|
3766
3744
|
middlename?: string | null | undefined;
|
3767
3745
|
}, {
|
3768
|
-
firstname
|
3769
|
-
surname
|
3746
|
+
firstname: string;
|
3747
|
+
surname: string;
|
3770
3748
|
middlename?: string | null | undefined;
|
3771
3749
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
3772
3750
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -3792,7 +3770,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3792
3770
|
isDuplicate?: boolean | undefined;
|
3793
3771
|
};
|
3794
3772
|
transactionId: string;
|
3795
|
-
createdByUserType: "system" | "user";
|
3796
3773
|
createdAt: string;
|
3797
3774
|
createdBy: string;
|
3798
3775
|
createdByRole: string;
|
@@ -3812,8 +3789,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3812
3789
|
street?: string | null | undefined;
|
3813
3790
|
zipCode?: string | null | undefined;
|
3814
3791
|
} | {
|
3815
|
-
firstname
|
3816
|
-
surname
|
3792
|
+
firstname: string;
|
3793
|
+
surname: string;
|
3817
3794
|
middlename?: string | null | undefined;
|
3818
3795
|
} | {
|
3819
3796
|
country: string;
|
@@ -3856,8 +3833,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3856
3833
|
street?: string | null | undefined;
|
3857
3834
|
zipCode?: string | null | undefined;
|
3858
3835
|
} | {
|
3859
|
-
firstname
|
3860
|
-
surname
|
3836
|
+
firstname: string;
|
3837
|
+
surname: string;
|
3861
3838
|
middlename?: string | null | undefined;
|
3862
3839
|
} | {
|
3863
3840
|
country: string;
|
@@ -3892,7 +3869,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3892
3869
|
isDuplicate?: boolean | undefined;
|
3893
3870
|
};
|
3894
3871
|
transactionId: string;
|
3895
|
-
createdByUserType: "system" | "user";
|
3896
3872
|
createdAt: string;
|
3897
3873
|
createdBy: string;
|
3898
3874
|
createdByRole: string;
|
@@ -3912,8 +3888,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3912
3888
|
street?: string | null | undefined;
|
3913
3889
|
zipCode?: string | null | undefined;
|
3914
3890
|
} | {
|
3915
|
-
firstname
|
3916
|
-
surname
|
3891
|
+
firstname: string;
|
3892
|
+
surname: string;
|
3917
3893
|
middlename?: string | null | undefined;
|
3918
3894
|
} | {
|
3919
3895
|
country: string;
|
@@ -3956,8 +3932,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3956
3932
|
street?: string | null | undefined;
|
3957
3933
|
zipCode?: string | null | undefined;
|
3958
3934
|
} | {
|
3959
|
-
firstname
|
3960
|
-
surname
|
3935
|
+
firstname: string;
|
3936
|
+
surname: string;
|
3961
3937
|
middlename?: string | null | undefined;
|
3962
3938
|
} | {
|
3963
3939
|
country: string;
|
@@ -3986,7 +3962,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3986
3962
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
3987
3963
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
3988
3964
|
transactionId: z.ZodString;
|
3989
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
3990
3965
|
createdAt: z.ZodString;
|
3991
3966
|
createdBy: z.ZodString;
|
3992
3967
|
createdByRole: z.ZodString;
|
@@ -4106,16 +4081,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4106
4081
|
addressLine3?: string | null | undefined;
|
4107
4082
|
postcodeOrZip?: string | null | undefined;
|
4108
4083
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4109
|
-
firstname: z.
|
4110
|
-
surname: z.
|
4084
|
+
firstname: z.ZodString;
|
4085
|
+
surname: z.ZodString;
|
4111
4086
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4112
4087
|
}, "strip", z.ZodTypeAny, {
|
4113
|
-
firstname
|
4114
|
-
surname
|
4088
|
+
firstname: string;
|
4089
|
+
surname: string;
|
4115
4090
|
middlename?: string | null | undefined;
|
4116
4091
|
}, {
|
4117
|
-
firstname
|
4118
|
-
surname
|
4092
|
+
firstname: string;
|
4093
|
+
surname: string;
|
4119
4094
|
middlename?: string | null | undefined;
|
4120
4095
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
4121
4096
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -4232,16 +4207,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4232
4207
|
addressLine3?: string | null | undefined;
|
4233
4208
|
postcodeOrZip?: string | null | undefined;
|
4234
4209
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4235
|
-
firstname: z.
|
4236
|
-
surname: z.
|
4210
|
+
firstname: z.ZodString;
|
4211
|
+
surname: z.ZodString;
|
4237
4212
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4238
4213
|
}, "strip", z.ZodTypeAny, {
|
4239
|
-
firstname
|
4240
|
-
surname
|
4214
|
+
firstname: string;
|
4215
|
+
surname: string;
|
4241
4216
|
middlename?: string | null | undefined;
|
4242
4217
|
}, {
|
4243
|
-
firstname
|
4244
|
-
surname
|
4218
|
+
firstname: string;
|
4219
|
+
surname: string;
|
4245
4220
|
middlename?: string | null | undefined;
|
4246
4221
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
4247
4222
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -4253,7 +4228,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4253
4228
|
id: string & z.BRAND<"UUID">;
|
4254
4229
|
status: "Rejected" | "Requested" | "Accepted";
|
4255
4230
|
transactionId: string;
|
4256
|
-
createdByUserType: "system" | "user";
|
4257
4231
|
createdAt: string;
|
4258
4232
|
createdBy: string;
|
4259
4233
|
createdByRole: string;
|
@@ -4273,8 +4247,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4273
4247
|
street?: string | null | undefined;
|
4274
4248
|
zipCode?: string | null | undefined;
|
4275
4249
|
} | {
|
4276
|
-
firstname
|
4277
|
-
surname
|
4250
|
+
firstname: string;
|
4251
|
+
surname: string;
|
4278
4252
|
middlename?: string | null | undefined;
|
4279
4253
|
} | {
|
4280
4254
|
country: string;
|
@@ -4317,8 +4291,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4317
4291
|
street?: string | null | undefined;
|
4318
4292
|
zipCode?: string | null | undefined;
|
4319
4293
|
} | {
|
4320
|
-
firstname
|
4321
|
-
surname
|
4294
|
+
firstname: string;
|
4295
|
+
surname: string;
|
4322
4296
|
middlename?: string | null | undefined;
|
4323
4297
|
} | {
|
4324
4298
|
country: string;
|
@@ -4349,7 +4323,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4349
4323
|
id: string;
|
4350
4324
|
status: "Rejected" | "Requested" | "Accepted";
|
4351
4325
|
transactionId: string;
|
4352
|
-
createdByUserType: "system" | "user";
|
4353
4326
|
createdAt: string;
|
4354
4327
|
createdBy: string;
|
4355
4328
|
createdByRole: string;
|
@@ -4369,8 +4342,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4369
4342
|
street?: string | null | undefined;
|
4370
4343
|
zipCode?: string | null | undefined;
|
4371
4344
|
} | {
|
4372
|
-
firstname
|
4373
|
-
surname
|
4345
|
+
firstname: string;
|
4346
|
+
surname: string;
|
4374
4347
|
middlename?: string | null | undefined;
|
4375
4348
|
} | {
|
4376
4349
|
country: string;
|
@@ -4413,8 +4386,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4413
4386
|
street?: string | null | undefined;
|
4414
4387
|
zipCode?: string | null | undefined;
|
4415
4388
|
} | {
|
4416
|
-
firstname
|
4417
|
-
surname
|
4389
|
+
firstname: string;
|
4390
|
+
surname: string;
|
4418
4391
|
middlename?: string | null | undefined;
|
4419
4392
|
} | {
|
4420
4393
|
country: string;
|
@@ -4443,7 +4416,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4443
4416
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4444
4417
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
4445
4418
|
transactionId: z.ZodString;
|
4446
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
4447
4419
|
createdAt: z.ZodString;
|
4448
4420
|
createdBy: z.ZodString;
|
4449
4421
|
createdByRole: z.ZodString;
|
@@ -4563,16 +4535,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4563
4535
|
addressLine3?: string | null | undefined;
|
4564
4536
|
postcodeOrZip?: string | null | undefined;
|
4565
4537
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4566
|
-
firstname: z.
|
4567
|
-
surname: z.
|
4538
|
+
firstname: z.ZodString;
|
4539
|
+
surname: z.ZodString;
|
4568
4540
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4569
4541
|
}, "strip", z.ZodTypeAny, {
|
4570
|
-
firstname
|
4571
|
-
surname
|
4542
|
+
firstname: string;
|
4543
|
+
surname: string;
|
4572
4544
|
middlename?: string | null | undefined;
|
4573
4545
|
}, {
|
4574
|
-
firstname
|
4575
|
-
surname
|
4546
|
+
firstname: string;
|
4547
|
+
surname: string;
|
4576
4548
|
middlename?: string | null | undefined;
|
4577
4549
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
4578
4550
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -4689,16 +4661,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4689
4661
|
addressLine3?: string | null | undefined;
|
4690
4662
|
postcodeOrZip?: string | null | undefined;
|
4691
4663
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4692
|
-
firstname: z.
|
4693
|
-
surname: z.
|
4664
|
+
firstname: z.ZodString;
|
4665
|
+
surname: z.ZodString;
|
4694
4666
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
4695
4667
|
}, "strip", z.ZodTypeAny, {
|
4696
|
-
firstname
|
4697
|
-
surname
|
4668
|
+
firstname: string;
|
4669
|
+
surname: string;
|
4698
4670
|
middlename?: string | null | undefined;
|
4699
4671
|
}, {
|
4700
|
-
firstname
|
4701
|
-
surname
|
4672
|
+
firstname: string;
|
4673
|
+
surname: string;
|
4702
4674
|
middlename?: string | null | undefined;
|
4703
4675
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
4704
4676
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -4711,7 +4683,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4711
4683
|
id: string & z.BRAND<"UUID">;
|
4712
4684
|
status: "Rejected" | "Requested" | "Accepted";
|
4713
4685
|
transactionId: string;
|
4714
|
-
createdByUserType: "system" | "user";
|
4715
4686
|
createdAt: string;
|
4716
4687
|
createdBy: string;
|
4717
4688
|
createdByRole: string;
|
@@ -4731,8 +4702,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4731
4702
|
street?: string | null | undefined;
|
4732
4703
|
zipCode?: string | null | undefined;
|
4733
4704
|
} | {
|
4734
|
-
firstname
|
4735
|
-
surname
|
4705
|
+
firstname: string;
|
4706
|
+
surname: string;
|
4736
4707
|
middlename?: string | null | undefined;
|
4737
4708
|
} | {
|
4738
4709
|
country: string;
|
@@ -4775,8 +4746,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4775
4746
|
street?: string | null | undefined;
|
4776
4747
|
zipCode?: string | null | undefined;
|
4777
4748
|
} | {
|
4778
|
-
firstname
|
4779
|
-
surname
|
4749
|
+
firstname: string;
|
4750
|
+
surname: string;
|
4780
4751
|
middlename?: string | null | undefined;
|
4781
4752
|
} | {
|
4782
4753
|
country: string;
|
@@ -4808,7 +4779,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4808
4779
|
id: string;
|
4809
4780
|
status: "Rejected" | "Requested" | "Accepted";
|
4810
4781
|
transactionId: string;
|
4811
|
-
createdByUserType: "system" | "user";
|
4812
4782
|
createdAt: string;
|
4813
4783
|
createdBy: string;
|
4814
4784
|
createdByRole: string;
|
@@ -4828,8 +4798,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4828
4798
|
street?: string | null | undefined;
|
4829
4799
|
zipCode?: string | null | undefined;
|
4830
4800
|
} | {
|
4831
|
-
firstname
|
4832
|
-
surname
|
4801
|
+
firstname: string;
|
4802
|
+
surname: string;
|
4833
4803
|
middlename?: string | null | undefined;
|
4834
4804
|
} | {
|
4835
4805
|
country: string;
|
@@ -4872,8 +4842,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4872
4842
|
street?: string | null | undefined;
|
4873
4843
|
zipCode?: string | null | undefined;
|
4874
4844
|
} | {
|
4875
|
-
firstname
|
4876
|
-
surname
|
4845
|
+
firstname: string;
|
4846
|
+
surname: string;
|
4877
4847
|
middlename?: string | null | undefined;
|
4878
4848
|
} | {
|
4879
4849
|
country: string;
|
@@ -4903,7 +4873,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4903
4873
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
4904
4874
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
4905
4875
|
transactionId: z.ZodString;
|
4906
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
4907
4876
|
createdAt: z.ZodString;
|
4908
4877
|
createdBy: z.ZodString;
|
4909
4878
|
createdByRole: z.ZodString;
|
@@ -5023,16 +4992,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5023
4992
|
addressLine3?: string | null | undefined;
|
5024
4993
|
postcodeOrZip?: string | null | undefined;
|
5025
4994
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5026
|
-
firstname: z.
|
5027
|
-
surname: z.
|
4995
|
+
firstname: z.ZodString;
|
4996
|
+
surname: z.ZodString;
|
5028
4997
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5029
4998
|
}, "strip", z.ZodTypeAny, {
|
5030
|
-
firstname
|
5031
|
-
surname
|
4999
|
+
firstname: string;
|
5000
|
+
surname: string;
|
5032
5001
|
middlename?: string | null | undefined;
|
5033
5002
|
}, {
|
5034
|
-
firstname
|
5035
|
-
surname
|
5003
|
+
firstname: string;
|
5004
|
+
surname: string;
|
5036
5005
|
middlename?: string | null | undefined;
|
5037
5006
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
5038
5007
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -5149,16 +5118,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5149
5118
|
addressLine3?: string | null | undefined;
|
5150
5119
|
postcodeOrZip?: string | null | undefined;
|
5151
5120
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5152
|
-
firstname: z.
|
5153
|
-
surname: z.
|
5121
|
+
firstname: z.ZodString;
|
5122
|
+
surname: z.ZodString;
|
5154
5123
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5155
5124
|
}, "strip", z.ZodTypeAny, {
|
5156
|
-
firstname
|
5157
|
-
surname
|
5125
|
+
firstname: string;
|
5126
|
+
surname: string;
|
5158
5127
|
middlename?: string | null | undefined;
|
5159
5128
|
}, {
|
5160
|
-
firstname
|
5161
|
-
surname
|
5129
|
+
firstname: string;
|
5130
|
+
surname: string;
|
5162
5131
|
middlename?: string | null | undefined;
|
5163
5132
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
5164
5133
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -5170,7 +5139,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5170
5139
|
id: string & z.BRAND<"UUID">;
|
5171
5140
|
status: "Rejected" | "Requested" | "Accepted";
|
5172
5141
|
transactionId: string;
|
5173
|
-
createdByUserType: "system" | "user";
|
5174
5142
|
createdAt: string;
|
5175
5143
|
createdBy: string;
|
5176
5144
|
createdByRole: string;
|
@@ -5190,8 +5158,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5190
5158
|
street?: string | null | undefined;
|
5191
5159
|
zipCode?: string | null | undefined;
|
5192
5160
|
} | {
|
5193
|
-
firstname
|
5194
|
-
surname
|
5161
|
+
firstname: string;
|
5162
|
+
surname: string;
|
5195
5163
|
middlename?: string | null | undefined;
|
5196
5164
|
} | {
|
5197
5165
|
country: string;
|
@@ -5234,8 +5202,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5234
5202
|
street?: string | null | undefined;
|
5235
5203
|
zipCode?: string | null | undefined;
|
5236
5204
|
} | {
|
5237
|
-
firstname
|
5238
|
-
surname
|
5205
|
+
firstname: string;
|
5206
|
+
surname: string;
|
5239
5207
|
middlename?: string | null | undefined;
|
5240
5208
|
} | {
|
5241
5209
|
country: string;
|
@@ -5266,7 +5234,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5266
5234
|
id: string;
|
5267
5235
|
status: "Rejected" | "Requested" | "Accepted";
|
5268
5236
|
transactionId: string;
|
5269
|
-
createdByUserType: "system" | "user";
|
5270
5237
|
createdAt: string;
|
5271
5238
|
createdBy: string;
|
5272
5239
|
createdByRole: string;
|
@@ -5286,8 +5253,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5286
5253
|
street?: string | null | undefined;
|
5287
5254
|
zipCode?: string | null | undefined;
|
5288
5255
|
} | {
|
5289
|
-
firstname
|
5290
|
-
surname
|
5256
|
+
firstname: string;
|
5257
|
+
surname: string;
|
5291
5258
|
middlename?: string | null | undefined;
|
5292
5259
|
} | {
|
5293
5260
|
country: string;
|
@@ -5330,8 +5297,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5330
5297
|
street?: string | null | undefined;
|
5331
5298
|
zipCode?: string | null | undefined;
|
5332
5299
|
} | {
|
5333
|
-
firstname
|
5334
|
-
surname
|
5300
|
+
firstname: string;
|
5301
|
+
surname: string;
|
5335
5302
|
middlename?: string | null | undefined;
|
5336
5303
|
} | {
|
5337
5304
|
country: string;
|
@@ -5360,7 +5327,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5360
5327
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5361
5328
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
5362
5329
|
transactionId: z.ZodString;
|
5363
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
5364
5330
|
createdAt: z.ZodString;
|
5365
5331
|
createdBy: z.ZodString;
|
5366
5332
|
createdByRole: z.ZodString;
|
@@ -5480,16 +5446,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5480
5446
|
addressLine3?: string | null | undefined;
|
5481
5447
|
postcodeOrZip?: string | null | undefined;
|
5482
5448
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5483
|
-
firstname: z.
|
5484
|
-
surname: z.
|
5449
|
+
firstname: z.ZodString;
|
5450
|
+
surname: z.ZodString;
|
5485
5451
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5486
5452
|
}, "strip", z.ZodTypeAny, {
|
5487
|
-
firstname
|
5488
|
-
surname
|
5453
|
+
firstname: string;
|
5454
|
+
surname: string;
|
5489
5455
|
middlename?: string | null | undefined;
|
5490
5456
|
}, {
|
5491
|
-
firstname
|
5492
|
-
surname
|
5457
|
+
firstname: string;
|
5458
|
+
surname: string;
|
5493
5459
|
middlename?: string | null | undefined;
|
5494
5460
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
5495
5461
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -5606,16 +5572,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5606
5572
|
addressLine3?: string | null | undefined;
|
5607
5573
|
postcodeOrZip?: string | null | undefined;
|
5608
5574
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5609
|
-
firstname: z.
|
5610
|
-
surname: z.
|
5575
|
+
firstname: z.ZodString;
|
5576
|
+
surname: z.ZodString;
|
5611
5577
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5612
5578
|
}, "strip", z.ZodTypeAny, {
|
5613
|
-
firstname
|
5614
|
-
surname
|
5579
|
+
firstname: string;
|
5580
|
+
surname: string;
|
5615
5581
|
middlename?: string | null | undefined;
|
5616
5582
|
}, {
|
5617
|
-
firstname
|
5618
|
-
surname
|
5583
|
+
firstname: string;
|
5584
|
+
surname: string;
|
5619
5585
|
middlename?: string | null | undefined;
|
5620
5586
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
5621
5587
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -5628,7 +5594,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5628
5594
|
id: string & z.BRAND<"UUID">;
|
5629
5595
|
status: "Rejected" | "Requested" | "Accepted";
|
5630
5596
|
transactionId: string;
|
5631
|
-
createdByUserType: "system" | "user";
|
5632
5597
|
createdAt: string;
|
5633
5598
|
createdBy: string;
|
5634
5599
|
createdByRole: string;
|
@@ -5648,8 +5613,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5648
5613
|
street?: string | null | undefined;
|
5649
5614
|
zipCode?: string | null | undefined;
|
5650
5615
|
} | {
|
5651
|
-
firstname
|
5652
|
-
surname
|
5616
|
+
firstname: string;
|
5617
|
+
surname: string;
|
5653
5618
|
middlename?: string | null | undefined;
|
5654
5619
|
} | {
|
5655
5620
|
country: string;
|
@@ -5693,8 +5658,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5693
5658
|
street?: string | null | undefined;
|
5694
5659
|
zipCode?: string | null | undefined;
|
5695
5660
|
} | {
|
5696
|
-
firstname
|
5697
|
-
surname
|
5661
|
+
firstname: string;
|
5662
|
+
surname: string;
|
5698
5663
|
middlename?: string | null | undefined;
|
5699
5664
|
} | {
|
5700
5665
|
country: string;
|
@@ -5725,7 +5690,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5725
5690
|
id: string;
|
5726
5691
|
status: "Rejected" | "Requested" | "Accepted";
|
5727
5692
|
transactionId: string;
|
5728
|
-
createdByUserType: "system" | "user";
|
5729
5693
|
createdAt: string;
|
5730
5694
|
createdBy: string;
|
5731
5695
|
createdByRole: string;
|
@@ -5745,8 +5709,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5745
5709
|
street?: string | null | undefined;
|
5746
5710
|
zipCode?: string | null | undefined;
|
5747
5711
|
} | {
|
5748
|
-
firstname
|
5749
|
-
surname
|
5712
|
+
firstname: string;
|
5713
|
+
surname: string;
|
5750
5714
|
middlename?: string | null | undefined;
|
5751
5715
|
} | {
|
5752
5716
|
country: string;
|
@@ -5790,8 +5754,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5790
5754
|
street?: string | null | undefined;
|
5791
5755
|
zipCode?: string | null | undefined;
|
5792
5756
|
} | {
|
5793
|
-
firstname
|
5794
|
-
surname
|
5757
|
+
firstname: string;
|
5758
|
+
surname: string;
|
5795
5759
|
middlename?: string | null | undefined;
|
5796
5760
|
} | {
|
5797
5761
|
country: string;
|
@@ -5820,7 +5784,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5820
5784
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
5821
5785
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
5822
5786
|
transactionId: z.ZodString;
|
5823
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
5824
5787
|
createdAt: z.ZodString;
|
5825
5788
|
createdBy: z.ZodString;
|
5826
5789
|
createdByRole: z.ZodString;
|
@@ -5940,16 +5903,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5940
5903
|
addressLine3?: string | null | undefined;
|
5941
5904
|
postcodeOrZip?: string | null | undefined;
|
5942
5905
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5943
|
-
firstname: z.
|
5944
|
-
surname: z.
|
5906
|
+
firstname: z.ZodString;
|
5907
|
+
surname: z.ZodString;
|
5945
5908
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
5946
5909
|
}, "strip", z.ZodTypeAny, {
|
5947
|
-
firstname
|
5948
|
-
surname
|
5910
|
+
firstname: string;
|
5911
|
+
surname: string;
|
5949
5912
|
middlename?: string | null | undefined;
|
5950
5913
|
}, {
|
5951
|
-
firstname
|
5952
|
-
surname
|
5914
|
+
firstname: string;
|
5915
|
+
surname: string;
|
5953
5916
|
middlename?: string | null | undefined;
|
5954
5917
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
5955
5918
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -6066,16 +6029,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6066
6029
|
addressLine3?: string | null | undefined;
|
6067
6030
|
postcodeOrZip?: string | null | undefined;
|
6068
6031
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6069
|
-
firstname: z.
|
6070
|
-
surname: z.
|
6032
|
+
firstname: z.ZodString;
|
6033
|
+
surname: z.ZodString;
|
6071
6034
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6072
6035
|
}, "strip", z.ZodTypeAny, {
|
6073
|
-
firstname
|
6074
|
-
surname
|
6036
|
+
firstname: string;
|
6037
|
+
surname: string;
|
6075
6038
|
middlename?: string | null | undefined;
|
6076
6039
|
}, {
|
6077
|
-
firstname
|
6078
|
-
surname
|
6040
|
+
firstname: string;
|
6041
|
+
surname: string;
|
6079
6042
|
middlename?: string | null | undefined;
|
6080
6043
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
6081
6044
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -6087,7 +6050,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6087
6050
|
id: string & z.BRAND<"UUID">;
|
6088
6051
|
status: "Rejected" | "Requested" | "Accepted";
|
6089
6052
|
transactionId: string;
|
6090
|
-
createdByUserType: "system" | "user";
|
6091
6053
|
createdAt: string;
|
6092
6054
|
createdBy: string;
|
6093
6055
|
createdByRole: string;
|
@@ -6107,8 +6069,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6107
6069
|
street?: string | null | undefined;
|
6108
6070
|
zipCode?: string | null | undefined;
|
6109
6071
|
} | {
|
6110
|
-
firstname
|
6111
|
-
surname
|
6072
|
+
firstname: string;
|
6073
|
+
surname: string;
|
6112
6074
|
middlename?: string | null | undefined;
|
6113
6075
|
} | {
|
6114
6076
|
country: string;
|
@@ -6151,8 +6113,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6151
6113
|
street?: string | null | undefined;
|
6152
6114
|
zipCode?: string | null | undefined;
|
6153
6115
|
} | {
|
6154
|
-
firstname
|
6155
|
-
surname
|
6116
|
+
firstname: string;
|
6117
|
+
surname: string;
|
6156
6118
|
middlename?: string | null | undefined;
|
6157
6119
|
} | {
|
6158
6120
|
country: string;
|
@@ -6183,7 +6145,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6183
6145
|
id: string;
|
6184
6146
|
status: "Rejected" | "Requested" | "Accepted";
|
6185
6147
|
transactionId: string;
|
6186
|
-
createdByUserType: "system" | "user";
|
6187
6148
|
createdAt: string;
|
6188
6149
|
createdBy: string;
|
6189
6150
|
createdByRole: string;
|
@@ -6203,8 +6164,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6203
6164
|
street?: string | null | undefined;
|
6204
6165
|
zipCode?: string | null | undefined;
|
6205
6166
|
} | {
|
6206
|
-
firstname
|
6207
|
-
surname
|
6167
|
+
firstname: string;
|
6168
|
+
surname: string;
|
6208
6169
|
middlename?: string | null | undefined;
|
6209
6170
|
} | {
|
6210
6171
|
country: string;
|
@@ -6247,8 +6208,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6247
6208
|
street?: string | null | undefined;
|
6248
6209
|
zipCode?: string | null | undefined;
|
6249
6210
|
} | {
|
6250
|
-
firstname
|
6251
|
-
surname
|
6211
|
+
firstname: string;
|
6212
|
+
surname: string;
|
6252
6213
|
middlename?: string | null | undefined;
|
6253
6214
|
} | {
|
6254
6215
|
country: string;
|
@@ -6277,7 +6238,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6277
6238
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6278
6239
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
6279
6240
|
transactionId: z.ZodString;
|
6280
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
6281
6241
|
createdAt: z.ZodString;
|
6282
6242
|
createdBy: z.ZodString;
|
6283
6243
|
createdByRole: z.ZodString;
|
@@ -6397,16 +6357,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6397
6357
|
addressLine3?: string | null | undefined;
|
6398
6358
|
postcodeOrZip?: string | null | undefined;
|
6399
6359
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6400
|
-
firstname: z.
|
6401
|
-
surname: z.
|
6360
|
+
firstname: z.ZodString;
|
6361
|
+
surname: z.ZodString;
|
6402
6362
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6403
6363
|
}, "strip", z.ZodTypeAny, {
|
6404
|
-
firstname
|
6405
|
-
surname
|
6364
|
+
firstname: string;
|
6365
|
+
surname: string;
|
6406
6366
|
middlename?: string | null | undefined;
|
6407
6367
|
}, {
|
6408
|
-
firstname
|
6409
|
-
surname
|
6368
|
+
firstname: string;
|
6369
|
+
surname: string;
|
6410
6370
|
middlename?: string | null | undefined;
|
6411
6371
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
6412
6372
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -6523,16 +6483,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6523
6483
|
addressLine3?: string | null | undefined;
|
6524
6484
|
postcodeOrZip?: string | null | undefined;
|
6525
6485
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6526
|
-
firstname: z.
|
6527
|
-
surname: z.
|
6486
|
+
firstname: z.ZodString;
|
6487
|
+
surname: z.ZodString;
|
6528
6488
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6529
6489
|
}, "strip", z.ZodTypeAny, {
|
6530
|
-
firstname
|
6531
|
-
surname
|
6490
|
+
firstname: string;
|
6491
|
+
surname: string;
|
6532
6492
|
middlename?: string | null | undefined;
|
6533
6493
|
}, {
|
6534
|
-
firstname
|
6535
|
-
surname
|
6494
|
+
firstname: string;
|
6495
|
+
surname: string;
|
6536
6496
|
middlename?: string | null | undefined;
|
6537
6497
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
6538
6498
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -6545,7 +6505,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6545
6505
|
id: string & z.BRAND<"UUID">;
|
6546
6506
|
status: "Rejected" | "Requested" | "Accepted";
|
6547
6507
|
transactionId: string;
|
6548
|
-
createdByUserType: "system" | "user";
|
6549
6508
|
createdAt: string;
|
6550
6509
|
createdBy: string;
|
6551
6510
|
createdByRole: string;
|
@@ -6565,8 +6524,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6565
6524
|
street?: string | null | undefined;
|
6566
6525
|
zipCode?: string | null | undefined;
|
6567
6526
|
} | {
|
6568
|
-
firstname
|
6569
|
-
surname
|
6527
|
+
firstname: string;
|
6528
|
+
surname: string;
|
6570
6529
|
middlename?: string | null | undefined;
|
6571
6530
|
} | {
|
6572
6531
|
country: string;
|
@@ -6610,8 +6569,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6610
6569
|
street?: string | null | undefined;
|
6611
6570
|
zipCode?: string | null | undefined;
|
6612
6571
|
} | {
|
6613
|
-
firstname
|
6614
|
-
surname
|
6572
|
+
firstname: string;
|
6573
|
+
surname: string;
|
6615
6574
|
middlename?: string | null | undefined;
|
6616
6575
|
} | {
|
6617
6576
|
country: string;
|
@@ -6642,7 +6601,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6642
6601
|
id: string;
|
6643
6602
|
status: "Rejected" | "Requested" | "Accepted";
|
6644
6603
|
transactionId: string;
|
6645
|
-
createdByUserType: "system" | "user";
|
6646
6604
|
createdAt: string;
|
6647
6605
|
createdBy: string;
|
6648
6606
|
createdByRole: string;
|
@@ -6662,8 +6620,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6662
6620
|
street?: string | null | undefined;
|
6663
6621
|
zipCode?: string | null | undefined;
|
6664
6622
|
} | {
|
6665
|
-
firstname
|
6666
|
-
surname
|
6623
|
+
firstname: string;
|
6624
|
+
surname: string;
|
6667
6625
|
middlename?: string | null | undefined;
|
6668
6626
|
} | {
|
6669
6627
|
country: string;
|
@@ -6707,8 +6665,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6707
6665
|
street?: string | null | undefined;
|
6708
6666
|
zipCode?: string | null | undefined;
|
6709
6667
|
} | {
|
6710
|
-
firstname
|
6711
|
-
surname
|
6668
|
+
firstname: string;
|
6669
|
+
surname: string;
|
6712
6670
|
middlename?: string | null | undefined;
|
6713
6671
|
} | {
|
6714
6672
|
country: string;
|
@@ -6737,7 +6695,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6737
6695
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
6738
6696
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
6739
6697
|
transactionId: z.ZodString;
|
6740
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
6741
6698
|
createdAt: z.ZodString;
|
6742
6699
|
createdBy: z.ZodString;
|
6743
6700
|
createdByRole: z.ZodString;
|
@@ -6857,16 +6814,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6857
6814
|
addressLine3?: string | null | undefined;
|
6858
6815
|
postcodeOrZip?: string | null | undefined;
|
6859
6816
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6860
|
-
firstname: z.
|
6861
|
-
surname: z.
|
6817
|
+
firstname: z.ZodString;
|
6818
|
+
surname: z.ZodString;
|
6862
6819
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6863
6820
|
}, "strip", z.ZodTypeAny, {
|
6864
|
-
firstname
|
6865
|
-
surname
|
6821
|
+
firstname: string;
|
6822
|
+
surname: string;
|
6866
6823
|
middlename?: string | null | undefined;
|
6867
6824
|
}, {
|
6868
|
-
firstname
|
6869
|
-
surname
|
6825
|
+
firstname: string;
|
6826
|
+
surname: string;
|
6870
6827
|
middlename?: string | null | undefined;
|
6871
6828
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
6872
6829
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -6983,16 +6940,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6983
6940
|
addressLine3?: string | null | undefined;
|
6984
6941
|
postcodeOrZip?: string | null | undefined;
|
6985
6942
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6986
|
-
firstname: z.
|
6987
|
-
surname: z.
|
6943
|
+
firstname: z.ZodString;
|
6944
|
+
surname: z.ZodString;
|
6988
6945
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
6989
6946
|
}, "strip", z.ZodTypeAny, {
|
6990
|
-
firstname
|
6991
|
-
surname
|
6947
|
+
firstname: string;
|
6948
|
+
surname: string;
|
6992
6949
|
middlename?: string | null | undefined;
|
6993
6950
|
}, {
|
6994
|
-
firstname
|
6995
|
-
surname
|
6951
|
+
firstname: string;
|
6952
|
+
surname: string;
|
6996
6953
|
middlename?: string | null | undefined;
|
6997
6954
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
6998
6955
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -7005,7 +6962,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7005
6962
|
id: string & z.BRAND<"UUID">;
|
7006
6963
|
status: "Rejected" | "Requested" | "Accepted";
|
7007
6964
|
transactionId: string;
|
7008
|
-
createdByUserType: "system" | "user";
|
7009
6965
|
createdAt: string;
|
7010
6966
|
createdBy: string;
|
7011
6967
|
createdByRole: string;
|
@@ -7025,8 +6981,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7025
6981
|
street?: string | null | undefined;
|
7026
6982
|
zipCode?: string | null | undefined;
|
7027
6983
|
} | {
|
7028
|
-
firstname
|
7029
|
-
surname
|
6984
|
+
firstname: string;
|
6985
|
+
surname: string;
|
7030
6986
|
middlename?: string | null | undefined;
|
7031
6987
|
} | {
|
7032
6988
|
country: string;
|
@@ -7070,8 +7026,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7070
7026
|
street?: string | null | undefined;
|
7071
7027
|
zipCode?: string | null | undefined;
|
7072
7028
|
} | {
|
7073
|
-
firstname
|
7074
|
-
surname
|
7029
|
+
firstname: string;
|
7030
|
+
surname: string;
|
7075
7031
|
middlename?: string | null | undefined;
|
7076
7032
|
} | {
|
7077
7033
|
country: string;
|
@@ -7102,7 +7058,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7102
7058
|
id: string;
|
7103
7059
|
status: "Rejected" | "Requested" | "Accepted";
|
7104
7060
|
transactionId: string;
|
7105
|
-
createdByUserType: "system" | "user";
|
7106
7061
|
createdAt: string;
|
7107
7062
|
createdBy: string;
|
7108
7063
|
createdByRole: string;
|
@@ -7122,8 +7077,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7122
7077
|
street?: string | null | undefined;
|
7123
7078
|
zipCode?: string | null | undefined;
|
7124
7079
|
} | {
|
7125
|
-
firstname
|
7126
|
-
surname
|
7080
|
+
firstname: string;
|
7081
|
+
surname: string;
|
7127
7082
|
middlename?: string | null | undefined;
|
7128
7083
|
} | {
|
7129
7084
|
country: string;
|
@@ -7167,8 +7122,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7167
7122
|
street?: string | null | undefined;
|
7168
7123
|
zipCode?: string | null | undefined;
|
7169
7124
|
} | {
|
7170
|
-
firstname
|
7171
|
-
surname
|
7125
|
+
firstname: string;
|
7126
|
+
surname: string;
|
7172
7127
|
middlename?: string | null | undefined;
|
7173
7128
|
} | {
|
7174
7129
|
country: string;
|
@@ -7197,7 +7152,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7197
7152
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7198
7153
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
7199
7154
|
transactionId: z.ZodString;
|
7200
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
7201
7155
|
createdAt: z.ZodString;
|
7202
7156
|
createdBy: z.ZodString;
|
7203
7157
|
createdByRole: z.ZodString;
|
@@ -7317,16 +7271,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7317
7271
|
addressLine3?: string | null | undefined;
|
7318
7272
|
postcodeOrZip?: string | null | undefined;
|
7319
7273
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7320
|
-
firstname: z.
|
7321
|
-
surname: z.
|
7274
|
+
firstname: z.ZodString;
|
7275
|
+
surname: z.ZodString;
|
7322
7276
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7323
7277
|
}, "strip", z.ZodTypeAny, {
|
7324
|
-
firstname
|
7325
|
-
surname
|
7278
|
+
firstname: string;
|
7279
|
+
surname: string;
|
7326
7280
|
middlename?: string | null | undefined;
|
7327
7281
|
}, {
|
7328
|
-
firstname
|
7329
|
-
surname
|
7282
|
+
firstname: string;
|
7283
|
+
surname: string;
|
7330
7284
|
middlename?: string | null | undefined;
|
7331
7285
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
7332
7286
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -7443,28 +7397,28 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7443
7397
|
addressLine3?: string | null | undefined;
|
7444
7398
|
postcodeOrZip?: string | null | undefined;
|
7445
7399
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7446
|
-
firstname: z.
|
7447
|
-
surname: z.
|
7400
|
+
firstname: z.ZodString;
|
7401
|
+
surname: z.ZodString;
|
7448
7402
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7449
7403
|
}, "strip", z.ZodTypeAny, {
|
7450
|
-
firstname
|
7451
|
-
surname
|
7404
|
+
firstname: string;
|
7405
|
+
surname: string;
|
7452
7406
|
middlename?: string | null | undefined;
|
7453
7407
|
}, {
|
7454
|
-
firstname
|
7455
|
-
surname
|
7408
|
+
firstname: string;
|
7409
|
+
surname: string;
|
7456
7410
|
middlename?: string | null | undefined;
|
7457
7411
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
7458
7412
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
7459
7413
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
7460
7414
|
}, {
|
7461
7415
|
type: z.ZodLiteral<"UNASSIGN">;
|
7416
|
+
assignedTo: z.ZodLiteral<null>;
|
7462
7417
|
}>, "strip", z.ZodTypeAny, {
|
7463
7418
|
type: "UNASSIGN";
|
7464
7419
|
id: string & z.BRAND<"UUID">;
|
7465
7420
|
status: "Rejected" | "Requested" | "Accepted";
|
7466
7421
|
transactionId: string;
|
7467
|
-
createdByUserType: "system" | "user";
|
7468
7422
|
createdAt: string;
|
7469
7423
|
createdBy: string;
|
7470
7424
|
createdByRole: string;
|
@@ -7484,8 +7438,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7484
7438
|
street?: string | null | undefined;
|
7485
7439
|
zipCode?: string | null | undefined;
|
7486
7440
|
} | {
|
7487
|
-
firstname
|
7488
|
-
surname
|
7441
|
+
firstname: string;
|
7442
|
+
surname: string;
|
7489
7443
|
middlename?: string | null | undefined;
|
7490
7444
|
} | {
|
7491
7445
|
country: string;
|
@@ -7510,6 +7464,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7510
7464
|
filename: string;
|
7511
7465
|
originalFilename: string;
|
7512
7466
|
}[] | [string, string] | null | undefined>;
|
7467
|
+
assignedTo: null;
|
7513
7468
|
createdBySignature?: string | null | undefined;
|
7514
7469
|
createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
|
7515
7470
|
annotation?: Record<string, string | number | boolean | {
|
@@ -7528,8 +7483,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7528
7483
|
street?: string | null | undefined;
|
7529
7484
|
zipCode?: string | null | undefined;
|
7530
7485
|
} | {
|
7531
|
-
firstname
|
7532
|
-
surname
|
7486
|
+
firstname: string;
|
7487
|
+
surname: string;
|
7533
7488
|
middlename?: string | null | undefined;
|
7534
7489
|
} | {
|
7535
7490
|
country: string;
|
@@ -7560,7 +7515,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7560
7515
|
id: string;
|
7561
7516
|
status: "Rejected" | "Requested" | "Accepted";
|
7562
7517
|
transactionId: string;
|
7563
|
-
createdByUserType: "system" | "user";
|
7564
7518
|
createdAt: string;
|
7565
7519
|
createdBy: string;
|
7566
7520
|
createdByRole: string;
|
@@ -7580,8 +7534,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7580
7534
|
street?: string | null | undefined;
|
7581
7535
|
zipCode?: string | null | undefined;
|
7582
7536
|
} | {
|
7583
|
-
firstname
|
7584
|
-
surname
|
7537
|
+
firstname: string;
|
7538
|
+
surname: string;
|
7585
7539
|
middlename?: string | null | undefined;
|
7586
7540
|
} | {
|
7587
7541
|
country: string;
|
@@ -7606,6 +7560,7 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7606
7560
|
filename: string;
|
7607
7561
|
originalFilename: string;
|
7608
7562
|
}[] | [string, string] | null | undefined>;
|
7563
|
+
assignedTo: null;
|
7609
7564
|
createdBySignature?: string | null | undefined;
|
7610
7565
|
createdAtLocation?: string | null | undefined;
|
7611
7566
|
annotation?: Record<string, string | number | boolean | {
|
@@ -7624,8 +7579,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7624
7579
|
street?: string | null | undefined;
|
7625
7580
|
zipCode?: string | null | undefined;
|
7626
7581
|
} | {
|
7627
|
-
firstname
|
7628
|
-
surname
|
7582
|
+
firstname: string;
|
7583
|
+
surname: string;
|
7629
7584
|
middlename?: string | null | undefined;
|
7630
7585
|
} | {
|
7631
7586
|
country: string;
|
@@ -7654,7 +7609,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7654
7609
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
7655
7610
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
7656
7611
|
transactionId: z.ZodString;
|
7657
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
7658
7612
|
createdAt: z.ZodString;
|
7659
7613
|
createdBy: z.ZodString;
|
7660
7614
|
createdByRole: z.ZodString;
|
@@ -7774,16 +7728,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7774
7728
|
addressLine3?: string | null | undefined;
|
7775
7729
|
postcodeOrZip?: string | null | undefined;
|
7776
7730
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7777
|
-
firstname: z.
|
7778
|
-
surname: z.
|
7731
|
+
firstname: z.ZodString;
|
7732
|
+
surname: z.ZodString;
|
7779
7733
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7780
7734
|
}, "strip", z.ZodTypeAny, {
|
7781
|
-
firstname
|
7782
|
-
surname
|
7735
|
+
firstname: string;
|
7736
|
+
surname: string;
|
7783
7737
|
middlename?: string | null | undefined;
|
7784
7738
|
}, {
|
7785
|
-
firstname
|
7786
|
-
surname
|
7739
|
+
firstname: string;
|
7740
|
+
surname: string;
|
7787
7741
|
middlename?: string | null | undefined;
|
7788
7742
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
7789
7743
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -7900,16 +7854,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7900
7854
|
addressLine3?: string | null | undefined;
|
7901
7855
|
postcodeOrZip?: string | null | undefined;
|
7902
7856
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7903
|
-
firstname: z.
|
7904
|
-
surname: z.
|
7857
|
+
firstname: z.ZodString;
|
7858
|
+
surname: z.ZodString;
|
7905
7859
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
7906
7860
|
}, "strip", z.ZodTypeAny, {
|
7907
|
-
firstname
|
7908
|
-
surname
|
7861
|
+
firstname: string;
|
7862
|
+
surname: string;
|
7909
7863
|
middlename?: string | null | undefined;
|
7910
7864
|
}, {
|
7911
|
-
firstname
|
7912
|
-
surname
|
7865
|
+
firstname: string;
|
7866
|
+
surname: string;
|
7913
7867
|
middlename?: string | null | undefined;
|
7914
7868
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
7915
7869
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -7921,7 +7875,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7921
7875
|
id: string & z.BRAND<"UUID">;
|
7922
7876
|
status: "Rejected" | "Requested" | "Accepted";
|
7923
7877
|
transactionId: string;
|
7924
|
-
createdByUserType: "system" | "user";
|
7925
7878
|
createdAt: string;
|
7926
7879
|
createdBy: string;
|
7927
7880
|
createdByRole: string;
|
@@ -7941,8 +7894,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7941
7894
|
street?: string | null | undefined;
|
7942
7895
|
zipCode?: string | null | undefined;
|
7943
7896
|
} | {
|
7944
|
-
firstname
|
7945
|
-
surname
|
7897
|
+
firstname: string;
|
7898
|
+
surname: string;
|
7946
7899
|
middlename?: string | null | undefined;
|
7947
7900
|
} | {
|
7948
7901
|
country: string;
|
@@ -7985,8 +7938,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7985
7938
|
street?: string | null | undefined;
|
7986
7939
|
zipCode?: string | null | undefined;
|
7987
7940
|
} | {
|
7988
|
-
firstname
|
7989
|
-
surname
|
7941
|
+
firstname: string;
|
7942
|
+
surname: string;
|
7990
7943
|
middlename?: string | null | undefined;
|
7991
7944
|
} | {
|
7992
7945
|
country: string;
|
@@ -8017,7 +7970,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8017
7970
|
id: string;
|
8018
7971
|
status: "Rejected" | "Requested" | "Accepted";
|
8019
7972
|
transactionId: string;
|
8020
|
-
createdByUserType: "system" | "user";
|
8021
7973
|
createdAt: string;
|
8022
7974
|
createdBy: string;
|
8023
7975
|
createdByRole: string;
|
@@ -8037,8 +7989,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8037
7989
|
street?: string | null | undefined;
|
8038
7990
|
zipCode?: string | null | undefined;
|
8039
7991
|
} | {
|
8040
|
-
firstname
|
8041
|
-
surname
|
7992
|
+
firstname: string;
|
7993
|
+
surname: string;
|
8042
7994
|
middlename?: string | null | undefined;
|
8043
7995
|
} | {
|
8044
7996
|
country: string;
|
@@ -8081,8 +8033,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8081
8033
|
street?: string | null | undefined;
|
8082
8034
|
zipCode?: string | null | undefined;
|
8083
8035
|
} | {
|
8084
|
-
firstname
|
8085
|
-
surname
|
8036
|
+
firstname: string;
|
8037
|
+
surname: string;
|
8086
8038
|
middlename?: string | null | undefined;
|
8087
8039
|
} | {
|
8088
8040
|
country: string;
|
@@ -8111,7 +8063,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8111
8063
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
8112
8064
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
8113
8065
|
transactionId: z.ZodString;
|
8114
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
8115
8066
|
createdAt: z.ZodString;
|
8116
8067
|
createdBy: z.ZodString;
|
8117
8068
|
createdByRole: z.ZodString;
|
@@ -8231,16 +8182,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8231
8182
|
addressLine3?: string | null | undefined;
|
8232
8183
|
postcodeOrZip?: string | null | undefined;
|
8233
8184
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8234
|
-
firstname: z.
|
8235
|
-
surname: z.
|
8185
|
+
firstname: z.ZodString;
|
8186
|
+
surname: z.ZodString;
|
8236
8187
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8237
8188
|
}, "strip", z.ZodTypeAny, {
|
8238
|
-
firstname
|
8239
|
-
surname
|
8189
|
+
firstname: string;
|
8190
|
+
surname: string;
|
8240
8191
|
middlename?: string | null | undefined;
|
8241
8192
|
}, {
|
8242
|
-
firstname
|
8243
|
-
surname
|
8193
|
+
firstname: string;
|
8194
|
+
surname: string;
|
8244
8195
|
middlename?: string | null | undefined;
|
8245
8196
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
8246
8197
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -8357,16 +8308,16 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8357
8308
|
addressLine3?: string | null | undefined;
|
8358
8309
|
postcodeOrZip?: string | null | undefined;
|
8359
8310
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8360
|
-
firstname: z.
|
8361
|
-
surname: z.
|
8311
|
+
firstname: z.ZodString;
|
8312
|
+
surname: z.ZodString;
|
8362
8313
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8363
8314
|
}, "strip", z.ZodTypeAny, {
|
8364
|
-
firstname
|
8365
|
-
surname
|
8315
|
+
firstname: string;
|
8316
|
+
surname: string;
|
8366
8317
|
middlename?: string | null | undefined;
|
8367
8318
|
}, {
|
8368
|
-
firstname
|
8369
|
-
surname
|
8319
|
+
firstname: string;
|
8320
|
+
surname: string;
|
8370
8321
|
middlename?: string | null | undefined;
|
8371
8322
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
8372
8323
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -8378,7 +8329,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8378
8329
|
id: string & z.BRAND<"UUID">;
|
8379
8330
|
status: "Rejected" | "Requested" | "Accepted";
|
8380
8331
|
transactionId: string;
|
8381
|
-
createdByUserType: "system" | "user";
|
8382
8332
|
createdAt: string;
|
8383
8333
|
createdBy: string;
|
8384
8334
|
createdByRole: string;
|
@@ -8398,8 +8348,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8398
8348
|
street?: string | null | undefined;
|
8399
8349
|
zipCode?: string | null | undefined;
|
8400
8350
|
} | {
|
8401
|
-
firstname
|
8402
|
-
surname
|
8351
|
+
firstname: string;
|
8352
|
+
surname: string;
|
8403
8353
|
middlename?: string | null | undefined;
|
8404
8354
|
} | {
|
8405
8355
|
country: string;
|
@@ -8442,8 +8392,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8442
8392
|
street?: string | null | undefined;
|
8443
8393
|
zipCode?: string | null | undefined;
|
8444
8394
|
} | {
|
8445
|
-
firstname
|
8446
|
-
surname
|
8395
|
+
firstname: string;
|
8396
|
+
surname: string;
|
8447
8397
|
middlename?: string | null | undefined;
|
8448
8398
|
} | {
|
8449
8399
|
country: string;
|
@@ -8474,7 +8424,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8474
8424
|
id: string;
|
8475
8425
|
status: "Rejected" | "Requested" | "Accepted";
|
8476
8426
|
transactionId: string;
|
8477
|
-
createdByUserType: "system" | "user";
|
8478
8427
|
createdAt: string;
|
8479
8428
|
createdBy: string;
|
8480
8429
|
createdByRole: string;
|
@@ -8494,8 +8443,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8494
8443
|
street?: string | null | undefined;
|
8495
8444
|
zipCode?: string | null | undefined;
|
8496
8445
|
} | {
|
8497
|
-
firstname
|
8498
|
-
surname
|
8446
|
+
firstname: string;
|
8447
|
+
surname: string;
|
8499
8448
|
middlename?: string | null | undefined;
|
8500
8449
|
} | {
|
8501
8450
|
country: string;
|
@@ -8538,8 +8487,8 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8538
8487
|
street?: string | null | undefined;
|
8539
8488
|
zipCode?: string | null | undefined;
|
8540
8489
|
} | {
|
8541
|
-
firstname
|
8542
|
-
surname
|
8490
|
+
firstname: string;
|
8491
|
+
surname: string;
|
8543
8492
|
middlename?: string | null | undefined;
|
8544
8493
|
} | {
|
8545
8494
|
country: string;
|
@@ -8570,7 +8519,6 @@ export type ActionDocument = z.infer<typeof ActionDocument>;
|
|
8570
8519
|
export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
8571
8520
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
8572
8521
|
transactionId: z.ZodString;
|
8573
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
8574
8522
|
createdAt: z.ZodString;
|
8575
8523
|
createdBy: z.ZodString;
|
8576
8524
|
createdByRole: z.ZodString;
|
@@ -8690,16 +8638,16 @@ export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendS
|
|
8690
8638
|
addressLine3?: string | null | undefined;
|
8691
8639
|
postcodeOrZip?: string | null | undefined;
|
8692
8640
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8693
|
-
firstname: z.
|
8694
|
-
surname: z.
|
8641
|
+
firstname: z.ZodString;
|
8642
|
+
surname: z.ZodString;
|
8695
8643
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8696
8644
|
}, "strip", z.ZodTypeAny, {
|
8697
|
-
firstname
|
8698
|
-
surname
|
8645
|
+
firstname: string;
|
8646
|
+
surname: string;
|
8699
8647
|
middlename?: string | null | undefined;
|
8700
8648
|
}, {
|
8701
|
-
firstname
|
8702
|
-
surname
|
8649
|
+
firstname: string;
|
8650
|
+
surname: string;
|
8703
8651
|
middlename?: string | null | undefined;
|
8704
8652
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
8705
8653
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -8816,16 +8764,16 @@ export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendS
|
|
8816
8764
|
addressLine3?: string | null | undefined;
|
8817
8765
|
postcodeOrZip?: string | null | undefined;
|
8818
8766
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8819
|
-
firstname: z.
|
8820
|
-
surname: z.
|
8767
|
+
firstname: z.ZodString;
|
8768
|
+
surname: z.ZodString;
|
8821
8769
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8822
8770
|
}, "strip", z.ZodTypeAny, {
|
8823
|
-
firstname
|
8824
|
-
surname
|
8771
|
+
firstname: string;
|
8772
|
+
surname: string;
|
8825
8773
|
middlename?: string | null | undefined;
|
8826
8774
|
}, {
|
8827
|
-
firstname
|
8828
|
-
surname
|
8775
|
+
firstname: string;
|
8776
|
+
surname: string;
|
8829
8777
|
middlename?: string | null | undefined;
|
8830
8778
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
8831
8779
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -8834,11 +8782,10 @@ export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendS
|
|
8834
8782
|
type: z.ZodEnum<["NOTIFY", "DECLARE", "VALIDATE", "REGISTER", "REJECT", "ARCHIVE", "PRINT_CERTIFICATE"]>;
|
8835
8783
|
status: z.ZodLiteral<"Rejected">;
|
8836
8784
|
}>, "strip", z.ZodTypeAny, {
|
8837
|
-
type: "
|
8785
|
+
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
8838
8786
|
id: string & z.BRAND<"UUID">;
|
8839
8787
|
status: "Rejected";
|
8840
8788
|
transactionId: string;
|
8841
|
-
createdByUserType: "system" | "user";
|
8842
8789
|
createdAt: string;
|
8843
8790
|
createdBy: string;
|
8844
8791
|
createdByRole: string;
|
@@ -8846,11 +8793,10 @@ export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendS
|
|
8846
8793
|
createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
|
8847
8794
|
originalActionId?: (string & z.BRAND<"UUID">) | null | undefined;
|
8848
8795
|
}, {
|
8849
|
-
type: "
|
8796
|
+
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
8850
8797
|
id: string;
|
8851
8798
|
status: "Rejected";
|
8852
8799
|
transactionId: string;
|
8853
|
-
createdByUserType: "system" | "user";
|
8854
8800
|
createdAt: string;
|
8855
8801
|
createdBy: string;
|
8856
8802
|
createdByRole: string;
|
@@ -8862,7 +8808,6 @@ export type AsyncRejectActionDocument = z.infer<typeof AsyncRejectActionDocument
|
|
8862
8808
|
export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
8863
8809
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
8864
8810
|
transactionId: z.ZodString;
|
8865
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
8866
8811
|
createdAt: z.ZodString;
|
8867
8812
|
createdBy: z.ZodString;
|
8868
8813
|
createdByRole: z.ZodString;
|
@@ -8982,16 +8927,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
8982
8927
|
addressLine3?: string | null | undefined;
|
8983
8928
|
postcodeOrZip?: string | null | undefined;
|
8984
8929
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8985
|
-
firstname: z.
|
8986
|
-
surname: z.
|
8930
|
+
firstname: z.ZodString;
|
8931
|
+
surname: z.ZodString;
|
8987
8932
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
8988
8933
|
}, "strip", z.ZodTypeAny, {
|
8989
|
-
firstname
|
8990
|
-
surname
|
8934
|
+
firstname: string;
|
8935
|
+
surname: string;
|
8991
8936
|
middlename?: string | null | undefined;
|
8992
8937
|
}, {
|
8993
|
-
firstname
|
8994
|
-
surname
|
8938
|
+
firstname: string;
|
8939
|
+
surname: string;
|
8995
8940
|
middlename?: string | null | undefined;
|
8996
8941
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
8997
8942
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -9108,16 +9053,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9108
9053
|
addressLine3?: string | null | undefined;
|
9109
9054
|
postcodeOrZip?: string | null | undefined;
|
9110
9055
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9111
|
-
firstname: z.
|
9112
|
-
surname: z.
|
9056
|
+
firstname: z.ZodString;
|
9057
|
+
surname: z.ZodString;
|
9113
9058
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9114
9059
|
}, "strip", z.ZodTypeAny, {
|
9115
|
-
firstname
|
9116
|
-
surname
|
9060
|
+
firstname: string;
|
9061
|
+
surname: string;
|
9117
9062
|
middlename?: string | null | undefined;
|
9118
9063
|
}, {
|
9119
|
-
firstname
|
9120
|
-
surname
|
9064
|
+
firstname: string;
|
9065
|
+
surname: string;
|
9121
9066
|
middlename?: string | null | undefined;
|
9122
9067
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
9123
9068
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -9129,7 +9074,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9129
9074
|
id: string & z.BRAND<"UUID">;
|
9130
9075
|
status: "Rejected" | "Requested" | "Accepted";
|
9131
9076
|
transactionId: string;
|
9132
|
-
createdByUserType: "system" | "user";
|
9133
9077
|
createdAt: string;
|
9134
9078
|
createdBy: string;
|
9135
9079
|
createdByRole: string;
|
@@ -9149,8 +9093,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9149
9093
|
street?: string | null | undefined;
|
9150
9094
|
zipCode?: string | null | undefined;
|
9151
9095
|
} | {
|
9152
|
-
firstname
|
9153
|
-
surname
|
9096
|
+
firstname: string;
|
9097
|
+
surname: string;
|
9154
9098
|
middlename?: string | null | undefined;
|
9155
9099
|
} | {
|
9156
9100
|
country: string;
|
@@ -9193,8 +9137,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9193
9137
|
street?: string | null | undefined;
|
9194
9138
|
zipCode?: string | null | undefined;
|
9195
9139
|
} | {
|
9196
|
-
firstname
|
9197
|
-
surname
|
9140
|
+
firstname: string;
|
9141
|
+
surname: string;
|
9198
9142
|
middlename?: string | null | undefined;
|
9199
9143
|
} | {
|
9200
9144
|
country: string;
|
@@ -9225,7 +9169,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9225
9169
|
id: string;
|
9226
9170
|
status: "Rejected" | "Requested" | "Accepted";
|
9227
9171
|
transactionId: string;
|
9228
|
-
createdByUserType: "system" | "user";
|
9229
9172
|
createdAt: string;
|
9230
9173
|
createdBy: string;
|
9231
9174
|
createdByRole: string;
|
@@ -9245,8 +9188,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9245
9188
|
street?: string | null | undefined;
|
9246
9189
|
zipCode?: string | null | undefined;
|
9247
9190
|
} | {
|
9248
|
-
firstname
|
9249
|
-
surname
|
9191
|
+
firstname: string;
|
9192
|
+
surname: string;
|
9250
9193
|
middlename?: string | null | undefined;
|
9251
9194
|
} | {
|
9252
9195
|
country: string;
|
@@ -9289,8 +9232,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9289
9232
|
street?: string | null | undefined;
|
9290
9233
|
zipCode?: string | null | undefined;
|
9291
9234
|
} | {
|
9292
|
-
firstname
|
9293
|
-
surname
|
9235
|
+
firstname: string;
|
9236
|
+
surname: string;
|
9294
9237
|
middlename?: string | null | undefined;
|
9295
9238
|
} | {
|
9296
9239
|
country: string;
|
@@ -9319,7 +9262,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9319
9262
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
9320
9263
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
9321
9264
|
transactionId: z.ZodString;
|
9322
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
9323
9265
|
createdAt: z.ZodString;
|
9324
9266
|
createdBy: z.ZodString;
|
9325
9267
|
createdByRole: z.ZodString;
|
@@ -9439,16 +9381,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9439
9381
|
addressLine3?: string | null | undefined;
|
9440
9382
|
postcodeOrZip?: string | null | undefined;
|
9441
9383
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9442
|
-
firstname: z.
|
9443
|
-
surname: z.
|
9384
|
+
firstname: z.ZodString;
|
9385
|
+
surname: z.ZodString;
|
9444
9386
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9445
9387
|
}, "strip", z.ZodTypeAny, {
|
9446
|
-
firstname
|
9447
|
-
surname
|
9388
|
+
firstname: string;
|
9389
|
+
surname: string;
|
9448
9390
|
middlename?: string | null | undefined;
|
9449
9391
|
}, {
|
9450
|
-
firstname
|
9451
|
-
surname
|
9392
|
+
firstname: string;
|
9393
|
+
surname: string;
|
9452
9394
|
middlename?: string | null | undefined;
|
9453
9395
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
9454
9396
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -9565,16 +9507,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9565
9507
|
addressLine3?: string | null | undefined;
|
9566
9508
|
postcodeOrZip?: string | null | undefined;
|
9567
9509
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9568
|
-
firstname: z.
|
9569
|
-
surname: z.
|
9510
|
+
firstname: z.ZodString;
|
9511
|
+
surname: z.ZodString;
|
9570
9512
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9571
9513
|
}, "strip", z.ZodTypeAny, {
|
9572
|
-
firstname
|
9573
|
-
surname
|
9514
|
+
firstname: string;
|
9515
|
+
surname: string;
|
9574
9516
|
middlename?: string | null | undefined;
|
9575
9517
|
}, {
|
9576
|
-
firstname
|
9577
|
-
surname
|
9518
|
+
firstname: string;
|
9519
|
+
surname: string;
|
9578
9520
|
middlename?: string | null | undefined;
|
9579
9521
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
9580
9522
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -9586,7 +9528,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9586
9528
|
id: string & z.BRAND<"UUID">;
|
9587
9529
|
status: "Rejected" | "Requested" | "Accepted";
|
9588
9530
|
transactionId: string;
|
9589
|
-
createdByUserType: "system" | "user";
|
9590
9531
|
createdAt: string;
|
9591
9532
|
createdBy: string;
|
9592
9533
|
createdByRole: string;
|
@@ -9606,8 +9547,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9606
9547
|
street?: string | null | undefined;
|
9607
9548
|
zipCode?: string | null | undefined;
|
9608
9549
|
} | {
|
9609
|
-
firstname
|
9610
|
-
surname
|
9550
|
+
firstname: string;
|
9551
|
+
surname: string;
|
9611
9552
|
middlename?: string | null | undefined;
|
9612
9553
|
} | {
|
9613
9554
|
country: string;
|
@@ -9650,8 +9591,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9650
9591
|
street?: string | null | undefined;
|
9651
9592
|
zipCode?: string | null | undefined;
|
9652
9593
|
} | {
|
9653
|
-
firstname
|
9654
|
-
surname
|
9594
|
+
firstname: string;
|
9595
|
+
surname: string;
|
9655
9596
|
middlename?: string | null | undefined;
|
9656
9597
|
} | {
|
9657
9598
|
country: string;
|
@@ -9682,7 +9623,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9682
9623
|
id: string;
|
9683
9624
|
status: "Rejected" | "Requested" | "Accepted";
|
9684
9625
|
transactionId: string;
|
9685
|
-
createdByUserType: "system" | "user";
|
9686
9626
|
createdAt: string;
|
9687
9627
|
createdBy: string;
|
9688
9628
|
createdByRole: string;
|
@@ -9702,8 +9642,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9702
9642
|
street?: string | null | undefined;
|
9703
9643
|
zipCode?: string | null | undefined;
|
9704
9644
|
} | {
|
9705
|
-
firstname
|
9706
|
-
surname
|
9645
|
+
firstname: string;
|
9646
|
+
surname: string;
|
9707
9647
|
middlename?: string | null | undefined;
|
9708
9648
|
} | {
|
9709
9649
|
country: string;
|
@@ -9746,8 +9686,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9746
9686
|
street?: string | null | undefined;
|
9747
9687
|
zipCode?: string | null | undefined;
|
9748
9688
|
} | {
|
9749
|
-
firstname
|
9750
|
-
surname
|
9689
|
+
firstname: string;
|
9690
|
+
surname: string;
|
9751
9691
|
middlename?: string | null | undefined;
|
9752
9692
|
} | {
|
9753
9693
|
country: string;
|
@@ -9776,7 +9716,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9776
9716
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
9777
9717
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
9778
9718
|
transactionId: z.ZodString;
|
9779
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
9780
9719
|
createdAt: z.ZodString;
|
9781
9720
|
createdBy: z.ZodString;
|
9782
9721
|
createdByRole: z.ZodString;
|
@@ -9896,16 +9835,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
9896
9835
|
addressLine3?: string | null | undefined;
|
9897
9836
|
postcodeOrZip?: string | null | undefined;
|
9898
9837
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9899
|
-
firstname: z.
|
9900
|
-
surname: z.
|
9838
|
+
firstname: z.ZodString;
|
9839
|
+
surname: z.ZodString;
|
9901
9840
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
9902
9841
|
}, "strip", z.ZodTypeAny, {
|
9903
|
-
firstname
|
9904
|
-
surname
|
9842
|
+
firstname: string;
|
9843
|
+
surname: string;
|
9905
9844
|
middlename?: string | null | undefined;
|
9906
9845
|
}, {
|
9907
|
-
firstname
|
9908
|
-
surname
|
9846
|
+
firstname: string;
|
9847
|
+
surname: string;
|
9909
9848
|
middlename?: string | null | undefined;
|
9910
9849
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
9911
9850
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -10022,16 +9961,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10022
9961
|
addressLine3?: string | null | undefined;
|
10023
9962
|
postcodeOrZip?: string | null | undefined;
|
10024
9963
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10025
|
-
firstname: z.
|
10026
|
-
surname: z.
|
9964
|
+
firstname: z.ZodString;
|
9965
|
+
surname: z.ZodString;
|
10027
9966
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10028
9967
|
}, "strip", z.ZodTypeAny, {
|
10029
|
-
firstname
|
10030
|
-
surname
|
9968
|
+
firstname: string;
|
9969
|
+
surname: string;
|
10031
9970
|
middlename?: string | null | undefined;
|
10032
9971
|
}, {
|
10033
|
-
firstname
|
10034
|
-
surname
|
9972
|
+
firstname: string;
|
9973
|
+
surname: string;
|
10035
9974
|
middlename?: string | null | undefined;
|
10036
9975
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
10037
9976
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -10057,7 +9996,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10057
9996
|
isDuplicate?: boolean | undefined;
|
10058
9997
|
};
|
10059
9998
|
transactionId: string;
|
10060
|
-
createdByUserType: "system" | "user";
|
10061
9999
|
createdAt: string;
|
10062
10000
|
createdBy: string;
|
10063
10001
|
createdByRole: string;
|
@@ -10077,8 +10015,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10077
10015
|
street?: string | null | undefined;
|
10078
10016
|
zipCode?: string | null | undefined;
|
10079
10017
|
} | {
|
10080
|
-
firstname
|
10081
|
-
surname
|
10018
|
+
firstname: string;
|
10019
|
+
surname: string;
|
10082
10020
|
middlename?: string | null | undefined;
|
10083
10021
|
} | {
|
10084
10022
|
country: string;
|
@@ -10121,8 +10059,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10121
10059
|
street?: string | null | undefined;
|
10122
10060
|
zipCode?: string | null | undefined;
|
10123
10061
|
} | {
|
10124
|
-
firstname
|
10125
|
-
surname
|
10062
|
+
firstname: string;
|
10063
|
+
surname: string;
|
10126
10064
|
middlename?: string | null | undefined;
|
10127
10065
|
} | {
|
10128
10066
|
country: string;
|
@@ -10157,7 +10095,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10157
10095
|
isDuplicate?: boolean | undefined;
|
10158
10096
|
};
|
10159
10097
|
transactionId: string;
|
10160
|
-
createdByUserType: "system" | "user";
|
10161
10098
|
createdAt: string;
|
10162
10099
|
createdBy: string;
|
10163
10100
|
createdByRole: string;
|
@@ -10177,8 +10114,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10177
10114
|
street?: string | null | undefined;
|
10178
10115
|
zipCode?: string | null | undefined;
|
10179
10116
|
} | {
|
10180
|
-
firstname
|
10181
|
-
surname
|
10117
|
+
firstname: string;
|
10118
|
+
surname: string;
|
10182
10119
|
middlename?: string | null | undefined;
|
10183
10120
|
} | {
|
10184
10121
|
country: string;
|
@@ -10221,8 +10158,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10221
10158
|
street?: string | null | undefined;
|
10222
10159
|
zipCode?: string | null | undefined;
|
10223
10160
|
} | {
|
10224
|
-
firstname
|
10225
|
-
surname
|
10161
|
+
firstname: string;
|
10162
|
+
surname: string;
|
10226
10163
|
middlename?: string | null | undefined;
|
10227
10164
|
} | {
|
10228
10165
|
country: string;
|
@@ -10251,7 +10188,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10251
10188
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
10252
10189
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
10253
10190
|
transactionId: z.ZodString;
|
10254
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
10255
10191
|
createdAt: z.ZodString;
|
10256
10192
|
createdBy: z.ZodString;
|
10257
10193
|
createdByRole: z.ZodString;
|
@@ -10371,16 +10307,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10371
10307
|
addressLine3?: string | null | undefined;
|
10372
10308
|
postcodeOrZip?: string | null | undefined;
|
10373
10309
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10374
|
-
firstname: z.
|
10375
|
-
surname: z.
|
10310
|
+
firstname: z.ZodString;
|
10311
|
+
surname: z.ZodString;
|
10376
10312
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10377
10313
|
}, "strip", z.ZodTypeAny, {
|
10378
|
-
firstname
|
10379
|
-
surname
|
10314
|
+
firstname: string;
|
10315
|
+
surname: string;
|
10380
10316
|
middlename?: string | null | undefined;
|
10381
10317
|
}, {
|
10382
|
-
firstname
|
10383
|
-
surname
|
10318
|
+
firstname: string;
|
10319
|
+
surname: string;
|
10384
10320
|
middlename?: string | null | undefined;
|
10385
10321
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
10386
10322
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -10497,16 +10433,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10497
10433
|
addressLine3?: string | null | undefined;
|
10498
10434
|
postcodeOrZip?: string | null | undefined;
|
10499
10435
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10500
|
-
firstname: z.
|
10501
|
-
surname: z.
|
10436
|
+
firstname: z.ZodString;
|
10437
|
+
surname: z.ZodString;
|
10502
10438
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10503
10439
|
}, "strip", z.ZodTypeAny, {
|
10504
|
-
firstname
|
10505
|
-
surname
|
10440
|
+
firstname: string;
|
10441
|
+
surname: string;
|
10506
10442
|
middlename?: string | null | undefined;
|
10507
10443
|
}, {
|
10508
|
-
firstname
|
10509
|
-
surname
|
10444
|
+
firstname: string;
|
10445
|
+
surname: string;
|
10510
10446
|
middlename?: string | null | undefined;
|
10511
10447
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
10512
10448
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -10518,7 +10454,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10518
10454
|
id: string & z.BRAND<"UUID">;
|
10519
10455
|
status: "Rejected" | "Requested" | "Accepted";
|
10520
10456
|
transactionId: string;
|
10521
|
-
createdByUserType: "system" | "user";
|
10522
10457
|
createdAt: string;
|
10523
10458
|
createdBy: string;
|
10524
10459
|
createdByRole: string;
|
@@ -10538,8 +10473,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10538
10473
|
street?: string | null | undefined;
|
10539
10474
|
zipCode?: string | null | undefined;
|
10540
10475
|
} | {
|
10541
|
-
firstname
|
10542
|
-
surname
|
10476
|
+
firstname: string;
|
10477
|
+
surname: string;
|
10543
10478
|
middlename?: string | null | undefined;
|
10544
10479
|
} | {
|
10545
10480
|
country: string;
|
@@ -10582,8 +10517,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10582
10517
|
street?: string | null | undefined;
|
10583
10518
|
zipCode?: string | null | undefined;
|
10584
10519
|
} | {
|
10585
|
-
firstname
|
10586
|
-
surname
|
10520
|
+
firstname: string;
|
10521
|
+
surname: string;
|
10587
10522
|
middlename?: string | null | undefined;
|
10588
10523
|
} | {
|
10589
10524
|
country: string;
|
@@ -10614,7 +10549,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10614
10549
|
id: string;
|
10615
10550
|
status: "Rejected" | "Requested" | "Accepted";
|
10616
10551
|
transactionId: string;
|
10617
|
-
createdByUserType: "system" | "user";
|
10618
10552
|
createdAt: string;
|
10619
10553
|
createdBy: string;
|
10620
10554
|
createdByRole: string;
|
@@ -10634,8 +10568,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10634
10568
|
street?: string | null | undefined;
|
10635
10569
|
zipCode?: string | null | undefined;
|
10636
10570
|
} | {
|
10637
|
-
firstname
|
10638
|
-
surname
|
10571
|
+
firstname: string;
|
10572
|
+
surname: string;
|
10639
10573
|
middlename?: string | null | undefined;
|
10640
10574
|
} | {
|
10641
10575
|
country: string;
|
@@ -10678,8 +10612,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10678
10612
|
street?: string | null | undefined;
|
10679
10613
|
zipCode?: string | null | undefined;
|
10680
10614
|
} | {
|
10681
|
-
firstname
|
10682
|
-
surname
|
10615
|
+
firstname: string;
|
10616
|
+
surname: string;
|
10683
10617
|
middlename?: string | null | undefined;
|
10684
10618
|
} | {
|
10685
10619
|
country: string;
|
@@ -10708,7 +10642,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10708
10642
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
10709
10643
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
10710
10644
|
transactionId: z.ZodString;
|
10711
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
10712
10645
|
createdAt: z.ZodString;
|
10713
10646
|
createdBy: z.ZodString;
|
10714
10647
|
createdByRole: z.ZodString;
|
@@ -10828,16 +10761,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10828
10761
|
addressLine3?: string | null | undefined;
|
10829
10762
|
postcodeOrZip?: string | null | undefined;
|
10830
10763
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10831
|
-
firstname: z.
|
10832
|
-
surname: z.
|
10764
|
+
firstname: z.ZodString;
|
10765
|
+
surname: z.ZodString;
|
10833
10766
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10834
10767
|
}, "strip", z.ZodTypeAny, {
|
10835
|
-
firstname
|
10836
|
-
surname
|
10768
|
+
firstname: string;
|
10769
|
+
surname: string;
|
10837
10770
|
middlename?: string | null | undefined;
|
10838
10771
|
}, {
|
10839
|
-
firstname
|
10840
|
-
surname
|
10772
|
+
firstname: string;
|
10773
|
+
surname: string;
|
10841
10774
|
middlename?: string | null | undefined;
|
10842
10775
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
10843
10776
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -10954,16 +10887,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10954
10887
|
addressLine3?: string | null | undefined;
|
10955
10888
|
postcodeOrZip?: string | null | undefined;
|
10956
10889
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10957
|
-
firstname: z.
|
10958
|
-
surname: z.
|
10890
|
+
firstname: z.ZodString;
|
10891
|
+
surname: z.ZodString;
|
10959
10892
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
10960
10893
|
}, "strip", z.ZodTypeAny, {
|
10961
|
-
firstname
|
10962
|
-
surname
|
10894
|
+
firstname: string;
|
10895
|
+
surname: string;
|
10963
10896
|
middlename?: string | null | undefined;
|
10964
10897
|
}, {
|
10965
|
-
firstname
|
10966
|
-
surname
|
10898
|
+
firstname: string;
|
10899
|
+
surname: string;
|
10967
10900
|
middlename?: string | null | undefined;
|
10968
10901
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
10969
10902
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -10989,7 +10922,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10989
10922
|
isDuplicate?: boolean | undefined;
|
10990
10923
|
};
|
10991
10924
|
transactionId: string;
|
10992
|
-
createdByUserType: "system" | "user";
|
10993
10925
|
createdAt: string;
|
10994
10926
|
createdBy: string;
|
10995
10927
|
createdByRole: string;
|
@@ -11009,8 +10941,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11009
10941
|
street?: string | null | undefined;
|
11010
10942
|
zipCode?: string | null | undefined;
|
11011
10943
|
} | {
|
11012
|
-
firstname
|
11013
|
-
surname
|
10944
|
+
firstname: string;
|
10945
|
+
surname: string;
|
11014
10946
|
middlename?: string | null | undefined;
|
11015
10947
|
} | {
|
11016
10948
|
country: string;
|
@@ -11053,8 +10985,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11053
10985
|
street?: string | null | undefined;
|
11054
10986
|
zipCode?: string | null | undefined;
|
11055
10987
|
} | {
|
11056
|
-
firstname
|
11057
|
-
surname
|
10988
|
+
firstname: string;
|
10989
|
+
surname: string;
|
11058
10990
|
middlename?: string | null | undefined;
|
11059
10991
|
} | {
|
11060
10992
|
country: string;
|
@@ -11089,7 +11021,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11089
11021
|
isDuplicate?: boolean | undefined;
|
11090
11022
|
};
|
11091
11023
|
transactionId: string;
|
11092
|
-
createdByUserType: "system" | "user";
|
11093
11024
|
createdAt: string;
|
11094
11025
|
createdBy: string;
|
11095
11026
|
createdByRole: string;
|
@@ -11109,8 +11040,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11109
11040
|
street?: string | null | undefined;
|
11110
11041
|
zipCode?: string | null | undefined;
|
11111
11042
|
} | {
|
11112
|
-
firstname
|
11113
|
-
surname
|
11043
|
+
firstname: string;
|
11044
|
+
surname: string;
|
11114
11045
|
middlename?: string | null | undefined;
|
11115
11046
|
} | {
|
11116
11047
|
country: string;
|
@@ -11153,8 +11084,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11153
11084
|
street?: string | null | undefined;
|
11154
11085
|
zipCode?: string | null | undefined;
|
11155
11086
|
} | {
|
11156
|
-
firstname
|
11157
|
-
surname
|
11087
|
+
firstname: string;
|
11088
|
+
surname: string;
|
11158
11089
|
middlename?: string | null | undefined;
|
11159
11090
|
} | {
|
11160
11091
|
country: string;
|
@@ -11183,7 +11114,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11183
11114
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
11184
11115
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
11185
11116
|
transactionId: z.ZodString;
|
11186
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
11187
11117
|
createdAt: z.ZodString;
|
11188
11118
|
createdBy: z.ZodString;
|
11189
11119
|
createdByRole: z.ZodString;
|
@@ -11303,16 +11233,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11303
11233
|
addressLine3?: string | null | undefined;
|
11304
11234
|
postcodeOrZip?: string | null | undefined;
|
11305
11235
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11306
|
-
firstname: z.
|
11307
|
-
surname: z.
|
11236
|
+
firstname: z.ZodString;
|
11237
|
+
surname: z.ZodString;
|
11308
11238
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11309
11239
|
}, "strip", z.ZodTypeAny, {
|
11310
|
-
firstname
|
11311
|
-
surname
|
11240
|
+
firstname: string;
|
11241
|
+
surname: string;
|
11312
11242
|
middlename?: string | null | undefined;
|
11313
11243
|
}, {
|
11314
|
-
firstname
|
11315
|
-
surname
|
11244
|
+
firstname: string;
|
11245
|
+
surname: string;
|
11316
11246
|
middlename?: string | null | undefined;
|
11317
11247
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
11318
11248
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -11429,16 +11359,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11429
11359
|
addressLine3?: string | null | undefined;
|
11430
11360
|
postcodeOrZip?: string | null | undefined;
|
11431
11361
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11432
|
-
firstname: z.
|
11433
|
-
surname: z.
|
11362
|
+
firstname: z.ZodString;
|
11363
|
+
surname: z.ZodString;
|
11434
11364
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11435
11365
|
}, "strip", z.ZodTypeAny, {
|
11436
|
-
firstname
|
11437
|
-
surname
|
11366
|
+
firstname: string;
|
11367
|
+
surname: string;
|
11438
11368
|
middlename?: string | null | undefined;
|
11439
11369
|
}, {
|
11440
|
-
firstname
|
11441
|
-
surname
|
11370
|
+
firstname: string;
|
11371
|
+
surname: string;
|
11442
11372
|
middlename?: string | null | undefined;
|
11443
11373
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
11444
11374
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -11450,7 +11380,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11450
11380
|
id: string & z.BRAND<"UUID">;
|
11451
11381
|
status: "Rejected" | "Requested" | "Accepted";
|
11452
11382
|
transactionId: string;
|
11453
|
-
createdByUserType: "system" | "user";
|
11454
11383
|
createdAt: string;
|
11455
11384
|
createdBy: string;
|
11456
11385
|
createdByRole: string;
|
@@ -11470,8 +11399,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11470
11399
|
street?: string | null | undefined;
|
11471
11400
|
zipCode?: string | null | undefined;
|
11472
11401
|
} | {
|
11473
|
-
firstname
|
11474
|
-
surname
|
11402
|
+
firstname: string;
|
11403
|
+
surname: string;
|
11475
11404
|
middlename?: string | null | undefined;
|
11476
11405
|
} | {
|
11477
11406
|
country: string;
|
@@ -11514,8 +11443,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11514
11443
|
street?: string | null | undefined;
|
11515
11444
|
zipCode?: string | null | undefined;
|
11516
11445
|
} | {
|
11517
|
-
firstname
|
11518
|
-
surname
|
11446
|
+
firstname: string;
|
11447
|
+
surname: string;
|
11519
11448
|
middlename?: string | null | undefined;
|
11520
11449
|
} | {
|
11521
11450
|
country: string;
|
@@ -11546,7 +11475,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11546
11475
|
id: string;
|
11547
11476
|
status: "Rejected" | "Requested" | "Accepted";
|
11548
11477
|
transactionId: string;
|
11549
|
-
createdByUserType: "system" | "user";
|
11550
11478
|
createdAt: string;
|
11551
11479
|
createdBy: string;
|
11552
11480
|
createdByRole: string;
|
@@ -11566,8 +11494,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11566
11494
|
street?: string | null | undefined;
|
11567
11495
|
zipCode?: string | null | undefined;
|
11568
11496
|
} | {
|
11569
|
-
firstname
|
11570
|
-
surname
|
11497
|
+
firstname: string;
|
11498
|
+
surname: string;
|
11571
11499
|
middlename?: string | null | undefined;
|
11572
11500
|
} | {
|
11573
11501
|
country: string;
|
@@ -11610,8 +11538,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11610
11538
|
street?: string | null | undefined;
|
11611
11539
|
zipCode?: string | null | undefined;
|
11612
11540
|
} | {
|
11613
|
-
firstname
|
11614
|
-
surname
|
11541
|
+
firstname: string;
|
11542
|
+
surname: string;
|
11615
11543
|
middlename?: string | null | undefined;
|
11616
11544
|
} | {
|
11617
11545
|
country: string;
|
@@ -11640,7 +11568,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11640
11568
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
11641
11569
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
11642
11570
|
transactionId: z.ZodString;
|
11643
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
11644
11571
|
createdAt: z.ZodString;
|
11645
11572
|
createdBy: z.ZodString;
|
11646
11573
|
createdByRole: z.ZodString;
|
@@ -11760,16 +11687,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11760
11687
|
addressLine3?: string | null | undefined;
|
11761
11688
|
postcodeOrZip?: string | null | undefined;
|
11762
11689
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11763
|
-
firstname: z.
|
11764
|
-
surname: z.
|
11690
|
+
firstname: z.ZodString;
|
11691
|
+
surname: z.ZodString;
|
11765
11692
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11766
11693
|
}, "strip", z.ZodTypeAny, {
|
11767
|
-
firstname
|
11768
|
-
surname
|
11694
|
+
firstname: string;
|
11695
|
+
surname: string;
|
11769
11696
|
middlename?: string | null | undefined;
|
11770
11697
|
}, {
|
11771
|
-
firstname
|
11772
|
-
surname
|
11698
|
+
firstname: string;
|
11699
|
+
surname: string;
|
11773
11700
|
middlename?: string | null | undefined;
|
11774
11701
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
11775
11702
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -11886,16 +11813,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11886
11813
|
addressLine3?: string | null | undefined;
|
11887
11814
|
postcodeOrZip?: string | null | undefined;
|
11888
11815
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11889
|
-
firstname: z.
|
11890
|
-
surname: z.
|
11816
|
+
firstname: z.ZodString;
|
11817
|
+
surname: z.ZodString;
|
11891
11818
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
11892
11819
|
}, "strip", z.ZodTypeAny, {
|
11893
|
-
firstname
|
11894
|
-
surname
|
11820
|
+
firstname: string;
|
11821
|
+
surname: string;
|
11895
11822
|
middlename?: string | null | undefined;
|
11896
11823
|
}, {
|
11897
|
-
firstname
|
11898
|
-
surname
|
11824
|
+
firstname: string;
|
11825
|
+
surname: string;
|
11899
11826
|
middlename?: string | null | undefined;
|
11900
11827
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
11901
11828
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -11908,7 +11835,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11908
11835
|
id: string & z.BRAND<"UUID">;
|
11909
11836
|
status: "Rejected" | "Requested" | "Accepted";
|
11910
11837
|
transactionId: string;
|
11911
|
-
createdByUserType: "system" | "user";
|
11912
11838
|
createdAt: string;
|
11913
11839
|
createdBy: string;
|
11914
11840
|
createdByRole: string;
|
@@ -11928,8 +11854,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11928
11854
|
street?: string | null | undefined;
|
11929
11855
|
zipCode?: string | null | undefined;
|
11930
11856
|
} | {
|
11931
|
-
firstname
|
11932
|
-
surname
|
11857
|
+
firstname: string;
|
11858
|
+
surname: string;
|
11933
11859
|
middlename?: string | null | undefined;
|
11934
11860
|
} | {
|
11935
11861
|
country: string;
|
@@ -11972,8 +11898,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11972
11898
|
street?: string | null | undefined;
|
11973
11899
|
zipCode?: string | null | undefined;
|
11974
11900
|
} | {
|
11975
|
-
firstname
|
11976
|
-
surname
|
11901
|
+
firstname: string;
|
11902
|
+
surname: string;
|
11977
11903
|
middlename?: string | null | undefined;
|
11978
11904
|
} | {
|
11979
11905
|
country: string;
|
@@ -12005,7 +11931,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12005
11931
|
id: string;
|
12006
11932
|
status: "Rejected" | "Requested" | "Accepted";
|
12007
11933
|
transactionId: string;
|
12008
|
-
createdByUserType: "system" | "user";
|
12009
11934
|
createdAt: string;
|
12010
11935
|
createdBy: string;
|
12011
11936
|
createdByRole: string;
|
@@ -12025,8 +11950,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12025
11950
|
street?: string | null | undefined;
|
12026
11951
|
zipCode?: string | null | undefined;
|
12027
11952
|
} | {
|
12028
|
-
firstname
|
12029
|
-
surname
|
11953
|
+
firstname: string;
|
11954
|
+
surname: string;
|
12030
11955
|
middlename?: string | null | undefined;
|
12031
11956
|
} | {
|
12032
11957
|
country: string;
|
@@ -12069,8 +11994,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12069
11994
|
street?: string | null | undefined;
|
12070
11995
|
zipCode?: string | null | undefined;
|
12071
11996
|
} | {
|
12072
|
-
firstname
|
12073
|
-
surname
|
11997
|
+
firstname: string;
|
11998
|
+
surname: string;
|
12074
11999
|
middlename?: string | null | undefined;
|
12075
12000
|
} | {
|
12076
12001
|
country: string;
|
@@ -12100,7 +12025,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12100
12025
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
12101
12026
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
12102
12027
|
transactionId: z.ZodString;
|
12103
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
12104
12028
|
createdAt: z.ZodString;
|
12105
12029
|
createdBy: z.ZodString;
|
12106
12030
|
createdByRole: z.ZodString;
|
@@ -12220,16 +12144,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12220
12144
|
addressLine3?: string | null | undefined;
|
12221
12145
|
postcodeOrZip?: string | null | undefined;
|
12222
12146
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12223
|
-
firstname: z.
|
12224
|
-
surname: z.
|
12147
|
+
firstname: z.ZodString;
|
12148
|
+
surname: z.ZodString;
|
12225
12149
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12226
12150
|
}, "strip", z.ZodTypeAny, {
|
12227
|
-
firstname
|
12228
|
-
surname
|
12151
|
+
firstname: string;
|
12152
|
+
surname: string;
|
12229
12153
|
middlename?: string | null | undefined;
|
12230
12154
|
}, {
|
12231
|
-
firstname
|
12232
|
-
surname
|
12155
|
+
firstname: string;
|
12156
|
+
surname: string;
|
12233
12157
|
middlename?: string | null | undefined;
|
12234
12158
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
12235
12159
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -12346,16 +12270,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12346
12270
|
addressLine3?: string | null | undefined;
|
12347
12271
|
postcodeOrZip?: string | null | undefined;
|
12348
12272
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12349
|
-
firstname: z.
|
12350
|
-
surname: z.
|
12273
|
+
firstname: z.ZodString;
|
12274
|
+
surname: z.ZodString;
|
12351
12275
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12352
12276
|
}, "strip", z.ZodTypeAny, {
|
12353
|
-
firstname
|
12354
|
-
surname
|
12277
|
+
firstname: string;
|
12278
|
+
surname: string;
|
12355
12279
|
middlename?: string | null | undefined;
|
12356
12280
|
}, {
|
12357
|
-
firstname
|
12358
|
-
surname
|
12281
|
+
firstname: string;
|
12282
|
+
surname: string;
|
12359
12283
|
middlename?: string | null | undefined;
|
12360
12284
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
12361
12285
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -12367,7 +12291,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12367
12291
|
id: string & z.BRAND<"UUID">;
|
12368
12292
|
status: "Rejected" | "Requested" | "Accepted";
|
12369
12293
|
transactionId: string;
|
12370
|
-
createdByUserType: "system" | "user";
|
12371
12294
|
createdAt: string;
|
12372
12295
|
createdBy: string;
|
12373
12296
|
createdByRole: string;
|
@@ -12387,8 +12310,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12387
12310
|
street?: string | null | undefined;
|
12388
12311
|
zipCode?: string | null | undefined;
|
12389
12312
|
} | {
|
12390
|
-
firstname
|
12391
|
-
surname
|
12313
|
+
firstname: string;
|
12314
|
+
surname: string;
|
12392
12315
|
middlename?: string | null | undefined;
|
12393
12316
|
} | {
|
12394
12317
|
country: string;
|
@@ -12431,8 +12354,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12431
12354
|
street?: string | null | undefined;
|
12432
12355
|
zipCode?: string | null | undefined;
|
12433
12356
|
} | {
|
12434
|
-
firstname
|
12435
|
-
surname
|
12357
|
+
firstname: string;
|
12358
|
+
surname: string;
|
12436
12359
|
middlename?: string | null | undefined;
|
12437
12360
|
} | {
|
12438
12361
|
country: string;
|
@@ -12463,7 +12386,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12463
12386
|
id: string;
|
12464
12387
|
status: "Rejected" | "Requested" | "Accepted";
|
12465
12388
|
transactionId: string;
|
12466
|
-
createdByUserType: "system" | "user";
|
12467
12389
|
createdAt: string;
|
12468
12390
|
createdBy: string;
|
12469
12391
|
createdByRole: string;
|
@@ -12483,8 +12405,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12483
12405
|
street?: string | null | undefined;
|
12484
12406
|
zipCode?: string | null | undefined;
|
12485
12407
|
} | {
|
12486
|
-
firstname
|
12487
|
-
surname
|
12408
|
+
firstname: string;
|
12409
|
+
surname: string;
|
12488
12410
|
middlename?: string | null | undefined;
|
12489
12411
|
} | {
|
12490
12412
|
country: string;
|
@@ -12527,8 +12449,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12527
12449
|
street?: string | null | undefined;
|
12528
12450
|
zipCode?: string | null | undefined;
|
12529
12451
|
} | {
|
12530
|
-
firstname
|
12531
|
-
surname
|
12452
|
+
firstname: string;
|
12453
|
+
surname: string;
|
12532
12454
|
middlename?: string | null | undefined;
|
12533
12455
|
} | {
|
12534
12456
|
country: string;
|
@@ -12557,7 +12479,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12557
12479
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
12558
12480
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
12559
12481
|
transactionId: z.ZodString;
|
12560
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
12561
12482
|
createdAt: z.ZodString;
|
12562
12483
|
createdBy: z.ZodString;
|
12563
12484
|
createdByRole: z.ZodString;
|
@@ -12677,16 +12598,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12677
12598
|
addressLine3?: string | null | undefined;
|
12678
12599
|
postcodeOrZip?: string | null | undefined;
|
12679
12600
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12680
|
-
firstname: z.
|
12681
|
-
surname: z.
|
12601
|
+
firstname: z.ZodString;
|
12602
|
+
surname: z.ZodString;
|
12682
12603
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12683
12604
|
}, "strip", z.ZodTypeAny, {
|
12684
|
-
firstname
|
12685
|
-
surname
|
12605
|
+
firstname: string;
|
12606
|
+
surname: string;
|
12686
12607
|
middlename?: string | null | undefined;
|
12687
12608
|
}, {
|
12688
|
-
firstname
|
12689
|
-
surname
|
12609
|
+
firstname: string;
|
12610
|
+
surname: string;
|
12690
12611
|
middlename?: string | null | undefined;
|
12691
12612
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
12692
12613
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -12803,16 +12724,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12803
12724
|
addressLine3?: string | null | undefined;
|
12804
12725
|
postcodeOrZip?: string | null | undefined;
|
12805
12726
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12806
|
-
firstname: z.
|
12807
|
-
surname: z.
|
12727
|
+
firstname: z.ZodString;
|
12728
|
+
surname: z.ZodString;
|
12808
12729
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
12809
12730
|
}, "strip", z.ZodTypeAny, {
|
12810
|
-
firstname
|
12811
|
-
surname
|
12731
|
+
firstname: string;
|
12732
|
+
surname: string;
|
12812
12733
|
middlename?: string | null | undefined;
|
12813
12734
|
}, {
|
12814
|
-
firstname
|
12815
|
-
surname
|
12735
|
+
firstname: string;
|
12736
|
+
surname: string;
|
12816
12737
|
middlename?: string | null | undefined;
|
12817
12738
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
12818
12739
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -12825,7 +12746,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12825
12746
|
id: string & z.BRAND<"UUID">;
|
12826
12747
|
status: "Rejected" | "Requested" | "Accepted";
|
12827
12748
|
transactionId: string;
|
12828
|
-
createdByUserType: "system" | "user";
|
12829
12749
|
createdAt: string;
|
12830
12750
|
createdBy: string;
|
12831
12751
|
createdByRole: string;
|
@@ -12845,8 +12765,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12845
12765
|
street?: string | null | undefined;
|
12846
12766
|
zipCode?: string | null | undefined;
|
12847
12767
|
} | {
|
12848
|
-
firstname
|
12849
|
-
surname
|
12768
|
+
firstname: string;
|
12769
|
+
surname: string;
|
12850
12770
|
middlename?: string | null | undefined;
|
12851
12771
|
} | {
|
12852
12772
|
country: string;
|
@@ -12890,8 +12810,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12890
12810
|
street?: string | null | undefined;
|
12891
12811
|
zipCode?: string | null | undefined;
|
12892
12812
|
} | {
|
12893
|
-
firstname
|
12894
|
-
surname
|
12813
|
+
firstname: string;
|
12814
|
+
surname: string;
|
12895
12815
|
middlename?: string | null | undefined;
|
12896
12816
|
} | {
|
12897
12817
|
country: string;
|
@@ -12922,7 +12842,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12922
12842
|
id: string;
|
12923
12843
|
status: "Rejected" | "Requested" | "Accepted";
|
12924
12844
|
transactionId: string;
|
12925
|
-
createdByUserType: "system" | "user";
|
12926
12845
|
createdAt: string;
|
12927
12846
|
createdBy: string;
|
12928
12847
|
createdByRole: string;
|
@@ -12942,8 +12861,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12942
12861
|
street?: string | null | undefined;
|
12943
12862
|
zipCode?: string | null | undefined;
|
12944
12863
|
} | {
|
12945
|
-
firstname
|
12946
|
-
surname
|
12864
|
+
firstname: string;
|
12865
|
+
surname: string;
|
12947
12866
|
middlename?: string | null | undefined;
|
12948
12867
|
} | {
|
12949
12868
|
country: string;
|
@@ -12987,8 +12906,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12987
12906
|
street?: string | null | undefined;
|
12988
12907
|
zipCode?: string | null | undefined;
|
12989
12908
|
} | {
|
12990
|
-
firstname
|
12991
|
-
surname
|
12909
|
+
firstname: string;
|
12910
|
+
surname: string;
|
12992
12911
|
middlename?: string | null | undefined;
|
12993
12912
|
} | {
|
12994
12913
|
country: string;
|
@@ -13017,7 +12936,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13017
12936
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
13018
12937
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
13019
12938
|
transactionId: z.ZodString;
|
13020
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
13021
12939
|
createdAt: z.ZodString;
|
13022
12940
|
createdBy: z.ZodString;
|
13023
12941
|
createdByRole: z.ZodString;
|
@@ -13137,16 +13055,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13137
13055
|
addressLine3?: string | null | undefined;
|
13138
13056
|
postcodeOrZip?: string | null | undefined;
|
13139
13057
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13140
|
-
firstname: z.
|
13141
|
-
surname: z.
|
13058
|
+
firstname: z.ZodString;
|
13059
|
+
surname: z.ZodString;
|
13142
13060
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13143
13061
|
}, "strip", z.ZodTypeAny, {
|
13144
|
-
firstname
|
13145
|
-
surname
|
13062
|
+
firstname: string;
|
13063
|
+
surname: string;
|
13146
13064
|
middlename?: string | null | undefined;
|
13147
13065
|
}, {
|
13148
|
-
firstname
|
13149
|
-
surname
|
13066
|
+
firstname: string;
|
13067
|
+
surname: string;
|
13150
13068
|
middlename?: string | null | undefined;
|
13151
13069
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
13152
13070
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -13263,16 +13181,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13263
13181
|
addressLine3?: string | null | undefined;
|
13264
13182
|
postcodeOrZip?: string | null | undefined;
|
13265
13183
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13266
|
-
firstname: z.
|
13267
|
-
surname: z.
|
13184
|
+
firstname: z.ZodString;
|
13185
|
+
surname: z.ZodString;
|
13268
13186
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13269
13187
|
}, "strip", z.ZodTypeAny, {
|
13270
|
-
firstname
|
13271
|
-
surname
|
13188
|
+
firstname: string;
|
13189
|
+
surname: string;
|
13272
13190
|
middlename?: string | null | undefined;
|
13273
13191
|
}, {
|
13274
|
-
firstname
|
13275
|
-
surname
|
13192
|
+
firstname: string;
|
13193
|
+
surname: string;
|
13276
13194
|
middlename?: string | null | undefined;
|
13277
13195
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
13278
13196
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -13284,7 +13202,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13284
13202
|
id: string & z.BRAND<"UUID">;
|
13285
13203
|
status: "Rejected" | "Requested" | "Accepted";
|
13286
13204
|
transactionId: string;
|
13287
|
-
createdByUserType: "system" | "user";
|
13288
13205
|
createdAt: string;
|
13289
13206
|
createdBy: string;
|
13290
13207
|
createdByRole: string;
|
@@ -13304,8 +13221,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13304
13221
|
street?: string | null | undefined;
|
13305
13222
|
zipCode?: string | null | undefined;
|
13306
13223
|
} | {
|
13307
|
-
firstname
|
13308
|
-
surname
|
13224
|
+
firstname: string;
|
13225
|
+
surname: string;
|
13309
13226
|
middlename?: string | null | undefined;
|
13310
13227
|
} | {
|
13311
13228
|
country: string;
|
@@ -13348,8 +13265,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13348
13265
|
street?: string | null | undefined;
|
13349
13266
|
zipCode?: string | null | undefined;
|
13350
13267
|
} | {
|
13351
|
-
firstname
|
13352
|
-
surname
|
13268
|
+
firstname: string;
|
13269
|
+
surname: string;
|
13353
13270
|
middlename?: string | null | undefined;
|
13354
13271
|
} | {
|
13355
13272
|
country: string;
|
@@ -13380,7 +13297,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13380
13297
|
id: string;
|
13381
13298
|
status: "Rejected" | "Requested" | "Accepted";
|
13382
13299
|
transactionId: string;
|
13383
|
-
createdByUserType: "system" | "user";
|
13384
13300
|
createdAt: string;
|
13385
13301
|
createdBy: string;
|
13386
13302
|
createdByRole: string;
|
@@ -13400,8 +13316,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13400
13316
|
street?: string | null | undefined;
|
13401
13317
|
zipCode?: string | null | undefined;
|
13402
13318
|
} | {
|
13403
|
-
firstname
|
13404
|
-
surname
|
13319
|
+
firstname: string;
|
13320
|
+
surname: string;
|
13405
13321
|
middlename?: string | null | undefined;
|
13406
13322
|
} | {
|
13407
13323
|
country: string;
|
@@ -13444,8 +13360,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13444
13360
|
street?: string | null | undefined;
|
13445
13361
|
zipCode?: string | null | undefined;
|
13446
13362
|
} | {
|
13447
|
-
firstname
|
13448
|
-
surname
|
13363
|
+
firstname: string;
|
13364
|
+
surname: string;
|
13449
13365
|
middlename?: string | null | undefined;
|
13450
13366
|
} | {
|
13451
13367
|
country: string;
|
@@ -13474,7 +13390,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13474
13390
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
13475
13391
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
13476
13392
|
transactionId: z.ZodString;
|
13477
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
13478
13393
|
createdAt: z.ZodString;
|
13479
13394
|
createdBy: z.ZodString;
|
13480
13395
|
createdByRole: z.ZodString;
|
@@ -13594,16 +13509,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13594
13509
|
addressLine3?: string | null | undefined;
|
13595
13510
|
postcodeOrZip?: string | null | undefined;
|
13596
13511
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13597
|
-
firstname: z.
|
13598
|
-
surname: z.
|
13512
|
+
firstname: z.ZodString;
|
13513
|
+
surname: z.ZodString;
|
13599
13514
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13600
13515
|
}, "strip", z.ZodTypeAny, {
|
13601
|
-
firstname
|
13602
|
-
surname
|
13516
|
+
firstname: string;
|
13517
|
+
surname: string;
|
13603
13518
|
middlename?: string | null | undefined;
|
13604
13519
|
}, {
|
13605
|
-
firstname
|
13606
|
-
surname
|
13520
|
+
firstname: string;
|
13521
|
+
surname: string;
|
13607
13522
|
middlename?: string | null | undefined;
|
13608
13523
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
13609
13524
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -13720,16 +13635,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13720
13635
|
addressLine3?: string | null | undefined;
|
13721
13636
|
postcodeOrZip?: string | null | undefined;
|
13722
13637
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13723
|
-
firstname: z.
|
13724
|
-
surname: z.
|
13638
|
+
firstname: z.ZodString;
|
13639
|
+
surname: z.ZodString;
|
13725
13640
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
13726
13641
|
}, "strip", z.ZodTypeAny, {
|
13727
|
-
firstname
|
13728
|
-
surname
|
13642
|
+
firstname: string;
|
13643
|
+
surname: string;
|
13729
13644
|
middlename?: string | null | undefined;
|
13730
13645
|
}, {
|
13731
|
-
firstname
|
13732
|
-
surname
|
13646
|
+
firstname: string;
|
13647
|
+
surname: string;
|
13733
13648
|
middlename?: string | null | undefined;
|
13734
13649
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
13735
13650
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -13742,7 +13657,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13742
13657
|
id: string & z.BRAND<"UUID">;
|
13743
13658
|
status: "Rejected" | "Requested" | "Accepted";
|
13744
13659
|
transactionId: string;
|
13745
|
-
createdByUserType: "system" | "user";
|
13746
13660
|
createdAt: string;
|
13747
13661
|
createdBy: string;
|
13748
13662
|
createdByRole: string;
|
@@ -13762,8 +13676,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13762
13676
|
street?: string | null | undefined;
|
13763
13677
|
zipCode?: string | null | undefined;
|
13764
13678
|
} | {
|
13765
|
-
firstname
|
13766
|
-
surname
|
13679
|
+
firstname: string;
|
13680
|
+
surname: string;
|
13767
13681
|
middlename?: string | null | undefined;
|
13768
13682
|
} | {
|
13769
13683
|
country: string;
|
@@ -13807,8 +13721,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13807
13721
|
street?: string | null | undefined;
|
13808
13722
|
zipCode?: string | null | undefined;
|
13809
13723
|
} | {
|
13810
|
-
firstname
|
13811
|
-
surname
|
13724
|
+
firstname: string;
|
13725
|
+
surname: string;
|
13812
13726
|
middlename?: string | null | undefined;
|
13813
13727
|
} | {
|
13814
13728
|
country: string;
|
@@ -13839,7 +13753,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13839
13753
|
id: string;
|
13840
13754
|
status: "Rejected" | "Requested" | "Accepted";
|
13841
13755
|
transactionId: string;
|
13842
|
-
createdByUserType: "system" | "user";
|
13843
13756
|
createdAt: string;
|
13844
13757
|
createdBy: string;
|
13845
13758
|
createdByRole: string;
|
@@ -13859,8 +13772,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13859
13772
|
street?: string | null | undefined;
|
13860
13773
|
zipCode?: string | null | undefined;
|
13861
13774
|
} | {
|
13862
|
-
firstname
|
13863
|
-
surname
|
13775
|
+
firstname: string;
|
13776
|
+
surname: string;
|
13864
13777
|
middlename?: string | null | undefined;
|
13865
13778
|
} | {
|
13866
13779
|
country: string;
|
@@ -13904,8 +13817,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13904
13817
|
street?: string | null | undefined;
|
13905
13818
|
zipCode?: string | null | undefined;
|
13906
13819
|
} | {
|
13907
|
-
firstname
|
13908
|
-
surname
|
13820
|
+
firstname: string;
|
13821
|
+
surname: string;
|
13909
13822
|
middlename?: string | null | undefined;
|
13910
13823
|
} | {
|
13911
13824
|
country: string;
|
@@ -13934,7 +13847,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13934
13847
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
13935
13848
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
13936
13849
|
transactionId: z.ZodString;
|
13937
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
13938
13850
|
createdAt: z.ZodString;
|
13939
13851
|
createdBy: z.ZodString;
|
13940
13852
|
createdByRole: z.ZodString;
|
@@ -14054,16 +13966,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14054
13966
|
addressLine3?: string | null | undefined;
|
14055
13967
|
postcodeOrZip?: string | null | undefined;
|
14056
13968
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
14057
|
-
firstname: z.
|
14058
|
-
surname: z.
|
13969
|
+
firstname: z.ZodString;
|
13970
|
+
surname: z.ZodString;
|
14059
13971
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
14060
13972
|
}, "strip", z.ZodTypeAny, {
|
14061
|
-
firstname
|
14062
|
-
surname
|
13973
|
+
firstname: string;
|
13974
|
+
surname: string;
|
14063
13975
|
middlename?: string | null | undefined;
|
14064
13976
|
}, {
|
14065
|
-
firstname
|
14066
|
-
surname
|
13977
|
+
firstname: string;
|
13978
|
+
surname: string;
|
14067
13979
|
middlename?: string | null | undefined;
|
14068
13980
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
14069
13981
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -14180,16 +14092,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14180
14092
|
addressLine3?: string | null | undefined;
|
14181
14093
|
postcodeOrZip?: string | null | undefined;
|
14182
14094
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
14183
|
-
firstname: z.
|
14184
|
-
surname: z.
|
14095
|
+
firstname: z.ZodString;
|
14096
|
+
surname: z.ZodString;
|
14185
14097
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
14186
14098
|
}, "strip", z.ZodTypeAny, {
|
14187
|
-
firstname
|
14188
|
-
surname
|
14099
|
+
firstname: string;
|
14100
|
+
surname: string;
|
14189
14101
|
middlename?: string | null | undefined;
|
14190
14102
|
}, {
|
14191
|
-
firstname
|
14192
|
-
surname
|
14103
|
+
firstname: string;
|
14104
|
+
surname: string;
|
14193
14105
|
middlename?: string | null | undefined;
|
14194
14106
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
14195
14107
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -14202,7 +14114,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14202
14114
|
id: string & z.BRAND<"UUID">;
|
14203
14115
|
status: "Rejected" | "Requested" | "Accepted";
|
14204
14116
|
transactionId: string;
|
14205
|
-
createdByUserType: "system" | "user";
|
14206
14117
|
createdAt: string;
|
14207
14118
|
createdBy: string;
|
14208
14119
|
createdByRole: string;
|
@@ -14222,8 +14133,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14222
14133
|
street?: string | null | undefined;
|
14223
14134
|
zipCode?: string | null | undefined;
|
14224
14135
|
} | {
|
14225
|
-
firstname
|
14226
|
-
surname
|
14136
|
+
firstname: string;
|
14137
|
+
surname: string;
|
14227
14138
|
middlename?: string | null | undefined;
|
14228
14139
|
} | {
|
14229
14140
|
country: string;
|
@@ -14267,8 +14178,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14267
14178
|
street?: string | null | undefined;
|
14268
14179
|
zipCode?: string | null | undefined;
|
14269
14180
|
} | {
|
14270
|
-
firstname
|
14271
|
-
surname
|
14181
|
+
firstname: string;
|
14182
|
+
surname: string;
|
14272
14183
|
middlename?: string | null | undefined;
|
14273
14184
|
} | {
|
14274
14185
|
country: string;
|
@@ -14299,7 +14210,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14299
14210
|
id: string;
|
14300
14211
|
status: "Rejected" | "Requested" | "Accepted";
|
14301
14212
|
transactionId: string;
|
14302
|
-
createdByUserType: "system" | "user";
|
14303
14213
|
createdAt: string;
|
14304
14214
|
createdBy: string;
|
14305
14215
|
createdByRole: string;
|
@@ -14319,8 +14229,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14319
14229
|
street?: string | null | undefined;
|
14320
14230
|
zipCode?: string | null | undefined;
|
14321
14231
|
} | {
|
14322
|
-
firstname
|
14323
|
-
surname
|
14232
|
+
firstname: string;
|
14233
|
+
surname: string;
|
14324
14234
|
middlename?: string | null | undefined;
|
14325
14235
|
} | {
|
14326
14236
|
country: string;
|
@@ -14364,8 +14274,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14364
14274
|
street?: string | null | undefined;
|
14365
14275
|
zipCode?: string | null | undefined;
|
14366
14276
|
} | {
|
14367
|
-
firstname
|
14368
|
-
surname
|
14277
|
+
firstname: string;
|
14278
|
+
surname: string;
|
14369
14279
|
middlename?: string | null | undefined;
|
14370
14280
|
} | {
|
14371
14281
|
country: string;
|
@@ -14394,7 +14304,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14394
14304
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
14395
14305
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
14396
14306
|
transactionId: z.ZodString;
|
14397
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
14398
14307
|
createdAt: z.ZodString;
|
14399
14308
|
createdBy: z.ZodString;
|
14400
14309
|
createdByRole: z.ZodString;
|
@@ -14514,16 +14423,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14514
14423
|
addressLine3?: string | null | undefined;
|
14515
14424
|
postcodeOrZip?: string | null | undefined;
|
14516
14425
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
14517
|
-
firstname: z.
|
14518
|
-
surname: z.
|
14426
|
+
firstname: z.ZodString;
|
14427
|
+
surname: z.ZodString;
|
14519
14428
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
14520
14429
|
}, "strip", z.ZodTypeAny, {
|
14521
|
-
firstname
|
14522
|
-
surname
|
14430
|
+
firstname: string;
|
14431
|
+
surname: string;
|
14523
14432
|
middlename?: string | null | undefined;
|
14524
14433
|
}, {
|
14525
|
-
firstname
|
14526
|
-
surname
|
14434
|
+
firstname: string;
|
14435
|
+
surname: string;
|
14527
14436
|
middlename?: string | null | undefined;
|
14528
14437
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
14529
14438
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -14640,28 +14549,28 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14640
14549
|
addressLine3?: string | null | undefined;
|
14641
14550
|
postcodeOrZip?: string | null | undefined;
|
14642
14551
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
14643
|
-
firstname: z.
|
14644
|
-
surname: z.
|
14552
|
+
firstname: z.ZodString;
|
14553
|
+
surname: z.ZodString;
|
14645
14554
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
14646
14555
|
}, "strip", z.ZodTypeAny, {
|
14647
|
-
firstname
|
14648
|
-
surname
|
14556
|
+
firstname: string;
|
14557
|
+
surname: string;
|
14649
14558
|
middlename?: string | null | undefined;
|
14650
14559
|
}, {
|
14651
|
-
firstname
|
14652
|
-
surname
|
14560
|
+
firstname: string;
|
14561
|
+
surname: string;
|
14653
14562
|
middlename?: string | null | undefined;
|
14654
14563
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
14655
14564
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
14656
14565
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
14657
14566
|
}, {
|
14658
14567
|
type: z.ZodLiteral<"UNASSIGN">;
|
14568
|
+
assignedTo: z.ZodLiteral<null>;
|
14659
14569
|
}>, "strip", z.ZodTypeAny, {
|
14660
14570
|
type: "UNASSIGN";
|
14661
14571
|
id: string & z.BRAND<"UUID">;
|
14662
14572
|
status: "Rejected" | "Requested" | "Accepted";
|
14663
14573
|
transactionId: string;
|
14664
|
-
createdByUserType: "system" | "user";
|
14665
14574
|
createdAt: string;
|
14666
14575
|
createdBy: string;
|
14667
14576
|
createdByRole: string;
|
@@ -14681,8 +14590,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14681
14590
|
street?: string | null | undefined;
|
14682
14591
|
zipCode?: string | null | undefined;
|
14683
14592
|
} | {
|
14684
|
-
firstname
|
14685
|
-
surname
|
14593
|
+
firstname: string;
|
14594
|
+
surname: string;
|
14686
14595
|
middlename?: string | null | undefined;
|
14687
14596
|
} | {
|
14688
14597
|
country: string;
|
@@ -14707,6 +14616,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14707
14616
|
filename: string;
|
14708
14617
|
originalFilename: string;
|
14709
14618
|
}[] | [string, string] | null | undefined>;
|
14619
|
+
assignedTo: null;
|
14710
14620
|
createdBySignature?: string | null | undefined;
|
14711
14621
|
createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
|
14712
14622
|
annotation?: Record<string, string | number | boolean | {
|
@@ -14725,8 +14635,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14725
14635
|
street?: string | null | undefined;
|
14726
14636
|
zipCode?: string | null | undefined;
|
14727
14637
|
} | {
|
14728
|
-
firstname
|
14729
|
-
surname
|
14638
|
+
firstname: string;
|
14639
|
+
surname: string;
|
14730
14640
|
middlename?: string | null | undefined;
|
14731
14641
|
} | {
|
14732
14642
|
country: string;
|
@@ -14757,7 +14667,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14757
14667
|
id: string;
|
14758
14668
|
status: "Rejected" | "Requested" | "Accepted";
|
14759
14669
|
transactionId: string;
|
14760
|
-
createdByUserType: "system" | "user";
|
14761
14670
|
createdAt: string;
|
14762
14671
|
createdBy: string;
|
14763
14672
|
createdByRole: string;
|
@@ -14777,8 +14686,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14777
14686
|
street?: string | null | undefined;
|
14778
14687
|
zipCode?: string | null | undefined;
|
14779
14688
|
} | {
|
14780
|
-
firstname
|
14781
|
-
surname
|
14689
|
+
firstname: string;
|
14690
|
+
surname: string;
|
14782
14691
|
middlename?: string | null | undefined;
|
14783
14692
|
} | {
|
14784
14693
|
country: string;
|
@@ -14803,6 +14712,7 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14803
14712
|
filename: string;
|
14804
14713
|
originalFilename: string;
|
14805
14714
|
}[] | [string, string] | null | undefined>;
|
14715
|
+
assignedTo: null;
|
14806
14716
|
createdBySignature?: string | null | undefined;
|
14807
14717
|
createdAtLocation?: string | null | undefined;
|
14808
14718
|
annotation?: Record<string, string | number | boolean | {
|
@@ -14821,8 +14731,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14821
14731
|
street?: string | null | undefined;
|
14822
14732
|
zipCode?: string | null | undefined;
|
14823
14733
|
} | {
|
14824
|
-
firstname
|
14825
|
-
surname
|
14734
|
+
firstname: string;
|
14735
|
+
surname: string;
|
14826
14736
|
middlename?: string | null | undefined;
|
14827
14737
|
} | {
|
14828
14738
|
country: string;
|
@@ -14851,7 +14761,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14851
14761
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
14852
14762
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
14853
14763
|
transactionId: z.ZodString;
|
14854
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
14855
14764
|
createdAt: z.ZodString;
|
14856
14765
|
createdBy: z.ZodString;
|
14857
14766
|
createdByRole: z.ZodString;
|
@@ -14971,16 +14880,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14971
14880
|
addressLine3?: string | null | undefined;
|
14972
14881
|
postcodeOrZip?: string | null | undefined;
|
14973
14882
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
14974
|
-
firstname: z.
|
14975
|
-
surname: z.
|
14883
|
+
firstname: z.ZodString;
|
14884
|
+
surname: z.ZodString;
|
14976
14885
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
14977
14886
|
}, "strip", z.ZodTypeAny, {
|
14978
|
-
firstname
|
14979
|
-
surname
|
14887
|
+
firstname: string;
|
14888
|
+
surname: string;
|
14980
14889
|
middlename?: string | null | undefined;
|
14981
14890
|
}, {
|
14982
|
-
firstname
|
14983
|
-
surname
|
14891
|
+
firstname: string;
|
14892
|
+
surname: string;
|
14984
14893
|
middlename?: string | null | undefined;
|
14985
14894
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
14986
14895
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -15097,16 +15006,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15097
15006
|
addressLine3?: string | null | undefined;
|
15098
15007
|
postcodeOrZip?: string | null | undefined;
|
15099
15008
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
15100
|
-
firstname: z.
|
15101
|
-
surname: z.
|
15009
|
+
firstname: z.ZodString;
|
15010
|
+
surname: z.ZodString;
|
15102
15011
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
15103
15012
|
}, "strip", z.ZodTypeAny, {
|
15104
|
-
firstname
|
15105
|
-
surname
|
15013
|
+
firstname: string;
|
15014
|
+
surname: string;
|
15106
15015
|
middlename?: string | null | undefined;
|
15107
15016
|
}, {
|
15108
|
-
firstname
|
15109
|
-
surname
|
15017
|
+
firstname: string;
|
15018
|
+
surname: string;
|
15110
15019
|
middlename?: string | null | undefined;
|
15111
15020
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
15112
15021
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -15118,7 +15027,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15118
15027
|
id: string & z.BRAND<"UUID">;
|
15119
15028
|
status: "Rejected" | "Requested" | "Accepted";
|
15120
15029
|
transactionId: string;
|
15121
|
-
createdByUserType: "system" | "user";
|
15122
15030
|
createdAt: string;
|
15123
15031
|
createdBy: string;
|
15124
15032
|
createdByRole: string;
|
@@ -15138,8 +15046,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15138
15046
|
street?: string | null | undefined;
|
15139
15047
|
zipCode?: string | null | undefined;
|
15140
15048
|
} | {
|
15141
|
-
firstname
|
15142
|
-
surname
|
15049
|
+
firstname: string;
|
15050
|
+
surname: string;
|
15143
15051
|
middlename?: string | null | undefined;
|
15144
15052
|
} | {
|
15145
15053
|
country: string;
|
@@ -15182,8 +15090,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15182
15090
|
street?: string | null | undefined;
|
15183
15091
|
zipCode?: string | null | undefined;
|
15184
15092
|
} | {
|
15185
|
-
firstname
|
15186
|
-
surname
|
15093
|
+
firstname: string;
|
15094
|
+
surname: string;
|
15187
15095
|
middlename?: string | null | undefined;
|
15188
15096
|
} | {
|
15189
15097
|
country: string;
|
@@ -15214,7 +15122,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15214
15122
|
id: string;
|
15215
15123
|
status: "Rejected" | "Requested" | "Accepted";
|
15216
15124
|
transactionId: string;
|
15217
|
-
createdByUserType: "system" | "user";
|
15218
15125
|
createdAt: string;
|
15219
15126
|
createdBy: string;
|
15220
15127
|
createdByRole: string;
|
@@ -15234,8 +15141,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15234
15141
|
street?: string | null | undefined;
|
15235
15142
|
zipCode?: string | null | undefined;
|
15236
15143
|
} | {
|
15237
|
-
firstname
|
15238
|
-
surname
|
15144
|
+
firstname: string;
|
15145
|
+
surname: string;
|
15239
15146
|
middlename?: string | null | undefined;
|
15240
15147
|
} | {
|
15241
15148
|
country: string;
|
@@ -15278,8 +15185,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15278
15185
|
street?: string | null | undefined;
|
15279
15186
|
zipCode?: string | null | undefined;
|
15280
15187
|
} | {
|
15281
|
-
firstname
|
15282
|
-
surname
|
15188
|
+
firstname: string;
|
15189
|
+
surname: string;
|
15283
15190
|
middlename?: string | null | undefined;
|
15284
15191
|
} | {
|
15285
15192
|
country: string;
|
@@ -15308,7 +15215,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15308
15215
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
15309
15216
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
15310
15217
|
transactionId: z.ZodString;
|
15311
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
15312
15218
|
createdAt: z.ZodString;
|
15313
15219
|
createdBy: z.ZodString;
|
15314
15220
|
createdByRole: z.ZodString;
|
@@ -15428,16 +15334,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15428
15334
|
addressLine3?: string | null | undefined;
|
15429
15335
|
postcodeOrZip?: string | null | undefined;
|
15430
15336
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
15431
|
-
firstname: z.
|
15432
|
-
surname: z.
|
15337
|
+
firstname: z.ZodString;
|
15338
|
+
surname: z.ZodString;
|
15433
15339
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
15434
15340
|
}, "strip", z.ZodTypeAny, {
|
15435
|
-
firstname
|
15436
|
-
surname
|
15341
|
+
firstname: string;
|
15342
|
+
surname: string;
|
15437
15343
|
middlename?: string | null | undefined;
|
15438
15344
|
}, {
|
15439
|
-
firstname
|
15440
|
-
surname
|
15345
|
+
firstname: string;
|
15346
|
+
surname: string;
|
15441
15347
|
middlename?: string | null | undefined;
|
15442
15348
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
15443
15349
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -15554,16 +15460,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15554
15460
|
addressLine3?: string | null | undefined;
|
15555
15461
|
postcodeOrZip?: string | null | undefined;
|
15556
15462
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
15557
|
-
firstname: z.
|
15558
|
-
surname: z.
|
15463
|
+
firstname: z.ZodString;
|
15464
|
+
surname: z.ZodString;
|
15559
15465
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
15560
15466
|
}, "strip", z.ZodTypeAny, {
|
15561
|
-
firstname
|
15562
|
-
surname
|
15467
|
+
firstname: string;
|
15468
|
+
surname: string;
|
15563
15469
|
middlename?: string | null | undefined;
|
15564
15470
|
}, {
|
15565
|
-
firstname
|
15566
|
-
surname
|
15471
|
+
firstname: string;
|
15472
|
+
surname: string;
|
15567
15473
|
middlename?: string | null | undefined;
|
15568
15474
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
15569
15475
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -15575,7 +15481,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15575
15481
|
id: string & z.BRAND<"UUID">;
|
15576
15482
|
status: "Rejected" | "Requested" | "Accepted";
|
15577
15483
|
transactionId: string;
|
15578
|
-
createdByUserType: "system" | "user";
|
15579
15484
|
createdAt: string;
|
15580
15485
|
createdBy: string;
|
15581
15486
|
createdByRole: string;
|
@@ -15595,8 +15500,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15595
15500
|
street?: string | null | undefined;
|
15596
15501
|
zipCode?: string | null | undefined;
|
15597
15502
|
} | {
|
15598
|
-
firstname
|
15599
|
-
surname
|
15503
|
+
firstname: string;
|
15504
|
+
surname: string;
|
15600
15505
|
middlename?: string | null | undefined;
|
15601
15506
|
} | {
|
15602
15507
|
country: string;
|
@@ -15639,8 +15544,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15639
15544
|
street?: string | null | undefined;
|
15640
15545
|
zipCode?: string | null | undefined;
|
15641
15546
|
} | {
|
15642
|
-
firstname
|
15643
|
-
surname
|
15547
|
+
firstname: string;
|
15548
|
+
surname: string;
|
15644
15549
|
middlename?: string | null | undefined;
|
15645
15550
|
} | {
|
15646
15551
|
country: string;
|
@@ -15671,7 +15576,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15671
15576
|
id: string;
|
15672
15577
|
status: "Rejected" | "Requested" | "Accepted";
|
15673
15578
|
transactionId: string;
|
15674
|
-
createdByUserType: "system" | "user";
|
15675
15579
|
createdAt: string;
|
15676
15580
|
createdBy: string;
|
15677
15581
|
createdByRole: string;
|
@@ -15691,8 +15595,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15691
15595
|
street?: string | null | undefined;
|
15692
15596
|
zipCode?: string | null | undefined;
|
15693
15597
|
} | {
|
15694
|
-
firstname
|
15695
|
-
surname
|
15598
|
+
firstname: string;
|
15599
|
+
surname: string;
|
15696
15600
|
middlename?: string | null | undefined;
|
15697
15601
|
} | {
|
15698
15602
|
country: string;
|
@@ -15735,8 +15639,8 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15735
15639
|
street?: string | null | undefined;
|
15736
15640
|
zipCode?: string | null | undefined;
|
15737
15641
|
} | {
|
15738
|
-
firstname
|
15739
|
-
surname
|
15642
|
+
firstname: string;
|
15643
|
+
surname: string;
|
15740
15644
|
middlename?: string | null | undefined;
|
15741
15645
|
} | {
|
15742
15646
|
country: string;
|
@@ -15765,7 +15669,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15765
15669
|
}>]>, z.ZodObject<z.objectUtil.extendShape<Omit<{
|
15766
15670
|
id: z.ZodBranded<z.ZodString, "UUID">;
|
15767
15671
|
transactionId: z.ZodString;
|
15768
|
-
createdByUserType: z.ZodEnum<["user", "system"]>;
|
15769
15672
|
createdAt: z.ZodString;
|
15770
15673
|
createdBy: z.ZodString;
|
15771
15674
|
createdByRole: z.ZodString;
|
@@ -15885,16 +15788,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15885
15788
|
addressLine3?: string | null | undefined;
|
15886
15789
|
postcodeOrZip?: string | null | undefined;
|
15887
15790
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
15888
|
-
firstname: z.
|
15889
|
-
surname: z.
|
15791
|
+
firstname: z.ZodString;
|
15792
|
+
surname: z.ZodString;
|
15890
15793
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
15891
15794
|
}, "strip", z.ZodTypeAny, {
|
15892
|
-
firstname
|
15893
|
-
surname
|
15795
|
+
firstname: string;
|
15796
|
+
surname: string;
|
15894
15797
|
middlename?: string | null | undefined;
|
15895
15798
|
}, {
|
15896
|
-
firstname
|
15897
|
-
surname
|
15799
|
+
firstname: string;
|
15800
|
+
surname: string;
|
15898
15801
|
middlename?: string | null | undefined;
|
15899
15802
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
15900
15803
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodUnion<[z.ZodString, z.ZodTuple<[z.ZodString, z.ZodString], null>]>, z.ZodBoolean, z.ZodNumber, z.ZodObject<{
|
@@ -16011,16 +15914,16 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16011
15914
|
addressLine3?: string | null | undefined;
|
16012
15915
|
postcodeOrZip?: string | null | undefined;
|
16013
15916
|
}>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
16014
|
-
firstname: z.
|
16015
|
-
surname: z.
|
15917
|
+
firstname: z.ZodString;
|
15918
|
+
surname: z.ZodString;
|
16016
15919
|
middlename: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
16017
15920
|
}, "strip", z.ZodTypeAny, {
|
16018
|
-
firstname
|
16019
|
-
surname
|
15921
|
+
firstname: string;
|
15922
|
+
surname: string;
|
16020
15923
|
middlename?: string | null | undefined;
|
16021
15924
|
}, {
|
16022
|
-
firstname
|
16023
|
-
surname
|
15925
|
+
firstname: string;
|
15926
|
+
surname: string;
|
16024
15927
|
middlename?: string | null | undefined;
|
16025
15928
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
16026
15929
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
@@ -16029,11 +15932,10 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16029
15932
|
type: z.ZodEnum<["NOTIFY", "DECLARE", "VALIDATE", "REGISTER", "REJECT", "ARCHIVE", "PRINT_CERTIFICATE"]>;
|
16030
15933
|
status: z.ZodLiteral<"Rejected">;
|
16031
15934
|
}>, "strip", z.ZodTypeAny, {
|
16032
|
-
type: "
|
15935
|
+
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
16033
15936
|
id: string & z.BRAND<"UUID">;
|
16034
15937
|
status: "Rejected";
|
16035
15938
|
transactionId: string;
|
16036
|
-
createdByUserType: "system" | "user";
|
16037
15939
|
createdAt: string;
|
16038
15940
|
createdBy: string;
|
16039
15941
|
createdByRole: string;
|
@@ -16041,11 +15943,10 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16041
15943
|
createdAtLocation?: (string & z.BRAND<"UUID">) | null | undefined;
|
16042
15944
|
originalActionId?: (string & z.BRAND<"UUID">) | null | undefined;
|
16043
15945
|
}, {
|
16044
|
-
type: "
|
15946
|
+
type: "DECLARE" | "REGISTER" | "VALIDATE" | "NOTIFY" | "REJECT" | "ARCHIVE" | "PRINT_CERTIFICATE";
|
16045
15947
|
id: string;
|
16046
15948
|
status: "Rejected";
|
16047
15949
|
transactionId: string;
|
16048
|
-
createdByUserType: "system" | "user";
|
16049
15950
|
createdAt: string;
|
16050
15951
|
createdBy: string;
|
16051
15952
|
createdByRole: string;
|