@opencrvs/toolkit 1.8.1-rc.06c1a33 → 1.8.1-rc.0c6d168
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/build.sh +5 -0
- package/dist/commons/api/router.d.ts +1 -1347
- package/dist/commons/events/ActionConfig.d.ts +3777 -13563
- package/dist/commons/events/ActionDocument.d.ts +1 -3036
- package/dist/commons/events/ActionInput.d.ts +0 -2460
- package/dist/commons/events/AdvancedSearchConfig.d.ts +3 -93
- package/dist/commons/events/CompositeFieldValue.d.ts +0 -60
- package/dist/commons/events/Draft.d.ts +0 -192
- package/dist/commons/events/EventConfig.d.ts +3864 -8123
- package/dist/commons/events/EventDocument.d.ts +0 -1704
- package/dist/commons/events/EventIndex.d.ts +1 -47
- package/dist/commons/events/FieldConfig.d.ts +990 -1752
- package/dist/commons/events/FieldType.d.ts +1 -3
- package/dist/commons/events/FieldTypeMapping.d.ts +3 -85
- package/dist/commons/events/FieldValue.d.ts +3 -62
- package/dist/commons/events/FormConfig.d.ts +1148 -5750
- package/dist/commons/events/PageConfig.d.ts +1206 -2352
- package/dist/commons/events/WorkqueueConfig.d.ts +8 -8
- package/dist/commons/events/defineConfig.d.ts +16 -727
- package/dist/commons/events/test.utils.d.ts +0 -42
- package/dist/commons/events/utils.d.ts +18 -1319
- package/dist/commons/notification/UserNotifications.d.ts +547 -0
- package/dist/commons/notification/index.d.ts +2 -0
- package/dist/events/index.js +19 -74
- package/dist/notification/index.d.ts +2 -0
- package/dist/notification/index.d.ts.map +1 -0
- package/dist/notification/index.js +5333 -0
- package/package.json +3 -2
- package/tsconfig.json +2 -1
- package/tsconfig.tsbuildinfo +1 -1
@@ -136,33 +136,6 @@ export declare const ActionUpdate: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodStr
|
|
136
136
|
firstname: string;
|
137
137
|
surname: string;
|
138
138
|
middlename?: string | null | undefined;
|
139
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
140
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
141
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
142
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
143
|
-
message: z.ZodString;
|
144
|
-
}, "strip", z.ZodTypeAny, {
|
145
|
-
message: string;
|
146
|
-
statusCode: number | null;
|
147
|
-
}, {
|
148
|
-
message: string;
|
149
|
-
statusCode: number | null;
|
150
|
-
}>>>;
|
151
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
152
|
-
}, "strip", z.ZodTypeAny, {
|
153
|
-
data?: any;
|
154
|
-
error?: {
|
155
|
-
message: string;
|
156
|
-
statusCode: number | null;
|
157
|
-
} | null | undefined;
|
158
|
-
loading?: boolean | null | undefined;
|
159
|
-
}, {
|
160
|
-
data?: any;
|
161
|
-
error?: {
|
162
|
-
message: string;
|
163
|
-
statusCode: number | null;
|
164
|
-
} | null | undefined;
|
165
|
-
loading?: boolean | null | undefined;
|
166
139
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
167
140
|
export type ActionUpdate = z.infer<typeof ActionUpdate>;
|
168
141
|
/**
|
@@ -314,37 +287,7 @@ export declare const EventState: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodStrin
|
|
314
287
|
firstname: string;
|
315
288
|
surname: string;
|
316
289
|
middlename?: string | null | undefined;
|
317
|
-
}>, z.ZodNull]>, z.ZodUndefined]
|
318
|
-
loading: z.ZodBoolean;
|
319
|
-
error: z.ZodNullable<z.ZodObject<{
|
320
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
321
|
-
message: z.ZodString;
|
322
|
-
}, "strip", z.ZodTypeAny, {
|
323
|
-
message: string;
|
324
|
-
statusCode: number | null;
|
325
|
-
}, {
|
326
|
-
message: string;
|
327
|
-
statusCode: number | null;
|
328
|
-
}>>;
|
329
|
-
data: z.ZodAny;
|
330
|
-
trackingValue: z.ZodOptional<z.ZodString>;
|
331
|
-
}, "strip", z.ZodTypeAny, {
|
332
|
-
error: {
|
333
|
-
message: string;
|
334
|
-
statusCode: number | null;
|
335
|
-
} | null;
|
336
|
-
loading: boolean;
|
337
|
-
data?: any;
|
338
|
-
trackingValue?: string | undefined;
|
339
|
-
}, {
|
340
|
-
error: {
|
341
|
-
message: string;
|
342
|
-
statusCode: number | null;
|
343
|
-
} | null;
|
344
|
-
loading: boolean;
|
345
|
-
data?: any;
|
346
|
-
trackingValue?: string | undefined;
|
347
|
-
}>]>>;
|
290
|
+
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
348
291
|
export type EventState = z.infer<typeof EventState>;
|
349
292
|
export declare const ActionStatus: {
|
350
293
|
readonly Requested: "Requested";
|
@@ -495,33 +438,6 @@ export declare const ActionBase: z.ZodObject<{
|
|
495
438
|
firstname: string;
|
496
439
|
surname: string;
|
497
440
|
middlename?: string | null | undefined;
|
498
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
499
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
500
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
501
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
502
|
-
message: z.ZodString;
|
503
|
-
}, "strip", z.ZodTypeAny, {
|
504
|
-
message: string;
|
505
|
-
statusCode: number | null;
|
506
|
-
}, {
|
507
|
-
message: string;
|
508
|
-
statusCode: number | null;
|
509
|
-
}>>>;
|
510
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
511
|
-
}, "strip", z.ZodTypeAny, {
|
512
|
-
data?: any;
|
513
|
-
error?: {
|
514
|
-
message: string;
|
515
|
-
statusCode: number | null;
|
516
|
-
} | null | undefined;
|
517
|
-
loading?: boolean | null | undefined;
|
518
|
-
}, {
|
519
|
-
data?: any;
|
520
|
-
error?: {
|
521
|
-
message: string;
|
522
|
-
statusCode: number | null;
|
523
|
-
} | null | undefined;
|
524
|
-
loading?: boolean | null | undefined;
|
525
441
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
526
442
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
527
443
|
start: z.ZodString;
|
@@ -657,33 +573,6 @@ export declare const ActionBase: z.ZodObject<{
|
|
657
573
|
firstname: string;
|
658
574
|
surname: string;
|
659
575
|
middlename?: string | null | undefined;
|
660
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
661
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
662
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
663
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
664
|
-
message: z.ZodString;
|
665
|
-
}, "strip", z.ZodTypeAny, {
|
666
|
-
message: string;
|
667
|
-
statusCode: number | null;
|
668
|
-
}, {
|
669
|
-
message: string;
|
670
|
-
statusCode: number | null;
|
671
|
-
}>>>;
|
672
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
673
|
-
}, "strip", z.ZodTypeAny, {
|
674
|
-
data?: any;
|
675
|
-
error?: {
|
676
|
-
message: string;
|
677
|
-
statusCode: number | null;
|
678
|
-
} | null | undefined;
|
679
|
-
loading?: boolean | null | undefined;
|
680
|
-
}, {
|
681
|
-
data?: any;
|
682
|
-
error?: {
|
683
|
-
message: string;
|
684
|
-
statusCode: number | null;
|
685
|
-
} | null | undefined;
|
686
|
-
loading?: boolean | null | undefined;
|
687
576
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
688
577
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
689
578
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -737,13 +626,6 @@ export declare const ActionBase: z.ZodObject<{
|
|
737
626
|
path: string;
|
738
627
|
originalFilename: string;
|
739
628
|
}[] | {
|
740
|
-
data?: any;
|
741
|
-
error?: {
|
742
|
-
message: string;
|
743
|
-
statusCode: number | null;
|
744
|
-
} | null | undefined;
|
745
|
-
loading?: boolean | null | undefined;
|
746
|
-
} | {
|
747
629
|
start: string;
|
748
630
|
end: string;
|
749
631
|
} | null | undefined>;
|
@@ -791,13 +673,6 @@ export declare const ActionBase: z.ZodObject<{
|
|
791
673
|
path: string;
|
792
674
|
originalFilename: string;
|
793
675
|
}[] | {
|
794
|
-
data?: any;
|
795
|
-
error?: {
|
796
|
-
message: string;
|
797
|
-
statusCode: number | null;
|
798
|
-
} | null | undefined;
|
799
|
-
loading?: boolean | null | undefined;
|
800
|
-
} | {
|
801
676
|
start: string;
|
802
677
|
end: string;
|
803
678
|
} | null | undefined> | null | undefined;
|
@@ -852,13 +727,6 @@ export declare const ActionBase: z.ZodObject<{
|
|
852
727
|
path: string;
|
853
728
|
originalFilename: string;
|
854
729
|
}[] | {
|
855
|
-
data?: any;
|
856
|
-
error?: {
|
857
|
-
message: string;
|
858
|
-
statusCode: number | null;
|
859
|
-
} | null | undefined;
|
860
|
-
loading?: boolean | null | undefined;
|
861
|
-
} | {
|
862
730
|
start: string;
|
863
731
|
end: string;
|
864
732
|
} | null | undefined>;
|
@@ -906,13 +774,6 @@ export declare const ActionBase: z.ZodObject<{
|
|
906
774
|
path: string;
|
907
775
|
originalFilename: string;
|
908
776
|
}[] | {
|
909
|
-
data?: any;
|
910
|
-
error?: {
|
911
|
-
message: string;
|
912
|
-
statusCode: number | null;
|
913
|
-
} | null | undefined;
|
914
|
-
loading?: boolean | null | undefined;
|
915
|
-
} | {
|
916
777
|
start: string;
|
917
778
|
end: string;
|
918
779
|
} | null | undefined> | null | undefined;
|
@@ -1062,33 +923,6 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1062
923
|
firstname: string;
|
1063
924
|
surname: string;
|
1064
925
|
middlename?: string | null | undefined;
|
1065
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1066
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
1067
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
1068
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
1069
|
-
message: z.ZodString;
|
1070
|
-
}, "strip", z.ZodTypeAny, {
|
1071
|
-
message: string;
|
1072
|
-
statusCode: number | null;
|
1073
|
-
}, {
|
1074
|
-
message: string;
|
1075
|
-
statusCode: number | null;
|
1076
|
-
}>>>;
|
1077
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
1078
|
-
}, "strip", z.ZodTypeAny, {
|
1079
|
-
data?: any;
|
1080
|
-
error?: {
|
1081
|
-
message: string;
|
1082
|
-
statusCode: number | null;
|
1083
|
-
} | null | undefined;
|
1084
|
-
loading?: boolean | null | undefined;
|
1085
|
-
}, {
|
1086
|
-
data?: any;
|
1087
|
-
error?: {
|
1088
|
-
message: string;
|
1089
|
-
statusCode: number | null;
|
1090
|
-
} | null | undefined;
|
1091
|
-
loading?: boolean | null | undefined;
|
1092
926
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
1093
927
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
1094
928
|
start: z.ZodString;
|
@@ -1224,33 +1058,6 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1224
1058
|
firstname: string;
|
1225
1059
|
surname: string;
|
1226
1060
|
middlename?: string | null | undefined;
|
1227
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1228
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
1229
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
1230
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
1231
|
-
message: z.ZodString;
|
1232
|
-
}, "strip", z.ZodTypeAny, {
|
1233
|
-
message: string;
|
1234
|
-
statusCode: number | null;
|
1235
|
-
}, {
|
1236
|
-
message: string;
|
1237
|
-
statusCode: number | null;
|
1238
|
-
}>>>;
|
1239
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
1240
|
-
}, "strip", z.ZodTypeAny, {
|
1241
|
-
data?: any;
|
1242
|
-
error?: {
|
1243
|
-
message: string;
|
1244
|
-
statusCode: number | null;
|
1245
|
-
} | null | undefined;
|
1246
|
-
loading?: boolean | null | undefined;
|
1247
|
-
}, {
|
1248
|
-
data?: any;
|
1249
|
-
error?: {
|
1250
|
-
message: string;
|
1251
|
-
statusCode: number | null;
|
1252
|
-
} | null | undefined;
|
1253
|
-
loading?: boolean | null | undefined;
|
1254
1061
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
1255
1062
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
1256
1063
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -1308,13 +1115,6 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1308
1115
|
path: string;
|
1309
1116
|
originalFilename: string;
|
1310
1117
|
}[] | {
|
1311
|
-
data?: any;
|
1312
|
-
error?: {
|
1313
|
-
message: string;
|
1314
|
-
statusCode: number | null;
|
1315
|
-
} | null | undefined;
|
1316
|
-
loading?: boolean | null | undefined;
|
1317
|
-
} | {
|
1318
1118
|
start: string;
|
1319
1119
|
end: string;
|
1320
1120
|
} | null | undefined>;
|
@@ -1362,13 +1162,6 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1362
1162
|
path: string;
|
1363
1163
|
originalFilename: string;
|
1364
1164
|
}[] | {
|
1365
|
-
data?: any;
|
1366
|
-
error?: {
|
1367
|
-
message: string;
|
1368
|
-
statusCode: number | null;
|
1369
|
-
} | null | undefined;
|
1370
|
-
loading?: boolean | null | undefined;
|
1371
|
-
} | {
|
1372
1165
|
start: string;
|
1373
1166
|
end: string;
|
1374
1167
|
} | null | undefined> | null | undefined;
|
@@ -1425,13 +1218,6 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1425
1218
|
path: string;
|
1426
1219
|
originalFilename: string;
|
1427
1220
|
}[] | {
|
1428
|
-
data?: any;
|
1429
|
-
error?: {
|
1430
|
-
message: string;
|
1431
|
-
statusCode: number | null;
|
1432
|
-
} | null | undefined;
|
1433
|
-
loading?: boolean | null | undefined;
|
1434
|
-
} | {
|
1435
1221
|
start: string;
|
1436
1222
|
end: string;
|
1437
1223
|
} | null | undefined>;
|
@@ -1479,13 +1265,6 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1479
1265
|
path: string;
|
1480
1266
|
originalFilename: string;
|
1481
1267
|
}[] | {
|
1482
|
-
data?: any;
|
1483
|
-
error?: {
|
1484
|
-
message: string;
|
1485
|
-
statusCode: number | null;
|
1486
|
-
} | null | undefined;
|
1487
|
-
loading?: boolean | null | undefined;
|
1488
|
-
} | {
|
1489
1268
|
start: string;
|
1490
1269
|
end: string;
|
1491
1270
|
} | null | undefined> | null | undefined;
|
@@ -1646,33 +1425,6 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1646
1425
|
firstname: string;
|
1647
1426
|
surname: string;
|
1648
1427
|
middlename?: string | null | undefined;
|
1649
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1650
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
1651
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
1652
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
1653
|
-
message: z.ZodString;
|
1654
|
-
}, "strip", z.ZodTypeAny, {
|
1655
|
-
message: string;
|
1656
|
-
statusCode: number | null;
|
1657
|
-
}, {
|
1658
|
-
message: string;
|
1659
|
-
statusCode: number | null;
|
1660
|
-
}>>>;
|
1661
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
1662
|
-
}, "strip", z.ZodTypeAny, {
|
1663
|
-
data?: any;
|
1664
|
-
error?: {
|
1665
|
-
message: string;
|
1666
|
-
statusCode: number | null;
|
1667
|
-
} | null | undefined;
|
1668
|
-
loading?: boolean | null | undefined;
|
1669
|
-
}, {
|
1670
|
-
data?: any;
|
1671
|
-
error?: {
|
1672
|
-
message: string;
|
1673
|
-
statusCode: number | null;
|
1674
|
-
} | null | undefined;
|
1675
|
-
loading?: boolean | null | undefined;
|
1676
1428
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
1677
1429
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
1678
1430
|
start: z.ZodString;
|
@@ -1808,33 +1560,6 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1808
1560
|
firstname: string;
|
1809
1561
|
surname: string;
|
1810
1562
|
middlename?: string | null | undefined;
|
1811
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1812
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
1813
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
1814
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
1815
|
-
message: z.ZodString;
|
1816
|
-
}, "strip", z.ZodTypeAny, {
|
1817
|
-
message: string;
|
1818
|
-
statusCode: number | null;
|
1819
|
-
}, {
|
1820
|
-
message: string;
|
1821
|
-
statusCode: number | null;
|
1822
|
-
}>>>;
|
1823
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
1824
|
-
}, "strip", z.ZodTypeAny, {
|
1825
|
-
data?: any;
|
1826
|
-
error?: {
|
1827
|
-
message: string;
|
1828
|
-
statusCode: number | null;
|
1829
|
-
} | null | undefined;
|
1830
|
-
loading?: boolean | null | undefined;
|
1831
|
-
}, {
|
1832
|
-
data?: any;
|
1833
|
-
error?: {
|
1834
|
-
message: string;
|
1835
|
-
statusCode: number | null;
|
1836
|
-
} | null | undefined;
|
1837
|
-
loading?: boolean | null | undefined;
|
1838
1563
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
1839
1564
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
1840
1565
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -1891,13 +1616,6 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1891
1616
|
path: string;
|
1892
1617
|
originalFilename: string;
|
1893
1618
|
}[] | {
|
1894
|
-
data?: any;
|
1895
|
-
error?: {
|
1896
|
-
message: string;
|
1897
|
-
statusCode: number | null;
|
1898
|
-
} | null | undefined;
|
1899
|
-
loading?: boolean | null | undefined;
|
1900
|
-
} | {
|
1901
1619
|
start: string;
|
1902
1620
|
end: string;
|
1903
1621
|
} | null | undefined>;
|
@@ -1945,13 +1663,6 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1945
1663
|
path: string;
|
1946
1664
|
originalFilename: string;
|
1947
1665
|
}[] | {
|
1948
|
-
data?: any;
|
1949
|
-
error?: {
|
1950
|
-
message: string;
|
1951
|
-
statusCode: number | null;
|
1952
|
-
} | null | undefined;
|
1953
|
-
loading?: boolean | null | undefined;
|
1954
|
-
} | {
|
1955
1666
|
start: string;
|
1956
1667
|
end: string;
|
1957
1668
|
} | null | undefined> | null | undefined;
|
@@ -2007,13 +1718,6 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2007
1718
|
path: string;
|
2008
1719
|
originalFilename: string;
|
2009
1720
|
}[] | {
|
2010
|
-
data?: any;
|
2011
|
-
error?: {
|
2012
|
-
message: string;
|
2013
|
-
statusCode: number | null;
|
2014
|
-
} | null | undefined;
|
2015
|
-
loading?: boolean | null | undefined;
|
2016
|
-
} | {
|
2017
1721
|
start: string;
|
2018
1722
|
end: string;
|
2019
1723
|
} | null | undefined>;
|
@@ -2061,13 +1765,6 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2061
1765
|
path: string;
|
2062
1766
|
originalFilename: string;
|
2063
1767
|
}[] | {
|
2064
|
-
data?: any;
|
2065
|
-
error?: {
|
2066
|
-
message: string;
|
2067
|
-
statusCode: number | null;
|
2068
|
-
} | null | undefined;
|
2069
|
-
loading?: boolean | null | undefined;
|
2070
|
-
} | {
|
2071
1768
|
start: string;
|
2072
1769
|
end: string;
|
2073
1770
|
} | null | undefined> | null | undefined;
|
@@ -2224,33 +1921,6 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2224
1921
|
firstname: string;
|
2225
1922
|
surname: string;
|
2226
1923
|
middlename?: string | null | undefined;
|
2227
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2228
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
2229
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
2230
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
2231
|
-
message: z.ZodString;
|
2232
|
-
}, "strip", z.ZodTypeAny, {
|
2233
|
-
message: string;
|
2234
|
-
statusCode: number | null;
|
2235
|
-
}, {
|
2236
|
-
message: string;
|
2237
|
-
statusCode: number | null;
|
2238
|
-
}>>>;
|
2239
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
2240
|
-
}, "strip", z.ZodTypeAny, {
|
2241
|
-
data?: any;
|
2242
|
-
error?: {
|
2243
|
-
message: string;
|
2244
|
-
statusCode: number | null;
|
2245
|
-
} | null | undefined;
|
2246
|
-
loading?: boolean | null | undefined;
|
2247
|
-
}, {
|
2248
|
-
data?: any;
|
2249
|
-
error?: {
|
2250
|
-
message: string;
|
2251
|
-
statusCode: number | null;
|
2252
|
-
} | null | undefined;
|
2253
|
-
loading?: boolean | null | undefined;
|
2254
1924
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
2255
1925
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
2256
1926
|
start: z.ZodString;
|
@@ -2386,33 +2056,6 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2386
2056
|
firstname: string;
|
2387
2057
|
surname: string;
|
2388
2058
|
middlename?: string | null | undefined;
|
2389
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2390
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
2391
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
2392
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
2393
|
-
message: z.ZodString;
|
2394
|
-
}, "strip", z.ZodTypeAny, {
|
2395
|
-
message: string;
|
2396
|
-
statusCode: number | null;
|
2397
|
-
}, {
|
2398
|
-
message: string;
|
2399
|
-
statusCode: number | null;
|
2400
|
-
}>>>;
|
2401
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
2402
|
-
}, "strip", z.ZodTypeAny, {
|
2403
|
-
data?: any;
|
2404
|
-
error?: {
|
2405
|
-
message: string;
|
2406
|
-
statusCode: number | null;
|
2407
|
-
} | null | undefined;
|
2408
|
-
loading?: boolean | null | undefined;
|
2409
|
-
}, {
|
2410
|
-
data?: any;
|
2411
|
-
error?: {
|
2412
|
-
message: string;
|
2413
|
-
statusCode: number | null;
|
2414
|
-
} | null | undefined;
|
2415
|
-
loading?: boolean | null | undefined;
|
2416
2059
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
2417
2060
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
2418
2061
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -2476,13 +2119,6 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2476
2119
|
path: string;
|
2477
2120
|
originalFilename: string;
|
2478
2121
|
}[] | {
|
2479
|
-
data?: any;
|
2480
|
-
error?: {
|
2481
|
-
message: string;
|
2482
|
-
statusCode: number | null;
|
2483
|
-
} | null | undefined;
|
2484
|
-
loading?: boolean | null | undefined;
|
2485
|
-
} | {
|
2486
2122
|
start: string;
|
2487
2123
|
end: string;
|
2488
2124
|
} | null | undefined>;
|
@@ -2533,13 +2169,6 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2533
2169
|
path: string;
|
2534
2170
|
originalFilename: string;
|
2535
2171
|
}[] | {
|
2536
|
-
data?: any;
|
2537
|
-
error?: {
|
2538
|
-
message: string;
|
2539
|
-
statusCode: number | null;
|
2540
|
-
} | null | undefined;
|
2541
|
-
loading?: boolean | null | undefined;
|
2542
|
-
} | {
|
2543
2172
|
start: string;
|
2544
2173
|
end: string;
|
2545
2174
|
} | null | undefined> | null | undefined;
|
@@ -2595,13 +2224,6 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2595
2224
|
path: string;
|
2596
2225
|
originalFilename: string;
|
2597
2226
|
}[] | {
|
2598
|
-
data?: any;
|
2599
|
-
error?: {
|
2600
|
-
message: string;
|
2601
|
-
statusCode: number | null;
|
2602
|
-
} | null | undefined;
|
2603
|
-
loading?: boolean | null | undefined;
|
2604
|
-
} | {
|
2605
2227
|
start: string;
|
2606
2228
|
end: string;
|
2607
2229
|
} | null | undefined>;
|
@@ -2652,13 +2274,6 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2652
2274
|
path: string;
|
2653
2275
|
originalFilename: string;
|
2654
2276
|
}[] | {
|
2655
|
-
data?: any;
|
2656
|
-
error?: {
|
2657
|
-
message: string;
|
2658
|
-
statusCode: number | null;
|
2659
|
-
} | null | undefined;
|
2660
|
-
loading?: boolean | null | undefined;
|
2661
|
-
} | {
|
2662
2277
|
start: string;
|
2663
2278
|
end: string;
|
2664
2279
|
} | null | undefined> | null | undefined;
|
@@ -2808,33 +2423,6 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2808
2423
|
firstname: string;
|
2809
2424
|
surname: string;
|
2810
2425
|
middlename?: string | null | undefined;
|
2811
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2812
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
2813
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
2814
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
2815
|
-
message: z.ZodString;
|
2816
|
-
}, "strip", z.ZodTypeAny, {
|
2817
|
-
message: string;
|
2818
|
-
statusCode: number | null;
|
2819
|
-
}, {
|
2820
|
-
message: string;
|
2821
|
-
statusCode: number | null;
|
2822
|
-
}>>>;
|
2823
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
2824
|
-
}, "strip", z.ZodTypeAny, {
|
2825
|
-
data?: any;
|
2826
|
-
error?: {
|
2827
|
-
message: string;
|
2828
|
-
statusCode: number | null;
|
2829
|
-
} | null | undefined;
|
2830
|
-
loading?: boolean | null | undefined;
|
2831
|
-
}, {
|
2832
|
-
data?: any;
|
2833
|
-
error?: {
|
2834
|
-
message: string;
|
2835
|
-
statusCode: number | null;
|
2836
|
-
} | null | undefined;
|
2837
|
-
loading?: boolean | null | undefined;
|
2838
2426
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
2839
2427
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
2840
2428
|
start: z.ZodString;
|
@@ -2970,33 +2558,6 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2970
2558
|
firstname: string;
|
2971
2559
|
surname: string;
|
2972
2560
|
middlename?: string | null | undefined;
|
2973
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2974
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
2975
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
2976
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
2977
|
-
message: z.ZodString;
|
2978
|
-
}, "strip", z.ZodTypeAny, {
|
2979
|
-
message: string;
|
2980
|
-
statusCode: number | null;
|
2981
|
-
}, {
|
2982
|
-
message: string;
|
2983
|
-
statusCode: number | null;
|
2984
|
-
}>>>;
|
2985
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
2986
|
-
}, "strip", z.ZodTypeAny, {
|
2987
|
-
data?: any;
|
2988
|
-
error?: {
|
2989
|
-
message: string;
|
2990
|
-
statusCode: number | null;
|
2991
|
-
} | null | undefined;
|
2992
|
-
loading?: boolean | null | undefined;
|
2993
|
-
}, {
|
2994
|
-
data?: any;
|
2995
|
-
error?: {
|
2996
|
-
message: string;
|
2997
|
-
statusCode: number | null;
|
2998
|
-
} | null | undefined;
|
2999
|
-
loading?: boolean | null | undefined;
|
3000
2561
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
3001
2562
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
3002
2563
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -3053,13 +2614,6 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
3053
2614
|
path: string;
|
3054
2615
|
originalFilename: string;
|
3055
2616
|
}[] | {
|
3056
|
-
data?: any;
|
3057
|
-
error?: {
|
3058
|
-
message: string;
|
3059
|
-
statusCode: number | null;
|
3060
|
-
} | null | undefined;
|
3061
|
-
loading?: boolean | null | undefined;
|
3062
|
-
} | {
|
3063
2617
|
start: string;
|
3064
2618
|
end: string;
|
3065
2619
|
} | null | undefined>;
|
@@ -3107,13 +2661,6 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
3107
2661
|
path: string;
|
3108
2662
|
originalFilename: string;
|
3109
2663
|
}[] | {
|
3110
|
-
data?: any;
|
3111
|
-
error?: {
|
3112
|
-
message: string;
|
3113
|
-
statusCode: number | null;
|
3114
|
-
} | null | undefined;
|
3115
|
-
loading?: boolean | null | undefined;
|
3116
|
-
} | {
|
3117
2664
|
start: string;
|
3118
2665
|
end: string;
|
3119
2666
|
} | null | undefined> | null | undefined;
|
@@ -3169,13 +2716,6 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
3169
2716
|
path: string;
|
3170
2717
|
originalFilename: string;
|
3171
2718
|
}[] | {
|
3172
|
-
data?: any;
|
3173
|
-
error?: {
|
3174
|
-
message: string;
|
3175
|
-
statusCode: number | null;
|
3176
|
-
} | null | undefined;
|
3177
|
-
loading?: boolean | null | undefined;
|
3178
|
-
} | {
|
3179
2719
|
start: string;
|
3180
2720
|
end: string;
|
3181
2721
|
} | null | undefined>;
|
@@ -3223,13 +2763,6 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
3223
2763
|
path: string;
|
3224
2764
|
originalFilename: string;
|
3225
2765
|
}[] | {
|
3226
|
-
data?: any;
|
3227
|
-
error?: {
|
3228
|
-
message: string;
|
3229
|
-
statusCode: number | null;
|
3230
|
-
} | null | undefined;
|
3231
|
-
loading?: boolean | null | undefined;
|
3232
|
-
} | {
|
3233
2766
|
start: string;
|
3234
2767
|
end: string;
|
3235
2768
|
} | null | undefined> | null | undefined;
|
@@ -3379,33 +2912,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3379
2912
|
firstname: string;
|
3380
2913
|
surname: string;
|
3381
2914
|
middlename?: string | null | undefined;
|
3382
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3383
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
3384
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
3385
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
3386
|
-
message: z.ZodString;
|
3387
|
-
}, "strip", z.ZodTypeAny, {
|
3388
|
-
message: string;
|
3389
|
-
statusCode: number | null;
|
3390
|
-
}, {
|
3391
|
-
message: string;
|
3392
|
-
statusCode: number | null;
|
3393
|
-
}>>>;
|
3394
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
3395
|
-
}, "strip", z.ZodTypeAny, {
|
3396
|
-
data?: any;
|
3397
|
-
error?: {
|
3398
|
-
message: string;
|
3399
|
-
statusCode: number | null;
|
3400
|
-
} | null | undefined;
|
3401
|
-
loading?: boolean | null | undefined;
|
3402
|
-
}, {
|
3403
|
-
data?: any;
|
3404
|
-
error?: {
|
3405
|
-
message: string;
|
3406
|
-
statusCode: number | null;
|
3407
|
-
} | null | undefined;
|
3408
|
-
loading?: boolean | null | undefined;
|
3409
2915
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
3410
2916
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
3411
2917
|
start: z.ZodString;
|
@@ -3541,33 +3047,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3541
3047
|
firstname: string;
|
3542
3048
|
surname: string;
|
3543
3049
|
middlename?: string | null | undefined;
|
3544
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3545
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
3546
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
3547
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
3548
|
-
message: z.ZodString;
|
3549
|
-
}, "strip", z.ZodTypeAny, {
|
3550
|
-
message: string;
|
3551
|
-
statusCode: number | null;
|
3552
|
-
}, {
|
3553
|
-
message: string;
|
3554
|
-
statusCode: number | null;
|
3555
|
-
}>>>;
|
3556
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
3557
|
-
}, "strip", z.ZodTypeAny, {
|
3558
|
-
data?: any;
|
3559
|
-
error?: {
|
3560
|
-
message: string;
|
3561
|
-
statusCode: number | null;
|
3562
|
-
} | null | undefined;
|
3563
|
-
loading?: boolean | null | undefined;
|
3564
|
-
}, {
|
3565
|
-
data?: any;
|
3566
|
-
error?: {
|
3567
|
-
message: string;
|
3568
|
-
statusCode: number | null;
|
3569
|
-
} | null | undefined;
|
3570
|
-
loading?: boolean | null | undefined;
|
3571
3050
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
3572
3051
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
3573
3052
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -3624,13 +3103,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3624
3103
|
path: string;
|
3625
3104
|
originalFilename: string;
|
3626
3105
|
}[] | {
|
3627
|
-
data?: any;
|
3628
|
-
error?: {
|
3629
|
-
message: string;
|
3630
|
-
statusCode: number | null;
|
3631
|
-
} | null | undefined;
|
3632
|
-
loading?: boolean | null | undefined;
|
3633
|
-
} | {
|
3634
3106
|
start: string;
|
3635
3107
|
end: string;
|
3636
3108
|
} | null | undefined>;
|
@@ -3678,13 +3150,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3678
3150
|
path: string;
|
3679
3151
|
originalFilename: string;
|
3680
3152
|
}[] | {
|
3681
|
-
data?: any;
|
3682
|
-
error?: {
|
3683
|
-
message: string;
|
3684
|
-
statusCode: number | null;
|
3685
|
-
} | null | undefined;
|
3686
|
-
loading?: boolean | null | undefined;
|
3687
|
-
} | {
|
3688
3153
|
start: string;
|
3689
3154
|
end: string;
|
3690
3155
|
} | null | undefined> | null | undefined;
|
@@ -3740,13 +3205,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3740
3205
|
path: string;
|
3741
3206
|
originalFilename: string;
|
3742
3207
|
}[] | {
|
3743
|
-
data?: any;
|
3744
|
-
error?: {
|
3745
|
-
message: string;
|
3746
|
-
statusCode: number | null;
|
3747
|
-
} | null | undefined;
|
3748
|
-
loading?: boolean | null | undefined;
|
3749
|
-
} | {
|
3750
3208
|
start: string;
|
3751
3209
|
end: string;
|
3752
3210
|
} | null | undefined>;
|
@@ -3794,13 +3252,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3794
3252
|
path: string;
|
3795
3253
|
originalFilename: string;
|
3796
3254
|
}[] | {
|
3797
|
-
data?: any;
|
3798
|
-
error?: {
|
3799
|
-
message: string;
|
3800
|
-
statusCode: number | null;
|
3801
|
-
} | null | undefined;
|
3802
|
-
loading?: boolean | null | undefined;
|
3803
|
-
} | {
|
3804
3255
|
start: string;
|
3805
3256
|
end: string;
|
3806
3257
|
} | null | undefined> | null | undefined;
|
@@ -3948,33 +3399,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3948
3399
|
firstname: string;
|
3949
3400
|
surname: string;
|
3950
3401
|
middlename?: string | null | undefined;
|
3951
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3952
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
3953
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
3954
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
3955
|
-
message: z.ZodString;
|
3956
|
-
}, "strip", z.ZodTypeAny, {
|
3957
|
-
message: string;
|
3958
|
-
statusCode: number | null;
|
3959
|
-
}, {
|
3960
|
-
message: string;
|
3961
|
-
statusCode: number | null;
|
3962
|
-
}>>>;
|
3963
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
3964
|
-
}, "strip", z.ZodTypeAny, {
|
3965
|
-
data?: any;
|
3966
|
-
error?: {
|
3967
|
-
message: string;
|
3968
|
-
statusCode: number | null;
|
3969
|
-
} | null | undefined;
|
3970
|
-
loading?: boolean | null | undefined;
|
3971
|
-
}, {
|
3972
|
-
data?: any;
|
3973
|
-
error?: {
|
3974
|
-
message: string;
|
3975
|
-
statusCode: number | null;
|
3976
|
-
} | null | undefined;
|
3977
|
-
loading?: boolean | null | undefined;
|
3978
3402
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
3979
3403
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
3980
3404
|
start: z.ZodString;
|
@@ -4110,33 +3534,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4110
3534
|
firstname: string;
|
4111
3535
|
surname: string;
|
4112
3536
|
middlename?: string | null | undefined;
|
4113
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4114
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
4115
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
4116
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
4117
|
-
message: z.ZodString;
|
4118
|
-
}, "strip", z.ZodTypeAny, {
|
4119
|
-
message: string;
|
4120
|
-
statusCode: number | null;
|
4121
|
-
}, {
|
4122
|
-
message: string;
|
4123
|
-
statusCode: number | null;
|
4124
|
-
}>>>;
|
4125
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
4126
|
-
}, "strip", z.ZodTypeAny, {
|
4127
|
-
data?: any;
|
4128
|
-
error?: {
|
4129
|
-
message: string;
|
4130
|
-
statusCode: number | null;
|
4131
|
-
} | null | undefined;
|
4132
|
-
loading?: boolean | null | undefined;
|
4133
|
-
}, {
|
4134
|
-
data?: any;
|
4135
|
-
error?: {
|
4136
|
-
message: string;
|
4137
|
-
statusCode: number | null;
|
4138
|
-
} | null | undefined;
|
4139
|
-
loading?: boolean | null | undefined;
|
4140
3537
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
4141
3538
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
4142
3539
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -4193,13 +3590,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4193
3590
|
path: string;
|
4194
3591
|
originalFilename: string;
|
4195
3592
|
}[] | {
|
4196
|
-
data?: any;
|
4197
|
-
error?: {
|
4198
|
-
message: string;
|
4199
|
-
statusCode: number | null;
|
4200
|
-
} | null | undefined;
|
4201
|
-
loading?: boolean | null | undefined;
|
4202
|
-
} | {
|
4203
3593
|
start: string;
|
4204
3594
|
end: string;
|
4205
3595
|
} | null | undefined>;
|
@@ -4247,13 +3637,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4247
3637
|
path: string;
|
4248
3638
|
originalFilename: string;
|
4249
3639
|
}[] | {
|
4250
|
-
data?: any;
|
4251
|
-
error?: {
|
4252
|
-
message: string;
|
4253
|
-
statusCode: number | null;
|
4254
|
-
} | null | undefined;
|
4255
|
-
loading?: boolean | null | undefined;
|
4256
|
-
} | {
|
4257
3640
|
start: string;
|
4258
3641
|
end: string;
|
4259
3642
|
} | null | undefined> | null | undefined;
|
@@ -4309,13 +3692,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4309
3692
|
path: string;
|
4310
3693
|
originalFilename: string;
|
4311
3694
|
}[] | {
|
4312
|
-
data?: any;
|
4313
|
-
error?: {
|
4314
|
-
message: string;
|
4315
|
-
statusCode: number | null;
|
4316
|
-
} | null | undefined;
|
4317
|
-
loading?: boolean | null | undefined;
|
4318
|
-
} | {
|
4319
3695
|
start: string;
|
4320
3696
|
end: string;
|
4321
3697
|
} | null | undefined>;
|
@@ -4363,13 +3739,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4363
3739
|
path: string;
|
4364
3740
|
originalFilename: string;
|
4365
3741
|
}[] | {
|
4366
|
-
data?: any;
|
4367
|
-
error?: {
|
4368
|
-
message: string;
|
4369
|
-
statusCode: number | null;
|
4370
|
-
} | null | undefined;
|
4371
|
-
loading?: boolean | null | undefined;
|
4372
|
-
} | {
|
4373
3742
|
start: string;
|
4374
3743
|
end: string;
|
4375
3744
|
} | null | undefined> | null | undefined;
|
@@ -4517,33 +3886,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4517
3886
|
firstname: string;
|
4518
3887
|
surname: string;
|
4519
3888
|
middlename?: string | null | undefined;
|
4520
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4521
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
4522
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
4523
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
4524
|
-
message: z.ZodString;
|
4525
|
-
}, "strip", z.ZodTypeAny, {
|
4526
|
-
message: string;
|
4527
|
-
statusCode: number | null;
|
4528
|
-
}, {
|
4529
|
-
message: string;
|
4530
|
-
statusCode: number | null;
|
4531
|
-
}>>>;
|
4532
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
4533
|
-
}, "strip", z.ZodTypeAny, {
|
4534
|
-
data?: any;
|
4535
|
-
error?: {
|
4536
|
-
message: string;
|
4537
|
-
statusCode: number | null;
|
4538
|
-
} | null | undefined;
|
4539
|
-
loading?: boolean | null | undefined;
|
4540
|
-
}, {
|
4541
|
-
data?: any;
|
4542
|
-
error?: {
|
4543
|
-
message: string;
|
4544
|
-
statusCode: number | null;
|
4545
|
-
} | null | undefined;
|
4546
|
-
loading?: boolean | null | undefined;
|
4547
3889
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
4548
3890
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
4549
3891
|
start: z.ZodString;
|
@@ -4679,33 +4021,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4679
4021
|
firstname: string;
|
4680
4022
|
surname: string;
|
4681
4023
|
middlename?: string | null | undefined;
|
4682
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4683
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
4684
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
4685
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
4686
|
-
message: z.ZodString;
|
4687
|
-
}, "strip", z.ZodTypeAny, {
|
4688
|
-
message: string;
|
4689
|
-
statusCode: number | null;
|
4690
|
-
}, {
|
4691
|
-
message: string;
|
4692
|
-
statusCode: number | null;
|
4693
|
-
}>>>;
|
4694
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
4695
|
-
}, "strip", z.ZodTypeAny, {
|
4696
|
-
data?: any;
|
4697
|
-
error?: {
|
4698
|
-
message: string;
|
4699
|
-
statusCode: number | null;
|
4700
|
-
} | null | undefined;
|
4701
|
-
loading?: boolean | null | undefined;
|
4702
|
-
}, {
|
4703
|
-
data?: any;
|
4704
|
-
error?: {
|
4705
|
-
message: string;
|
4706
|
-
statusCode: number | null;
|
4707
|
-
} | null | undefined;
|
4708
|
-
loading?: boolean | null | undefined;
|
4709
4024
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
4710
4025
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
4711
4026
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -4776,13 +4091,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4776
4091
|
path: string;
|
4777
4092
|
originalFilename: string;
|
4778
4093
|
}[] | {
|
4779
|
-
data?: any;
|
4780
|
-
error?: {
|
4781
|
-
message: string;
|
4782
|
-
statusCode: number | null;
|
4783
|
-
} | null | undefined;
|
4784
|
-
loading?: boolean | null | undefined;
|
4785
|
-
} | {
|
4786
4094
|
start: string;
|
4787
4095
|
end: string;
|
4788
4096
|
} | null | undefined>;
|
@@ -4830,13 +4138,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4830
4138
|
path: string;
|
4831
4139
|
originalFilename: string;
|
4832
4140
|
}[] | {
|
4833
|
-
data?: any;
|
4834
|
-
error?: {
|
4835
|
-
message: string;
|
4836
|
-
statusCode: number | null;
|
4837
|
-
} | null | undefined;
|
4838
|
-
loading?: boolean | null | undefined;
|
4839
|
-
} | {
|
4840
4141
|
start: string;
|
4841
4142
|
end: string;
|
4842
4143
|
} | null | undefined> | null | undefined;
|
@@ -4896,13 +4197,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4896
4197
|
path: string;
|
4897
4198
|
originalFilename: string;
|
4898
4199
|
}[] | {
|
4899
|
-
data?: any;
|
4900
|
-
error?: {
|
4901
|
-
message: string;
|
4902
|
-
statusCode: number | null;
|
4903
|
-
} | null | undefined;
|
4904
|
-
loading?: boolean | null | undefined;
|
4905
|
-
} | {
|
4906
4200
|
start: string;
|
4907
4201
|
end: string;
|
4908
4202
|
} | null | undefined>;
|
@@ -4950,13 +4244,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4950
4244
|
path: string;
|
4951
4245
|
originalFilename: string;
|
4952
4246
|
}[] | {
|
4953
|
-
data?: any;
|
4954
|
-
error?: {
|
4955
|
-
message: string;
|
4956
|
-
statusCode: number | null;
|
4957
|
-
} | null | undefined;
|
4958
|
-
loading?: boolean | null | undefined;
|
4959
|
-
} | {
|
4960
4247
|
start: string;
|
4961
4248
|
end: string;
|
4962
4249
|
} | null | undefined> | null | undefined;
|
@@ -5104,33 +4391,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5104
4391
|
firstname: string;
|
5105
4392
|
surname: string;
|
5106
4393
|
middlename?: string | null | undefined;
|
5107
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5108
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
5109
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
5110
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
5111
|
-
message: z.ZodString;
|
5112
|
-
}, "strip", z.ZodTypeAny, {
|
5113
|
-
message: string;
|
5114
|
-
statusCode: number | null;
|
5115
|
-
}, {
|
5116
|
-
message: string;
|
5117
|
-
statusCode: number | null;
|
5118
|
-
}>>>;
|
5119
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
5120
|
-
}, "strip", z.ZodTypeAny, {
|
5121
|
-
data?: any;
|
5122
|
-
error?: {
|
5123
|
-
message: string;
|
5124
|
-
statusCode: number | null;
|
5125
|
-
} | null | undefined;
|
5126
|
-
loading?: boolean | null | undefined;
|
5127
|
-
}, {
|
5128
|
-
data?: any;
|
5129
|
-
error?: {
|
5130
|
-
message: string;
|
5131
|
-
statusCode: number | null;
|
5132
|
-
} | null | undefined;
|
5133
|
-
loading?: boolean | null | undefined;
|
5134
4394
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
5135
4395
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
5136
4396
|
start: z.ZodString;
|
@@ -5266,33 +4526,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5266
4526
|
firstname: string;
|
5267
4527
|
surname: string;
|
5268
4528
|
middlename?: string | null | undefined;
|
5269
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5270
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
5271
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
5272
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
5273
|
-
message: z.ZodString;
|
5274
|
-
}, "strip", z.ZodTypeAny, {
|
5275
|
-
message: string;
|
5276
|
-
statusCode: number | null;
|
5277
|
-
}, {
|
5278
|
-
message: string;
|
5279
|
-
statusCode: number | null;
|
5280
|
-
}>>>;
|
5281
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
5282
|
-
}, "strip", z.ZodTypeAny, {
|
5283
|
-
data?: any;
|
5284
|
-
error?: {
|
5285
|
-
message: string;
|
5286
|
-
statusCode: number | null;
|
5287
|
-
} | null | undefined;
|
5288
|
-
loading?: boolean | null | undefined;
|
5289
|
-
}, {
|
5290
|
-
data?: any;
|
5291
|
-
error?: {
|
5292
|
-
message: string;
|
5293
|
-
statusCode: number | null;
|
5294
|
-
} | null | undefined;
|
5295
|
-
loading?: boolean | null | undefined;
|
5296
4529
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
5297
4530
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
5298
4531
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -5349,13 +4582,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5349
4582
|
path: string;
|
5350
4583
|
originalFilename: string;
|
5351
4584
|
}[] | {
|
5352
|
-
data?: any;
|
5353
|
-
error?: {
|
5354
|
-
message: string;
|
5355
|
-
statusCode: number | null;
|
5356
|
-
} | null | undefined;
|
5357
|
-
loading?: boolean | null | undefined;
|
5358
|
-
} | {
|
5359
4585
|
start: string;
|
5360
4586
|
end: string;
|
5361
4587
|
} | null | undefined>;
|
@@ -5403,13 +4629,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5403
4629
|
path: string;
|
5404
4630
|
originalFilename: string;
|
5405
4631
|
}[] | {
|
5406
|
-
data?: any;
|
5407
|
-
error?: {
|
5408
|
-
message: string;
|
5409
|
-
statusCode: number | null;
|
5410
|
-
} | null | undefined;
|
5411
|
-
loading?: boolean | null | undefined;
|
5412
|
-
} | {
|
5413
4632
|
start: string;
|
5414
4633
|
end: string;
|
5415
4634
|
} | null | undefined> | null | undefined;
|
@@ -5465,13 +4684,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5465
4684
|
path: string;
|
5466
4685
|
originalFilename: string;
|
5467
4686
|
}[] | {
|
5468
|
-
data?: any;
|
5469
|
-
error?: {
|
5470
|
-
message: string;
|
5471
|
-
statusCode: number | null;
|
5472
|
-
} | null | undefined;
|
5473
|
-
loading?: boolean | null | undefined;
|
5474
|
-
} | {
|
5475
4687
|
start: string;
|
5476
4688
|
end: string;
|
5477
4689
|
} | null | undefined>;
|
@@ -5519,13 +4731,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5519
4731
|
path: string;
|
5520
4732
|
originalFilename: string;
|
5521
4733
|
}[] | {
|
5522
|
-
data?: any;
|
5523
|
-
error?: {
|
5524
|
-
message: string;
|
5525
|
-
statusCode: number | null;
|
5526
|
-
} | null | undefined;
|
5527
|
-
loading?: boolean | null | undefined;
|
5528
|
-
} | {
|
5529
4734
|
start: string;
|
5530
4735
|
end: string;
|
5531
4736
|
} | null | undefined> | null | undefined;
|
@@ -5673,33 +4878,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5673
4878
|
firstname: string;
|
5674
4879
|
surname: string;
|
5675
4880
|
middlename?: string | null | undefined;
|
5676
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5677
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
5678
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
5679
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
5680
|
-
message: z.ZodString;
|
5681
|
-
}, "strip", z.ZodTypeAny, {
|
5682
|
-
message: string;
|
5683
|
-
statusCode: number | null;
|
5684
|
-
}, {
|
5685
|
-
message: string;
|
5686
|
-
statusCode: number | null;
|
5687
|
-
}>>>;
|
5688
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
5689
|
-
}, "strip", z.ZodTypeAny, {
|
5690
|
-
data?: any;
|
5691
|
-
error?: {
|
5692
|
-
message: string;
|
5693
|
-
statusCode: number | null;
|
5694
|
-
} | null | undefined;
|
5695
|
-
loading?: boolean | null | undefined;
|
5696
|
-
}, {
|
5697
|
-
data?: any;
|
5698
|
-
error?: {
|
5699
|
-
message: string;
|
5700
|
-
statusCode: number | null;
|
5701
|
-
} | null | undefined;
|
5702
|
-
loading?: boolean | null | undefined;
|
5703
4881
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
5704
4882
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
5705
4883
|
start: z.ZodString;
|
@@ -5835,33 +5013,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5835
5013
|
firstname: string;
|
5836
5014
|
surname: string;
|
5837
5015
|
middlename?: string | null | undefined;
|
5838
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5839
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
5840
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
5841
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
5842
|
-
message: z.ZodString;
|
5843
|
-
}, "strip", z.ZodTypeAny, {
|
5844
|
-
message: string;
|
5845
|
-
statusCode: number | null;
|
5846
|
-
}, {
|
5847
|
-
message: string;
|
5848
|
-
statusCode: number | null;
|
5849
|
-
}>>>;
|
5850
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
5851
|
-
}, "strip", z.ZodTypeAny, {
|
5852
|
-
data?: any;
|
5853
|
-
error?: {
|
5854
|
-
message: string;
|
5855
|
-
statusCode: number | null;
|
5856
|
-
} | null | undefined;
|
5857
|
-
loading?: boolean | null | undefined;
|
5858
|
-
}, {
|
5859
|
-
data?: any;
|
5860
|
-
error?: {
|
5861
|
-
message: string;
|
5862
|
-
statusCode: number | null;
|
5863
|
-
} | null | undefined;
|
5864
|
-
loading?: boolean | null | undefined;
|
5865
5016
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
5866
5017
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
5867
5018
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -5932,13 +5083,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5932
5083
|
path: string;
|
5933
5084
|
originalFilename: string;
|
5934
5085
|
}[] | {
|
5935
|
-
data?: any;
|
5936
|
-
error?: {
|
5937
|
-
message: string;
|
5938
|
-
statusCode: number | null;
|
5939
|
-
} | null | undefined;
|
5940
|
-
loading?: boolean | null | undefined;
|
5941
|
-
} | {
|
5942
5086
|
start: string;
|
5943
5087
|
end: string;
|
5944
5088
|
} | null | undefined>;
|
@@ -5986,13 +5130,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5986
5130
|
path: string;
|
5987
5131
|
originalFilename: string;
|
5988
5132
|
}[] | {
|
5989
|
-
data?: any;
|
5990
|
-
error?: {
|
5991
|
-
message: string;
|
5992
|
-
statusCode: number | null;
|
5993
|
-
} | null | undefined;
|
5994
|
-
loading?: boolean | null | undefined;
|
5995
|
-
} | {
|
5996
5133
|
start: string;
|
5997
5134
|
end: string;
|
5998
5135
|
} | null | undefined> | null | undefined;
|
@@ -6052,13 +5189,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6052
5189
|
path: string;
|
6053
5190
|
originalFilename: string;
|
6054
5191
|
}[] | {
|
6055
|
-
data?: any;
|
6056
|
-
error?: {
|
6057
|
-
message: string;
|
6058
|
-
statusCode: number | null;
|
6059
|
-
} | null | undefined;
|
6060
|
-
loading?: boolean | null | undefined;
|
6061
|
-
} | {
|
6062
5192
|
start: string;
|
6063
5193
|
end: string;
|
6064
5194
|
} | null | undefined>;
|
@@ -6106,13 +5236,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6106
5236
|
path: string;
|
6107
5237
|
originalFilename: string;
|
6108
5238
|
}[] | {
|
6109
|
-
data?: any;
|
6110
|
-
error?: {
|
6111
|
-
message: string;
|
6112
|
-
statusCode: number | null;
|
6113
|
-
} | null | undefined;
|
6114
|
-
loading?: boolean | null | undefined;
|
6115
|
-
} | {
|
6116
5239
|
start: string;
|
6117
5240
|
end: string;
|
6118
5241
|
} | null | undefined> | null | undefined;
|
@@ -6260,33 +5383,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6260
5383
|
firstname: string;
|
6261
5384
|
surname: string;
|
6262
5385
|
middlename?: string | null | undefined;
|
6263
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6264
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
6265
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
6266
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
6267
|
-
message: z.ZodString;
|
6268
|
-
}, "strip", z.ZodTypeAny, {
|
6269
|
-
message: string;
|
6270
|
-
statusCode: number | null;
|
6271
|
-
}, {
|
6272
|
-
message: string;
|
6273
|
-
statusCode: number | null;
|
6274
|
-
}>>>;
|
6275
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
6276
|
-
}, "strip", z.ZodTypeAny, {
|
6277
|
-
data?: any;
|
6278
|
-
error?: {
|
6279
|
-
message: string;
|
6280
|
-
statusCode: number | null;
|
6281
|
-
} | null | undefined;
|
6282
|
-
loading?: boolean | null | undefined;
|
6283
|
-
}, {
|
6284
|
-
data?: any;
|
6285
|
-
error?: {
|
6286
|
-
message: string;
|
6287
|
-
statusCode: number | null;
|
6288
|
-
} | null | undefined;
|
6289
|
-
loading?: boolean | null | undefined;
|
6290
5386
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
6291
5387
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
6292
5388
|
start: z.ZodString;
|
@@ -6422,33 +5518,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6422
5518
|
firstname: string;
|
6423
5519
|
surname: string;
|
6424
5520
|
middlename?: string | null | undefined;
|
6425
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6426
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
6427
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
6428
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
6429
|
-
message: z.ZodString;
|
6430
|
-
}, "strip", z.ZodTypeAny, {
|
6431
|
-
message: string;
|
6432
|
-
statusCode: number | null;
|
6433
|
-
}, {
|
6434
|
-
message: string;
|
6435
|
-
statusCode: number | null;
|
6436
|
-
}>>>;
|
6437
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
6438
|
-
}, "strip", z.ZodTypeAny, {
|
6439
|
-
data?: any;
|
6440
|
-
error?: {
|
6441
|
-
message: string;
|
6442
|
-
statusCode: number | null;
|
6443
|
-
} | null | undefined;
|
6444
|
-
loading?: boolean | null | undefined;
|
6445
|
-
}, {
|
6446
|
-
data?: any;
|
6447
|
-
error?: {
|
6448
|
-
message: string;
|
6449
|
-
statusCode: number | null;
|
6450
|
-
} | null | undefined;
|
6451
|
-
loading?: boolean | null | undefined;
|
6452
5521
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
6453
5522
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
6454
5523
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -6505,13 +5574,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6505
5574
|
path: string;
|
6506
5575
|
originalFilename: string;
|
6507
5576
|
}[] | {
|
6508
|
-
data?: any;
|
6509
|
-
error?: {
|
6510
|
-
message: string;
|
6511
|
-
statusCode: number | null;
|
6512
|
-
} | null | undefined;
|
6513
|
-
loading?: boolean | null | undefined;
|
6514
|
-
} | {
|
6515
5577
|
start: string;
|
6516
5578
|
end: string;
|
6517
5579
|
} | null | undefined>;
|
@@ -6559,13 +5621,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6559
5621
|
path: string;
|
6560
5622
|
originalFilename: string;
|
6561
5623
|
}[] | {
|
6562
|
-
data?: any;
|
6563
|
-
error?: {
|
6564
|
-
message: string;
|
6565
|
-
statusCode: number | null;
|
6566
|
-
} | null | undefined;
|
6567
|
-
loading?: boolean | null | undefined;
|
6568
|
-
} | {
|
6569
5624
|
start: string;
|
6570
5625
|
end: string;
|
6571
5626
|
} | null | undefined> | null | undefined;
|
@@ -6621,13 +5676,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6621
5676
|
path: string;
|
6622
5677
|
originalFilename: string;
|
6623
5678
|
}[] | {
|
6624
|
-
data?: any;
|
6625
|
-
error?: {
|
6626
|
-
message: string;
|
6627
|
-
statusCode: number | null;
|
6628
|
-
} | null | undefined;
|
6629
|
-
loading?: boolean | null | undefined;
|
6630
|
-
} | {
|
6631
5679
|
start: string;
|
6632
5680
|
end: string;
|
6633
5681
|
} | null | undefined>;
|
@@ -6675,13 +5723,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6675
5723
|
path: string;
|
6676
5724
|
originalFilename: string;
|
6677
5725
|
}[] | {
|
6678
|
-
data?: any;
|
6679
|
-
error?: {
|
6680
|
-
message: string;
|
6681
|
-
statusCode: number | null;
|
6682
|
-
} | null | undefined;
|
6683
|
-
loading?: boolean | null | undefined;
|
6684
|
-
} | {
|
6685
5726
|
start: string;
|
6686
5727
|
end: string;
|
6687
5728
|
} | null | undefined> | null | undefined;
|
@@ -6829,33 +5870,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6829
5870
|
firstname: string;
|
6830
5871
|
surname: string;
|
6831
5872
|
middlename?: string | null | undefined;
|
6832
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6833
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
6834
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
6835
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
6836
|
-
message: z.ZodString;
|
6837
|
-
}, "strip", z.ZodTypeAny, {
|
6838
|
-
message: string;
|
6839
|
-
statusCode: number | null;
|
6840
|
-
}, {
|
6841
|
-
message: string;
|
6842
|
-
statusCode: number | null;
|
6843
|
-
}>>>;
|
6844
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
6845
|
-
}, "strip", z.ZodTypeAny, {
|
6846
|
-
data?: any;
|
6847
|
-
error?: {
|
6848
|
-
message: string;
|
6849
|
-
statusCode: number | null;
|
6850
|
-
} | null | undefined;
|
6851
|
-
loading?: boolean | null | undefined;
|
6852
|
-
}, {
|
6853
|
-
data?: any;
|
6854
|
-
error?: {
|
6855
|
-
message: string;
|
6856
|
-
statusCode: number | null;
|
6857
|
-
} | null | undefined;
|
6858
|
-
loading?: boolean | null | undefined;
|
6859
5873
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
6860
5874
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
6861
5875
|
start: z.ZodString;
|
@@ -6991,33 +6005,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6991
6005
|
firstname: string;
|
6992
6006
|
surname: string;
|
6993
6007
|
middlename?: string | null | undefined;
|
6994
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6995
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
6996
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
6997
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
6998
|
-
message: z.ZodString;
|
6999
|
-
}, "strip", z.ZodTypeAny, {
|
7000
|
-
message: string;
|
7001
|
-
statusCode: number | null;
|
7002
|
-
}, {
|
7003
|
-
message: string;
|
7004
|
-
statusCode: number | null;
|
7005
|
-
}>>>;
|
7006
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
7007
|
-
}, "strip", z.ZodTypeAny, {
|
7008
|
-
data?: any;
|
7009
|
-
error?: {
|
7010
|
-
message: string;
|
7011
|
-
statusCode: number | null;
|
7012
|
-
} | null | undefined;
|
7013
|
-
loading?: boolean | null | undefined;
|
7014
|
-
}, {
|
7015
|
-
data?: any;
|
7016
|
-
error?: {
|
7017
|
-
message: string;
|
7018
|
-
statusCode: number | null;
|
7019
|
-
} | null | undefined;
|
7020
|
-
loading?: boolean | null | undefined;
|
7021
6008
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
7022
6009
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
7023
6010
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -7075,13 +6062,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7075
6062
|
path: string;
|
7076
6063
|
originalFilename: string;
|
7077
6064
|
}[] | {
|
7078
|
-
data?: any;
|
7079
|
-
error?: {
|
7080
|
-
message: string;
|
7081
|
-
statusCode: number | null;
|
7082
|
-
} | null | undefined;
|
7083
|
-
loading?: boolean | null | undefined;
|
7084
|
-
} | {
|
7085
6065
|
start: string;
|
7086
6066
|
end: string;
|
7087
6067
|
} | null | undefined>;
|
@@ -7129,13 +6109,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7129
6109
|
path: string;
|
7130
6110
|
originalFilename: string;
|
7131
6111
|
}[] | {
|
7132
|
-
data?: any;
|
7133
|
-
error?: {
|
7134
|
-
message: string;
|
7135
|
-
statusCode: number | null;
|
7136
|
-
} | null | undefined;
|
7137
|
-
loading?: boolean | null | undefined;
|
7138
|
-
} | {
|
7139
6112
|
start: string;
|
7140
6113
|
end: string;
|
7141
6114
|
} | null | undefined> | null | undefined;
|
@@ -7192,13 +6165,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7192
6165
|
path: string;
|
7193
6166
|
originalFilename: string;
|
7194
6167
|
}[] | {
|
7195
|
-
data?: any;
|
7196
|
-
error?: {
|
7197
|
-
message: string;
|
7198
|
-
statusCode: number | null;
|
7199
|
-
} | null | undefined;
|
7200
|
-
loading?: boolean | null | undefined;
|
7201
|
-
} | {
|
7202
6168
|
start: string;
|
7203
6169
|
end: string;
|
7204
6170
|
} | null | undefined>;
|
@@ -7246,13 +6212,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7246
6212
|
path: string;
|
7247
6213
|
originalFilename: string;
|
7248
6214
|
}[] | {
|
7249
|
-
data?: any;
|
7250
|
-
error?: {
|
7251
|
-
message: string;
|
7252
|
-
statusCode: number | null;
|
7253
|
-
} | null | undefined;
|
7254
|
-
loading?: boolean | null | undefined;
|
7255
|
-
} | {
|
7256
6215
|
start: string;
|
7257
6216
|
end: string;
|
7258
6217
|
} | null | undefined> | null | undefined;
|
@@ -7401,33 +6360,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7401
6360
|
firstname: string;
|
7402
6361
|
surname: string;
|
7403
6362
|
middlename?: string | null | undefined;
|
7404
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7405
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
7406
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
7407
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
7408
|
-
message: z.ZodString;
|
7409
|
-
}, "strip", z.ZodTypeAny, {
|
7410
|
-
message: string;
|
7411
|
-
statusCode: number | null;
|
7412
|
-
}, {
|
7413
|
-
message: string;
|
7414
|
-
statusCode: number | null;
|
7415
|
-
}>>>;
|
7416
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
7417
|
-
}, "strip", z.ZodTypeAny, {
|
7418
|
-
data?: any;
|
7419
|
-
error?: {
|
7420
|
-
message: string;
|
7421
|
-
statusCode: number | null;
|
7422
|
-
} | null | undefined;
|
7423
|
-
loading?: boolean | null | undefined;
|
7424
|
-
}, {
|
7425
|
-
data?: any;
|
7426
|
-
error?: {
|
7427
|
-
message: string;
|
7428
|
-
statusCode: number | null;
|
7429
|
-
} | null | undefined;
|
7430
|
-
loading?: boolean | null | undefined;
|
7431
6363
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
7432
6364
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
7433
6365
|
start: z.ZodString;
|
@@ -7563,33 +6495,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7563
6495
|
firstname: string;
|
7564
6496
|
surname: string;
|
7565
6497
|
middlename?: string | null | undefined;
|
7566
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7567
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
7568
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
7569
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
7570
|
-
message: z.ZodString;
|
7571
|
-
}, "strip", z.ZodTypeAny, {
|
7572
|
-
message: string;
|
7573
|
-
statusCode: number | null;
|
7574
|
-
}, {
|
7575
|
-
message: string;
|
7576
|
-
statusCode: number | null;
|
7577
|
-
}>>>;
|
7578
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
7579
|
-
}, "strip", z.ZodTypeAny, {
|
7580
|
-
data?: any;
|
7581
|
-
error?: {
|
7582
|
-
message: string;
|
7583
|
-
statusCode: number | null;
|
7584
|
-
} | null | undefined;
|
7585
|
-
loading?: boolean | null | undefined;
|
7586
|
-
}, {
|
7587
|
-
data?: any;
|
7588
|
-
error?: {
|
7589
|
-
message: string;
|
7590
|
-
statusCode: number | null;
|
7591
|
-
} | null | undefined;
|
7592
|
-
loading?: boolean | null | undefined;
|
7593
6498
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
7594
6499
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
7595
6500
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -7646,13 +6551,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7646
6551
|
path: string;
|
7647
6552
|
originalFilename: string;
|
7648
6553
|
}[] | {
|
7649
|
-
data?: any;
|
7650
|
-
error?: {
|
7651
|
-
message: string;
|
7652
|
-
statusCode: number | null;
|
7653
|
-
} | null | undefined;
|
7654
|
-
loading?: boolean | null | undefined;
|
7655
|
-
} | {
|
7656
6554
|
start: string;
|
7657
6555
|
end: string;
|
7658
6556
|
} | null | undefined>;
|
@@ -7700,13 +6598,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7700
6598
|
path: string;
|
7701
6599
|
originalFilename: string;
|
7702
6600
|
}[] | {
|
7703
|
-
data?: any;
|
7704
|
-
error?: {
|
7705
|
-
message: string;
|
7706
|
-
statusCode: number | null;
|
7707
|
-
} | null | undefined;
|
7708
|
-
loading?: boolean | null | undefined;
|
7709
|
-
} | {
|
7710
6601
|
start: string;
|
7711
6602
|
end: string;
|
7712
6603
|
} | null | undefined> | null | undefined;
|
@@ -7762,13 +6653,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7762
6653
|
path: string;
|
7763
6654
|
originalFilename: string;
|
7764
6655
|
}[] | {
|
7765
|
-
data?: any;
|
7766
|
-
error?: {
|
7767
|
-
message: string;
|
7768
|
-
statusCode: number | null;
|
7769
|
-
} | null | undefined;
|
7770
|
-
loading?: boolean | null | undefined;
|
7771
|
-
} | {
|
7772
6656
|
start: string;
|
7773
6657
|
end: string;
|
7774
6658
|
} | null | undefined>;
|
@@ -7816,13 +6700,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7816
6700
|
path: string;
|
7817
6701
|
originalFilename: string;
|
7818
6702
|
}[] | {
|
7819
|
-
data?: any;
|
7820
|
-
error?: {
|
7821
|
-
message: string;
|
7822
|
-
statusCode: number | null;
|
7823
|
-
} | null | undefined;
|
7824
|
-
loading?: boolean | null | undefined;
|
7825
|
-
} | {
|
7826
6703
|
start: string;
|
7827
6704
|
end: string;
|
7828
6705
|
} | null | undefined> | null | undefined;
|
@@ -7970,33 +6847,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7970
6847
|
firstname: string;
|
7971
6848
|
surname: string;
|
7972
6849
|
middlename?: string | null | undefined;
|
7973
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7974
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
7975
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
7976
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
7977
|
-
message: z.ZodString;
|
7978
|
-
}, "strip", z.ZodTypeAny, {
|
7979
|
-
message: string;
|
7980
|
-
statusCode: number | null;
|
7981
|
-
}, {
|
7982
|
-
message: string;
|
7983
|
-
statusCode: number | null;
|
7984
|
-
}>>>;
|
7985
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
7986
|
-
}, "strip", z.ZodTypeAny, {
|
7987
|
-
data?: any;
|
7988
|
-
error?: {
|
7989
|
-
message: string;
|
7990
|
-
statusCode: number | null;
|
7991
|
-
} | null | undefined;
|
7992
|
-
loading?: boolean | null | undefined;
|
7993
|
-
}, {
|
7994
|
-
data?: any;
|
7995
|
-
error?: {
|
7996
|
-
message: string;
|
7997
|
-
statusCode: number | null;
|
7998
|
-
} | null | undefined;
|
7999
|
-
loading?: boolean | null | undefined;
|
8000
6850
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
8001
6851
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
8002
6852
|
start: z.ZodString;
|
@@ -8132,33 +6982,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8132
6982
|
firstname: string;
|
8133
6983
|
surname: string;
|
8134
6984
|
middlename?: string | null | undefined;
|
8135
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8136
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
8137
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
8138
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
8139
|
-
message: z.ZodString;
|
8140
|
-
}, "strip", z.ZodTypeAny, {
|
8141
|
-
message: string;
|
8142
|
-
statusCode: number | null;
|
8143
|
-
}, {
|
8144
|
-
message: string;
|
8145
|
-
statusCode: number | null;
|
8146
|
-
}>>>;
|
8147
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
8148
|
-
}, "strip", z.ZodTypeAny, {
|
8149
|
-
data?: any;
|
8150
|
-
error?: {
|
8151
|
-
message: string;
|
8152
|
-
statusCode: number | null;
|
8153
|
-
} | null | undefined;
|
8154
|
-
loading?: boolean | null | undefined;
|
8155
|
-
}, {
|
8156
|
-
data?: any;
|
8157
|
-
error?: {
|
8158
|
-
message: string;
|
8159
|
-
statusCode: number | null;
|
8160
|
-
} | null | undefined;
|
8161
|
-
loading?: boolean | null | undefined;
|
8162
6985
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
8163
6986
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
8164
6987
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -8216,13 +7039,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8216
7039
|
path: string;
|
8217
7040
|
originalFilename: string;
|
8218
7041
|
}[] | {
|
8219
|
-
data?: any;
|
8220
|
-
error?: {
|
8221
|
-
message: string;
|
8222
|
-
statusCode: number | null;
|
8223
|
-
} | null | undefined;
|
8224
|
-
loading?: boolean | null | undefined;
|
8225
|
-
} | {
|
8226
7042
|
start: string;
|
8227
7043
|
end: string;
|
8228
7044
|
} | null | undefined>;
|
@@ -8271,13 +7087,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8271
7087
|
path: string;
|
8272
7088
|
originalFilename: string;
|
8273
7089
|
}[] | {
|
8274
|
-
data?: any;
|
8275
|
-
error?: {
|
8276
|
-
message: string;
|
8277
|
-
statusCode: number | null;
|
8278
|
-
} | null | undefined;
|
8279
|
-
loading?: boolean | null | undefined;
|
8280
|
-
} | {
|
8281
7090
|
start: string;
|
8282
7091
|
end: string;
|
8283
7092
|
} | null | undefined> | null | undefined;
|
@@ -8333,13 +7142,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8333
7142
|
path: string;
|
8334
7143
|
originalFilename: string;
|
8335
7144
|
}[] | {
|
8336
|
-
data?: any;
|
8337
|
-
error?: {
|
8338
|
-
message: string;
|
8339
|
-
statusCode: number | null;
|
8340
|
-
} | null | undefined;
|
8341
|
-
loading?: boolean | null | undefined;
|
8342
|
-
} | {
|
8343
7145
|
start: string;
|
8344
7146
|
end: string;
|
8345
7147
|
} | null | undefined>;
|
@@ -8388,13 +7190,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8388
7190
|
path: string;
|
8389
7191
|
originalFilename: string;
|
8390
7192
|
}[] | {
|
8391
|
-
data?: any;
|
8392
|
-
error?: {
|
8393
|
-
message: string;
|
8394
|
-
statusCode: number | null;
|
8395
|
-
} | null | undefined;
|
8396
|
-
loading?: boolean | null | undefined;
|
8397
|
-
} | {
|
8398
7193
|
start: string;
|
8399
7194
|
end: string;
|
8400
7195
|
} | null | undefined> | null | undefined;
|
@@ -8542,33 +7337,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8542
7337
|
firstname: string;
|
8543
7338
|
surname: string;
|
8544
7339
|
middlename?: string | null | undefined;
|
8545
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8546
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
8547
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
8548
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
8549
|
-
message: z.ZodString;
|
8550
|
-
}, "strip", z.ZodTypeAny, {
|
8551
|
-
message: string;
|
8552
|
-
statusCode: number | null;
|
8553
|
-
}, {
|
8554
|
-
message: string;
|
8555
|
-
statusCode: number | null;
|
8556
|
-
}>>>;
|
8557
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
8558
|
-
}, "strip", z.ZodTypeAny, {
|
8559
|
-
data?: any;
|
8560
|
-
error?: {
|
8561
|
-
message: string;
|
8562
|
-
statusCode: number | null;
|
8563
|
-
} | null | undefined;
|
8564
|
-
loading?: boolean | null | undefined;
|
8565
|
-
}, {
|
8566
|
-
data?: any;
|
8567
|
-
error?: {
|
8568
|
-
message: string;
|
8569
|
-
statusCode: number | null;
|
8570
|
-
} | null | undefined;
|
8571
|
-
loading?: boolean | null | undefined;
|
8572
7340
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
8573
7341
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
8574
7342
|
start: z.ZodString;
|
@@ -8704,33 +7472,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8704
7472
|
firstname: string;
|
8705
7473
|
surname: string;
|
8706
7474
|
middlename?: string | null | undefined;
|
8707
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8708
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
8709
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
8710
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
8711
|
-
message: z.ZodString;
|
8712
|
-
}, "strip", z.ZodTypeAny, {
|
8713
|
-
message: string;
|
8714
|
-
statusCode: number | null;
|
8715
|
-
}, {
|
8716
|
-
message: string;
|
8717
|
-
statusCode: number | null;
|
8718
|
-
}>>>;
|
8719
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
8720
|
-
}, "strip", z.ZodTypeAny, {
|
8721
|
-
data?: any;
|
8722
|
-
error?: {
|
8723
|
-
message: string;
|
8724
|
-
statusCode: number | null;
|
8725
|
-
} | null | undefined;
|
8726
|
-
loading?: boolean | null | undefined;
|
8727
|
-
}, {
|
8728
|
-
data?: any;
|
8729
|
-
error?: {
|
8730
|
-
message: string;
|
8731
|
-
statusCode: number | null;
|
8732
|
-
} | null | undefined;
|
8733
|
-
loading?: boolean | null | undefined;
|
8734
7475
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
8735
7476
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
8736
7477
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -8787,13 +7528,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8787
7528
|
path: string;
|
8788
7529
|
originalFilename: string;
|
8789
7530
|
}[] | {
|
8790
|
-
data?: any;
|
8791
|
-
error?: {
|
8792
|
-
message: string;
|
8793
|
-
statusCode: number | null;
|
8794
|
-
} | null | undefined;
|
8795
|
-
loading?: boolean | null | undefined;
|
8796
|
-
} | {
|
8797
7531
|
start: string;
|
8798
7532
|
end: string;
|
8799
7533
|
} | null | undefined>;
|
@@ -8841,13 +7575,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8841
7575
|
path: string;
|
8842
7576
|
originalFilename: string;
|
8843
7577
|
}[] | {
|
8844
|
-
data?: any;
|
8845
|
-
error?: {
|
8846
|
-
message: string;
|
8847
|
-
statusCode: number | null;
|
8848
|
-
} | null | undefined;
|
8849
|
-
loading?: boolean | null | undefined;
|
8850
|
-
} | {
|
8851
7578
|
start: string;
|
8852
7579
|
end: string;
|
8853
7580
|
} | null | undefined> | null | undefined;
|
@@ -8903,13 +7630,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8903
7630
|
path: string;
|
8904
7631
|
originalFilename: string;
|
8905
7632
|
}[] | {
|
8906
|
-
data?: any;
|
8907
|
-
error?: {
|
8908
|
-
message: string;
|
8909
|
-
statusCode: number | null;
|
8910
|
-
} | null | undefined;
|
8911
|
-
loading?: boolean | null | undefined;
|
8912
|
-
} | {
|
8913
7633
|
start: string;
|
8914
7634
|
end: string;
|
8915
7635
|
} | null | undefined>;
|
@@ -8957,13 +7677,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8957
7677
|
path: string;
|
8958
7678
|
originalFilename: string;
|
8959
7679
|
}[] | {
|
8960
|
-
data?: any;
|
8961
|
-
error?: {
|
8962
|
-
message: string;
|
8963
|
-
statusCode: number | null;
|
8964
|
-
} | null | undefined;
|
8965
|
-
loading?: boolean | null | undefined;
|
8966
|
-
} | {
|
8967
7680
|
start: string;
|
8968
7681
|
end: string;
|
8969
7682
|
} | null | undefined> | null | undefined;
|
@@ -9111,33 +7824,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9111
7824
|
firstname: string;
|
9112
7825
|
surname: string;
|
9113
7826
|
middlename?: string | null | undefined;
|
9114
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9115
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
9116
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
9117
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
9118
|
-
message: z.ZodString;
|
9119
|
-
}, "strip", z.ZodTypeAny, {
|
9120
|
-
message: string;
|
9121
|
-
statusCode: number | null;
|
9122
|
-
}, {
|
9123
|
-
message: string;
|
9124
|
-
statusCode: number | null;
|
9125
|
-
}>>>;
|
9126
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
9127
|
-
}, "strip", z.ZodTypeAny, {
|
9128
|
-
data?: any;
|
9129
|
-
error?: {
|
9130
|
-
message: string;
|
9131
|
-
statusCode: number | null;
|
9132
|
-
} | null | undefined;
|
9133
|
-
loading?: boolean | null | undefined;
|
9134
|
-
}, {
|
9135
|
-
data?: any;
|
9136
|
-
error?: {
|
9137
|
-
message: string;
|
9138
|
-
statusCode: number | null;
|
9139
|
-
} | null | undefined;
|
9140
|
-
loading?: boolean | null | undefined;
|
9141
7827
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
9142
7828
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
9143
7829
|
start: z.ZodString;
|
@@ -9273,33 +7959,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9273
7959
|
firstname: string;
|
9274
7960
|
surname: string;
|
9275
7961
|
middlename?: string | null | undefined;
|
9276
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9277
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
9278
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
9279
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
9280
|
-
message: z.ZodString;
|
9281
|
-
}, "strip", z.ZodTypeAny, {
|
9282
|
-
message: string;
|
9283
|
-
statusCode: number | null;
|
9284
|
-
}, {
|
9285
|
-
message: string;
|
9286
|
-
statusCode: number | null;
|
9287
|
-
}>>>;
|
9288
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
9289
|
-
}, "strip", z.ZodTypeAny, {
|
9290
|
-
data?: any;
|
9291
|
-
error?: {
|
9292
|
-
message: string;
|
9293
|
-
statusCode: number | null;
|
9294
|
-
} | null | undefined;
|
9295
|
-
loading?: boolean | null | undefined;
|
9296
|
-
}, {
|
9297
|
-
data?: any;
|
9298
|
-
error?: {
|
9299
|
-
message: string;
|
9300
|
-
statusCode: number | null;
|
9301
|
-
} | null | undefined;
|
9302
|
-
loading?: boolean | null | undefined;
|
9303
7962
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
9304
7963
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
9305
7964
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -9357,13 +8016,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9357
8016
|
path: string;
|
9358
8017
|
originalFilename: string;
|
9359
8018
|
}[] | {
|
9360
|
-
data?: any;
|
9361
|
-
error?: {
|
9362
|
-
message: string;
|
9363
|
-
statusCode: number | null;
|
9364
|
-
} | null | undefined;
|
9365
|
-
loading?: boolean | null | undefined;
|
9366
|
-
} | {
|
9367
8019
|
start: string;
|
9368
8020
|
end: string;
|
9369
8021
|
} | null | undefined>;
|
@@ -9412,13 +8064,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9412
8064
|
path: string;
|
9413
8065
|
originalFilename: string;
|
9414
8066
|
}[] | {
|
9415
|
-
data?: any;
|
9416
|
-
error?: {
|
9417
|
-
message: string;
|
9418
|
-
statusCode: number | null;
|
9419
|
-
} | null | undefined;
|
9420
|
-
loading?: boolean | null | undefined;
|
9421
|
-
} | {
|
9422
8067
|
start: string;
|
9423
8068
|
end: string;
|
9424
8069
|
} | null | undefined> | null | undefined;
|
@@ -9474,13 +8119,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9474
8119
|
path: string;
|
9475
8120
|
originalFilename: string;
|
9476
8121
|
}[] | {
|
9477
|
-
data?: any;
|
9478
|
-
error?: {
|
9479
|
-
message: string;
|
9480
|
-
statusCode: number | null;
|
9481
|
-
} | null | undefined;
|
9482
|
-
loading?: boolean | null | undefined;
|
9483
|
-
} | {
|
9484
8122
|
start: string;
|
9485
8123
|
end: string;
|
9486
8124
|
} | null | undefined>;
|
@@ -9529,13 +8167,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9529
8167
|
path: string;
|
9530
8168
|
originalFilename: string;
|
9531
8169
|
}[] | {
|
9532
|
-
data?: any;
|
9533
|
-
error?: {
|
9534
|
-
message: string;
|
9535
|
-
statusCode: number | null;
|
9536
|
-
} | null | undefined;
|
9537
|
-
loading?: boolean | null | undefined;
|
9538
|
-
} | {
|
9539
8170
|
start: string;
|
9540
8171
|
end: string;
|
9541
8172
|
} | null | undefined> | null | undefined;
|
@@ -9683,33 +8314,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9683
8314
|
firstname: string;
|
9684
8315
|
surname: string;
|
9685
8316
|
middlename?: string | null | undefined;
|
9686
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9687
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
9688
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
9689
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
9690
|
-
message: z.ZodString;
|
9691
|
-
}, "strip", z.ZodTypeAny, {
|
9692
|
-
message: string;
|
9693
|
-
statusCode: number | null;
|
9694
|
-
}, {
|
9695
|
-
message: string;
|
9696
|
-
statusCode: number | null;
|
9697
|
-
}>>>;
|
9698
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
9699
|
-
}, "strip", z.ZodTypeAny, {
|
9700
|
-
data?: any;
|
9701
|
-
error?: {
|
9702
|
-
message: string;
|
9703
|
-
statusCode: number | null;
|
9704
|
-
} | null | undefined;
|
9705
|
-
loading?: boolean | null | undefined;
|
9706
|
-
}, {
|
9707
|
-
data?: any;
|
9708
|
-
error?: {
|
9709
|
-
message: string;
|
9710
|
-
statusCode: number | null;
|
9711
|
-
} | null | undefined;
|
9712
|
-
loading?: boolean | null | undefined;
|
9713
8317
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
9714
8318
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
9715
8319
|
start: z.ZodString;
|
@@ -9845,33 +8449,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9845
8449
|
firstname: string;
|
9846
8450
|
surname: string;
|
9847
8451
|
middlename?: string | null | undefined;
|
9848
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9849
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
9850
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
9851
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
9852
|
-
message: z.ZodString;
|
9853
|
-
}, "strip", z.ZodTypeAny, {
|
9854
|
-
message: string;
|
9855
|
-
statusCode: number | null;
|
9856
|
-
}, {
|
9857
|
-
message: string;
|
9858
|
-
statusCode: number | null;
|
9859
|
-
}>>>;
|
9860
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
9861
|
-
}, "strip", z.ZodTypeAny, {
|
9862
|
-
data?: any;
|
9863
|
-
error?: {
|
9864
|
-
message: string;
|
9865
|
-
statusCode: number | null;
|
9866
|
-
} | null | undefined;
|
9867
|
-
loading?: boolean | null | undefined;
|
9868
|
-
}, {
|
9869
|
-
data?: any;
|
9870
|
-
error?: {
|
9871
|
-
message: string;
|
9872
|
-
statusCode: number | null;
|
9873
|
-
} | null | undefined;
|
9874
|
-
loading?: boolean | null | undefined;
|
9875
8452
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
9876
8453
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
9877
8454
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -9943,13 +8520,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9943
8520
|
path: string;
|
9944
8521
|
originalFilename: string;
|
9945
8522
|
}[] | {
|
9946
|
-
data?: any;
|
9947
|
-
error?: {
|
9948
|
-
message: string;
|
9949
|
-
statusCode: number | null;
|
9950
|
-
} | null | undefined;
|
9951
|
-
loading?: boolean | null | undefined;
|
9952
|
-
} | {
|
9953
8523
|
start: string;
|
9954
8524
|
end: string;
|
9955
8525
|
} | null | undefined>;
|
@@ -9998,13 +8568,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9998
8568
|
path: string;
|
9999
8569
|
originalFilename: string;
|
10000
8570
|
}[] | {
|
10001
|
-
data?: any;
|
10002
|
-
error?: {
|
10003
|
-
message: string;
|
10004
|
-
statusCode: number | null;
|
10005
|
-
} | null | undefined;
|
10006
|
-
loading?: boolean | null | undefined;
|
10007
|
-
} | {
|
10008
8571
|
start: string;
|
10009
8572
|
end: string;
|
10010
8573
|
} | null | undefined> | null | undefined;
|
@@ -10064,13 +8627,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
10064
8627
|
path: string;
|
10065
8628
|
originalFilename: string;
|
10066
8629
|
}[] | {
|
10067
|
-
data?: any;
|
10068
|
-
error?: {
|
10069
|
-
message: string;
|
10070
|
-
statusCode: number | null;
|
10071
|
-
} | null | undefined;
|
10072
|
-
loading?: boolean | null | undefined;
|
10073
|
-
} | {
|
10074
8630
|
start: string;
|
10075
8631
|
end: string;
|
10076
8632
|
} | null | undefined>;
|
@@ -10119,13 +8675,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
10119
8675
|
path: string;
|
10120
8676
|
originalFilename: string;
|
10121
8677
|
}[] | {
|
10122
|
-
data?: any;
|
10123
|
-
error?: {
|
10124
|
-
message: string;
|
10125
|
-
statusCode: number | null;
|
10126
|
-
} | null | undefined;
|
10127
|
-
loading?: boolean | null | undefined;
|
10128
|
-
} | {
|
10129
8678
|
start: string;
|
10130
8679
|
end: string;
|
10131
8680
|
} | null | undefined> | null | undefined;
|
@@ -10273,33 +8822,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
10273
8822
|
firstname: string;
|
10274
8823
|
surname: string;
|
10275
8824
|
middlename?: string | null | undefined;
|
10276
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10277
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
10278
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
10279
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
10280
|
-
message: z.ZodString;
|
10281
|
-
}, "strip", z.ZodTypeAny, {
|
10282
|
-
message: string;
|
10283
|
-
statusCode: number | null;
|
10284
|
-
}, {
|
10285
|
-
message: string;
|
10286
|
-
statusCode: number | null;
|
10287
|
-
}>>>;
|
10288
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
10289
|
-
}, "strip", z.ZodTypeAny, {
|
10290
|
-
data?: any;
|
10291
|
-
error?: {
|
10292
|
-
message: string;
|
10293
|
-
statusCode: number | null;
|
10294
|
-
} | null | undefined;
|
10295
|
-
loading?: boolean | null | undefined;
|
10296
|
-
}, {
|
10297
|
-
data?: any;
|
10298
|
-
error?: {
|
10299
|
-
message: string;
|
10300
|
-
statusCode: number | null;
|
10301
|
-
} | null | undefined;
|
10302
|
-
loading?: boolean | null | undefined;
|
10303
8825
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
10304
8826
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
10305
8827
|
start: z.ZodString;
|
@@ -10435,33 +8957,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
10435
8957
|
firstname: string;
|
10436
8958
|
surname: string;
|
10437
8959
|
middlename?: string | null | undefined;
|
10438
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10439
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
10440
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
10441
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
10442
|
-
message: z.ZodString;
|
10443
|
-
}, "strip", z.ZodTypeAny, {
|
10444
|
-
message: string;
|
10445
|
-
statusCode: number | null;
|
10446
|
-
}, {
|
10447
|
-
message: string;
|
10448
|
-
statusCode: number | null;
|
10449
|
-
}>>>;
|
10450
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
10451
|
-
}, "strip", z.ZodTypeAny, {
|
10452
|
-
data?: any;
|
10453
|
-
error?: {
|
10454
|
-
message: string;
|
10455
|
-
statusCode: number | null;
|
10456
|
-
} | null | undefined;
|
10457
|
-
loading?: boolean | null | undefined;
|
10458
|
-
}, {
|
10459
|
-
data?: any;
|
10460
|
-
error?: {
|
10461
|
-
message: string;
|
10462
|
-
statusCode: number | null;
|
10463
|
-
} | null | undefined;
|
10464
|
-
loading?: boolean | null | undefined;
|
10465
8960
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
10466
8961
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
10467
8962
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -10518,13 +9013,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
10518
9013
|
path: string;
|
10519
9014
|
originalFilename: string;
|
10520
9015
|
}[] | {
|
10521
|
-
data?: any;
|
10522
|
-
error?: {
|
10523
|
-
message: string;
|
10524
|
-
statusCode: number | null;
|
10525
|
-
} | null | undefined;
|
10526
|
-
loading?: boolean | null | undefined;
|
10527
|
-
} | {
|
10528
9016
|
start: string;
|
10529
9017
|
end: string;
|
10530
9018
|
} | null | undefined>;
|
@@ -10572,13 +9060,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
10572
9060
|
path: string;
|
10573
9061
|
originalFilename: string;
|
10574
9062
|
}[] | {
|
10575
|
-
data?: any;
|
10576
|
-
error?: {
|
10577
|
-
message: string;
|
10578
|
-
statusCode: number | null;
|
10579
|
-
} | null | undefined;
|
10580
|
-
loading?: boolean | null | undefined;
|
10581
|
-
} | {
|
10582
9063
|
start: string;
|
10583
9064
|
end: string;
|
10584
9065
|
} | null | undefined> | null | undefined;
|
@@ -10634,13 +9115,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
10634
9115
|
path: string;
|
10635
9116
|
originalFilename: string;
|
10636
9117
|
}[] | {
|
10637
|
-
data?: any;
|
10638
|
-
error?: {
|
10639
|
-
message: string;
|
10640
|
-
statusCode: number | null;
|
10641
|
-
} | null | undefined;
|
10642
|
-
loading?: boolean | null | undefined;
|
10643
|
-
} | {
|
10644
9118
|
start: string;
|
10645
9119
|
end: string;
|
10646
9120
|
} | null | undefined>;
|
@@ -10688,13 +9162,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
10688
9162
|
path: string;
|
10689
9163
|
originalFilename: string;
|
10690
9164
|
}[] | {
|
10691
|
-
data?: any;
|
10692
|
-
error?: {
|
10693
|
-
message: string;
|
10694
|
-
statusCode: number | null;
|
10695
|
-
} | null | undefined;
|
10696
|
-
loading?: boolean | null | undefined;
|
10697
|
-
} | {
|
10698
9165
|
start: string;
|
10699
9166
|
end: string;
|
10700
9167
|
} | null | undefined> | null | undefined;
|
@@ -10842,33 +9309,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
10842
9309
|
firstname: string;
|
10843
9310
|
surname: string;
|
10844
9311
|
middlename?: string | null | undefined;
|
10845
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10846
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
10847
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
10848
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
10849
|
-
message: z.ZodString;
|
10850
|
-
}, "strip", z.ZodTypeAny, {
|
10851
|
-
message: string;
|
10852
|
-
statusCode: number | null;
|
10853
|
-
}, {
|
10854
|
-
message: string;
|
10855
|
-
statusCode: number | null;
|
10856
|
-
}>>>;
|
10857
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
10858
|
-
}, "strip", z.ZodTypeAny, {
|
10859
|
-
data?: any;
|
10860
|
-
error?: {
|
10861
|
-
message: string;
|
10862
|
-
statusCode: number | null;
|
10863
|
-
} | null | undefined;
|
10864
|
-
loading?: boolean | null | undefined;
|
10865
|
-
}, {
|
10866
|
-
data?: any;
|
10867
|
-
error?: {
|
10868
|
-
message: string;
|
10869
|
-
statusCode: number | null;
|
10870
|
-
} | null | undefined;
|
10871
|
-
loading?: boolean | null | undefined;
|
10872
9312
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
10873
9313
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
10874
9314
|
start: z.ZodString;
|
@@ -11004,33 +9444,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
11004
9444
|
firstname: string;
|
11005
9445
|
surname: string;
|
11006
9446
|
middlename?: string | null | undefined;
|
11007
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11008
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
11009
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
11010
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
11011
|
-
message: z.ZodString;
|
11012
|
-
}, "strip", z.ZodTypeAny, {
|
11013
|
-
message: string;
|
11014
|
-
statusCode: number | null;
|
11015
|
-
}, {
|
11016
|
-
message: string;
|
11017
|
-
statusCode: number | null;
|
11018
|
-
}>>>;
|
11019
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
11020
|
-
}, "strip", z.ZodTypeAny, {
|
11021
|
-
data?: any;
|
11022
|
-
error?: {
|
11023
|
-
message: string;
|
11024
|
-
statusCode: number | null;
|
11025
|
-
} | null | undefined;
|
11026
|
-
loading?: boolean | null | undefined;
|
11027
|
-
}, {
|
11028
|
-
data?: any;
|
11029
|
-
error?: {
|
11030
|
-
message: string;
|
11031
|
-
statusCode: number | null;
|
11032
|
-
} | null | undefined;
|
11033
|
-
loading?: boolean | null | undefined;
|
11034
9447
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
11035
9448
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
11036
9449
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -11094,13 +9507,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
11094
9507
|
path: string;
|
11095
9508
|
originalFilename: string;
|
11096
9509
|
}[] | {
|
11097
|
-
data?: any;
|
11098
|
-
error?: {
|
11099
|
-
message: string;
|
11100
|
-
statusCode: number | null;
|
11101
|
-
} | null | undefined;
|
11102
|
-
loading?: boolean | null | undefined;
|
11103
|
-
} | {
|
11104
9510
|
start: string;
|
11105
9511
|
end: string;
|
11106
9512
|
} | null | undefined>;
|
@@ -11151,13 +9557,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
11151
9557
|
path: string;
|
11152
9558
|
originalFilename: string;
|
11153
9559
|
}[] | {
|
11154
|
-
data?: any;
|
11155
|
-
error?: {
|
11156
|
-
message: string;
|
11157
|
-
statusCode: number | null;
|
11158
|
-
} | null | undefined;
|
11159
|
-
loading?: boolean | null | undefined;
|
11160
|
-
} | {
|
11161
9560
|
start: string;
|
11162
9561
|
end: string;
|
11163
9562
|
} | null | undefined> | null | undefined;
|
@@ -11213,13 +9612,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
11213
9612
|
path: string;
|
11214
9613
|
originalFilename: string;
|
11215
9614
|
}[] | {
|
11216
|
-
data?: any;
|
11217
|
-
error?: {
|
11218
|
-
message: string;
|
11219
|
-
statusCode: number | null;
|
11220
|
-
} | null | undefined;
|
11221
|
-
loading?: boolean | null | undefined;
|
11222
|
-
} | {
|
11223
9615
|
start: string;
|
11224
9616
|
end: string;
|
11225
9617
|
} | null | undefined>;
|
@@ -11270,13 +9662,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
11270
9662
|
path: string;
|
11271
9663
|
originalFilename: string;
|
11272
9664
|
}[] | {
|
11273
|
-
data?: any;
|
11274
|
-
error?: {
|
11275
|
-
message: string;
|
11276
|
-
statusCode: number | null;
|
11277
|
-
} | null | undefined;
|
11278
|
-
loading?: boolean | null | undefined;
|
11279
|
-
} | {
|
11280
9665
|
start: string;
|
11281
9666
|
end: string;
|
11282
9667
|
} | null | undefined> | null | undefined;
|
@@ -11424,33 +9809,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
11424
9809
|
firstname: string;
|
11425
9810
|
surname: string;
|
11426
9811
|
middlename?: string | null | undefined;
|
11427
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11428
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
11429
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
11430
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
11431
|
-
message: z.ZodString;
|
11432
|
-
}, "strip", z.ZodTypeAny, {
|
11433
|
-
message: string;
|
11434
|
-
statusCode: number | null;
|
11435
|
-
}, {
|
11436
|
-
message: string;
|
11437
|
-
statusCode: number | null;
|
11438
|
-
}>>>;
|
11439
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
11440
|
-
}, "strip", z.ZodTypeAny, {
|
11441
|
-
data?: any;
|
11442
|
-
error?: {
|
11443
|
-
message: string;
|
11444
|
-
statusCode: number | null;
|
11445
|
-
} | null | undefined;
|
11446
|
-
loading?: boolean | null | undefined;
|
11447
|
-
}, {
|
11448
|
-
data?: any;
|
11449
|
-
error?: {
|
11450
|
-
message: string;
|
11451
|
-
statusCode: number | null;
|
11452
|
-
} | null | undefined;
|
11453
|
-
loading?: boolean | null | undefined;
|
11454
9812
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
11455
9813
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
11456
9814
|
start: z.ZodString;
|
@@ -11586,33 +9944,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
11586
9944
|
firstname: string;
|
11587
9945
|
surname: string;
|
11588
9946
|
middlename?: string | null | undefined;
|
11589
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11590
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
11591
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
11592
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
11593
|
-
message: z.ZodString;
|
11594
|
-
}, "strip", z.ZodTypeAny, {
|
11595
|
-
message: string;
|
11596
|
-
statusCode: number | null;
|
11597
|
-
}, {
|
11598
|
-
message: string;
|
11599
|
-
statusCode: number | null;
|
11600
|
-
}>>>;
|
11601
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
11602
|
-
}, "strip", z.ZodTypeAny, {
|
11603
|
-
data?: any;
|
11604
|
-
error?: {
|
11605
|
-
message: string;
|
11606
|
-
statusCode: number | null;
|
11607
|
-
} | null | undefined;
|
11608
|
-
loading?: boolean | null | undefined;
|
11609
|
-
}, {
|
11610
|
-
data?: any;
|
11611
|
-
error?: {
|
11612
|
-
message: string;
|
11613
|
-
statusCode: number | null;
|
11614
|
-
} | null | undefined;
|
11615
|
-
loading?: boolean | null | undefined;
|
11616
9947
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
11617
9948
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
11618
9949
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -11669,13 +10000,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
11669
10000
|
path: string;
|
11670
10001
|
originalFilename: string;
|
11671
10002
|
}[] | {
|
11672
|
-
data?: any;
|
11673
|
-
error?: {
|
11674
|
-
message: string;
|
11675
|
-
statusCode: number | null;
|
11676
|
-
} | null | undefined;
|
11677
|
-
loading?: boolean | null | undefined;
|
11678
|
-
} | {
|
11679
10003
|
start: string;
|
11680
10004
|
end: string;
|
11681
10005
|
} | null | undefined>;
|
@@ -11723,13 +10047,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
11723
10047
|
path: string;
|
11724
10048
|
originalFilename: string;
|
11725
10049
|
}[] | {
|
11726
|
-
data?: any;
|
11727
|
-
error?: {
|
11728
|
-
message: string;
|
11729
|
-
statusCode: number | null;
|
11730
|
-
} | null | undefined;
|
11731
|
-
loading?: boolean | null | undefined;
|
11732
|
-
} | {
|
11733
10050
|
start: string;
|
11734
10051
|
end: string;
|
11735
10052
|
} | null | undefined> | null | undefined;
|
@@ -11785,13 +10102,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
11785
10102
|
path: string;
|
11786
10103
|
originalFilename: string;
|
11787
10104
|
}[] | {
|
11788
|
-
data?: any;
|
11789
|
-
error?: {
|
11790
|
-
message: string;
|
11791
|
-
statusCode: number | null;
|
11792
|
-
} | null | undefined;
|
11793
|
-
loading?: boolean | null | undefined;
|
11794
|
-
} | {
|
11795
10105
|
start: string;
|
11796
10106
|
end: string;
|
11797
10107
|
} | null | undefined>;
|
@@ -11839,13 +10149,6 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
11839
10149
|
path: string;
|
11840
10150
|
originalFilename: string;
|
11841
10151
|
}[] | {
|
11842
|
-
data?: any;
|
11843
|
-
error?: {
|
11844
|
-
message: string;
|
11845
|
-
statusCode: number | null;
|
11846
|
-
} | null | undefined;
|
11847
|
-
loading?: boolean | null | undefined;
|
11848
|
-
} | {
|
11849
10152
|
start: string;
|
11850
10153
|
end: string;
|
11851
10154
|
} | null | undefined> | null | undefined;
|
@@ -11995,33 +10298,6 @@ export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendS
|
|
11995
10298
|
firstname: string;
|
11996
10299
|
surname: string;
|
11997
10300
|
middlename?: string | null | undefined;
|
11998
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11999
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
12000
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
12001
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
12002
|
-
message: z.ZodString;
|
12003
|
-
}, "strip", z.ZodTypeAny, {
|
12004
|
-
message: string;
|
12005
|
-
statusCode: number | null;
|
12006
|
-
}, {
|
12007
|
-
message: string;
|
12008
|
-
statusCode: number | null;
|
12009
|
-
}>>>;
|
12010
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
12011
|
-
}, "strip", z.ZodTypeAny, {
|
12012
|
-
data?: any;
|
12013
|
-
error?: {
|
12014
|
-
message: string;
|
12015
|
-
statusCode: number | null;
|
12016
|
-
} | null | undefined;
|
12017
|
-
loading?: boolean | null | undefined;
|
12018
|
-
}, {
|
12019
|
-
data?: any;
|
12020
|
-
error?: {
|
12021
|
-
message: string;
|
12022
|
-
statusCode: number | null;
|
12023
|
-
} | null | undefined;
|
12024
|
-
loading?: boolean | null | undefined;
|
12025
10301
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
12026
10302
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
12027
10303
|
start: z.ZodString;
|
@@ -12157,33 +10433,6 @@ export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendS
|
|
12157
10433
|
firstname: string;
|
12158
10434
|
surname: string;
|
12159
10435
|
middlename?: string | null | undefined;
|
12160
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12161
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
12162
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
12163
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
12164
|
-
message: z.ZodString;
|
12165
|
-
}, "strip", z.ZodTypeAny, {
|
12166
|
-
message: string;
|
12167
|
-
statusCode: number | null;
|
12168
|
-
}, {
|
12169
|
-
message: string;
|
12170
|
-
statusCode: number | null;
|
12171
|
-
}>>>;
|
12172
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
12173
|
-
}, "strip", z.ZodTypeAny, {
|
12174
|
-
data?: any;
|
12175
|
-
error?: {
|
12176
|
-
message: string;
|
12177
|
-
statusCode: number | null;
|
12178
|
-
} | null | undefined;
|
12179
|
-
loading?: boolean | null | undefined;
|
12180
|
-
}, {
|
12181
|
-
data?: any;
|
12182
|
-
error?: {
|
12183
|
-
message: string;
|
12184
|
-
statusCode: number | null;
|
12185
|
-
} | null | undefined;
|
12186
|
-
loading?: boolean | null | undefined;
|
12187
10436
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
12188
10437
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
12189
10438
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -12359,33 +10608,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12359
10608
|
firstname: string;
|
12360
10609
|
surname: string;
|
12361
10610
|
middlename?: string | null | undefined;
|
12362
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12363
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
12364
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
12365
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
12366
|
-
message: z.ZodString;
|
12367
|
-
}, "strip", z.ZodTypeAny, {
|
12368
|
-
message: string;
|
12369
|
-
statusCode: number | null;
|
12370
|
-
}, {
|
12371
|
-
message: string;
|
12372
|
-
statusCode: number | null;
|
12373
|
-
}>>>;
|
12374
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
12375
|
-
}, "strip", z.ZodTypeAny, {
|
12376
|
-
data?: any;
|
12377
|
-
error?: {
|
12378
|
-
message: string;
|
12379
|
-
statusCode: number | null;
|
12380
|
-
} | null | undefined;
|
12381
|
-
loading?: boolean | null | undefined;
|
12382
|
-
}, {
|
12383
|
-
data?: any;
|
12384
|
-
error?: {
|
12385
|
-
message: string;
|
12386
|
-
statusCode: number | null;
|
12387
|
-
} | null | undefined;
|
12388
|
-
loading?: boolean | null | undefined;
|
12389
10611
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
12390
10612
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
12391
10613
|
start: z.ZodString;
|
@@ -12521,33 +10743,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12521
10743
|
firstname: string;
|
12522
10744
|
surname: string;
|
12523
10745
|
middlename?: string | null | undefined;
|
12524
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12525
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
12526
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
12527
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
12528
|
-
message: z.ZodString;
|
12529
|
-
}, "strip", z.ZodTypeAny, {
|
12530
|
-
message: string;
|
12531
|
-
statusCode: number | null;
|
12532
|
-
}, {
|
12533
|
-
message: string;
|
12534
|
-
statusCode: number | null;
|
12535
|
-
}>>>;
|
12536
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
12537
|
-
}, "strip", z.ZodTypeAny, {
|
12538
|
-
data?: any;
|
12539
|
-
error?: {
|
12540
|
-
message: string;
|
12541
|
-
statusCode: number | null;
|
12542
|
-
} | null | undefined;
|
12543
|
-
loading?: boolean | null | undefined;
|
12544
|
-
}, {
|
12545
|
-
data?: any;
|
12546
|
-
error?: {
|
12547
|
-
message: string;
|
12548
|
-
statusCode: number | null;
|
12549
|
-
} | null | undefined;
|
12550
|
-
loading?: boolean | null | undefined;
|
12551
10746
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
12552
10747
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
12553
10748
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -12604,13 +10799,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12604
10799
|
path: string;
|
12605
10800
|
originalFilename: string;
|
12606
10801
|
}[] | {
|
12607
|
-
data?: any;
|
12608
|
-
error?: {
|
12609
|
-
message: string;
|
12610
|
-
statusCode: number | null;
|
12611
|
-
} | null | undefined;
|
12612
|
-
loading?: boolean | null | undefined;
|
12613
|
-
} | {
|
12614
10802
|
start: string;
|
12615
10803
|
end: string;
|
12616
10804
|
} | null | undefined>;
|
@@ -12658,13 +10846,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12658
10846
|
path: string;
|
12659
10847
|
originalFilename: string;
|
12660
10848
|
}[] | {
|
12661
|
-
data?: any;
|
12662
|
-
error?: {
|
12663
|
-
message: string;
|
12664
|
-
statusCode: number | null;
|
12665
|
-
} | null | undefined;
|
12666
|
-
loading?: boolean | null | undefined;
|
12667
|
-
} | {
|
12668
10849
|
start: string;
|
12669
10850
|
end: string;
|
12670
10851
|
} | null | undefined> | null | undefined;
|
@@ -12720,13 +10901,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12720
10901
|
path: string;
|
12721
10902
|
originalFilename: string;
|
12722
10903
|
}[] | {
|
12723
|
-
data?: any;
|
12724
|
-
error?: {
|
12725
|
-
message: string;
|
12726
|
-
statusCode: number | null;
|
12727
|
-
} | null | undefined;
|
12728
|
-
loading?: boolean | null | undefined;
|
12729
|
-
} | {
|
12730
10904
|
start: string;
|
12731
10905
|
end: string;
|
12732
10906
|
} | null | undefined>;
|
@@ -12774,13 +10948,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12774
10948
|
path: string;
|
12775
10949
|
originalFilename: string;
|
12776
10950
|
}[] | {
|
12777
|
-
data?: any;
|
12778
|
-
error?: {
|
12779
|
-
message: string;
|
12780
|
-
statusCode: number | null;
|
12781
|
-
} | null | undefined;
|
12782
|
-
loading?: boolean | null | undefined;
|
12783
|
-
} | {
|
12784
10951
|
start: string;
|
12785
10952
|
end: string;
|
12786
10953
|
} | null | undefined> | null | undefined;
|
@@ -12928,33 +11095,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12928
11095
|
firstname: string;
|
12929
11096
|
surname: string;
|
12930
11097
|
middlename?: string | null | undefined;
|
12931
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12932
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
12933
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
12934
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
12935
|
-
message: z.ZodString;
|
12936
|
-
}, "strip", z.ZodTypeAny, {
|
12937
|
-
message: string;
|
12938
|
-
statusCode: number | null;
|
12939
|
-
}, {
|
12940
|
-
message: string;
|
12941
|
-
statusCode: number | null;
|
12942
|
-
}>>>;
|
12943
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
12944
|
-
}, "strip", z.ZodTypeAny, {
|
12945
|
-
data?: any;
|
12946
|
-
error?: {
|
12947
|
-
message: string;
|
12948
|
-
statusCode: number | null;
|
12949
|
-
} | null | undefined;
|
12950
|
-
loading?: boolean | null | undefined;
|
12951
|
-
}, {
|
12952
|
-
data?: any;
|
12953
|
-
error?: {
|
12954
|
-
message: string;
|
12955
|
-
statusCode: number | null;
|
12956
|
-
} | null | undefined;
|
12957
|
-
loading?: boolean | null | undefined;
|
12958
11098
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
12959
11099
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
12960
11100
|
start: z.ZodString;
|
@@ -13090,33 +11230,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13090
11230
|
firstname: string;
|
13091
11231
|
surname: string;
|
13092
11232
|
middlename?: string | null | undefined;
|
13093
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13094
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
13095
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
13096
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
13097
|
-
message: z.ZodString;
|
13098
|
-
}, "strip", z.ZodTypeAny, {
|
13099
|
-
message: string;
|
13100
|
-
statusCode: number | null;
|
13101
|
-
}, {
|
13102
|
-
message: string;
|
13103
|
-
statusCode: number | null;
|
13104
|
-
}>>>;
|
13105
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
13106
|
-
}, "strip", z.ZodTypeAny, {
|
13107
|
-
data?: any;
|
13108
|
-
error?: {
|
13109
|
-
message: string;
|
13110
|
-
statusCode: number | null;
|
13111
|
-
} | null | undefined;
|
13112
|
-
loading?: boolean | null | undefined;
|
13113
|
-
}, {
|
13114
|
-
data?: any;
|
13115
|
-
error?: {
|
13116
|
-
message: string;
|
13117
|
-
statusCode: number | null;
|
13118
|
-
} | null | undefined;
|
13119
|
-
loading?: boolean | null | undefined;
|
13120
11233
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
13121
11234
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
13122
11235
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -13173,13 +11286,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13173
11286
|
path: string;
|
13174
11287
|
originalFilename: string;
|
13175
11288
|
}[] | {
|
13176
|
-
data?: any;
|
13177
|
-
error?: {
|
13178
|
-
message: string;
|
13179
|
-
statusCode: number | null;
|
13180
|
-
} | null | undefined;
|
13181
|
-
loading?: boolean | null | undefined;
|
13182
|
-
} | {
|
13183
11289
|
start: string;
|
13184
11290
|
end: string;
|
13185
11291
|
} | null | undefined>;
|
@@ -13227,13 +11333,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13227
11333
|
path: string;
|
13228
11334
|
originalFilename: string;
|
13229
11335
|
}[] | {
|
13230
|
-
data?: any;
|
13231
|
-
error?: {
|
13232
|
-
message: string;
|
13233
|
-
statusCode: number | null;
|
13234
|
-
} | null | undefined;
|
13235
|
-
loading?: boolean | null | undefined;
|
13236
|
-
} | {
|
13237
11336
|
start: string;
|
13238
11337
|
end: string;
|
13239
11338
|
} | null | undefined> | null | undefined;
|
@@ -13289,13 +11388,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13289
11388
|
path: string;
|
13290
11389
|
originalFilename: string;
|
13291
11390
|
}[] | {
|
13292
|
-
data?: any;
|
13293
|
-
error?: {
|
13294
|
-
message: string;
|
13295
|
-
statusCode: number | null;
|
13296
|
-
} | null | undefined;
|
13297
|
-
loading?: boolean | null | undefined;
|
13298
|
-
} | {
|
13299
11391
|
start: string;
|
13300
11392
|
end: string;
|
13301
11393
|
} | null | undefined>;
|
@@ -13343,13 +11435,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13343
11435
|
path: string;
|
13344
11436
|
originalFilename: string;
|
13345
11437
|
}[] | {
|
13346
|
-
data?: any;
|
13347
|
-
error?: {
|
13348
|
-
message: string;
|
13349
|
-
statusCode: number | null;
|
13350
|
-
} | null | undefined;
|
13351
|
-
loading?: boolean | null | undefined;
|
13352
|
-
} | {
|
13353
11438
|
start: string;
|
13354
11439
|
end: string;
|
13355
11440
|
} | null | undefined> | null | undefined;
|
@@ -13497,33 +11582,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13497
11582
|
firstname: string;
|
13498
11583
|
surname: string;
|
13499
11584
|
middlename?: string | null | undefined;
|
13500
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13501
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
13502
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
13503
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
13504
|
-
message: z.ZodString;
|
13505
|
-
}, "strip", z.ZodTypeAny, {
|
13506
|
-
message: string;
|
13507
|
-
statusCode: number | null;
|
13508
|
-
}, {
|
13509
|
-
message: string;
|
13510
|
-
statusCode: number | null;
|
13511
|
-
}>>>;
|
13512
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
13513
|
-
}, "strip", z.ZodTypeAny, {
|
13514
|
-
data?: any;
|
13515
|
-
error?: {
|
13516
|
-
message: string;
|
13517
|
-
statusCode: number | null;
|
13518
|
-
} | null | undefined;
|
13519
|
-
loading?: boolean | null | undefined;
|
13520
|
-
}, {
|
13521
|
-
data?: any;
|
13522
|
-
error?: {
|
13523
|
-
message: string;
|
13524
|
-
statusCode: number | null;
|
13525
|
-
} | null | undefined;
|
13526
|
-
loading?: boolean | null | undefined;
|
13527
11585
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
13528
11586
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
13529
11587
|
start: z.ZodString;
|
@@ -13659,33 +11717,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13659
11717
|
firstname: string;
|
13660
11718
|
surname: string;
|
13661
11719
|
middlename?: string | null | undefined;
|
13662
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13663
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
13664
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
13665
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
13666
|
-
message: z.ZodString;
|
13667
|
-
}, "strip", z.ZodTypeAny, {
|
13668
|
-
message: string;
|
13669
|
-
statusCode: number | null;
|
13670
|
-
}, {
|
13671
|
-
message: string;
|
13672
|
-
statusCode: number | null;
|
13673
|
-
}>>>;
|
13674
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
13675
|
-
}, "strip", z.ZodTypeAny, {
|
13676
|
-
data?: any;
|
13677
|
-
error?: {
|
13678
|
-
message: string;
|
13679
|
-
statusCode: number | null;
|
13680
|
-
} | null | undefined;
|
13681
|
-
loading?: boolean | null | undefined;
|
13682
|
-
}, {
|
13683
|
-
data?: any;
|
13684
|
-
error?: {
|
13685
|
-
message: string;
|
13686
|
-
statusCode: number | null;
|
13687
|
-
} | null | undefined;
|
13688
|
-
loading?: boolean | null | undefined;
|
13689
11720
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
13690
11721
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
13691
11722
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -13756,13 +11787,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13756
11787
|
path: string;
|
13757
11788
|
originalFilename: string;
|
13758
11789
|
}[] | {
|
13759
|
-
data?: any;
|
13760
|
-
error?: {
|
13761
|
-
message: string;
|
13762
|
-
statusCode: number | null;
|
13763
|
-
} | null | undefined;
|
13764
|
-
loading?: boolean | null | undefined;
|
13765
|
-
} | {
|
13766
11790
|
start: string;
|
13767
11791
|
end: string;
|
13768
11792
|
} | null | undefined>;
|
@@ -13810,13 +11834,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13810
11834
|
path: string;
|
13811
11835
|
originalFilename: string;
|
13812
11836
|
}[] | {
|
13813
|
-
data?: any;
|
13814
|
-
error?: {
|
13815
|
-
message: string;
|
13816
|
-
statusCode: number | null;
|
13817
|
-
} | null | undefined;
|
13818
|
-
loading?: boolean | null | undefined;
|
13819
|
-
} | {
|
13820
11837
|
start: string;
|
13821
11838
|
end: string;
|
13822
11839
|
} | null | undefined> | null | undefined;
|
@@ -13876,13 +11893,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13876
11893
|
path: string;
|
13877
11894
|
originalFilename: string;
|
13878
11895
|
}[] | {
|
13879
|
-
data?: any;
|
13880
|
-
error?: {
|
13881
|
-
message: string;
|
13882
|
-
statusCode: number | null;
|
13883
|
-
} | null | undefined;
|
13884
|
-
loading?: boolean | null | undefined;
|
13885
|
-
} | {
|
13886
11896
|
start: string;
|
13887
11897
|
end: string;
|
13888
11898
|
} | null | undefined>;
|
@@ -13930,13 +11940,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13930
11940
|
path: string;
|
13931
11941
|
originalFilename: string;
|
13932
11942
|
}[] | {
|
13933
|
-
data?: any;
|
13934
|
-
error?: {
|
13935
|
-
message: string;
|
13936
|
-
statusCode: number | null;
|
13937
|
-
} | null | undefined;
|
13938
|
-
loading?: boolean | null | undefined;
|
13939
|
-
} | {
|
13940
11943
|
start: string;
|
13941
11944
|
end: string;
|
13942
11945
|
} | null | undefined> | null | undefined;
|
@@ -14084,33 +12087,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14084
12087
|
firstname: string;
|
14085
12088
|
surname: string;
|
14086
12089
|
middlename?: string | null | undefined;
|
14087
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
14088
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
14089
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
14090
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
14091
|
-
message: z.ZodString;
|
14092
|
-
}, "strip", z.ZodTypeAny, {
|
14093
|
-
message: string;
|
14094
|
-
statusCode: number | null;
|
14095
|
-
}, {
|
14096
|
-
message: string;
|
14097
|
-
statusCode: number | null;
|
14098
|
-
}>>>;
|
14099
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
14100
|
-
}, "strip", z.ZodTypeAny, {
|
14101
|
-
data?: any;
|
14102
|
-
error?: {
|
14103
|
-
message: string;
|
14104
|
-
statusCode: number | null;
|
14105
|
-
} | null | undefined;
|
14106
|
-
loading?: boolean | null | undefined;
|
14107
|
-
}, {
|
14108
|
-
data?: any;
|
14109
|
-
error?: {
|
14110
|
-
message: string;
|
14111
|
-
statusCode: number | null;
|
14112
|
-
} | null | undefined;
|
14113
|
-
loading?: boolean | null | undefined;
|
14114
12090
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
14115
12091
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
14116
12092
|
start: z.ZodString;
|
@@ -14246,33 +12222,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14246
12222
|
firstname: string;
|
14247
12223
|
surname: string;
|
14248
12224
|
middlename?: string | null | undefined;
|
14249
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
14250
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
14251
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
14252
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
14253
|
-
message: z.ZodString;
|
14254
|
-
}, "strip", z.ZodTypeAny, {
|
14255
|
-
message: string;
|
14256
|
-
statusCode: number | null;
|
14257
|
-
}, {
|
14258
|
-
message: string;
|
14259
|
-
statusCode: number | null;
|
14260
|
-
}>>>;
|
14261
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
14262
|
-
}, "strip", z.ZodTypeAny, {
|
14263
|
-
data?: any;
|
14264
|
-
error?: {
|
14265
|
-
message: string;
|
14266
|
-
statusCode: number | null;
|
14267
|
-
} | null | undefined;
|
14268
|
-
loading?: boolean | null | undefined;
|
14269
|
-
}, {
|
14270
|
-
data?: any;
|
14271
|
-
error?: {
|
14272
|
-
message: string;
|
14273
|
-
statusCode: number | null;
|
14274
|
-
} | null | undefined;
|
14275
|
-
loading?: boolean | null | undefined;
|
14276
12225
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
14277
12226
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
14278
12227
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -14329,13 +12278,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14329
12278
|
path: string;
|
14330
12279
|
originalFilename: string;
|
14331
12280
|
}[] | {
|
14332
|
-
data?: any;
|
14333
|
-
error?: {
|
14334
|
-
message: string;
|
14335
|
-
statusCode: number | null;
|
14336
|
-
} | null | undefined;
|
14337
|
-
loading?: boolean | null | undefined;
|
14338
|
-
} | {
|
14339
12281
|
start: string;
|
14340
12282
|
end: string;
|
14341
12283
|
} | null | undefined>;
|
@@ -14383,13 +12325,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14383
12325
|
path: string;
|
14384
12326
|
originalFilename: string;
|
14385
12327
|
}[] | {
|
14386
|
-
data?: any;
|
14387
|
-
error?: {
|
14388
|
-
message: string;
|
14389
|
-
statusCode: number | null;
|
14390
|
-
} | null | undefined;
|
14391
|
-
loading?: boolean | null | undefined;
|
14392
|
-
} | {
|
14393
12328
|
start: string;
|
14394
12329
|
end: string;
|
14395
12330
|
} | null | undefined> | null | undefined;
|
@@ -14445,13 +12380,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14445
12380
|
path: string;
|
14446
12381
|
originalFilename: string;
|
14447
12382
|
}[] | {
|
14448
|
-
data?: any;
|
14449
|
-
error?: {
|
14450
|
-
message: string;
|
14451
|
-
statusCode: number | null;
|
14452
|
-
} | null | undefined;
|
14453
|
-
loading?: boolean | null | undefined;
|
14454
|
-
} | {
|
14455
12383
|
start: string;
|
14456
12384
|
end: string;
|
14457
12385
|
} | null | undefined>;
|
@@ -14499,13 +12427,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14499
12427
|
path: string;
|
14500
12428
|
originalFilename: string;
|
14501
12429
|
}[] | {
|
14502
|
-
data?: any;
|
14503
|
-
error?: {
|
14504
|
-
message: string;
|
14505
|
-
statusCode: number | null;
|
14506
|
-
} | null | undefined;
|
14507
|
-
loading?: boolean | null | undefined;
|
14508
|
-
} | {
|
14509
12430
|
start: string;
|
14510
12431
|
end: string;
|
14511
12432
|
} | null | undefined> | null | undefined;
|
@@ -14653,33 +12574,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14653
12574
|
firstname: string;
|
14654
12575
|
surname: string;
|
14655
12576
|
middlename?: string | null | undefined;
|
14656
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
14657
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
14658
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
14659
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
14660
|
-
message: z.ZodString;
|
14661
|
-
}, "strip", z.ZodTypeAny, {
|
14662
|
-
message: string;
|
14663
|
-
statusCode: number | null;
|
14664
|
-
}, {
|
14665
|
-
message: string;
|
14666
|
-
statusCode: number | null;
|
14667
|
-
}>>>;
|
14668
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
14669
|
-
}, "strip", z.ZodTypeAny, {
|
14670
|
-
data?: any;
|
14671
|
-
error?: {
|
14672
|
-
message: string;
|
14673
|
-
statusCode: number | null;
|
14674
|
-
} | null | undefined;
|
14675
|
-
loading?: boolean | null | undefined;
|
14676
|
-
}, {
|
14677
|
-
data?: any;
|
14678
|
-
error?: {
|
14679
|
-
message: string;
|
14680
|
-
statusCode: number | null;
|
14681
|
-
} | null | undefined;
|
14682
|
-
loading?: boolean | null | undefined;
|
14683
12577
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
14684
12578
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
14685
12579
|
start: z.ZodString;
|
@@ -14815,33 +12709,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14815
12709
|
firstname: string;
|
14816
12710
|
surname: string;
|
14817
12711
|
middlename?: string | null | undefined;
|
14818
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
14819
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
14820
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
14821
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
14822
|
-
message: z.ZodString;
|
14823
|
-
}, "strip", z.ZodTypeAny, {
|
14824
|
-
message: string;
|
14825
|
-
statusCode: number | null;
|
14826
|
-
}, {
|
14827
|
-
message: string;
|
14828
|
-
statusCode: number | null;
|
14829
|
-
}>>>;
|
14830
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
14831
|
-
}, "strip", z.ZodTypeAny, {
|
14832
|
-
data?: any;
|
14833
|
-
error?: {
|
14834
|
-
message: string;
|
14835
|
-
statusCode: number | null;
|
14836
|
-
} | null | undefined;
|
14837
|
-
loading?: boolean | null | undefined;
|
14838
|
-
}, {
|
14839
|
-
data?: any;
|
14840
|
-
error?: {
|
14841
|
-
message: string;
|
14842
|
-
statusCode: number | null;
|
14843
|
-
} | null | undefined;
|
14844
|
-
loading?: boolean | null | undefined;
|
14845
12712
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
14846
12713
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
14847
12714
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -14912,13 +12779,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14912
12779
|
path: string;
|
14913
12780
|
originalFilename: string;
|
14914
12781
|
}[] | {
|
14915
|
-
data?: any;
|
14916
|
-
error?: {
|
14917
|
-
message: string;
|
14918
|
-
statusCode: number | null;
|
14919
|
-
} | null | undefined;
|
14920
|
-
loading?: boolean | null | undefined;
|
14921
|
-
} | {
|
14922
12782
|
start: string;
|
14923
12783
|
end: string;
|
14924
12784
|
} | null | undefined>;
|
@@ -14966,13 +12826,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14966
12826
|
path: string;
|
14967
12827
|
originalFilename: string;
|
14968
12828
|
}[] | {
|
14969
|
-
data?: any;
|
14970
|
-
error?: {
|
14971
|
-
message: string;
|
14972
|
-
statusCode: number | null;
|
14973
|
-
} | null | undefined;
|
14974
|
-
loading?: boolean | null | undefined;
|
14975
|
-
} | {
|
14976
12829
|
start: string;
|
14977
12830
|
end: string;
|
14978
12831
|
} | null | undefined> | null | undefined;
|
@@ -15032,13 +12885,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15032
12885
|
path: string;
|
15033
12886
|
originalFilename: string;
|
15034
12887
|
}[] | {
|
15035
|
-
data?: any;
|
15036
|
-
error?: {
|
15037
|
-
message: string;
|
15038
|
-
statusCode: number | null;
|
15039
|
-
} | null | undefined;
|
15040
|
-
loading?: boolean | null | undefined;
|
15041
|
-
} | {
|
15042
12888
|
start: string;
|
15043
12889
|
end: string;
|
15044
12890
|
} | null | undefined>;
|
@@ -15086,13 +12932,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15086
12932
|
path: string;
|
15087
12933
|
originalFilename: string;
|
15088
12934
|
}[] | {
|
15089
|
-
data?: any;
|
15090
|
-
error?: {
|
15091
|
-
message: string;
|
15092
|
-
statusCode: number | null;
|
15093
|
-
} | null | undefined;
|
15094
|
-
loading?: boolean | null | undefined;
|
15095
|
-
} | {
|
15096
12935
|
start: string;
|
15097
12936
|
end: string;
|
15098
12937
|
} | null | undefined> | null | undefined;
|
@@ -15240,33 +13079,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15240
13079
|
firstname: string;
|
15241
13080
|
surname: string;
|
15242
13081
|
middlename?: string | null | undefined;
|
15243
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
15244
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
15245
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
15246
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
15247
|
-
message: z.ZodString;
|
15248
|
-
}, "strip", z.ZodTypeAny, {
|
15249
|
-
message: string;
|
15250
|
-
statusCode: number | null;
|
15251
|
-
}, {
|
15252
|
-
message: string;
|
15253
|
-
statusCode: number | null;
|
15254
|
-
}>>>;
|
15255
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
15256
|
-
}, "strip", z.ZodTypeAny, {
|
15257
|
-
data?: any;
|
15258
|
-
error?: {
|
15259
|
-
message: string;
|
15260
|
-
statusCode: number | null;
|
15261
|
-
} | null | undefined;
|
15262
|
-
loading?: boolean | null | undefined;
|
15263
|
-
}, {
|
15264
|
-
data?: any;
|
15265
|
-
error?: {
|
15266
|
-
message: string;
|
15267
|
-
statusCode: number | null;
|
15268
|
-
} | null | undefined;
|
15269
|
-
loading?: boolean | null | undefined;
|
15270
13082
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
15271
13083
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
15272
13084
|
start: z.ZodString;
|
@@ -15402,33 +13214,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15402
13214
|
firstname: string;
|
15403
13215
|
surname: string;
|
15404
13216
|
middlename?: string | null | undefined;
|
15405
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
15406
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
15407
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
15408
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
15409
|
-
message: z.ZodString;
|
15410
|
-
}, "strip", z.ZodTypeAny, {
|
15411
|
-
message: string;
|
15412
|
-
statusCode: number | null;
|
15413
|
-
}, {
|
15414
|
-
message: string;
|
15415
|
-
statusCode: number | null;
|
15416
|
-
}>>>;
|
15417
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
15418
|
-
}, "strip", z.ZodTypeAny, {
|
15419
|
-
data?: any;
|
15420
|
-
error?: {
|
15421
|
-
message: string;
|
15422
|
-
statusCode: number | null;
|
15423
|
-
} | null | undefined;
|
15424
|
-
loading?: boolean | null | undefined;
|
15425
|
-
}, {
|
15426
|
-
data?: any;
|
15427
|
-
error?: {
|
15428
|
-
message: string;
|
15429
|
-
statusCode: number | null;
|
15430
|
-
} | null | undefined;
|
15431
|
-
loading?: boolean | null | undefined;
|
15432
13217
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
15433
13218
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
15434
13219
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -15485,13 +13270,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15485
13270
|
path: string;
|
15486
13271
|
originalFilename: string;
|
15487
13272
|
}[] | {
|
15488
|
-
data?: any;
|
15489
|
-
error?: {
|
15490
|
-
message: string;
|
15491
|
-
statusCode: number | null;
|
15492
|
-
} | null | undefined;
|
15493
|
-
loading?: boolean | null | undefined;
|
15494
|
-
} | {
|
15495
13273
|
start: string;
|
15496
13274
|
end: string;
|
15497
13275
|
} | null | undefined>;
|
@@ -15539,13 +13317,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15539
13317
|
path: string;
|
15540
13318
|
originalFilename: string;
|
15541
13319
|
}[] | {
|
15542
|
-
data?: any;
|
15543
|
-
error?: {
|
15544
|
-
message: string;
|
15545
|
-
statusCode: number | null;
|
15546
|
-
} | null | undefined;
|
15547
|
-
loading?: boolean | null | undefined;
|
15548
|
-
} | {
|
15549
13320
|
start: string;
|
15550
13321
|
end: string;
|
15551
13322
|
} | null | undefined> | null | undefined;
|
@@ -15601,13 +13372,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15601
13372
|
path: string;
|
15602
13373
|
originalFilename: string;
|
15603
13374
|
}[] | {
|
15604
|
-
data?: any;
|
15605
|
-
error?: {
|
15606
|
-
message: string;
|
15607
|
-
statusCode: number | null;
|
15608
|
-
} | null | undefined;
|
15609
|
-
loading?: boolean | null | undefined;
|
15610
|
-
} | {
|
15611
13375
|
start: string;
|
15612
13376
|
end: string;
|
15613
13377
|
} | null | undefined>;
|
@@ -15655,13 +13419,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15655
13419
|
path: string;
|
15656
13420
|
originalFilename: string;
|
15657
13421
|
}[] | {
|
15658
|
-
data?: any;
|
15659
|
-
error?: {
|
15660
|
-
message: string;
|
15661
|
-
statusCode: number | null;
|
15662
|
-
} | null | undefined;
|
15663
|
-
loading?: boolean | null | undefined;
|
15664
|
-
} | {
|
15665
13422
|
start: string;
|
15666
13423
|
end: string;
|
15667
13424
|
} | null | undefined> | null | undefined;
|
@@ -15809,33 +13566,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15809
13566
|
firstname: string;
|
15810
13567
|
surname: string;
|
15811
13568
|
middlename?: string | null | undefined;
|
15812
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
15813
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
15814
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
15815
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
15816
|
-
message: z.ZodString;
|
15817
|
-
}, "strip", z.ZodTypeAny, {
|
15818
|
-
message: string;
|
15819
|
-
statusCode: number | null;
|
15820
|
-
}, {
|
15821
|
-
message: string;
|
15822
|
-
statusCode: number | null;
|
15823
|
-
}>>>;
|
15824
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
15825
|
-
}, "strip", z.ZodTypeAny, {
|
15826
|
-
data?: any;
|
15827
|
-
error?: {
|
15828
|
-
message: string;
|
15829
|
-
statusCode: number | null;
|
15830
|
-
} | null | undefined;
|
15831
|
-
loading?: boolean | null | undefined;
|
15832
|
-
}, {
|
15833
|
-
data?: any;
|
15834
|
-
error?: {
|
15835
|
-
message: string;
|
15836
|
-
statusCode: number | null;
|
15837
|
-
} | null | undefined;
|
15838
|
-
loading?: boolean | null | undefined;
|
15839
13569
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
15840
13570
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
15841
13571
|
start: z.ZodString;
|
@@ -15971,33 +13701,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15971
13701
|
firstname: string;
|
15972
13702
|
surname: string;
|
15973
13703
|
middlename?: string | null | undefined;
|
15974
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
15975
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
15976
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
15977
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
15978
|
-
message: z.ZodString;
|
15979
|
-
}, "strip", z.ZodTypeAny, {
|
15980
|
-
message: string;
|
15981
|
-
statusCode: number | null;
|
15982
|
-
}, {
|
15983
|
-
message: string;
|
15984
|
-
statusCode: number | null;
|
15985
|
-
}>>>;
|
15986
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
15987
|
-
}, "strip", z.ZodTypeAny, {
|
15988
|
-
data?: any;
|
15989
|
-
error?: {
|
15990
|
-
message: string;
|
15991
|
-
statusCode: number | null;
|
15992
|
-
} | null | undefined;
|
15993
|
-
loading?: boolean | null | undefined;
|
15994
|
-
}, {
|
15995
|
-
data?: any;
|
15996
|
-
error?: {
|
15997
|
-
message: string;
|
15998
|
-
statusCode: number | null;
|
15999
|
-
} | null | undefined;
|
16000
|
-
loading?: boolean | null | undefined;
|
16001
13704
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
16002
13705
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
16003
13706
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -16055,13 +13758,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16055
13758
|
path: string;
|
16056
13759
|
originalFilename: string;
|
16057
13760
|
}[] | {
|
16058
|
-
data?: any;
|
16059
|
-
error?: {
|
16060
|
-
message: string;
|
16061
|
-
statusCode: number | null;
|
16062
|
-
} | null | undefined;
|
16063
|
-
loading?: boolean | null | undefined;
|
16064
|
-
} | {
|
16065
13761
|
start: string;
|
16066
13762
|
end: string;
|
16067
13763
|
} | null | undefined>;
|
@@ -16109,13 +13805,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16109
13805
|
path: string;
|
16110
13806
|
originalFilename: string;
|
16111
13807
|
}[] | {
|
16112
|
-
data?: any;
|
16113
|
-
error?: {
|
16114
|
-
message: string;
|
16115
|
-
statusCode: number | null;
|
16116
|
-
} | null | undefined;
|
16117
|
-
loading?: boolean | null | undefined;
|
16118
|
-
} | {
|
16119
13808
|
start: string;
|
16120
13809
|
end: string;
|
16121
13810
|
} | null | undefined> | null | undefined;
|
@@ -16172,13 +13861,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16172
13861
|
path: string;
|
16173
13862
|
originalFilename: string;
|
16174
13863
|
}[] | {
|
16175
|
-
data?: any;
|
16176
|
-
error?: {
|
16177
|
-
message: string;
|
16178
|
-
statusCode: number | null;
|
16179
|
-
} | null | undefined;
|
16180
|
-
loading?: boolean | null | undefined;
|
16181
|
-
} | {
|
16182
13864
|
start: string;
|
16183
13865
|
end: string;
|
16184
13866
|
} | null | undefined>;
|
@@ -16226,13 +13908,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16226
13908
|
path: string;
|
16227
13909
|
originalFilename: string;
|
16228
13910
|
}[] | {
|
16229
|
-
data?: any;
|
16230
|
-
error?: {
|
16231
|
-
message: string;
|
16232
|
-
statusCode: number | null;
|
16233
|
-
} | null | undefined;
|
16234
|
-
loading?: boolean | null | undefined;
|
16235
|
-
} | {
|
16236
13911
|
start: string;
|
16237
13912
|
end: string;
|
16238
13913
|
} | null | undefined> | null | undefined;
|
@@ -16381,33 +14056,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16381
14056
|
firstname: string;
|
16382
14057
|
surname: string;
|
16383
14058
|
middlename?: string | null | undefined;
|
16384
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
16385
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
16386
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
16387
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
16388
|
-
message: z.ZodString;
|
16389
|
-
}, "strip", z.ZodTypeAny, {
|
16390
|
-
message: string;
|
16391
|
-
statusCode: number | null;
|
16392
|
-
}, {
|
16393
|
-
message: string;
|
16394
|
-
statusCode: number | null;
|
16395
|
-
}>>>;
|
16396
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
16397
|
-
}, "strip", z.ZodTypeAny, {
|
16398
|
-
data?: any;
|
16399
|
-
error?: {
|
16400
|
-
message: string;
|
16401
|
-
statusCode: number | null;
|
16402
|
-
} | null | undefined;
|
16403
|
-
loading?: boolean | null | undefined;
|
16404
|
-
}, {
|
16405
|
-
data?: any;
|
16406
|
-
error?: {
|
16407
|
-
message: string;
|
16408
|
-
statusCode: number | null;
|
16409
|
-
} | null | undefined;
|
16410
|
-
loading?: boolean | null | undefined;
|
16411
14059
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
16412
14060
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
16413
14061
|
start: z.ZodString;
|
@@ -16543,33 +14191,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16543
14191
|
firstname: string;
|
16544
14192
|
surname: string;
|
16545
14193
|
middlename?: string | null | undefined;
|
16546
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
16547
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
16548
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
16549
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
16550
|
-
message: z.ZodString;
|
16551
|
-
}, "strip", z.ZodTypeAny, {
|
16552
|
-
message: string;
|
16553
|
-
statusCode: number | null;
|
16554
|
-
}, {
|
16555
|
-
message: string;
|
16556
|
-
statusCode: number | null;
|
16557
|
-
}>>>;
|
16558
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
16559
|
-
}, "strip", z.ZodTypeAny, {
|
16560
|
-
data?: any;
|
16561
|
-
error?: {
|
16562
|
-
message: string;
|
16563
|
-
statusCode: number | null;
|
16564
|
-
} | null | undefined;
|
16565
|
-
loading?: boolean | null | undefined;
|
16566
|
-
}, {
|
16567
|
-
data?: any;
|
16568
|
-
error?: {
|
16569
|
-
message: string;
|
16570
|
-
statusCode: number | null;
|
16571
|
-
} | null | undefined;
|
16572
|
-
loading?: boolean | null | undefined;
|
16573
14194
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
16574
14195
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
16575
14196
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -16626,13 +14247,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16626
14247
|
path: string;
|
16627
14248
|
originalFilename: string;
|
16628
14249
|
}[] | {
|
16629
|
-
data?: any;
|
16630
|
-
error?: {
|
16631
|
-
message: string;
|
16632
|
-
statusCode: number | null;
|
16633
|
-
} | null | undefined;
|
16634
|
-
loading?: boolean | null | undefined;
|
16635
|
-
} | {
|
16636
14250
|
start: string;
|
16637
14251
|
end: string;
|
16638
14252
|
} | null | undefined>;
|
@@ -16680,13 +14294,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16680
14294
|
path: string;
|
16681
14295
|
originalFilename: string;
|
16682
14296
|
}[] | {
|
16683
|
-
data?: any;
|
16684
|
-
error?: {
|
16685
|
-
message: string;
|
16686
|
-
statusCode: number | null;
|
16687
|
-
} | null | undefined;
|
16688
|
-
loading?: boolean | null | undefined;
|
16689
|
-
} | {
|
16690
14297
|
start: string;
|
16691
14298
|
end: string;
|
16692
14299
|
} | null | undefined> | null | undefined;
|
@@ -16742,13 +14349,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16742
14349
|
path: string;
|
16743
14350
|
originalFilename: string;
|
16744
14351
|
}[] | {
|
16745
|
-
data?: any;
|
16746
|
-
error?: {
|
16747
|
-
message: string;
|
16748
|
-
statusCode: number | null;
|
16749
|
-
} | null | undefined;
|
16750
|
-
loading?: boolean | null | undefined;
|
16751
|
-
} | {
|
16752
14352
|
start: string;
|
16753
14353
|
end: string;
|
16754
14354
|
} | null | undefined>;
|
@@ -16796,13 +14396,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16796
14396
|
path: string;
|
16797
14397
|
originalFilename: string;
|
16798
14398
|
}[] | {
|
16799
|
-
data?: any;
|
16800
|
-
error?: {
|
16801
|
-
message: string;
|
16802
|
-
statusCode: number | null;
|
16803
|
-
} | null | undefined;
|
16804
|
-
loading?: boolean | null | undefined;
|
16805
|
-
} | {
|
16806
14399
|
start: string;
|
16807
14400
|
end: string;
|
16808
14401
|
} | null | undefined> | null | undefined;
|
@@ -16950,33 +14543,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16950
14543
|
firstname: string;
|
16951
14544
|
surname: string;
|
16952
14545
|
middlename?: string | null | undefined;
|
16953
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
16954
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
16955
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
16956
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
16957
|
-
message: z.ZodString;
|
16958
|
-
}, "strip", z.ZodTypeAny, {
|
16959
|
-
message: string;
|
16960
|
-
statusCode: number | null;
|
16961
|
-
}, {
|
16962
|
-
message: string;
|
16963
|
-
statusCode: number | null;
|
16964
|
-
}>>>;
|
16965
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
16966
|
-
}, "strip", z.ZodTypeAny, {
|
16967
|
-
data?: any;
|
16968
|
-
error?: {
|
16969
|
-
message: string;
|
16970
|
-
statusCode: number | null;
|
16971
|
-
} | null | undefined;
|
16972
|
-
loading?: boolean | null | undefined;
|
16973
|
-
}, {
|
16974
|
-
data?: any;
|
16975
|
-
error?: {
|
16976
|
-
message: string;
|
16977
|
-
statusCode: number | null;
|
16978
|
-
} | null | undefined;
|
16979
|
-
loading?: boolean | null | undefined;
|
16980
14546
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
16981
14547
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
16982
14548
|
start: z.ZodString;
|
@@ -17112,33 +14678,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17112
14678
|
firstname: string;
|
17113
14679
|
surname: string;
|
17114
14680
|
middlename?: string | null | undefined;
|
17115
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
17116
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
17117
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
17118
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
17119
|
-
message: z.ZodString;
|
17120
|
-
}, "strip", z.ZodTypeAny, {
|
17121
|
-
message: string;
|
17122
|
-
statusCode: number | null;
|
17123
|
-
}, {
|
17124
|
-
message: string;
|
17125
|
-
statusCode: number | null;
|
17126
|
-
}>>>;
|
17127
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
17128
|
-
}, "strip", z.ZodTypeAny, {
|
17129
|
-
data?: any;
|
17130
|
-
error?: {
|
17131
|
-
message: string;
|
17132
|
-
statusCode: number | null;
|
17133
|
-
} | null | undefined;
|
17134
|
-
loading?: boolean | null | undefined;
|
17135
|
-
}, {
|
17136
|
-
data?: any;
|
17137
|
-
error?: {
|
17138
|
-
message: string;
|
17139
|
-
statusCode: number | null;
|
17140
|
-
} | null | undefined;
|
17141
|
-
loading?: boolean | null | undefined;
|
17142
14681
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
17143
14682
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
17144
14683
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -17196,13 +14735,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17196
14735
|
path: string;
|
17197
14736
|
originalFilename: string;
|
17198
14737
|
}[] | {
|
17199
|
-
data?: any;
|
17200
|
-
error?: {
|
17201
|
-
message: string;
|
17202
|
-
statusCode: number | null;
|
17203
|
-
} | null | undefined;
|
17204
|
-
loading?: boolean | null | undefined;
|
17205
|
-
} | {
|
17206
14738
|
start: string;
|
17207
14739
|
end: string;
|
17208
14740
|
} | null | undefined>;
|
@@ -17251,13 +14783,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17251
14783
|
path: string;
|
17252
14784
|
originalFilename: string;
|
17253
14785
|
}[] | {
|
17254
|
-
data?: any;
|
17255
|
-
error?: {
|
17256
|
-
message: string;
|
17257
|
-
statusCode: number | null;
|
17258
|
-
} | null | undefined;
|
17259
|
-
loading?: boolean | null | undefined;
|
17260
|
-
} | {
|
17261
14786
|
start: string;
|
17262
14787
|
end: string;
|
17263
14788
|
} | null | undefined> | null | undefined;
|
@@ -17313,13 +14838,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17313
14838
|
path: string;
|
17314
14839
|
originalFilename: string;
|
17315
14840
|
}[] | {
|
17316
|
-
data?: any;
|
17317
|
-
error?: {
|
17318
|
-
message: string;
|
17319
|
-
statusCode: number | null;
|
17320
|
-
} | null | undefined;
|
17321
|
-
loading?: boolean | null | undefined;
|
17322
|
-
} | {
|
17323
14841
|
start: string;
|
17324
14842
|
end: string;
|
17325
14843
|
} | null | undefined>;
|
@@ -17368,13 +14886,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17368
14886
|
path: string;
|
17369
14887
|
originalFilename: string;
|
17370
14888
|
}[] | {
|
17371
|
-
data?: any;
|
17372
|
-
error?: {
|
17373
|
-
message: string;
|
17374
|
-
statusCode: number | null;
|
17375
|
-
} | null | undefined;
|
17376
|
-
loading?: boolean | null | undefined;
|
17377
|
-
} | {
|
17378
14889
|
start: string;
|
17379
14890
|
end: string;
|
17380
14891
|
} | null | undefined> | null | undefined;
|
@@ -17522,33 +15033,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17522
15033
|
firstname: string;
|
17523
15034
|
surname: string;
|
17524
15035
|
middlename?: string | null | undefined;
|
17525
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
17526
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
17527
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
17528
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
17529
|
-
message: z.ZodString;
|
17530
|
-
}, "strip", z.ZodTypeAny, {
|
17531
|
-
message: string;
|
17532
|
-
statusCode: number | null;
|
17533
|
-
}, {
|
17534
|
-
message: string;
|
17535
|
-
statusCode: number | null;
|
17536
|
-
}>>>;
|
17537
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
17538
|
-
}, "strip", z.ZodTypeAny, {
|
17539
|
-
data?: any;
|
17540
|
-
error?: {
|
17541
|
-
message: string;
|
17542
|
-
statusCode: number | null;
|
17543
|
-
} | null | undefined;
|
17544
|
-
loading?: boolean | null | undefined;
|
17545
|
-
}, {
|
17546
|
-
data?: any;
|
17547
|
-
error?: {
|
17548
|
-
message: string;
|
17549
|
-
statusCode: number | null;
|
17550
|
-
} | null | undefined;
|
17551
|
-
loading?: boolean | null | undefined;
|
17552
15036
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
17553
15037
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
17554
15038
|
start: z.ZodString;
|
@@ -17684,33 +15168,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17684
15168
|
firstname: string;
|
17685
15169
|
surname: string;
|
17686
15170
|
middlename?: string | null | undefined;
|
17687
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
17688
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
17689
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
17690
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
17691
|
-
message: z.ZodString;
|
17692
|
-
}, "strip", z.ZodTypeAny, {
|
17693
|
-
message: string;
|
17694
|
-
statusCode: number | null;
|
17695
|
-
}, {
|
17696
|
-
message: string;
|
17697
|
-
statusCode: number | null;
|
17698
|
-
}>>>;
|
17699
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
17700
|
-
}, "strip", z.ZodTypeAny, {
|
17701
|
-
data?: any;
|
17702
|
-
error?: {
|
17703
|
-
message: string;
|
17704
|
-
statusCode: number | null;
|
17705
|
-
} | null | undefined;
|
17706
|
-
loading?: boolean | null | undefined;
|
17707
|
-
}, {
|
17708
|
-
data?: any;
|
17709
|
-
error?: {
|
17710
|
-
message: string;
|
17711
|
-
statusCode: number | null;
|
17712
|
-
} | null | undefined;
|
17713
|
-
loading?: boolean | null | undefined;
|
17714
15171
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
17715
15172
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
17716
15173
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -17767,13 +15224,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17767
15224
|
path: string;
|
17768
15225
|
originalFilename: string;
|
17769
15226
|
}[] | {
|
17770
|
-
data?: any;
|
17771
|
-
error?: {
|
17772
|
-
message: string;
|
17773
|
-
statusCode: number | null;
|
17774
|
-
} | null | undefined;
|
17775
|
-
loading?: boolean | null | undefined;
|
17776
|
-
} | {
|
17777
15227
|
start: string;
|
17778
15228
|
end: string;
|
17779
15229
|
} | null | undefined>;
|
@@ -17821,13 +15271,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17821
15271
|
path: string;
|
17822
15272
|
originalFilename: string;
|
17823
15273
|
}[] | {
|
17824
|
-
data?: any;
|
17825
|
-
error?: {
|
17826
|
-
message: string;
|
17827
|
-
statusCode: number | null;
|
17828
|
-
} | null | undefined;
|
17829
|
-
loading?: boolean | null | undefined;
|
17830
|
-
} | {
|
17831
15274
|
start: string;
|
17832
15275
|
end: string;
|
17833
15276
|
} | null | undefined> | null | undefined;
|
@@ -17883,13 +15326,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17883
15326
|
path: string;
|
17884
15327
|
originalFilename: string;
|
17885
15328
|
}[] | {
|
17886
|
-
data?: any;
|
17887
|
-
error?: {
|
17888
|
-
message: string;
|
17889
|
-
statusCode: number | null;
|
17890
|
-
} | null | undefined;
|
17891
|
-
loading?: boolean | null | undefined;
|
17892
|
-
} | {
|
17893
15329
|
start: string;
|
17894
15330
|
end: string;
|
17895
15331
|
} | null | undefined>;
|
@@ -17937,13 +15373,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17937
15373
|
path: string;
|
17938
15374
|
originalFilename: string;
|
17939
15375
|
}[] | {
|
17940
|
-
data?: any;
|
17941
|
-
error?: {
|
17942
|
-
message: string;
|
17943
|
-
statusCode: number | null;
|
17944
|
-
} | null | undefined;
|
17945
|
-
loading?: boolean | null | undefined;
|
17946
|
-
} | {
|
17947
15376
|
start: string;
|
17948
15377
|
end: string;
|
17949
15378
|
} | null | undefined> | null | undefined;
|
@@ -18091,33 +15520,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
18091
15520
|
firstname: string;
|
18092
15521
|
surname: string;
|
18093
15522
|
middlename?: string | null | undefined;
|
18094
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
18095
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
18096
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
18097
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
18098
|
-
message: z.ZodString;
|
18099
|
-
}, "strip", z.ZodTypeAny, {
|
18100
|
-
message: string;
|
18101
|
-
statusCode: number | null;
|
18102
|
-
}, {
|
18103
|
-
message: string;
|
18104
|
-
statusCode: number | null;
|
18105
|
-
}>>>;
|
18106
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
18107
|
-
}, "strip", z.ZodTypeAny, {
|
18108
|
-
data?: any;
|
18109
|
-
error?: {
|
18110
|
-
message: string;
|
18111
|
-
statusCode: number | null;
|
18112
|
-
} | null | undefined;
|
18113
|
-
loading?: boolean | null | undefined;
|
18114
|
-
}, {
|
18115
|
-
data?: any;
|
18116
|
-
error?: {
|
18117
|
-
message: string;
|
18118
|
-
statusCode: number | null;
|
18119
|
-
} | null | undefined;
|
18120
|
-
loading?: boolean | null | undefined;
|
18121
15523
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
18122
15524
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
18123
15525
|
start: z.ZodString;
|
@@ -18253,33 +15655,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
18253
15655
|
firstname: string;
|
18254
15656
|
surname: string;
|
18255
15657
|
middlename?: string | null | undefined;
|
18256
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
18257
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
18258
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
18259
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
18260
|
-
message: z.ZodString;
|
18261
|
-
}, "strip", z.ZodTypeAny, {
|
18262
|
-
message: string;
|
18263
|
-
statusCode: number | null;
|
18264
|
-
}, {
|
18265
|
-
message: string;
|
18266
|
-
statusCode: number | null;
|
18267
|
-
}>>>;
|
18268
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
18269
|
-
}, "strip", z.ZodTypeAny, {
|
18270
|
-
data?: any;
|
18271
|
-
error?: {
|
18272
|
-
message: string;
|
18273
|
-
statusCode: number | null;
|
18274
|
-
} | null | undefined;
|
18275
|
-
loading?: boolean | null | undefined;
|
18276
|
-
}, {
|
18277
|
-
data?: any;
|
18278
|
-
error?: {
|
18279
|
-
message: string;
|
18280
|
-
statusCode: number | null;
|
18281
|
-
} | null | undefined;
|
18282
|
-
loading?: boolean | null | undefined;
|
18283
15658
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
18284
15659
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
18285
15660
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -18337,13 +15712,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
18337
15712
|
path: string;
|
18338
15713
|
originalFilename: string;
|
18339
15714
|
}[] | {
|
18340
|
-
data?: any;
|
18341
|
-
error?: {
|
18342
|
-
message: string;
|
18343
|
-
statusCode: number | null;
|
18344
|
-
} | null | undefined;
|
18345
|
-
loading?: boolean | null | undefined;
|
18346
|
-
} | {
|
18347
15715
|
start: string;
|
18348
15716
|
end: string;
|
18349
15717
|
} | null | undefined>;
|
@@ -18392,13 +15760,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
18392
15760
|
path: string;
|
18393
15761
|
originalFilename: string;
|
18394
15762
|
}[] | {
|
18395
|
-
data?: any;
|
18396
|
-
error?: {
|
18397
|
-
message: string;
|
18398
|
-
statusCode: number | null;
|
18399
|
-
} | null | undefined;
|
18400
|
-
loading?: boolean | null | undefined;
|
18401
|
-
} | {
|
18402
15763
|
start: string;
|
18403
15764
|
end: string;
|
18404
15765
|
} | null | undefined> | null | undefined;
|
@@ -18454,13 +15815,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
18454
15815
|
path: string;
|
18455
15816
|
originalFilename: string;
|
18456
15817
|
}[] | {
|
18457
|
-
data?: any;
|
18458
|
-
error?: {
|
18459
|
-
message: string;
|
18460
|
-
statusCode: number | null;
|
18461
|
-
} | null | undefined;
|
18462
|
-
loading?: boolean | null | undefined;
|
18463
|
-
} | {
|
18464
15818
|
start: string;
|
18465
15819
|
end: string;
|
18466
15820
|
} | null | undefined>;
|
@@ -18509,13 +15863,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
18509
15863
|
path: string;
|
18510
15864
|
originalFilename: string;
|
18511
15865
|
}[] | {
|
18512
|
-
data?: any;
|
18513
|
-
error?: {
|
18514
|
-
message: string;
|
18515
|
-
statusCode: number | null;
|
18516
|
-
} | null | undefined;
|
18517
|
-
loading?: boolean | null | undefined;
|
18518
|
-
} | {
|
18519
15866
|
start: string;
|
18520
15867
|
end: string;
|
18521
15868
|
} | null | undefined> | null | undefined;
|
@@ -18663,33 +16010,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
18663
16010
|
firstname: string;
|
18664
16011
|
surname: string;
|
18665
16012
|
middlename?: string | null | undefined;
|
18666
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
18667
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
18668
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
18669
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
18670
|
-
message: z.ZodString;
|
18671
|
-
}, "strip", z.ZodTypeAny, {
|
18672
|
-
message: string;
|
18673
|
-
statusCode: number | null;
|
18674
|
-
}, {
|
18675
|
-
message: string;
|
18676
|
-
statusCode: number | null;
|
18677
|
-
}>>>;
|
18678
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
18679
|
-
}, "strip", z.ZodTypeAny, {
|
18680
|
-
data?: any;
|
18681
|
-
error?: {
|
18682
|
-
message: string;
|
18683
|
-
statusCode: number | null;
|
18684
|
-
} | null | undefined;
|
18685
|
-
loading?: boolean | null | undefined;
|
18686
|
-
}, {
|
18687
|
-
data?: any;
|
18688
|
-
error?: {
|
18689
|
-
message: string;
|
18690
|
-
statusCode: number | null;
|
18691
|
-
} | null | undefined;
|
18692
|
-
loading?: boolean | null | undefined;
|
18693
16013
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
18694
16014
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
18695
16015
|
start: z.ZodString;
|
@@ -18825,33 +16145,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
18825
16145
|
firstname: string;
|
18826
16146
|
surname: string;
|
18827
16147
|
middlename?: string | null | undefined;
|
18828
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
18829
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
18830
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
18831
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
18832
|
-
message: z.ZodString;
|
18833
|
-
}, "strip", z.ZodTypeAny, {
|
18834
|
-
message: string;
|
18835
|
-
statusCode: number | null;
|
18836
|
-
}, {
|
18837
|
-
message: string;
|
18838
|
-
statusCode: number | null;
|
18839
|
-
}>>>;
|
18840
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
18841
|
-
}, "strip", z.ZodTypeAny, {
|
18842
|
-
data?: any;
|
18843
|
-
error?: {
|
18844
|
-
message: string;
|
18845
|
-
statusCode: number | null;
|
18846
|
-
} | null | undefined;
|
18847
|
-
loading?: boolean | null | undefined;
|
18848
|
-
}, {
|
18849
|
-
data?: any;
|
18850
|
-
error?: {
|
18851
|
-
message: string;
|
18852
|
-
statusCode: number | null;
|
18853
|
-
} | null | undefined;
|
18854
|
-
loading?: boolean | null | undefined;
|
18855
16148
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
18856
16149
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
18857
16150
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -18923,13 +16216,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
18923
16216
|
path: string;
|
18924
16217
|
originalFilename: string;
|
18925
16218
|
}[] | {
|
18926
|
-
data?: any;
|
18927
|
-
error?: {
|
18928
|
-
message: string;
|
18929
|
-
statusCode: number | null;
|
18930
|
-
} | null | undefined;
|
18931
|
-
loading?: boolean | null | undefined;
|
18932
|
-
} | {
|
18933
16219
|
start: string;
|
18934
16220
|
end: string;
|
18935
16221
|
} | null | undefined>;
|
@@ -18978,13 +16264,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
18978
16264
|
path: string;
|
18979
16265
|
originalFilename: string;
|
18980
16266
|
}[] | {
|
18981
|
-
data?: any;
|
18982
|
-
error?: {
|
18983
|
-
message: string;
|
18984
|
-
statusCode: number | null;
|
18985
|
-
} | null | undefined;
|
18986
|
-
loading?: boolean | null | undefined;
|
18987
|
-
} | {
|
18988
16267
|
start: string;
|
18989
16268
|
end: string;
|
18990
16269
|
} | null | undefined> | null | undefined;
|
@@ -19044,13 +16323,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
19044
16323
|
path: string;
|
19045
16324
|
originalFilename: string;
|
19046
16325
|
}[] | {
|
19047
|
-
data?: any;
|
19048
|
-
error?: {
|
19049
|
-
message: string;
|
19050
|
-
statusCode: number | null;
|
19051
|
-
} | null | undefined;
|
19052
|
-
loading?: boolean | null | undefined;
|
19053
|
-
} | {
|
19054
16326
|
start: string;
|
19055
16327
|
end: string;
|
19056
16328
|
} | null | undefined>;
|
@@ -19099,13 +16371,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
19099
16371
|
path: string;
|
19100
16372
|
originalFilename: string;
|
19101
16373
|
}[] | {
|
19102
|
-
data?: any;
|
19103
|
-
error?: {
|
19104
|
-
message: string;
|
19105
|
-
statusCode: number | null;
|
19106
|
-
} | null | undefined;
|
19107
|
-
loading?: boolean | null | undefined;
|
19108
|
-
} | {
|
19109
16374
|
start: string;
|
19110
16375
|
end: string;
|
19111
16376
|
} | null | undefined> | null | undefined;
|
@@ -19253,33 +16518,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
19253
16518
|
firstname: string;
|
19254
16519
|
surname: string;
|
19255
16520
|
middlename?: string | null | undefined;
|
19256
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
19257
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
19258
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
19259
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
19260
|
-
message: z.ZodString;
|
19261
|
-
}, "strip", z.ZodTypeAny, {
|
19262
|
-
message: string;
|
19263
|
-
statusCode: number | null;
|
19264
|
-
}, {
|
19265
|
-
message: string;
|
19266
|
-
statusCode: number | null;
|
19267
|
-
}>>>;
|
19268
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
19269
|
-
}, "strip", z.ZodTypeAny, {
|
19270
|
-
data?: any;
|
19271
|
-
error?: {
|
19272
|
-
message: string;
|
19273
|
-
statusCode: number | null;
|
19274
|
-
} | null | undefined;
|
19275
|
-
loading?: boolean | null | undefined;
|
19276
|
-
}, {
|
19277
|
-
data?: any;
|
19278
|
-
error?: {
|
19279
|
-
message: string;
|
19280
|
-
statusCode: number | null;
|
19281
|
-
} | null | undefined;
|
19282
|
-
loading?: boolean | null | undefined;
|
19283
16521
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
19284
16522
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
19285
16523
|
start: z.ZodString;
|
@@ -19415,33 +16653,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
19415
16653
|
firstname: string;
|
19416
16654
|
surname: string;
|
19417
16655
|
middlename?: string | null | undefined;
|
19418
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
19419
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
19420
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
19421
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
19422
|
-
message: z.ZodString;
|
19423
|
-
}, "strip", z.ZodTypeAny, {
|
19424
|
-
message: string;
|
19425
|
-
statusCode: number | null;
|
19426
|
-
}, {
|
19427
|
-
message: string;
|
19428
|
-
statusCode: number | null;
|
19429
|
-
}>>>;
|
19430
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
19431
|
-
}, "strip", z.ZodTypeAny, {
|
19432
|
-
data?: any;
|
19433
|
-
error?: {
|
19434
|
-
message: string;
|
19435
|
-
statusCode: number | null;
|
19436
|
-
} | null | undefined;
|
19437
|
-
loading?: boolean | null | undefined;
|
19438
|
-
}, {
|
19439
|
-
data?: any;
|
19440
|
-
error?: {
|
19441
|
-
message: string;
|
19442
|
-
statusCode: number | null;
|
19443
|
-
} | null | undefined;
|
19444
|
-
loading?: boolean | null | undefined;
|
19445
16656
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
19446
16657
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
19447
16658
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -19498,13 +16709,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
19498
16709
|
path: string;
|
19499
16710
|
originalFilename: string;
|
19500
16711
|
}[] | {
|
19501
|
-
data?: any;
|
19502
|
-
error?: {
|
19503
|
-
message: string;
|
19504
|
-
statusCode: number | null;
|
19505
|
-
} | null | undefined;
|
19506
|
-
loading?: boolean | null | undefined;
|
19507
|
-
} | {
|
19508
16712
|
start: string;
|
19509
16713
|
end: string;
|
19510
16714
|
} | null | undefined>;
|
@@ -19552,13 +16756,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
19552
16756
|
path: string;
|
19553
16757
|
originalFilename: string;
|
19554
16758
|
}[] | {
|
19555
|
-
data?: any;
|
19556
|
-
error?: {
|
19557
|
-
message: string;
|
19558
|
-
statusCode: number | null;
|
19559
|
-
} | null | undefined;
|
19560
|
-
loading?: boolean | null | undefined;
|
19561
|
-
} | {
|
19562
16759
|
start: string;
|
19563
16760
|
end: string;
|
19564
16761
|
} | null | undefined> | null | undefined;
|
@@ -19614,13 +16811,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
19614
16811
|
path: string;
|
19615
16812
|
originalFilename: string;
|
19616
16813
|
}[] | {
|
19617
|
-
data?: any;
|
19618
|
-
error?: {
|
19619
|
-
message: string;
|
19620
|
-
statusCode: number | null;
|
19621
|
-
} | null | undefined;
|
19622
|
-
loading?: boolean | null | undefined;
|
19623
|
-
} | {
|
19624
16814
|
start: string;
|
19625
16815
|
end: string;
|
19626
16816
|
} | null | undefined>;
|
@@ -19668,13 +16858,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
19668
16858
|
path: string;
|
19669
16859
|
originalFilename: string;
|
19670
16860
|
}[] | {
|
19671
|
-
data?: any;
|
19672
|
-
error?: {
|
19673
|
-
message: string;
|
19674
|
-
statusCode: number | null;
|
19675
|
-
} | null | undefined;
|
19676
|
-
loading?: boolean | null | undefined;
|
19677
|
-
} | {
|
19678
16861
|
start: string;
|
19679
16862
|
end: string;
|
19680
16863
|
} | null | undefined> | null | undefined;
|
@@ -19822,33 +17005,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
19822
17005
|
firstname: string;
|
19823
17006
|
surname: string;
|
19824
17007
|
middlename?: string | null | undefined;
|
19825
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
19826
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
19827
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
19828
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
19829
|
-
message: z.ZodString;
|
19830
|
-
}, "strip", z.ZodTypeAny, {
|
19831
|
-
message: string;
|
19832
|
-
statusCode: number | null;
|
19833
|
-
}, {
|
19834
|
-
message: string;
|
19835
|
-
statusCode: number | null;
|
19836
|
-
}>>>;
|
19837
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
19838
|
-
}, "strip", z.ZodTypeAny, {
|
19839
|
-
data?: any;
|
19840
|
-
error?: {
|
19841
|
-
message: string;
|
19842
|
-
statusCode: number | null;
|
19843
|
-
} | null | undefined;
|
19844
|
-
loading?: boolean | null | undefined;
|
19845
|
-
}, {
|
19846
|
-
data?: any;
|
19847
|
-
error?: {
|
19848
|
-
message: string;
|
19849
|
-
statusCode: number | null;
|
19850
|
-
} | null | undefined;
|
19851
|
-
loading?: boolean | null | undefined;
|
19852
17008
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
19853
17009
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
19854
17010
|
start: z.ZodString;
|
@@ -19984,33 +17140,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
19984
17140
|
firstname: string;
|
19985
17141
|
surname: string;
|
19986
17142
|
middlename?: string | null | undefined;
|
19987
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
19988
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
19989
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
19990
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
19991
|
-
message: z.ZodString;
|
19992
|
-
}, "strip", z.ZodTypeAny, {
|
19993
|
-
message: string;
|
19994
|
-
statusCode: number | null;
|
19995
|
-
}, {
|
19996
|
-
message: string;
|
19997
|
-
statusCode: number | null;
|
19998
|
-
}>>>;
|
19999
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
20000
|
-
}, "strip", z.ZodTypeAny, {
|
20001
|
-
data?: any;
|
20002
|
-
error?: {
|
20003
|
-
message: string;
|
20004
|
-
statusCode: number | null;
|
20005
|
-
} | null | undefined;
|
20006
|
-
loading?: boolean | null | undefined;
|
20007
|
-
}, {
|
20008
|
-
data?: any;
|
20009
|
-
error?: {
|
20010
|
-
message: string;
|
20011
|
-
statusCode: number | null;
|
20012
|
-
} | null | undefined;
|
20013
|
-
loading?: boolean | null | undefined;
|
20014
17143
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
20015
17144
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
20016
17145
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -20074,13 +17203,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
20074
17203
|
path: string;
|
20075
17204
|
originalFilename: string;
|
20076
17205
|
}[] | {
|
20077
|
-
data?: any;
|
20078
|
-
error?: {
|
20079
|
-
message: string;
|
20080
|
-
statusCode: number | null;
|
20081
|
-
} | null | undefined;
|
20082
|
-
loading?: boolean | null | undefined;
|
20083
|
-
} | {
|
20084
17206
|
start: string;
|
20085
17207
|
end: string;
|
20086
17208
|
} | null | undefined>;
|
@@ -20131,13 +17253,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
20131
17253
|
path: string;
|
20132
17254
|
originalFilename: string;
|
20133
17255
|
}[] | {
|
20134
|
-
data?: any;
|
20135
|
-
error?: {
|
20136
|
-
message: string;
|
20137
|
-
statusCode: number | null;
|
20138
|
-
} | null | undefined;
|
20139
|
-
loading?: boolean | null | undefined;
|
20140
|
-
} | {
|
20141
17256
|
start: string;
|
20142
17257
|
end: string;
|
20143
17258
|
} | null | undefined> | null | undefined;
|
@@ -20193,13 +17308,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
20193
17308
|
path: string;
|
20194
17309
|
originalFilename: string;
|
20195
17310
|
}[] | {
|
20196
|
-
data?: any;
|
20197
|
-
error?: {
|
20198
|
-
message: string;
|
20199
|
-
statusCode: number | null;
|
20200
|
-
} | null | undefined;
|
20201
|
-
loading?: boolean | null | undefined;
|
20202
|
-
} | {
|
20203
17311
|
start: string;
|
20204
17312
|
end: string;
|
20205
17313
|
} | null | undefined>;
|
@@ -20250,13 +17358,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
20250
17358
|
path: string;
|
20251
17359
|
originalFilename: string;
|
20252
17360
|
}[] | {
|
20253
|
-
data?: any;
|
20254
|
-
error?: {
|
20255
|
-
message: string;
|
20256
|
-
statusCode: number | null;
|
20257
|
-
} | null | undefined;
|
20258
|
-
loading?: boolean | null | undefined;
|
20259
|
-
} | {
|
20260
17361
|
start: string;
|
20261
17362
|
end: string;
|
20262
17363
|
} | null | undefined> | null | undefined;
|
@@ -20404,33 +17505,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
20404
17505
|
firstname: string;
|
20405
17506
|
surname: string;
|
20406
17507
|
middlename?: string | null | undefined;
|
20407
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
20408
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
20409
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
20410
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
20411
|
-
message: z.ZodString;
|
20412
|
-
}, "strip", z.ZodTypeAny, {
|
20413
|
-
message: string;
|
20414
|
-
statusCode: number | null;
|
20415
|
-
}, {
|
20416
|
-
message: string;
|
20417
|
-
statusCode: number | null;
|
20418
|
-
}>>>;
|
20419
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
20420
|
-
}, "strip", z.ZodTypeAny, {
|
20421
|
-
data?: any;
|
20422
|
-
error?: {
|
20423
|
-
message: string;
|
20424
|
-
statusCode: number | null;
|
20425
|
-
} | null | undefined;
|
20426
|
-
loading?: boolean | null | undefined;
|
20427
|
-
}, {
|
20428
|
-
data?: any;
|
20429
|
-
error?: {
|
20430
|
-
message: string;
|
20431
|
-
statusCode: number | null;
|
20432
|
-
} | null | undefined;
|
20433
|
-
loading?: boolean | null | undefined;
|
20434
17508
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
20435
17509
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
20436
17510
|
start: z.ZodString;
|
@@ -20566,33 +17640,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
20566
17640
|
firstname: string;
|
20567
17641
|
surname: string;
|
20568
17642
|
middlename?: string | null | undefined;
|
20569
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
20570
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
20571
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
20572
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
20573
|
-
message: z.ZodString;
|
20574
|
-
}, "strip", z.ZodTypeAny, {
|
20575
|
-
message: string;
|
20576
|
-
statusCode: number | null;
|
20577
|
-
}, {
|
20578
|
-
message: string;
|
20579
|
-
statusCode: number | null;
|
20580
|
-
}>>>;
|
20581
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
20582
|
-
}, "strip", z.ZodTypeAny, {
|
20583
|
-
data?: any;
|
20584
|
-
error?: {
|
20585
|
-
message: string;
|
20586
|
-
statusCode: number | null;
|
20587
|
-
} | null | undefined;
|
20588
|
-
loading?: boolean | null | undefined;
|
20589
|
-
}, {
|
20590
|
-
data?: any;
|
20591
|
-
error?: {
|
20592
|
-
message: string;
|
20593
|
-
statusCode: number | null;
|
20594
|
-
} | null | undefined;
|
20595
|
-
loading?: boolean | null | undefined;
|
20596
17643
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
20597
17644
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
20598
17645
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -20649,13 +17696,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
20649
17696
|
path: string;
|
20650
17697
|
originalFilename: string;
|
20651
17698
|
}[] | {
|
20652
|
-
data?: any;
|
20653
|
-
error?: {
|
20654
|
-
message: string;
|
20655
|
-
statusCode: number | null;
|
20656
|
-
} | null | undefined;
|
20657
|
-
loading?: boolean | null | undefined;
|
20658
|
-
} | {
|
20659
17699
|
start: string;
|
20660
17700
|
end: string;
|
20661
17701
|
} | null | undefined>;
|
@@ -20703,13 +17743,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
20703
17743
|
path: string;
|
20704
17744
|
originalFilename: string;
|
20705
17745
|
}[] | {
|
20706
|
-
data?: any;
|
20707
|
-
error?: {
|
20708
|
-
message: string;
|
20709
|
-
statusCode: number | null;
|
20710
|
-
} | null | undefined;
|
20711
|
-
loading?: boolean | null | undefined;
|
20712
|
-
} | {
|
20713
17746
|
start: string;
|
20714
17747
|
end: string;
|
20715
17748
|
} | null | undefined> | null | undefined;
|
@@ -20765,13 +17798,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
20765
17798
|
path: string;
|
20766
17799
|
originalFilename: string;
|
20767
17800
|
}[] | {
|
20768
|
-
data?: any;
|
20769
|
-
error?: {
|
20770
|
-
message: string;
|
20771
|
-
statusCode: number | null;
|
20772
|
-
} | null | undefined;
|
20773
|
-
loading?: boolean | null | undefined;
|
20774
|
-
} | {
|
20775
17801
|
start: string;
|
20776
17802
|
end: string;
|
20777
17803
|
} | null | undefined>;
|
@@ -20819,13 +17845,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
20819
17845
|
path: string;
|
20820
17846
|
originalFilename: string;
|
20821
17847
|
}[] | {
|
20822
|
-
data?: any;
|
20823
|
-
error?: {
|
20824
|
-
message: string;
|
20825
|
-
statusCode: number | null;
|
20826
|
-
} | null | undefined;
|
20827
|
-
loading?: boolean | null | undefined;
|
20828
|
-
} | {
|
20829
17848
|
start: string;
|
20830
17849
|
end: string;
|
20831
17850
|
} | null | undefined> | null | undefined;
|
@@ -20973,33 +17992,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
20973
17992
|
firstname: string;
|
20974
17993
|
surname: string;
|
20975
17994
|
middlename?: string | null | undefined;
|
20976
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
20977
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
20978
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
20979
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
20980
|
-
message: z.ZodString;
|
20981
|
-
}, "strip", z.ZodTypeAny, {
|
20982
|
-
message: string;
|
20983
|
-
statusCode: number | null;
|
20984
|
-
}, {
|
20985
|
-
message: string;
|
20986
|
-
statusCode: number | null;
|
20987
|
-
}>>>;
|
20988
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
20989
|
-
}, "strip", z.ZodTypeAny, {
|
20990
|
-
data?: any;
|
20991
|
-
error?: {
|
20992
|
-
message: string;
|
20993
|
-
statusCode: number | null;
|
20994
|
-
} | null | undefined;
|
20995
|
-
loading?: boolean | null | undefined;
|
20996
|
-
}, {
|
20997
|
-
data?: any;
|
20998
|
-
error?: {
|
20999
|
-
message: string;
|
21000
|
-
statusCode: number | null;
|
21001
|
-
} | null | undefined;
|
21002
|
-
loading?: boolean | null | undefined;
|
21003
17995
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
21004
17996
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
21005
17997
|
start: z.ZodString;
|
@@ -21135,33 +18127,6 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
21135
18127
|
firstname: string;
|
21136
18128
|
surname: string;
|
21137
18129
|
middlename?: string | null | undefined;
|
21138
|
-
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
21139
|
-
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
21140
|
-
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
21141
|
-
statusCode: z.ZodNullable<z.ZodNumber>;
|
21142
|
-
message: z.ZodString;
|
21143
|
-
}, "strip", z.ZodTypeAny, {
|
21144
|
-
message: string;
|
21145
|
-
statusCode: number | null;
|
21146
|
-
}, {
|
21147
|
-
message: string;
|
21148
|
-
statusCode: number | null;
|
21149
|
-
}>>>;
|
21150
|
-
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
21151
|
-
}, "strip", z.ZodTypeAny, {
|
21152
|
-
data?: any;
|
21153
|
-
error?: {
|
21154
|
-
message: string;
|
21155
|
-
statusCode: number | null;
|
21156
|
-
} | null | undefined;
|
21157
|
-
loading?: boolean | null | undefined;
|
21158
|
-
}, {
|
21159
|
-
data?: any;
|
21160
|
-
error?: {
|
21161
|
-
message: string;
|
21162
|
-
statusCode: number | null;
|
21163
|
-
} | null | undefined;
|
21164
|
-
loading?: boolean | null | undefined;
|
21165
18130
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
21166
18131
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
21167
18132
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|