@opencrvs/toolkit 1.8.1-rc.0377f8e → 1.8.1-rc.06c1a33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commons/api/router.d.ts +1347 -1
- package/dist/commons/events/ActionConfig.d.ts +13563 -3777
- package/dist/commons/events/ActionDocument.d.ts +3036 -1
- package/dist/commons/events/ActionInput.d.ts +2460 -0
- package/dist/commons/events/AdvancedSearchConfig.d.ts +93 -3
- package/dist/commons/events/CompositeFieldValue.d.ts +60 -0
- package/dist/commons/events/Draft.d.ts +192 -0
- package/dist/commons/events/EventConfig.d.ts +8123 -3864
- package/dist/commons/events/EventDocument.d.ts +1704 -0
- package/dist/commons/events/EventIndex.d.ts +47 -1
- package/dist/commons/events/FieldConfig.d.ts +1121 -359
- package/dist/commons/events/FieldType.d.ts +3 -1
- package/dist/commons/events/FieldTypeMapping.d.ts +85 -3
- package/dist/commons/events/FieldValue.d.ts +62 -3
- package/dist/commons/events/FormConfig.d.ts +5750 -1148
- package/dist/commons/events/PageConfig.d.ts +1708 -562
- package/dist/commons/events/WorkqueueConfig.d.ts +8 -8
- package/dist/commons/events/defineConfig.d.ts +719 -8
- package/dist/commons/events/test.utils.d.ts +42 -0
- package/dist/commons/events/utils.d.ts +1317 -16
- package/dist/events/index.js +95 -33
- package/package.json +1 -1
@@ -136,6 +136,33 @@ 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;
|
139
166
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
140
167
|
export type ActionUpdate = z.infer<typeof ActionUpdate>;
|
141
168
|
/**
|
@@ -287,7 +314,37 @@ export declare const EventState: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodStrin
|
|
287
314
|
firstname: string;
|
288
315
|
surname: string;
|
289
316
|
middlename?: string | null | undefined;
|
290
|
-
}>, z.ZodNull]>, z.ZodUndefined]
|
317
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodNumber, z.ZodObject<{
|
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
|
+
}>]>>;
|
291
348
|
export type EventState = z.infer<typeof EventState>;
|
292
349
|
export declare const ActionStatus: {
|
293
350
|
readonly Requested: "Requested";
|
@@ -438,6 +495,33 @@ export declare const ActionBase: z.ZodObject<{
|
|
438
495
|
firstname: string;
|
439
496
|
surname: string;
|
440
497
|
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;
|
441
525
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
442
526
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
443
527
|
start: z.ZodString;
|
@@ -573,6 +657,33 @@ export declare const ActionBase: z.ZodObject<{
|
|
573
657
|
firstname: string;
|
574
658
|
surname: string;
|
575
659
|
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;
|
576
687
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
577
688
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
578
689
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -626,6 +737,13 @@ export declare const ActionBase: z.ZodObject<{
|
|
626
737
|
path: string;
|
627
738
|
originalFilename: string;
|
628
739
|
}[] | {
|
740
|
+
data?: any;
|
741
|
+
error?: {
|
742
|
+
message: string;
|
743
|
+
statusCode: number | null;
|
744
|
+
} | null | undefined;
|
745
|
+
loading?: boolean | null | undefined;
|
746
|
+
} | {
|
629
747
|
start: string;
|
630
748
|
end: string;
|
631
749
|
} | null | undefined>;
|
@@ -673,6 +791,13 @@ export declare const ActionBase: z.ZodObject<{
|
|
673
791
|
path: string;
|
674
792
|
originalFilename: string;
|
675
793
|
}[] | {
|
794
|
+
data?: any;
|
795
|
+
error?: {
|
796
|
+
message: string;
|
797
|
+
statusCode: number | null;
|
798
|
+
} | null | undefined;
|
799
|
+
loading?: boolean | null | undefined;
|
800
|
+
} | {
|
676
801
|
start: string;
|
677
802
|
end: string;
|
678
803
|
} | null | undefined> | null | undefined;
|
@@ -727,6 +852,13 @@ export declare const ActionBase: z.ZodObject<{
|
|
727
852
|
path: string;
|
728
853
|
originalFilename: string;
|
729
854
|
}[] | {
|
855
|
+
data?: any;
|
856
|
+
error?: {
|
857
|
+
message: string;
|
858
|
+
statusCode: number | null;
|
859
|
+
} | null | undefined;
|
860
|
+
loading?: boolean | null | undefined;
|
861
|
+
} | {
|
730
862
|
start: string;
|
731
863
|
end: string;
|
732
864
|
} | null | undefined>;
|
@@ -774,6 +906,13 @@ export declare const ActionBase: z.ZodObject<{
|
|
774
906
|
path: string;
|
775
907
|
originalFilename: string;
|
776
908
|
}[] | {
|
909
|
+
data?: any;
|
910
|
+
error?: {
|
911
|
+
message: string;
|
912
|
+
statusCode: number | null;
|
913
|
+
} | null | undefined;
|
914
|
+
loading?: boolean | null | undefined;
|
915
|
+
} | {
|
777
916
|
start: string;
|
778
917
|
end: string;
|
779
918
|
} | null | undefined> | null | undefined;
|
@@ -923,6 +1062,33 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
923
1062
|
firstname: string;
|
924
1063
|
surname: string;
|
925
1064
|
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;
|
926
1092
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
927
1093
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
928
1094
|
start: z.ZodString;
|
@@ -1058,6 +1224,33 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1058
1224
|
firstname: string;
|
1059
1225
|
surname: string;
|
1060
1226
|
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;
|
1061
1254
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
1062
1255
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
1063
1256
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -1115,6 +1308,13 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1115
1308
|
path: string;
|
1116
1309
|
originalFilename: string;
|
1117
1310
|
}[] | {
|
1311
|
+
data?: any;
|
1312
|
+
error?: {
|
1313
|
+
message: string;
|
1314
|
+
statusCode: number | null;
|
1315
|
+
} | null | undefined;
|
1316
|
+
loading?: boolean | null | undefined;
|
1317
|
+
} | {
|
1118
1318
|
start: string;
|
1119
1319
|
end: string;
|
1120
1320
|
} | null | undefined>;
|
@@ -1162,6 +1362,13 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1162
1362
|
path: string;
|
1163
1363
|
originalFilename: string;
|
1164
1364
|
}[] | {
|
1365
|
+
data?: any;
|
1366
|
+
error?: {
|
1367
|
+
message: string;
|
1368
|
+
statusCode: number | null;
|
1369
|
+
} | null | undefined;
|
1370
|
+
loading?: boolean | null | undefined;
|
1371
|
+
} | {
|
1165
1372
|
start: string;
|
1166
1373
|
end: string;
|
1167
1374
|
} | null | undefined> | null | undefined;
|
@@ -1218,6 +1425,13 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1218
1425
|
path: string;
|
1219
1426
|
originalFilename: string;
|
1220
1427
|
}[] | {
|
1428
|
+
data?: any;
|
1429
|
+
error?: {
|
1430
|
+
message: string;
|
1431
|
+
statusCode: number | null;
|
1432
|
+
} | null | undefined;
|
1433
|
+
loading?: boolean | null | undefined;
|
1434
|
+
} | {
|
1221
1435
|
start: string;
|
1222
1436
|
end: string;
|
1223
1437
|
} | null | undefined>;
|
@@ -1265,6 +1479,13 @@ export declare const RegisterAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1265
1479
|
path: string;
|
1266
1480
|
originalFilename: string;
|
1267
1481
|
}[] | {
|
1482
|
+
data?: any;
|
1483
|
+
error?: {
|
1484
|
+
message: string;
|
1485
|
+
statusCode: number | null;
|
1486
|
+
} | null | undefined;
|
1487
|
+
loading?: boolean | null | undefined;
|
1488
|
+
} | {
|
1268
1489
|
start: string;
|
1269
1490
|
end: string;
|
1270
1491
|
} | null | undefined> | null | undefined;
|
@@ -1425,6 +1646,33 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1425
1646
|
firstname: string;
|
1426
1647
|
surname: string;
|
1427
1648
|
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;
|
1428
1676
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
1429
1677
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
1430
1678
|
start: z.ZodString;
|
@@ -1560,6 +1808,33 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1560
1808
|
firstname: string;
|
1561
1809
|
surname: string;
|
1562
1810
|
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;
|
1563
1838
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
1564
1839
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
1565
1840
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -1616,6 +1891,13 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1616
1891
|
path: string;
|
1617
1892
|
originalFilename: string;
|
1618
1893
|
}[] | {
|
1894
|
+
data?: any;
|
1895
|
+
error?: {
|
1896
|
+
message: string;
|
1897
|
+
statusCode: number | null;
|
1898
|
+
} | null | undefined;
|
1899
|
+
loading?: boolean | null | undefined;
|
1900
|
+
} | {
|
1619
1901
|
start: string;
|
1620
1902
|
end: string;
|
1621
1903
|
} | null | undefined>;
|
@@ -1663,6 +1945,13 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1663
1945
|
path: string;
|
1664
1946
|
originalFilename: string;
|
1665
1947
|
}[] | {
|
1948
|
+
data?: any;
|
1949
|
+
error?: {
|
1950
|
+
message: string;
|
1951
|
+
statusCode: number | null;
|
1952
|
+
} | null | undefined;
|
1953
|
+
loading?: boolean | null | undefined;
|
1954
|
+
} | {
|
1666
1955
|
start: string;
|
1667
1956
|
end: string;
|
1668
1957
|
} | null | undefined> | null | undefined;
|
@@ -1718,6 +2007,13 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1718
2007
|
path: string;
|
1719
2008
|
originalFilename: string;
|
1720
2009
|
}[] | {
|
2010
|
+
data?: any;
|
2011
|
+
error?: {
|
2012
|
+
message: string;
|
2013
|
+
statusCode: number | null;
|
2014
|
+
} | null | undefined;
|
2015
|
+
loading?: boolean | null | undefined;
|
2016
|
+
} | {
|
1721
2017
|
start: string;
|
1722
2018
|
end: string;
|
1723
2019
|
} | null | undefined>;
|
@@ -1765,6 +2061,13 @@ declare const CreatedAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1765
2061
|
path: string;
|
1766
2062
|
originalFilename: string;
|
1767
2063
|
}[] | {
|
2064
|
+
data?: any;
|
2065
|
+
error?: {
|
2066
|
+
message: string;
|
2067
|
+
statusCode: number | null;
|
2068
|
+
} | null | undefined;
|
2069
|
+
loading?: boolean | null | undefined;
|
2070
|
+
} | {
|
1768
2071
|
start: string;
|
1769
2072
|
end: string;
|
1770
2073
|
} | null | undefined> | null | undefined;
|
@@ -1921,6 +2224,33 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
1921
2224
|
firstname: string;
|
1922
2225
|
surname: string;
|
1923
2226
|
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;
|
1924
2254
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
1925
2255
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
1926
2256
|
start: z.ZodString;
|
@@ -2056,6 +2386,33 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2056
2386
|
firstname: string;
|
2057
2387
|
surname: string;
|
2058
2388
|
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;
|
2059
2416
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
2060
2417
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
2061
2418
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -2119,6 +2476,13 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2119
2476
|
path: string;
|
2120
2477
|
originalFilename: string;
|
2121
2478
|
}[] | {
|
2479
|
+
data?: any;
|
2480
|
+
error?: {
|
2481
|
+
message: string;
|
2482
|
+
statusCode: number | null;
|
2483
|
+
} | null | undefined;
|
2484
|
+
loading?: boolean | null | undefined;
|
2485
|
+
} | {
|
2122
2486
|
start: string;
|
2123
2487
|
end: string;
|
2124
2488
|
} | null | undefined>;
|
@@ -2169,6 +2533,13 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2169
2533
|
path: string;
|
2170
2534
|
originalFilename: string;
|
2171
2535
|
}[] | {
|
2536
|
+
data?: any;
|
2537
|
+
error?: {
|
2538
|
+
message: string;
|
2539
|
+
statusCode: number | null;
|
2540
|
+
} | null | undefined;
|
2541
|
+
loading?: boolean | null | undefined;
|
2542
|
+
} | {
|
2172
2543
|
start: string;
|
2173
2544
|
end: string;
|
2174
2545
|
} | null | undefined> | null | undefined;
|
@@ -2224,6 +2595,13 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2224
2595
|
path: string;
|
2225
2596
|
originalFilename: string;
|
2226
2597
|
}[] | {
|
2598
|
+
data?: any;
|
2599
|
+
error?: {
|
2600
|
+
message: string;
|
2601
|
+
statusCode: number | null;
|
2602
|
+
} | null | undefined;
|
2603
|
+
loading?: boolean | null | undefined;
|
2604
|
+
} | {
|
2227
2605
|
start: string;
|
2228
2606
|
end: string;
|
2229
2607
|
} | null | undefined>;
|
@@ -2274,6 +2652,13 @@ declare const PrintCertificateAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2274
2652
|
path: string;
|
2275
2653
|
originalFilename: string;
|
2276
2654
|
}[] | {
|
2655
|
+
data?: any;
|
2656
|
+
error?: {
|
2657
|
+
message: string;
|
2658
|
+
statusCode: number | null;
|
2659
|
+
} | null | undefined;
|
2660
|
+
loading?: boolean | null | undefined;
|
2661
|
+
} | {
|
2277
2662
|
start: string;
|
2278
2663
|
end: string;
|
2279
2664
|
} | null | undefined> | null | undefined;
|
@@ -2423,6 +2808,33 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2423
2808
|
firstname: string;
|
2424
2809
|
surname: string;
|
2425
2810
|
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;
|
2426
2838
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
2427
2839
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
2428
2840
|
start: z.ZodString;
|
@@ -2558,6 +2970,33 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2558
2970
|
firstname: string;
|
2559
2971
|
surname: string;
|
2560
2972
|
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;
|
2561
3000
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
2562
3001
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
2563
3002
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -2614,6 +3053,13 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2614
3053
|
path: string;
|
2615
3054
|
originalFilename: string;
|
2616
3055
|
}[] | {
|
3056
|
+
data?: any;
|
3057
|
+
error?: {
|
3058
|
+
message: string;
|
3059
|
+
statusCode: number | null;
|
3060
|
+
} | null | undefined;
|
3061
|
+
loading?: boolean | null | undefined;
|
3062
|
+
} | {
|
2617
3063
|
start: string;
|
2618
3064
|
end: string;
|
2619
3065
|
} | null | undefined>;
|
@@ -2661,6 +3107,13 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2661
3107
|
path: string;
|
2662
3108
|
originalFilename: string;
|
2663
3109
|
}[] | {
|
3110
|
+
data?: any;
|
3111
|
+
error?: {
|
3112
|
+
message: string;
|
3113
|
+
statusCode: number | null;
|
3114
|
+
} | null | undefined;
|
3115
|
+
loading?: boolean | null | undefined;
|
3116
|
+
} | {
|
2664
3117
|
start: string;
|
2665
3118
|
end: string;
|
2666
3119
|
} | null | undefined> | null | undefined;
|
@@ -2716,6 +3169,13 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2716
3169
|
path: string;
|
2717
3170
|
originalFilename: string;
|
2718
3171
|
}[] | {
|
3172
|
+
data?: any;
|
3173
|
+
error?: {
|
3174
|
+
message: string;
|
3175
|
+
statusCode: number | null;
|
3176
|
+
} | null | undefined;
|
3177
|
+
loading?: boolean | null | undefined;
|
3178
|
+
} | {
|
2719
3179
|
start: string;
|
2720
3180
|
end: string;
|
2721
3181
|
} | null | undefined>;
|
@@ -2763,6 +3223,13 @@ declare const RequestedCorrectionAction: z.ZodObject<z.objectUtil.extendShape<{
|
|
2763
3223
|
path: string;
|
2764
3224
|
originalFilename: string;
|
2765
3225
|
}[] | {
|
3226
|
+
data?: any;
|
3227
|
+
error?: {
|
3228
|
+
message: string;
|
3229
|
+
statusCode: number | null;
|
3230
|
+
} | null | undefined;
|
3231
|
+
loading?: boolean | null | undefined;
|
3232
|
+
} | {
|
2766
3233
|
start: string;
|
2767
3234
|
end: string;
|
2768
3235
|
} | null | undefined> | null | undefined;
|
@@ -2912,6 +3379,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
2912
3379
|
firstname: string;
|
2913
3380
|
surname: string;
|
2914
3381
|
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;
|
2915
3409
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
2916
3410
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
2917
3411
|
start: z.ZodString;
|
@@ -3047,6 +3541,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3047
3541
|
firstname: string;
|
3048
3542
|
surname: string;
|
3049
3543
|
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;
|
3050
3571
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
3051
3572
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
3052
3573
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -3103,6 +3624,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3103
3624
|
path: string;
|
3104
3625
|
originalFilename: string;
|
3105
3626
|
}[] | {
|
3627
|
+
data?: any;
|
3628
|
+
error?: {
|
3629
|
+
message: string;
|
3630
|
+
statusCode: number | null;
|
3631
|
+
} | null | undefined;
|
3632
|
+
loading?: boolean | null | undefined;
|
3633
|
+
} | {
|
3106
3634
|
start: string;
|
3107
3635
|
end: string;
|
3108
3636
|
} | null | undefined>;
|
@@ -3150,6 +3678,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3150
3678
|
path: string;
|
3151
3679
|
originalFilename: string;
|
3152
3680
|
}[] | {
|
3681
|
+
data?: any;
|
3682
|
+
error?: {
|
3683
|
+
message: string;
|
3684
|
+
statusCode: number | null;
|
3685
|
+
} | null | undefined;
|
3686
|
+
loading?: boolean | null | undefined;
|
3687
|
+
} | {
|
3153
3688
|
start: string;
|
3154
3689
|
end: string;
|
3155
3690
|
} | null | undefined> | null | undefined;
|
@@ -3205,6 +3740,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3205
3740
|
path: string;
|
3206
3741
|
originalFilename: string;
|
3207
3742
|
}[] | {
|
3743
|
+
data?: any;
|
3744
|
+
error?: {
|
3745
|
+
message: string;
|
3746
|
+
statusCode: number | null;
|
3747
|
+
} | null | undefined;
|
3748
|
+
loading?: boolean | null | undefined;
|
3749
|
+
} | {
|
3208
3750
|
start: string;
|
3209
3751
|
end: string;
|
3210
3752
|
} | null | undefined>;
|
@@ -3252,6 +3794,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3252
3794
|
path: string;
|
3253
3795
|
originalFilename: string;
|
3254
3796
|
}[] | {
|
3797
|
+
data?: any;
|
3798
|
+
error?: {
|
3799
|
+
message: string;
|
3800
|
+
statusCode: number | null;
|
3801
|
+
} | null | undefined;
|
3802
|
+
loading?: boolean | null | undefined;
|
3803
|
+
} | {
|
3255
3804
|
start: string;
|
3256
3805
|
end: string;
|
3257
3806
|
} | null | undefined> | null | undefined;
|
@@ -3399,6 +3948,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3399
3948
|
firstname: string;
|
3400
3949
|
surname: string;
|
3401
3950
|
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;
|
3402
3978
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
3403
3979
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
3404
3980
|
start: z.ZodString;
|
@@ -3534,6 +4110,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3534
4110
|
firstname: string;
|
3535
4111
|
surname: string;
|
3536
4112
|
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;
|
3537
4140
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
3538
4141
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
3539
4142
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -3590,6 +4193,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3590
4193
|
path: string;
|
3591
4194
|
originalFilename: string;
|
3592
4195
|
}[] | {
|
4196
|
+
data?: any;
|
4197
|
+
error?: {
|
4198
|
+
message: string;
|
4199
|
+
statusCode: number | null;
|
4200
|
+
} | null | undefined;
|
4201
|
+
loading?: boolean | null | undefined;
|
4202
|
+
} | {
|
3593
4203
|
start: string;
|
3594
4204
|
end: string;
|
3595
4205
|
} | null | undefined>;
|
@@ -3637,6 +4247,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3637
4247
|
path: string;
|
3638
4248
|
originalFilename: string;
|
3639
4249
|
}[] | {
|
4250
|
+
data?: any;
|
4251
|
+
error?: {
|
4252
|
+
message: string;
|
4253
|
+
statusCode: number | null;
|
4254
|
+
} | null | undefined;
|
4255
|
+
loading?: boolean | null | undefined;
|
4256
|
+
} | {
|
3640
4257
|
start: string;
|
3641
4258
|
end: string;
|
3642
4259
|
} | null | undefined> | null | undefined;
|
@@ -3692,6 +4309,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3692
4309
|
path: string;
|
3693
4310
|
originalFilename: string;
|
3694
4311
|
}[] | {
|
4312
|
+
data?: any;
|
4313
|
+
error?: {
|
4314
|
+
message: string;
|
4315
|
+
statusCode: number | null;
|
4316
|
+
} | null | undefined;
|
4317
|
+
loading?: boolean | null | undefined;
|
4318
|
+
} | {
|
3695
4319
|
start: string;
|
3696
4320
|
end: string;
|
3697
4321
|
} | null | undefined>;
|
@@ -3739,6 +4363,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3739
4363
|
path: string;
|
3740
4364
|
originalFilename: string;
|
3741
4365
|
}[] | {
|
4366
|
+
data?: any;
|
4367
|
+
error?: {
|
4368
|
+
message: string;
|
4369
|
+
statusCode: number | null;
|
4370
|
+
} | null | undefined;
|
4371
|
+
loading?: boolean | null | undefined;
|
4372
|
+
} | {
|
3742
4373
|
start: string;
|
3743
4374
|
end: string;
|
3744
4375
|
} | null | undefined> | null | undefined;
|
@@ -3886,6 +4517,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
3886
4517
|
firstname: string;
|
3887
4518
|
surname: string;
|
3888
4519
|
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;
|
3889
4547
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
3890
4548
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
3891
4549
|
start: z.ZodString;
|
@@ -4021,6 +4679,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4021
4679
|
firstname: string;
|
4022
4680
|
surname: string;
|
4023
4681
|
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;
|
4024
4709
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
4025
4710
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
4026
4711
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -4091,6 +4776,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4091
4776
|
path: string;
|
4092
4777
|
originalFilename: string;
|
4093
4778
|
}[] | {
|
4779
|
+
data?: any;
|
4780
|
+
error?: {
|
4781
|
+
message: string;
|
4782
|
+
statusCode: number | null;
|
4783
|
+
} | null | undefined;
|
4784
|
+
loading?: boolean | null | undefined;
|
4785
|
+
} | {
|
4094
4786
|
start: string;
|
4095
4787
|
end: string;
|
4096
4788
|
} | null | undefined>;
|
@@ -4138,6 +4830,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4138
4830
|
path: string;
|
4139
4831
|
originalFilename: string;
|
4140
4832
|
}[] | {
|
4833
|
+
data?: any;
|
4834
|
+
error?: {
|
4835
|
+
message: string;
|
4836
|
+
statusCode: number | null;
|
4837
|
+
} | null | undefined;
|
4838
|
+
loading?: boolean | null | undefined;
|
4839
|
+
} | {
|
4141
4840
|
start: string;
|
4142
4841
|
end: string;
|
4143
4842
|
} | null | undefined> | null | undefined;
|
@@ -4197,6 +4896,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4197
4896
|
path: string;
|
4198
4897
|
originalFilename: string;
|
4199
4898
|
}[] | {
|
4899
|
+
data?: any;
|
4900
|
+
error?: {
|
4901
|
+
message: string;
|
4902
|
+
statusCode: number | null;
|
4903
|
+
} | null | undefined;
|
4904
|
+
loading?: boolean | null | undefined;
|
4905
|
+
} | {
|
4200
4906
|
start: string;
|
4201
4907
|
end: string;
|
4202
4908
|
} | null | undefined>;
|
@@ -4244,6 +4950,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4244
4950
|
path: string;
|
4245
4951
|
originalFilename: string;
|
4246
4952
|
}[] | {
|
4953
|
+
data?: any;
|
4954
|
+
error?: {
|
4955
|
+
message: string;
|
4956
|
+
statusCode: number | null;
|
4957
|
+
} | null | undefined;
|
4958
|
+
loading?: boolean | null | undefined;
|
4959
|
+
} | {
|
4247
4960
|
start: string;
|
4248
4961
|
end: string;
|
4249
4962
|
} | null | undefined> | null | undefined;
|
@@ -4391,6 +5104,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4391
5104
|
firstname: string;
|
4392
5105
|
surname: string;
|
4393
5106
|
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;
|
4394
5134
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
4395
5135
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
4396
5136
|
start: z.ZodString;
|
@@ -4526,6 +5266,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4526
5266
|
firstname: string;
|
4527
5267
|
surname: string;
|
4528
5268
|
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;
|
4529
5296
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
4530
5297
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
4531
5298
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -4582,6 +5349,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4582
5349
|
path: string;
|
4583
5350
|
originalFilename: string;
|
4584
5351
|
}[] | {
|
5352
|
+
data?: any;
|
5353
|
+
error?: {
|
5354
|
+
message: string;
|
5355
|
+
statusCode: number | null;
|
5356
|
+
} | null | undefined;
|
5357
|
+
loading?: boolean | null | undefined;
|
5358
|
+
} | {
|
4585
5359
|
start: string;
|
4586
5360
|
end: string;
|
4587
5361
|
} | null | undefined>;
|
@@ -4629,6 +5403,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4629
5403
|
path: string;
|
4630
5404
|
originalFilename: string;
|
4631
5405
|
}[] | {
|
5406
|
+
data?: any;
|
5407
|
+
error?: {
|
5408
|
+
message: string;
|
5409
|
+
statusCode: number | null;
|
5410
|
+
} | null | undefined;
|
5411
|
+
loading?: boolean | null | undefined;
|
5412
|
+
} | {
|
4632
5413
|
start: string;
|
4633
5414
|
end: string;
|
4634
5415
|
} | null | undefined> | null | undefined;
|
@@ -4684,6 +5465,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4684
5465
|
path: string;
|
4685
5466
|
originalFilename: string;
|
4686
5467
|
}[] | {
|
5468
|
+
data?: any;
|
5469
|
+
error?: {
|
5470
|
+
message: string;
|
5471
|
+
statusCode: number | null;
|
5472
|
+
} | null | undefined;
|
5473
|
+
loading?: boolean | null | undefined;
|
5474
|
+
} | {
|
4687
5475
|
start: string;
|
4688
5476
|
end: string;
|
4689
5477
|
} | null | undefined>;
|
@@ -4731,6 +5519,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4731
5519
|
path: string;
|
4732
5520
|
originalFilename: string;
|
4733
5521
|
}[] | {
|
5522
|
+
data?: any;
|
5523
|
+
error?: {
|
5524
|
+
message: string;
|
5525
|
+
statusCode: number | null;
|
5526
|
+
} | null | undefined;
|
5527
|
+
loading?: boolean | null | undefined;
|
5528
|
+
} | {
|
4734
5529
|
start: string;
|
4735
5530
|
end: string;
|
4736
5531
|
} | null | undefined> | null | undefined;
|
@@ -4878,6 +5673,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
4878
5673
|
firstname: string;
|
4879
5674
|
surname: string;
|
4880
5675
|
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;
|
4881
5703
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
4882
5704
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
4883
5705
|
start: z.ZodString;
|
@@ -5013,6 +5835,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5013
5835
|
firstname: string;
|
5014
5836
|
surname: string;
|
5015
5837
|
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;
|
5016
5865
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
5017
5866
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
5018
5867
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -5083,6 +5932,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5083
5932
|
path: string;
|
5084
5933
|
originalFilename: string;
|
5085
5934
|
}[] | {
|
5935
|
+
data?: any;
|
5936
|
+
error?: {
|
5937
|
+
message: string;
|
5938
|
+
statusCode: number | null;
|
5939
|
+
} | null | undefined;
|
5940
|
+
loading?: boolean | null | undefined;
|
5941
|
+
} | {
|
5086
5942
|
start: string;
|
5087
5943
|
end: string;
|
5088
5944
|
} | null | undefined>;
|
@@ -5130,6 +5986,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5130
5986
|
path: string;
|
5131
5987
|
originalFilename: string;
|
5132
5988
|
}[] | {
|
5989
|
+
data?: any;
|
5990
|
+
error?: {
|
5991
|
+
message: string;
|
5992
|
+
statusCode: number | null;
|
5993
|
+
} | null | undefined;
|
5994
|
+
loading?: boolean | null | undefined;
|
5995
|
+
} | {
|
5133
5996
|
start: string;
|
5134
5997
|
end: string;
|
5135
5998
|
} | null | undefined> | null | undefined;
|
@@ -5189,6 +6052,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5189
6052
|
path: string;
|
5190
6053
|
originalFilename: string;
|
5191
6054
|
}[] | {
|
6055
|
+
data?: any;
|
6056
|
+
error?: {
|
6057
|
+
message: string;
|
6058
|
+
statusCode: number | null;
|
6059
|
+
} | null | undefined;
|
6060
|
+
loading?: boolean | null | undefined;
|
6061
|
+
} | {
|
5192
6062
|
start: string;
|
5193
6063
|
end: string;
|
5194
6064
|
} | null | undefined>;
|
@@ -5236,6 +6106,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5236
6106
|
path: string;
|
5237
6107
|
originalFilename: string;
|
5238
6108
|
}[] | {
|
6109
|
+
data?: any;
|
6110
|
+
error?: {
|
6111
|
+
message: string;
|
6112
|
+
statusCode: number | null;
|
6113
|
+
} | null | undefined;
|
6114
|
+
loading?: boolean | null | undefined;
|
6115
|
+
} | {
|
5239
6116
|
start: string;
|
5240
6117
|
end: string;
|
5241
6118
|
} | null | undefined> | null | undefined;
|
@@ -5383,6 +6260,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5383
6260
|
firstname: string;
|
5384
6261
|
surname: string;
|
5385
6262
|
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;
|
5386
6290
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
5387
6291
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
5388
6292
|
start: z.ZodString;
|
@@ -5518,6 +6422,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5518
6422
|
firstname: string;
|
5519
6423
|
surname: string;
|
5520
6424
|
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;
|
5521
6452
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
5522
6453
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
5523
6454
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -5574,6 +6505,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5574
6505
|
path: string;
|
5575
6506
|
originalFilename: string;
|
5576
6507
|
}[] | {
|
6508
|
+
data?: any;
|
6509
|
+
error?: {
|
6510
|
+
message: string;
|
6511
|
+
statusCode: number | null;
|
6512
|
+
} | null | undefined;
|
6513
|
+
loading?: boolean | null | undefined;
|
6514
|
+
} | {
|
5577
6515
|
start: string;
|
5578
6516
|
end: string;
|
5579
6517
|
} | null | undefined>;
|
@@ -5621,6 +6559,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5621
6559
|
path: string;
|
5622
6560
|
originalFilename: string;
|
5623
6561
|
}[] | {
|
6562
|
+
data?: any;
|
6563
|
+
error?: {
|
6564
|
+
message: string;
|
6565
|
+
statusCode: number | null;
|
6566
|
+
} | null | undefined;
|
6567
|
+
loading?: boolean | null | undefined;
|
6568
|
+
} | {
|
5624
6569
|
start: string;
|
5625
6570
|
end: string;
|
5626
6571
|
} | null | undefined> | null | undefined;
|
@@ -5676,6 +6621,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5676
6621
|
path: string;
|
5677
6622
|
originalFilename: string;
|
5678
6623
|
}[] | {
|
6624
|
+
data?: any;
|
6625
|
+
error?: {
|
6626
|
+
message: string;
|
6627
|
+
statusCode: number | null;
|
6628
|
+
} | null | undefined;
|
6629
|
+
loading?: boolean | null | undefined;
|
6630
|
+
} | {
|
5679
6631
|
start: string;
|
5680
6632
|
end: string;
|
5681
6633
|
} | null | undefined>;
|
@@ -5723,6 +6675,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5723
6675
|
path: string;
|
5724
6676
|
originalFilename: string;
|
5725
6677
|
}[] | {
|
6678
|
+
data?: any;
|
6679
|
+
error?: {
|
6680
|
+
message: string;
|
6681
|
+
statusCode: number | null;
|
6682
|
+
} | null | undefined;
|
6683
|
+
loading?: boolean | null | undefined;
|
6684
|
+
} | {
|
5726
6685
|
start: string;
|
5727
6686
|
end: string;
|
5728
6687
|
} | null | undefined> | null | undefined;
|
@@ -5870,6 +6829,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
5870
6829
|
firstname: string;
|
5871
6830
|
surname: string;
|
5872
6831
|
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;
|
5873
6859
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
5874
6860
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
5875
6861
|
start: z.ZodString;
|
@@ -6005,6 +6991,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6005
6991
|
firstname: string;
|
6006
6992
|
surname: string;
|
6007
6993
|
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;
|
6008
7021
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
6009
7022
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
6010
7023
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -6062,6 +7075,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6062
7075
|
path: string;
|
6063
7076
|
originalFilename: string;
|
6064
7077
|
}[] | {
|
7078
|
+
data?: any;
|
7079
|
+
error?: {
|
7080
|
+
message: string;
|
7081
|
+
statusCode: number | null;
|
7082
|
+
} | null | undefined;
|
7083
|
+
loading?: boolean | null | undefined;
|
7084
|
+
} | {
|
6065
7085
|
start: string;
|
6066
7086
|
end: string;
|
6067
7087
|
} | null | undefined>;
|
@@ -6109,6 +7129,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6109
7129
|
path: string;
|
6110
7130
|
originalFilename: string;
|
6111
7131
|
}[] | {
|
7132
|
+
data?: any;
|
7133
|
+
error?: {
|
7134
|
+
message: string;
|
7135
|
+
statusCode: number | null;
|
7136
|
+
} | null | undefined;
|
7137
|
+
loading?: boolean | null | undefined;
|
7138
|
+
} | {
|
6112
7139
|
start: string;
|
6113
7140
|
end: string;
|
6114
7141
|
} | null | undefined> | null | undefined;
|
@@ -6165,6 +7192,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6165
7192
|
path: string;
|
6166
7193
|
originalFilename: string;
|
6167
7194
|
}[] | {
|
7195
|
+
data?: any;
|
7196
|
+
error?: {
|
7197
|
+
message: string;
|
7198
|
+
statusCode: number | null;
|
7199
|
+
} | null | undefined;
|
7200
|
+
loading?: boolean | null | undefined;
|
7201
|
+
} | {
|
6168
7202
|
start: string;
|
6169
7203
|
end: string;
|
6170
7204
|
} | null | undefined>;
|
@@ -6212,6 +7246,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6212
7246
|
path: string;
|
6213
7247
|
originalFilename: string;
|
6214
7248
|
}[] | {
|
7249
|
+
data?: any;
|
7250
|
+
error?: {
|
7251
|
+
message: string;
|
7252
|
+
statusCode: number | null;
|
7253
|
+
} | null | undefined;
|
7254
|
+
loading?: boolean | null | undefined;
|
7255
|
+
} | {
|
6215
7256
|
start: string;
|
6216
7257
|
end: string;
|
6217
7258
|
} | null | undefined> | null | undefined;
|
@@ -6360,6 +7401,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6360
7401
|
firstname: string;
|
6361
7402
|
surname: string;
|
6362
7403
|
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;
|
6363
7431
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
6364
7432
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
6365
7433
|
start: z.ZodString;
|
@@ -6495,6 +7563,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6495
7563
|
firstname: string;
|
6496
7564
|
surname: string;
|
6497
7565
|
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;
|
6498
7593
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
6499
7594
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
6500
7595
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -6551,6 +7646,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6551
7646
|
path: string;
|
6552
7647
|
originalFilename: string;
|
6553
7648
|
}[] | {
|
7649
|
+
data?: any;
|
7650
|
+
error?: {
|
7651
|
+
message: string;
|
7652
|
+
statusCode: number | null;
|
7653
|
+
} | null | undefined;
|
7654
|
+
loading?: boolean | null | undefined;
|
7655
|
+
} | {
|
6554
7656
|
start: string;
|
6555
7657
|
end: string;
|
6556
7658
|
} | null | undefined>;
|
@@ -6598,6 +7700,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6598
7700
|
path: string;
|
6599
7701
|
originalFilename: string;
|
6600
7702
|
}[] | {
|
7703
|
+
data?: any;
|
7704
|
+
error?: {
|
7705
|
+
message: string;
|
7706
|
+
statusCode: number | null;
|
7707
|
+
} | null | undefined;
|
7708
|
+
loading?: boolean | null | undefined;
|
7709
|
+
} | {
|
6601
7710
|
start: string;
|
6602
7711
|
end: string;
|
6603
7712
|
} | null | undefined> | null | undefined;
|
@@ -6653,6 +7762,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6653
7762
|
path: string;
|
6654
7763
|
originalFilename: string;
|
6655
7764
|
}[] | {
|
7765
|
+
data?: any;
|
7766
|
+
error?: {
|
7767
|
+
message: string;
|
7768
|
+
statusCode: number | null;
|
7769
|
+
} | null | undefined;
|
7770
|
+
loading?: boolean | null | undefined;
|
7771
|
+
} | {
|
6656
7772
|
start: string;
|
6657
7773
|
end: string;
|
6658
7774
|
} | null | undefined>;
|
@@ -6700,6 +7816,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6700
7816
|
path: string;
|
6701
7817
|
originalFilename: string;
|
6702
7818
|
}[] | {
|
7819
|
+
data?: any;
|
7820
|
+
error?: {
|
7821
|
+
message: string;
|
7822
|
+
statusCode: number | null;
|
7823
|
+
} | null | undefined;
|
7824
|
+
loading?: boolean | null | undefined;
|
7825
|
+
} | {
|
6703
7826
|
start: string;
|
6704
7827
|
end: string;
|
6705
7828
|
} | null | undefined> | null | undefined;
|
@@ -6847,6 +7970,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6847
7970
|
firstname: string;
|
6848
7971
|
surname: string;
|
6849
7972
|
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;
|
6850
8000
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
6851
8001
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
6852
8002
|
start: z.ZodString;
|
@@ -6982,6 +8132,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
6982
8132
|
firstname: string;
|
6983
8133
|
surname: string;
|
6984
8134
|
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;
|
6985
8162
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
6986
8163
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
6987
8164
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -7039,6 +8216,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7039
8216
|
path: string;
|
7040
8217
|
originalFilename: string;
|
7041
8218
|
}[] | {
|
8219
|
+
data?: any;
|
8220
|
+
error?: {
|
8221
|
+
message: string;
|
8222
|
+
statusCode: number | null;
|
8223
|
+
} | null | undefined;
|
8224
|
+
loading?: boolean | null | undefined;
|
8225
|
+
} | {
|
7042
8226
|
start: string;
|
7043
8227
|
end: string;
|
7044
8228
|
} | null | undefined>;
|
@@ -7087,6 +8271,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7087
8271
|
path: string;
|
7088
8272
|
originalFilename: string;
|
7089
8273
|
}[] | {
|
8274
|
+
data?: any;
|
8275
|
+
error?: {
|
8276
|
+
message: string;
|
8277
|
+
statusCode: number | null;
|
8278
|
+
} | null | undefined;
|
8279
|
+
loading?: boolean | null | undefined;
|
8280
|
+
} | {
|
7090
8281
|
start: string;
|
7091
8282
|
end: string;
|
7092
8283
|
} | null | undefined> | null | undefined;
|
@@ -7142,6 +8333,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7142
8333
|
path: string;
|
7143
8334
|
originalFilename: string;
|
7144
8335
|
}[] | {
|
8336
|
+
data?: any;
|
8337
|
+
error?: {
|
8338
|
+
message: string;
|
8339
|
+
statusCode: number | null;
|
8340
|
+
} | null | undefined;
|
8341
|
+
loading?: boolean | null | undefined;
|
8342
|
+
} | {
|
7145
8343
|
start: string;
|
7146
8344
|
end: string;
|
7147
8345
|
} | null | undefined>;
|
@@ -7190,6 +8388,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7190
8388
|
path: string;
|
7191
8389
|
originalFilename: string;
|
7192
8390
|
}[] | {
|
8391
|
+
data?: any;
|
8392
|
+
error?: {
|
8393
|
+
message: string;
|
8394
|
+
statusCode: number | null;
|
8395
|
+
} | null | undefined;
|
8396
|
+
loading?: boolean | null | undefined;
|
8397
|
+
} | {
|
7193
8398
|
start: string;
|
7194
8399
|
end: string;
|
7195
8400
|
} | null | undefined> | null | undefined;
|
@@ -7337,6 +8542,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7337
8542
|
firstname: string;
|
7338
8543
|
surname: string;
|
7339
8544
|
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;
|
7340
8572
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
7341
8573
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
7342
8574
|
start: z.ZodString;
|
@@ -7472,6 +8704,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7472
8704
|
firstname: string;
|
7473
8705
|
surname: string;
|
7474
8706
|
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;
|
7475
8734
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
7476
8735
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
7477
8736
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -7528,6 +8787,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7528
8787
|
path: string;
|
7529
8788
|
originalFilename: string;
|
7530
8789
|
}[] | {
|
8790
|
+
data?: any;
|
8791
|
+
error?: {
|
8792
|
+
message: string;
|
8793
|
+
statusCode: number | null;
|
8794
|
+
} | null | undefined;
|
8795
|
+
loading?: boolean | null | undefined;
|
8796
|
+
} | {
|
7531
8797
|
start: string;
|
7532
8798
|
end: string;
|
7533
8799
|
} | null | undefined>;
|
@@ -7575,6 +8841,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7575
8841
|
path: string;
|
7576
8842
|
originalFilename: string;
|
7577
8843
|
}[] | {
|
8844
|
+
data?: any;
|
8845
|
+
error?: {
|
8846
|
+
message: string;
|
8847
|
+
statusCode: number | null;
|
8848
|
+
} | null | undefined;
|
8849
|
+
loading?: boolean | null | undefined;
|
8850
|
+
} | {
|
7578
8851
|
start: string;
|
7579
8852
|
end: string;
|
7580
8853
|
} | null | undefined> | null | undefined;
|
@@ -7630,6 +8903,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7630
8903
|
path: string;
|
7631
8904
|
originalFilename: string;
|
7632
8905
|
}[] | {
|
8906
|
+
data?: any;
|
8907
|
+
error?: {
|
8908
|
+
message: string;
|
8909
|
+
statusCode: number | null;
|
8910
|
+
} | null | undefined;
|
8911
|
+
loading?: boolean | null | undefined;
|
8912
|
+
} | {
|
7633
8913
|
start: string;
|
7634
8914
|
end: string;
|
7635
8915
|
} | null | undefined>;
|
@@ -7677,6 +8957,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7677
8957
|
path: string;
|
7678
8958
|
originalFilename: string;
|
7679
8959
|
}[] | {
|
8960
|
+
data?: any;
|
8961
|
+
error?: {
|
8962
|
+
message: string;
|
8963
|
+
statusCode: number | null;
|
8964
|
+
} | null | undefined;
|
8965
|
+
loading?: boolean | null | undefined;
|
8966
|
+
} | {
|
7680
8967
|
start: string;
|
7681
8968
|
end: string;
|
7682
8969
|
} | null | undefined> | null | undefined;
|
@@ -7824,6 +9111,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7824
9111
|
firstname: string;
|
7825
9112
|
surname: string;
|
7826
9113
|
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;
|
7827
9141
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
7828
9142
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
7829
9143
|
start: z.ZodString;
|
@@ -7959,6 +9273,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
7959
9273
|
firstname: string;
|
7960
9274
|
surname: string;
|
7961
9275
|
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;
|
7962
9303
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
7963
9304
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
7964
9305
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -8016,6 +9357,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8016
9357
|
path: string;
|
8017
9358
|
originalFilename: string;
|
8018
9359
|
}[] | {
|
9360
|
+
data?: any;
|
9361
|
+
error?: {
|
9362
|
+
message: string;
|
9363
|
+
statusCode: number | null;
|
9364
|
+
} | null | undefined;
|
9365
|
+
loading?: boolean | null | undefined;
|
9366
|
+
} | {
|
8019
9367
|
start: string;
|
8020
9368
|
end: string;
|
8021
9369
|
} | null | undefined>;
|
@@ -8064,6 +9412,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8064
9412
|
path: string;
|
8065
9413
|
originalFilename: string;
|
8066
9414
|
}[] | {
|
9415
|
+
data?: any;
|
9416
|
+
error?: {
|
9417
|
+
message: string;
|
9418
|
+
statusCode: number | null;
|
9419
|
+
} | null | undefined;
|
9420
|
+
loading?: boolean | null | undefined;
|
9421
|
+
} | {
|
8067
9422
|
start: string;
|
8068
9423
|
end: string;
|
8069
9424
|
} | null | undefined> | null | undefined;
|
@@ -8119,6 +9474,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8119
9474
|
path: string;
|
8120
9475
|
originalFilename: string;
|
8121
9476
|
}[] | {
|
9477
|
+
data?: any;
|
9478
|
+
error?: {
|
9479
|
+
message: string;
|
9480
|
+
statusCode: number | null;
|
9481
|
+
} | null | undefined;
|
9482
|
+
loading?: boolean | null | undefined;
|
9483
|
+
} | {
|
8122
9484
|
start: string;
|
8123
9485
|
end: string;
|
8124
9486
|
} | null | undefined>;
|
@@ -8167,6 +9529,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8167
9529
|
path: string;
|
8168
9530
|
originalFilename: string;
|
8169
9531
|
}[] | {
|
9532
|
+
data?: any;
|
9533
|
+
error?: {
|
9534
|
+
message: string;
|
9535
|
+
statusCode: number | null;
|
9536
|
+
} | null | undefined;
|
9537
|
+
loading?: boolean | null | undefined;
|
9538
|
+
} | {
|
8170
9539
|
start: string;
|
8171
9540
|
end: string;
|
8172
9541
|
} | null | undefined> | null | undefined;
|
@@ -8314,6 +9683,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8314
9683
|
firstname: string;
|
8315
9684
|
surname: string;
|
8316
9685
|
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;
|
8317
9713
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
8318
9714
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
8319
9715
|
start: z.ZodString;
|
@@ -8449,6 +9845,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8449
9845
|
firstname: string;
|
8450
9846
|
surname: string;
|
8451
9847
|
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;
|
8452
9875
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
8453
9876
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
8454
9877
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -8520,6 +9943,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8520
9943
|
path: string;
|
8521
9944
|
originalFilename: string;
|
8522
9945
|
}[] | {
|
9946
|
+
data?: any;
|
9947
|
+
error?: {
|
9948
|
+
message: string;
|
9949
|
+
statusCode: number | null;
|
9950
|
+
} | null | undefined;
|
9951
|
+
loading?: boolean | null | undefined;
|
9952
|
+
} | {
|
8523
9953
|
start: string;
|
8524
9954
|
end: string;
|
8525
9955
|
} | null | undefined>;
|
@@ -8568,6 +9998,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8568
9998
|
path: string;
|
8569
9999
|
originalFilename: string;
|
8570
10000
|
}[] | {
|
10001
|
+
data?: any;
|
10002
|
+
error?: {
|
10003
|
+
message: string;
|
10004
|
+
statusCode: number | null;
|
10005
|
+
} | null | undefined;
|
10006
|
+
loading?: boolean | null | undefined;
|
10007
|
+
} | {
|
8571
10008
|
start: string;
|
8572
10009
|
end: string;
|
8573
10010
|
} | null | undefined> | null | undefined;
|
@@ -8627,6 +10064,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8627
10064
|
path: string;
|
8628
10065
|
originalFilename: string;
|
8629
10066
|
}[] | {
|
10067
|
+
data?: any;
|
10068
|
+
error?: {
|
10069
|
+
message: string;
|
10070
|
+
statusCode: number | null;
|
10071
|
+
} | null | undefined;
|
10072
|
+
loading?: boolean | null | undefined;
|
10073
|
+
} | {
|
8630
10074
|
start: string;
|
8631
10075
|
end: string;
|
8632
10076
|
} | null | undefined>;
|
@@ -8675,6 +10119,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8675
10119
|
path: string;
|
8676
10120
|
originalFilename: string;
|
8677
10121
|
}[] | {
|
10122
|
+
data?: any;
|
10123
|
+
error?: {
|
10124
|
+
message: string;
|
10125
|
+
statusCode: number | null;
|
10126
|
+
} | null | undefined;
|
10127
|
+
loading?: boolean | null | undefined;
|
10128
|
+
} | {
|
8678
10129
|
start: string;
|
8679
10130
|
end: string;
|
8680
10131
|
} | null | undefined> | null | undefined;
|
@@ -8822,6 +10273,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8822
10273
|
firstname: string;
|
8823
10274
|
surname: string;
|
8824
10275
|
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;
|
8825
10303
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
8826
10304
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
8827
10305
|
start: z.ZodString;
|
@@ -8957,6 +10435,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
8957
10435
|
firstname: string;
|
8958
10436
|
surname: string;
|
8959
10437
|
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;
|
8960
10465
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
8961
10466
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
8962
10467
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -9013,6 +10518,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9013
10518
|
path: string;
|
9014
10519
|
originalFilename: string;
|
9015
10520
|
}[] | {
|
10521
|
+
data?: any;
|
10522
|
+
error?: {
|
10523
|
+
message: string;
|
10524
|
+
statusCode: number | null;
|
10525
|
+
} | null | undefined;
|
10526
|
+
loading?: boolean | null | undefined;
|
10527
|
+
} | {
|
9016
10528
|
start: string;
|
9017
10529
|
end: string;
|
9018
10530
|
} | null | undefined>;
|
@@ -9060,6 +10572,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9060
10572
|
path: string;
|
9061
10573
|
originalFilename: string;
|
9062
10574
|
}[] | {
|
10575
|
+
data?: any;
|
10576
|
+
error?: {
|
10577
|
+
message: string;
|
10578
|
+
statusCode: number | null;
|
10579
|
+
} | null | undefined;
|
10580
|
+
loading?: boolean | null | undefined;
|
10581
|
+
} | {
|
9063
10582
|
start: string;
|
9064
10583
|
end: string;
|
9065
10584
|
} | null | undefined> | null | undefined;
|
@@ -9115,6 +10634,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9115
10634
|
path: string;
|
9116
10635
|
originalFilename: string;
|
9117
10636
|
}[] | {
|
10637
|
+
data?: any;
|
10638
|
+
error?: {
|
10639
|
+
message: string;
|
10640
|
+
statusCode: number | null;
|
10641
|
+
} | null | undefined;
|
10642
|
+
loading?: boolean | null | undefined;
|
10643
|
+
} | {
|
9118
10644
|
start: string;
|
9119
10645
|
end: string;
|
9120
10646
|
} | null | undefined>;
|
@@ -9162,6 +10688,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9162
10688
|
path: string;
|
9163
10689
|
originalFilename: string;
|
9164
10690
|
}[] | {
|
10691
|
+
data?: any;
|
10692
|
+
error?: {
|
10693
|
+
message: string;
|
10694
|
+
statusCode: number | null;
|
10695
|
+
} | null | undefined;
|
10696
|
+
loading?: boolean | null | undefined;
|
10697
|
+
} | {
|
9165
10698
|
start: string;
|
9166
10699
|
end: string;
|
9167
10700
|
} | null | undefined> | null | undefined;
|
@@ -9309,6 +10842,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9309
10842
|
firstname: string;
|
9310
10843
|
surname: string;
|
9311
10844
|
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;
|
9312
10872
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
9313
10873
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
9314
10874
|
start: z.ZodString;
|
@@ -9444,6 +11004,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9444
11004
|
firstname: string;
|
9445
11005
|
surname: string;
|
9446
11006
|
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;
|
9447
11034
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
9448
11035
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
9449
11036
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -9507,6 +11094,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9507
11094
|
path: string;
|
9508
11095
|
originalFilename: string;
|
9509
11096
|
}[] | {
|
11097
|
+
data?: any;
|
11098
|
+
error?: {
|
11099
|
+
message: string;
|
11100
|
+
statusCode: number | null;
|
11101
|
+
} | null | undefined;
|
11102
|
+
loading?: boolean | null | undefined;
|
11103
|
+
} | {
|
9510
11104
|
start: string;
|
9511
11105
|
end: string;
|
9512
11106
|
} | null | undefined>;
|
@@ -9557,6 +11151,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9557
11151
|
path: string;
|
9558
11152
|
originalFilename: string;
|
9559
11153
|
}[] | {
|
11154
|
+
data?: any;
|
11155
|
+
error?: {
|
11156
|
+
message: string;
|
11157
|
+
statusCode: number | null;
|
11158
|
+
} | null | undefined;
|
11159
|
+
loading?: boolean | null | undefined;
|
11160
|
+
} | {
|
9560
11161
|
start: string;
|
9561
11162
|
end: string;
|
9562
11163
|
} | null | undefined> | null | undefined;
|
@@ -9612,6 +11213,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9612
11213
|
path: string;
|
9613
11214
|
originalFilename: string;
|
9614
11215
|
}[] | {
|
11216
|
+
data?: any;
|
11217
|
+
error?: {
|
11218
|
+
message: string;
|
11219
|
+
statusCode: number | null;
|
11220
|
+
} | null | undefined;
|
11221
|
+
loading?: boolean | null | undefined;
|
11222
|
+
} | {
|
9615
11223
|
start: string;
|
9616
11224
|
end: string;
|
9617
11225
|
} | null | undefined>;
|
@@ -9662,6 +11270,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9662
11270
|
path: string;
|
9663
11271
|
originalFilename: string;
|
9664
11272
|
}[] | {
|
11273
|
+
data?: any;
|
11274
|
+
error?: {
|
11275
|
+
message: string;
|
11276
|
+
statusCode: number | null;
|
11277
|
+
} | null | undefined;
|
11278
|
+
loading?: boolean | null | undefined;
|
11279
|
+
} | {
|
9665
11280
|
start: string;
|
9666
11281
|
end: string;
|
9667
11282
|
} | null | undefined> | null | undefined;
|
@@ -9809,6 +11424,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9809
11424
|
firstname: string;
|
9810
11425
|
surname: string;
|
9811
11426
|
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;
|
9812
11454
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
9813
11455
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
9814
11456
|
start: z.ZodString;
|
@@ -9944,6 +11586,33 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
9944
11586
|
firstname: string;
|
9945
11587
|
surname: string;
|
9946
11588
|
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;
|
9947
11616
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
9948
11617
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
9949
11618
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -10000,6 +11669,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
10000
11669
|
path: string;
|
10001
11670
|
originalFilename: string;
|
10002
11671
|
}[] | {
|
11672
|
+
data?: any;
|
11673
|
+
error?: {
|
11674
|
+
message: string;
|
11675
|
+
statusCode: number | null;
|
11676
|
+
} | null | undefined;
|
11677
|
+
loading?: boolean | null | undefined;
|
11678
|
+
} | {
|
10003
11679
|
start: string;
|
10004
11680
|
end: string;
|
10005
11681
|
} | null | undefined>;
|
@@ -10047,6 +11723,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
10047
11723
|
path: string;
|
10048
11724
|
originalFilename: string;
|
10049
11725
|
}[] | {
|
11726
|
+
data?: any;
|
11727
|
+
error?: {
|
11728
|
+
message: string;
|
11729
|
+
statusCode: number | null;
|
11730
|
+
} | null | undefined;
|
11731
|
+
loading?: boolean | null | undefined;
|
11732
|
+
} | {
|
10050
11733
|
start: string;
|
10051
11734
|
end: string;
|
10052
11735
|
} | null | undefined> | null | undefined;
|
@@ -10102,6 +11785,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
10102
11785
|
path: string;
|
10103
11786
|
originalFilename: string;
|
10104
11787
|
}[] | {
|
11788
|
+
data?: any;
|
11789
|
+
error?: {
|
11790
|
+
message: string;
|
11791
|
+
statusCode: number | null;
|
11792
|
+
} | null | undefined;
|
11793
|
+
loading?: boolean | null | undefined;
|
11794
|
+
} | {
|
10105
11795
|
start: string;
|
10106
11796
|
end: string;
|
10107
11797
|
} | null | undefined>;
|
@@ -10149,6 +11839,13 @@ export declare const ActionDocument: z.ZodDiscriminatedUnion<"type", [z.ZodObjec
|
|
10149
11839
|
path: string;
|
10150
11840
|
originalFilename: string;
|
10151
11841
|
}[] | {
|
11842
|
+
data?: any;
|
11843
|
+
error?: {
|
11844
|
+
message: string;
|
11845
|
+
statusCode: number | null;
|
11846
|
+
} | null | undefined;
|
11847
|
+
loading?: boolean | null | undefined;
|
11848
|
+
} | {
|
10152
11849
|
start: string;
|
10153
11850
|
end: string;
|
10154
11851
|
} | null | undefined> | null | undefined;
|
@@ -10298,6 +11995,33 @@ export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendS
|
|
10298
11995
|
firstname: string;
|
10299
11996
|
surname: string;
|
10300
11997
|
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;
|
10301
12025
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
10302
12026
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
10303
12027
|
start: z.ZodString;
|
@@ -10433,6 +12157,33 @@ export declare const AsyncRejectActionDocument: z.ZodObject<z.objectUtil.extendS
|
|
10433
12157
|
firstname: string;
|
10434
12158
|
surname: string;
|
10435
12159
|
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;
|
10436
12187
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
10437
12188
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
10438
12189
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -10608,6 +12359,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10608
12359
|
firstname: string;
|
10609
12360
|
surname: string;
|
10610
12361
|
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;
|
10611
12389
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
10612
12390
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
10613
12391
|
start: z.ZodString;
|
@@ -10743,6 +12521,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10743
12521
|
firstname: string;
|
10744
12522
|
surname: string;
|
10745
12523
|
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;
|
10746
12551
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
10747
12552
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
10748
12553
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -10799,6 +12604,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10799
12604
|
path: string;
|
10800
12605
|
originalFilename: string;
|
10801
12606
|
}[] | {
|
12607
|
+
data?: any;
|
12608
|
+
error?: {
|
12609
|
+
message: string;
|
12610
|
+
statusCode: number | null;
|
12611
|
+
} | null | undefined;
|
12612
|
+
loading?: boolean | null | undefined;
|
12613
|
+
} | {
|
10802
12614
|
start: string;
|
10803
12615
|
end: string;
|
10804
12616
|
} | null | undefined>;
|
@@ -10846,6 +12658,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10846
12658
|
path: string;
|
10847
12659
|
originalFilename: string;
|
10848
12660
|
}[] | {
|
12661
|
+
data?: any;
|
12662
|
+
error?: {
|
12663
|
+
message: string;
|
12664
|
+
statusCode: number | null;
|
12665
|
+
} | null | undefined;
|
12666
|
+
loading?: boolean | null | undefined;
|
12667
|
+
} | {
|
10849
12668
|
start: string;
|
10850
12669
|
end: string;
|
10851
12670
|
} | null | undefined> | null | undefined;
|
@@ -10901,6 +12720,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10901
12720
|
path: string;
|
10902
12721
|
originalFilename: string;
|
10903
12722
|
}[] | {
|
12723
|
+
data?: any;
|
12724
|
+
error?: {
|
12725
|
+
message: string;
|
12726
|
+
statusCode: number | null;
|
12727
|
+
} | null | undefined;
|
12728
|
+
loading?: boolean | null | undefined;
|
12729
|
+
} | {
|
10904
12730
|
start: string;
|
10905
12731
|
end: string;
|
10906
12732
|
} | null | undefined>;
|
@@ -10948,6 +12774,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
10948
12774
|
path: string;
|
10949
12775
|
originalFilename: string;
|
10950
12776
|
}[] | {
|
12777
|
+
data?: any;
|
12778
|
+
error?: {
|
12779
|
+
message: string;
|
12780
|
+
statusCode: number | null;
|
12781
|
+
} | null | undefined;
|
12782
|
+
loading?: boolean | null | undefined;
|
12783
|
+
} | {
|
10951
12784
|
start: string;
|
10952
12785
|
end: string;
|
10953
12786
|
} | null | undefined> | null | undefined;
|
@@ -11095,6 +12928,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11095
12928
|
firstname: string;
|
11096
12929
|
surname: string;
|
11097
12930
|
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;
|
11098
12958
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
11099
12959
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
11100
12960
|
start: z.ZodString;
|
@@ -11230,6 +13090,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11230
13090
|
firstname: string;
|
11231
13091
|
surname: string;
|
11232
13092
|
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;
|
11233
13120
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
11234
13121
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
11235
13122
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -11286,6 +13173,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11286
13173
|
path: string;
|
11287
13174
|
originalFilename: string;
|
11288
13175
|
}[] | {
|
13176
|
+
data?: any;
|
13177
|
+
error?: {
|
13178
|
+
message: string;
|
13179
|
+
statusCode: number | null;
|
13180
|
+
} | null | undefined;
|
13181
|
+
loading?: boolean | null | undefined;
|
13182
|
+
} | {
|
11289
13183
|
start: string;
|
11290
13184
|
end: string;
|
11291
13185
|
} | null | undefined>;
|
@@ -11333,6 +13227,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11333
13227
|
path: string;
|
11334
13228
|
originalFilename: string;
|
11335
13229
|
}[] | {
|
13230
|
+
data?: any;
|
13231
|
+
error?: {
|
13232
|
+
message: string;
|
13233
|
+
statusCode: number | null;
|
13234
|
+
} | null | undefined;
|
13235
|
+
loading?: boolean | null | undefined;
|
13236
|
+
} | {
|
11336
13237
|
start: string;
|
11337
13238
|
end: string;
|
11338
13239
|
} | null | undefined> | null | undefined;
|
@@ -11388,6 +13289,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11388
13289
|
path: string;
|
11389
13290
|
originalFilename: string;
|
11390
13291
|
}[] | {
|
13292
|
+
data?: any;
|
13293
|
+
error?: {
|
13294
|
+
message: string;
|
13295
|
+
statusCode: number | null;
|
13296
|
+
} | null | undefined;
|
13297
|
+
loading?: boolean | null | undefined;
|
13298
|
+
} | {
|
11391
13299
|
start: string;
|
11392
13300
|
end: string;
|
11393
13301
|
} | null | undefined>;
|
@@ -11435,6 +13343,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11435
13343
|
path: string;
|
11436
13344
|
originalFilename: string;
|
11437
13345
|
}[] | {
|
13346
|
+
data?: any;
|
13347
|
+
error?: {
|
13348
|
+
message: string;
|
13349
|
+
statusCode: number | null;
|
13350
|
+
} | null | undefined;
|
13351
|
+
loading?: boolean | null | undefined;
|
13352
|
+
} | {
|
11438
13353
|
start: string;
|
11439
13354
|
end: string;
|
11440
13355
|
} | null | undefined> | null | undefined;
|
@@ -11582,6 +13497,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11582
13497
|
firstname: string;
|
11583
13498
|
surname: string;
|
11584
13499
|
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;
|
11585
13527
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
11586
13528
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
11587
13529
|
start: z.ZodString;
|
@@ -11717,6 +13659,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11717
13659
|
firstname: string;
|
11718
13660
|
surname: string;
|
11719
13661
|
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;
|
11720
13689
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
11721
13690
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
11722
13691
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -11787,6 +13756,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11787
13756
|
path: string;
|
11788
13757
|
originalFilename: string;
|
11789
13758
|
}[] | {
|
13759
|
+
data?: any;
|
13760
|
+
error?: {
|
13761
|
+
message: string;
|
13762
|
+
statusCode: number | null;
|
13763
|
+
} | null | undefined;
|
13764
|
+
loading?: boolean | null | undefined;
|
13765
|
+
} | {
|
11790
13766
|
start: string;
|
11791
13767
|
end: string;
|
11792
13768
|
} | null | undefined>;
|
@@ -11834,6 +13810,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11834
13810
|
path: string;
|
11835
13811
|
originalFilename: string;
|
11836
13812
|
}[] | {
|
13813
|
+
data?: any;
|
13814
|
+
error?: {
|
13815
|
+
message: string;
|
13816
|
+
statusCode: number | null;
|
13817
|
+
} | null | undefined;
|
13818
|
+
loading?: boolean | null | undefined;
|
13819
|
+
} | {
|
11837
13820
|
start: string;
|
11838
13821
|
end: string;
|
11839
13822
|
} | null | undefined> | null | undefined;
|
@@ -11893,6 +13876,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11893
13876
|
path: string;
|
11894
13877
|
originalFilename: string;
|
11895
13878
|
}[] | {
|
13879
|
+
data?: any;
|
13880
|
+
error?: {
|
13881
|
+
message: string;
|
13882
|
+
statusCode: number | null;
|
13883
|
+
} | null | undefined;
|
13884
|
+
loading?: boolean | null | undefined;
|
13885
|
+
} | {
|
11896
13886
|
start: string;
|
11897
13887
|
end: string;
|
11898
13888
|
} | null | undefined>;
|
@@ -11940,6 +13930,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
11940
13930
|
path: string;
|
11941
13931
|
originalFilename: string;
|
11942
13932
|
}[] | {
|
13933
|
+
data?: any;
|
13934
|
+
error?: {
|
13935
|
+
message: string;
|
13936
|
+
statusCode: number | null;
|
13937
|
+
} | null | undefined;
|
13938
|
+
loading?: boolean | null | undefined;
|
13939
|
+
} | {
|
11943
13940
|
start: string;
|
11944
13941
|
end: string;
|
11945
13942
|
} | null | undefined> | null | undefined;
|
@@ -12087,6 +14084,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12087
14084
|
firstname: string;
|
12088
14085
|
surname: string;
|
12089
14086
|
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;
|
12090
14114
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
12091
14115
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
12092
14116
|
start: z.ZodString;
|
@@ -12222,6 +14246,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12222
14246
|
firstname: string;
|
12223
14247
|
surname: string;
|
12224
14248
|
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;
|
12225
14276
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
12226
14277
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
12227
14278
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -12278,6 +14329,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12278
14329
|
path: string;
|
12279
14330
|
originalFilename: string;
|
12280
14331
|
}[] | {
|
14332
|
+
data?: any;
|
14333
|
+
error?: {
|
14334
|
+
message: string;
|
14335
|
+
statusCode: number | null;
|
14336
|
+
} | null | undefined;
|
14337
|
+
loading?: boolean | null | undefined;
|
14338
|
+
} | {
|
12281
14339
|
start: string;
|
12282
14340
|
end: string;
|
12283
14341
|
} | null | undefined>;
|
@@ -12325,6 +14383,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12325
14383
|
path: string;
|
12326
14384
|
originalFilename: string;
|
12327
14385
|
}[] | {
|
14386
|
+
data?: any;
|
14387
|
+
error?: {
|
14388
|
+
message: string;
|
14389
|
+
statusCode: number | null;
|
14390
|
+
} | null | undefined;
|
14391
|
+
loading?: boolean | null | undefined;
|
14392
|
+
} | {
|
12328
14393
|
start: string;
|
12329
14394
|
end: string;
|
12330
14395
|
} | null | undefined> | null | undefined;
|
@@ -12380,6 +14445,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12380
14445
|
path: string;
|
12381
14446
|
originalFilename: string;
|
12382
14447
|
}[] | {
|
14448
|
+
data?: any;
|
14449
|
+
error?: {
|
14450
|
+
message: string;
|
14451
|
+
statusCode: number | null;
|
14452
|
+
} | null | undefined;
|
14453
|
+
loading?: boolean | null | undefined;
|
14454
|
+
} | {
|
12383
14455
|
start: string;
|
12384
14456
|
end: string;
|
12385
14457
|
} | null | undefined>;
|
@@ -12427,6 +14499,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12427
14499
|
path: string;
|
12428
14500
|
originalFilename: string;
|
12429
14501
|
}[] | {
|
14502
|
+
data?: any;
|
14503
|
+
error?: {
|
14504
|
+
message: string;
|
14505
|
+
statusCode: number | null;
|
14506
|
+
} | null | undefined;
|
14507
|
+
loading?: boolean | null | undefined;
|
14508
|
+
} | {
|
12430
14509
|
start: string;
|
12431
14510
|
end: string;
|
12432
14511
|
} | null | undefined> | null | undefined;
|
@@ -12574,6 +14653,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12574
14653
|
firstname: string;
|
12575
14654
|
surname: string;
|
12576
14655
|
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;
|
12577
14683
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
12578
14684
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
12579
14685
|
start: z.ZodString;
|
@@ -12709,6 +14815,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12709
14815
|
firstname: string;
|
12710
14816
|
surname: string;
|
12711
14817
|
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;
|
12712
14845
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
12713
14846
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
12714
14847
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -12779,6 +14912,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12779
14912
|
path: string;
|
12780
14913
|
originalFilename: string;
|
12781
14914
|
}[] | {
|
14915
|
+
data?: any;
|
14916
|
+
error?: {
|
14917
|
+
message: string;
|
14918
|
+
statusCode: number | null;
|
14919
|
+
} | null | undefined;
|
14920
|
+
loading?: boolean | null | undefined;
|
14921
|
+
} | {
|
12782
14922
|
start: string;
|
12783
14923
|
end: string;
|
12784
14924
|
} | null | undefined>;
|
@@ -12826,6 +14966,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12826
14966
|
path: string;
|
12827
14967
|
originalFilename: string;
|
12828
14968
|
}[] | {
|
14969
|
+
data?: any;
|
14970
|
+
error?: {
|
14971
|
+
message: string;
|
14972
|
+
statusCode: number | null;
|
14973
|
+
} | null | undefined;
|
14974
|
+
loading?: boolean | null | undefined;
|
14975
|
+
} | {
|
12829
14976
|
start: string;
|
12830
14977
|
end: string;
|
12831
14978
|
} | null | undefined> | null | undefined;
|
@@ -12885,6 +15032,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12885
15032
|
path: string;
|
12886
15033
|
originalFilename: string;
|
12887
15034
|
}[] | {
|
15035
|
+
data?: any;
|
15036
|
+
error?: {
|
15037
|
+
message: string;
|
15038
|
+
statusCode: number | null;
|
15039
|
+
} | null | undefined;
|
15040
|
+
loading?: boolean | null | undefined;
|
15041
|
+
} | {
|
12888
15042
|
start: string;
|
12889
15043
|
end: string;
|
12890
15044
|
} | null | undefined>;
|
@@ -12932,6 +15086,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
12932
15086
|
path: string;
|
12933
15087
|
originalFilename: string;
|
12934
15088
|
}[] | {
|
15089
|
+
data?: any;
|
15090
|
+
error?: {
|
15091
|
+
message: string;
|
15092
|
+
statusCode: number | null;
|
15093
|
+
} | null | undefined;
|
15094
|
+
loading?: boolean | null | undefined;
|
15095
|
+
} | {
|
12935
15096
|
start: string;
|
12936
15097
|
end: string;
|
12937
15098
|
} | null | undefined> | null | undefined;
|
@@ -13079,6 +15240,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13079
15240
|
firstname: string;
|
13080
15241
|
surname: string;
|
13081
15242
|
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;
|
13082
15270
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
13083
15271
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
13084
15272
|
start: z.ZodString;
|
@@ -13214,6 +15402,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13214
15402
|
firstname: string;
|
13215
15403
|
surname: string;
|
13216
15404
|
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;
|
13217
15432
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
13218
15433
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
13219
15434
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -13270,6 +15485,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13270
15485
|
path: string;
|
13271
15486
|
originalFilename: string;
|
13272
15487
|
}[] | {
|
15488
|
+
data?: any;
|
15489
|
+
error?: {
|
15490
|
+
message: string;
|
15491
|
+
statusCode: number | null;
|
15492
|
+
} | null | undefined;
|
15493
|
+
loading?: boolean | null | undefined;
|
15494
|
+
} | {
|
13273
15495
|
start: string;
|
13274
15496
|
end: string;
|
13275
15497
|
} | null | undefined>;
|
@@ -13317,6 +15539,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13317
15539
|
path: string;
|
13318
15540
|
originalFilename: string;
|
13319
15541
|
}[] | {
|
15542
|
+
data?: any;
|
15543
|
+
error?: {
|
15544
|
+
message: string;
|
15545
|
+
statusCode: number | null;
|
15546
|
+
} | null | undefined;
|
15547
|
+
loading?: boolean | null | undefined;
|
15548
|
+
} | {
|
13320
15549
|
start: string;
|
13321
15550
|
end: string;
|
13322
15551
|
} | null | undefined> | null | undefined;
|
@@ -13372,6 +15601,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13372
15601
|
path: string;
|
13373
15602
|
originalFilename: string;
|
13374
15603
|
}[] | {
|
15604
|
+
data?: any;
|
15605
|
+
error?: {
|
15606
|
+
message: string;
|
15607
|
+
statusCode: number | null;
|
15608
|
+
} | null | undefined;
|
15609
|
+
loading?: boolean | null | undefined;
|
15610
|
+
} | {
|
13375
15611
|
start: string;
|
13376
15612
|
end: string;
|
13377
15613
|
} | null | undefined>;
|
@@ -13419,6 +15655,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13419
15655
|
path: string;
|
13420
15656
|
originalFilename: string;
|
13421
15657
|
}[] | {
|
15658
|
+
data?: any;
|
15659
|
+
error?: {
|
15660
|
+
message: string;
|
15661
|
+
statusCode: number | null;
|
15662
|
+
} | null | undefined;
|
15663
|
+
loading?: boolean | null | undefined;
|
15664
|
+
} | {
|
13422
15665
|
start: string;
|
13423
15666
|
end: string;
|
13424
15667
|
} | null | undefined> | null | undefined;
|
@@ -13566,6 +15809,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13566
15809
|
firstname: string;
|
13567
15810
|
surname: string;
|
13568
15811
|
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;
|
13569
15839
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
13570
15840
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
13571
15841
|
start: z.ZodString;
|
@@ -13701,6 +15971,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13701
15971
|
firstname: string;
|
13702
15972
|
surname: string;
|
13703
15973
|
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;
|
13704
16001
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
13705
16002
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
13706
16003
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -13758,6 +16055,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13758
16055
|
path: string;
|
13759
16056
|
originalFilename: string;
|
13760
16057
|
}[] | {
|
16058
|
+
data?: any;
|
16059
|
+
error?: {
|
16060
|
+
message: string;
|
16061
|
+
statusCode: number | null;
|
16062
|
+
} | null | undefined;
|
16063
|
+
loading?: boolean | null | undefined;
|
16064
|
+
} | {
|
13761
16065
|
start: string;
|
13762
16066
|
end: string;
|
13763
16067
|
} | null | undefined>;
|
@@ -13805,6 +16109,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13805
16109
|
path: string;
|
13806
16110
|
originalFilename: string;
|
13807
16111
|
}[] | {
|
16112
|
+
data?: any;
|
16113
|
+
error?: {
|
16114
|
+
message: string;
|
16115
|
+
statusCode: number | null;
|
16116
|
+
} | null | undefined;
|
16117
|
+
loading?: boolean | null | undefined;
|
16118
|
+
} | {
|
13808
16119
|
start: string;
|
13809
16120
|
end: string;
|
13810
16121
|
} | null | undefined> | null | undefined;
|
@@ -13861,6 +16172,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13861
16172
|
path: string;
|
13862
16173
|
originalFilename: string;
|
13863
16174
|
}[] | {
|
16175
|
+
data?: any;
|
16176
|
+
error?: {
|
16177
|
+
message: string;
|
16178
|
+
statusCode: number | null;
|
16179
|
+
} | null | undefined;
|
16180
|
+
loading?: boolean | null | undefined;
|
16181
|
+
} | {
|
13864
16182
|
start: string;
|
13865
16183
|
end: string;
|
13866
16184
|
} | null | undefined>;
|
@@ -13908,6 +16226,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
13908
16226
|
path: string;
|
13909
16227
|
originalFilename: string;
|
13910
16228
|
}[] | {
|
16229
|
+
data?: any;
|
16230
|
+
error?: {
|
16231
|
+
message: string;
|
16232
|
+
statusCode: number | null;
|
16233
|
+
} | null | undefined;
|
16234
|
+
loading?: boolean | null | undefined;
|
16235
|
+
} | {
|
13911
16236
|
start: string;
|
13912
16237
|
end: string;
|
13913
16238
|
} | null | undefined> | null | undefined;
|
@@ -14056,6 +16381,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14056
16381
|
firstname: string;
|
14057
16382
|
surname: string;
|
14058
16383
|
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;
|
14059
16411
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
14060
16412
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
14061
16413
|
start: z.ZodString;
|
@@ -14191,6 +16543,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14191
16543
|
firstname: string;
|
14192
16544
|
surname: string;
|
14193
16545
|
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;
|
14194
16573
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
14195
16574
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
14196
16575
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -14247,6 +16626,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14247
16626
|
path: string;
|
14248
16627
|
originalFilename: string;
|
14249
16628
|
}[] | {
|
16629
|
+
data?: any;
|
16630
|
+
error?: {
|
16631
|
+
message: string;
|
16632
|
+
statusCode: number | null;
|
16633
|
+
} | null | undefined;
|
16634
|
+
loading?: boolean | null | undefined;
|
16635
|
+
} | {
|
14250
16636
|
start: string;
|
14251
16637
|
end: string;
|
14252
16638
|
} | null | undefined>;
|
@@ -14294,6 +16680,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14294
16680
|
path: string;
|
14295
16681
|
originalFilename: string;
|
14296
16682
|
}[] | {
|
16683
|
+
data?: any;
|
16684
|
+
error?: {
|
16685
|
+
message: string;
|
16686
|
+
statusCode: number | null;
|
16687
|
+
} | null | undefined;
|
16688
|
+
loading?: boolean | null | undefined;
|
16689
|
+
} | {
|
14297
16690
|
start: string;
|
14298
16691
|
end: string;
|
14299
16692
|
} | null | undefined> | null | undefined;
|
@@ -14349,6 +16742,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14349
16742
|
path: string;
|
14350
16743
|
originalFilename: string;
|
14351
16744
|
}[] | {
|
16745
|
+
data?: any;
|
16746
|
+
error?: {
|
16747
|
+
message: string;
|
16748
|
+
statusCode: number | null;
|
16749
|
+
} | null | undefined;
|
16750
|
+
loading?: boolean | null | undefined;
|
16751
|
+
} | {
|
14352
16752
|
start: string;
|
14353
16753
|
end: string;
|
14354
16754
|
} | null | undefined>;
|
@@ -14396,6 +16796,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14396
16796
|
path: string;
|
14397
16797
|
originalFilename: string;
|
14398
16798
|
}[] | {
|
16799
|
+
data?: any;
|
16800
|
+
error?: {
|
16801
|
+
message: string;
|
16802
|
+
statusCode: number | null;
|
16803
|
+
} | null | undefined;
|
16804
|
+
loading?: boolean | null | undefined;
|
16805
|
+
} | {
|
14399
16806
|
start: string;
|
14400
16807
|
end: string;
|
14401
16808
|
} | null | undefined> | null | undefined;
|
@@ -14543,6 +16950,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14543
16950
|
firstname: string;
|
14544
16951
|
surname: string;
|
14545
16952
|
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;
|
14546
16980
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
14547
16981
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
14548
16982
|
start: z.ZodString;
|
@@ -14678,6 +17112,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14678
17112
|
firstname: string;
|
14679
17113
|
surname: string;
|
14680
17114
|
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;
|
14681
17142
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
14682
17143
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
14683
17144
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -14735,6 +17196,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14735
17196
|
path: string;
|
14736
17197
|
originalFilename: string;
|
14737
17198
|
}[] | {
|
17199
|
+
data?: any;
|
17200
|
+
error?: {
|
17201
|
+
message: string;
|
17202
|
+
statusCode: number | null;
|
17203
|
+
} | null | undefined;
|
17204
|
+
loading?: boolean | null | undefined;
|
17205
|
+
} | {
|
14738
17206
|
start: string;
|
14739
17207
|
end: string;
|
14740
17208
|
} | null | undefined>;
|
@@ -14783,6 +17251,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14783
17251
|
path: string;
|
14784
17252
|
originalFilename: string;
|
14785
17253
|
}[] | {
|
17254
|
+
data?: any;
|
17255
|
+
error?: {
|
17256
|
+
message: string;
|
17257
|
+
statusCode: number | null;
|
17258
|
+
} | null | undefined;
|
17259
|
+
loading?: boolean | null | undefined;
|
17260
|
+
} | {
|
14786
17261
|
start: string;
|
14787
17262
|
end: string;
|
14788
17263
|
} | null | undefined> | null | undefined;
|
@@ -14838,6 +17313,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14838
17313
|
path: string;
|
14839
17314
|
originalFilename: string;
|
14840
17315
|
}[] | {
|
17316
|
+
data?: any;
|
17317
|
+
error?: {
|
17318
|
+
message: string;
|
17319
|
+
statusCode: number | null;
|
17320
|
+
} | null | undefined;
|
17321
|
+
loading?: boolean | null | undefined;
|
17322
|
+
} | {
|
14841
17323
|
start: string;
|
14842
17324
|
end: string;
|
14843
17325
|
} | null | undefined>;
|
@@ -14886,6 +17368,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
14886
17368
|
path: string;
|
14887
17369
|
originalFilename: string;
|
14888
17370
|
}[] | {
|
17371
|
+
data?: any;
|
17372
|
+
error?: {
|
17373
|
+
message: string;
|
17374
|
+
statusCode: number | null;
|
17375
|
+
} | null | undefined;
|
17376
|
+
loading?: boolean | null | undefined;
|
17377
|
+
} | {
|
14889
17378
|
start: string;
|
14890
17379
|
end: string;
|
14891
17380
|
} | null | undefined> | null | undefined;
|
@@ -15033,6 +17522,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15033
17522
|
firstname: string;
|
15034
17523
|
surname: string;
|
15035
17524
|
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;
|
15036
17552
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
15037
17553
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
15038
17554
|
start: z.ZodString;
|
@@ -15168,6 +17684,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15168
17684
|
firstname: string;
|
15169
17685
|
surname: string;
|
15170
17686
|
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;
|
15171
17714
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
15172
17715
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
15173
17716
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -15224,6 +17767,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15224
17767
|
path: string;
|
15225
17768
|
originalFilename: string;
|
15226
17769
|
}[] | {
|
17770
|
+
data?: any;
|
17771
|
+
error?: {
|
17772
|
+
message: string;
|
17773
|
+
statusCode: number | null;
|
17774
|
+
} | null | undefined;
|
17775
|
+
loading?: boolean | null | undefined;
|
17776
|
+
} | {
|
15227
17777
|
start: string;
|
15228
17778
|
end: string;
|
15229
17779
|
} | null | undefined>;
|
@@ -15271,6 +17821,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15271
17821
|
path: string;
|
15272
17822
|
originalFilename: string;
|
15273
17823
|
}[] | {
|
17824
|
+
data?: any;
|
17825
|
+
error?: {
|
17826
|
+
message: string;
|
17827
|
+
statusCode: number | null;
|
17828
|
+
} | null | undefined;
|
17829
|
+
loading?: boolean | null | undefined;
|
17830
|
+
} | {
|
15274
17831
|
start: string;
|
15275
17832
|
end: string;
|
15276
17833
|
} | null | undefined> | null | undefined;
|
@@ -15326,6 +17883,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15326
17883
|
path: string;
|
15327
17884
|
originalFilename: string;
|
15328
17885
|
}[] | {
|
17886
|
+
data?: any;
|
17887
|
+
error?: {
|
17888
|
+
message: string;
|
17889
|
+
statusCode: number | null;
|
17890
|
+
} | null | undefined;
|
17891
|
+
loading?: boolean | null | undefined;
|
17892
|
+
} | {
|
15329
17893
|
start: string;
|
15330
17894
|
end: string;
|
15331
17895
|
} | null | undefined>;
|
@@ -15373,6 +17937,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15373
17937
|
path: string;
|
15374
17938
|
originalFilename: string;
|
15375
17939
|
}[] | {
|
17940
|
+
data?: any;
|
17941
|
+
error?: {
|
17942
|
+
message: string;
|
17943
|
+
statusCode: number | null;
|
17944
|
+
} | null | undefined;
|
17945
|
+
loading?: boolean | null | undefined;
|
17946
|
+
} | {
|
15376
17947
|
start: string;
|
15377
17948
|
end: string;
|
15378
17949
|
} | null | undefined> | null | undefined;
|
@@ -15520,6 +18091,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15520
18091
|
firstname: string;
|
15521
18092
|
surname: string;
|
15522
18093
|
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;
|
15523
18121
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
15524
18122
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
15525
18123
|
start: z.ZodString;
|
@@ -15655,6 +18253,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15655
18253
|
firstname: string;
|
15656
18254
|
surname: string;
|
15657
18255
|
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;
|
15658
18283
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
15659
18284
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
15660
18285
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -15712,6 +18337,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15712
18337
|
path: string;
|
15713
18338
|
originalFilename: string;
|
15714
18339
|
}[] | {
|
18340
|
+
data?: any;
|
18341
|
+
error?: {
|
18342
|
+
message: string;
|
18343
|
+
statusCode: number | null;
|
18344
|
+
} | null | undefined;
|
18345
|
+
loading?: boolean | null | undefined;
|
18346
|
+
} | {
|
15715
18347
|
start: string;
|
15716
18348
|
end: string;
|
15717
18349
|
} | null | undefined>;
|
@@ -15760,6 +18392,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15760
18392
|
path: string;
|
15761
18393
|
originalFilename: string;
|
15762
18394
|
}[] | {
|
18395
|
+
data?: any;
|
18396
|
+
error?: {
|
18397
|
+
message: string;
|
18398
|
+
statusCode: number | null;
|
18399
|
+
} | null | undefined;
|
18400
|
+
loading?: boolean | null | undefined;
|
18401
|
+
} | {
|
15763
18402
|
start: string;
|
15764
18403
|
end: string;
|
15765
18404
|
} | null | undefined> | null | undefined;
|
@@ -15815,6 +18454,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15815
18454
|
path: string;
|
15816
18455
|
originalFilename: string;
|
15817
18456
|
}[] | {
|
18457
|
+
data?: any;
|
18458
|
+
error?: {
|
18459
|
+
message: string;
|
18460
|
+
statusCode: number | null;
|
18461
|
+
} | null | undefined;
|
18462
|
+
loading?: boolean | null | undefined;
|
18463
|
+
} | {
|
15818
18464
|
start: string;
|
15819
18465
|
end: string;
|
15820
18466
|
} | null | undefined>;
|
@@ -15863,6 +18509,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
15863
18509
|
path: string;
|
15864
18510
|
originalFilename: string;
|
15865
18511
|
}[] | {
|
18512
|
+
data?: any;
|
18513
|
+
error?: {
|
18514
|
+
message: string;
|
18515
|
+
statusCode: number | null;
|
18516
|
+
} | null | undefined;
|
18517
|
+
loading?: boolean | null | undefined;
|
18518
|
+
} | {
|
15866
18519
|
start: string;
|
15867
18520
|
end: string;
|
15868
18521
|
} | null | undefined> | null | undefined;
|
@@ -16010,6 +18663,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16010
18663
|
firstname: string;
|
16011
18664
|
surname: string;
|
16012
18665
|
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;
|
16013
18693
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
16014
18694
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
16015
18695
|
start: z.ZodString;
|
@@ -16145,6 +18825,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16145
18825
|
firstname: string;
|
16146
18826
|
surname: string;
|
16147
18827
|
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;
|
16148
18855
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
16149
18856
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
16150
18857
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -16216,6 +18923,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16216
18923
|
path: string;
|
16217
18924
|
originalFilename: string;
|
16218
18925
|
}[] | {
|
18926
|
+
data?: any;
|
18927
|
+
error?: {
|
18928
|
+
message: string;
|
18929
|
+
statusCode: number | null;
|
18930
|
+
} | null | undefined;
|
18931
|
+
loading?: boolean | null | undefined;
|
18932
|
+
} | {
|
16219
18933
|
start: string;
|
16220
18934
|
end: string;
|
16221
18935
|
} | null | undefined>;
|
@@ -16264,6 +18978,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16264
18978
|
path: string;
|
16265
18979
|
originalFilename: string;
|
16266
18980
|
}[] | {
|
18981
|
+
data?: any;
|
18982
|
+
error?: {
|
18983
|
+
message: string;
|
18984
|
+
statusCode: number | null;
|
18985
|
+
} | null | undefined;
|
18986
|
+
loading?: boolean | null | undefined;
|
18987
|
+
} | {
|
16267
18988
|
start: string;
|
16268
18989
|
end: string;
|
16269
18990
|
} | null | undefined> | null | undefined;
|
@@ -16323,6 +19044,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16323
19044
|
path: string;
|
16324
19045
|
originalFilename: string;
|
16325
19046
|
}[] | {
|
19047
|
+
data?: any;
|
19048
|
+
error?: {
|
19049
|
+
message: string;
|
19050
|
+
statusCode: number | null;
|
19051
|
+
} | null | undefined;
|
19052
|
+
loading?: boolean | null | undefined;
|
19053
|
+
} | {
|
16326
19054
|
start: string;
|
16327
19055
|
end: string;
|
16328
19056
|
} | null | undefined>;
|
@@ -16371,6 +19099,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16371
19099
|
path: string;
|
16372
19100
|
originalFilename: string;
|
16373
19101
|
}[] | {
|
19102
|
+
data?: any;
|
19103
|
+
error?: {
|
19104
|
+
message: string;
|
19105
|
+
statusCode: number | null;
|
19106
|
+
} | null | undefined;
|
19107
|
+
loading?: boolean | null | undefined;
|
19108
|
+
} | {
|
16374
19109
|
start: string;
|
16375
19110
|
end: string;
|
16376
19111
|
} | null | undefined> | null | undefined;
|
@@ -16518,6 +19253,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16518
19253
|
firstname: string;
|
16519
19254
|
surname: string;
|
16520
19255
|
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;
|
16521
19283
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
16522
19284
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
16523
19285
|
start: z.ZodString;
|
@@ -16653,6 +19415,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16653
19415
|
firstname: string;
|
16654
19416
|
surname: string;
|
16655
19417
|
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;
|
16656
19445
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
16657
19446
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
16658
19447
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -16709,6 +19498,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16709
19498
|
path: string;
|
16710
19499
|
originalFilename: string;
|
16711
19500
|
}[] | {
|
19501
|
+
data?: any;
|
19502
|
+
error?: {
|
19503
|
+
message: string;
|
19504
|
+
statusCode: number | null;
|
19505
|
+
} | null | undefined;
|
19506
|
+
loading?: boolean | null | undefined;
|
19507
|
+
} | {
|
16712
19508
|
start: string;
|
16713
19509
|
end: string;
|
16714
19510
|
} | null | undefined>;
|
@@ -16756,6 +19552,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16756
19552
|
path: string;
|
16757
19553
|
originalFilename: string;
|
16758
19554
|
}[] | {
|
19555
|
+
data?: any;
|
19556
|
+
error?: {
|
19557
|
+
message: string;
|
19558
|
+
statusCode: number | null;
|
19559
|
+
} | null | undefined;
|
19560
|
+
loading?: boolean | null | undefined;
|
19561
|
+
} | {
|
16759
19562
|
start: string;
|
16760
19563
|
end: string;
|
16761
19564
|
} | null | undefined> | null | undefined;
|
@@ -16811,6 +19614,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16811
19614
|
path: string;
|
16812
19615
|
originalFilename: string;
|
16813
19616
|
}[] | {
|
19617
|
+
data?: any;
|
19618
|
+
error?: {
|
19619
|
+
message: string;
|
19620
|
+
statusCode: number | null;
|
19621
|
+
} | null | undefined;
|
19622
|
+
loading?: boolean | null | undefined;
|
19623
|
+
} | {
|
16814
19624
|
start: string;
|
16815
19625
|
end: string;
|
16816
19626
|
} | null | undefined>;
|
@@ -16858,6 +19668,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
16858
19668
|
path: string;
|
16859
19669
|
originalFilename: string;
|
16860
19670
|
}[] | {
|
19671
|
+
data?: any;
|
19672
|
+
error?: {
|
19673
|
+
message: string;
|
19674
|
+
statusCode: number | null;
|
19675
|
+
} | null | undefined;
|
19676
|
+
loading?: boolean | null | undefined;
|
19677
|
+
} | {
|
16861
19678
|
start: string;
|
16862
19679
|
end: string;
|
16863
19680
|
} | null | undefined> | null | undefined;
|
@@ -17005,6 +19822,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17005
19822
|
firstname: string;
|
17006
19823
|
surname: string;
|
17007
19824
|
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;
|
17008
19852
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
17009
19853
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
17010
19854
|
start: z.ZodString;
|
@@ -17140,6 +19984,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17140
19984
|
firstname: string;
|
17141
19985
|
surname: string;
|
17142
19986
|
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;
|
17143
20014
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
17144
20015
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
17145
20016
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -17203,6 +20074,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17203
20074
|
path: string;
|
17204
20075
|
originalFilename: string;
|
17205
20076
|
}[] | {
|
20077
|
+
data?: any;
|
20078
|
+
error?: {
|
20079
|
+
message: string;
|
20080
|
+
statusCode: number | null;
|
20081
|
+
} | null | undefined;
|
20082
|
+
loading?: boolean | null | undefined;
|
20083
|
+
} | {
|
17206
20084
|
start: string;
|
17207
20085
|
end: string;
|
17208
20086
|
} | null | undefined>;
|
@@ -17253,6 +20131,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17253
20131
|
path: string;
|
17254
20132
|
originalFilename: string;
|
17255
20133
|
}[] | {
|
20134
|
+
data?: any;
|
20135
|
+
error?: {
|
20136
|
+
message: string;
|
20137
|
+
statusCode: number | null;
|
20138
|
+
} | null | undefined;
|
20139
|
+
loading?: boolean | null | undefined;
|
20140
|
+
} | {
|
17256
20141
|
start: string;
|
17257
20142
|
end: string;
|
17258
20143
|
} | null | undefined> | null | undefined;
|
@@ -17308,6 +20193,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17308
20193
|
path: string;
|
17309
20194
|
originalFilename: string;
|
17310
20195
|
}[] | {
|
20196
|
+
data?: any;
|
20197
|
+
error?: {
|
20198
|
+
message: string;
|
20199
|
+
statusCode: number | null;
|
20200
|
+
} | null | undefined;
|
20201
|
+
loading?: boolean | null | undefined;
|
20202
|
+
} | {
|
17311
20203
|
start: string;
|
17312
20204
|
end: string;
|
17313
20205
|
} | null | undefined>;
|
@@ -17358,6 +20250,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17358
20250
|
path: string;
|
17359
20251
|
originalFilename: string;
|
17360
20252
|
}[] | {
|
20253
|
+
data?: any;
|
20254
|
+
error?: {
|
20255
|
+
message: string;
|
20256
|
+
statusCode: number | null;
|
20257
|
+
} | null | undefined;
|
20258
|
+
loading?: boolean | null | undefined;
|
20259
|
+
} | {
|
17361
20260
|
start: string;
|
17362
20261
|
end: string;
|
17363
20262
|
} | null | undefined> | null | undefined;
|
@@ -17505,6 +20404,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17505
20404
|
firstname: string;
|
17506
20405
|
surname: string;
|
17507
20406
|
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;
|
17508
20434
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
17509
20435
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
17510
20436
|
start: z.ZodString;
|
@@ -17640,6 +20566,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17640
20566
|
firstname: string;
|
17641
20567
|
surname: string;
|
17642
20568
|
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;
|
17643
20596
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
17644
20597
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
17645
20598
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -17696,6 +20649,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17696
20649
|
path: string;
|
17697
20650
|
originalFilename: string;
|
17698
20651
|
}[] | {
|
20652
|
+
data?: any;
|
20653
|
+
error?: {
|
20654
|
+
message: string;
|
20655
|
+
statusCode: number | null;
|
20656
|
+
} | null | undefined;
|
20657
|
+
loading?: boolean | null | undefined;
|
20658
|
+
} | {
|
17699
20659
|
start: string;
|
17700
20660
|
end: string;
|
17701
20661
|
} | null | undefined>;
|
@@ -17743,6 +20703,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17743
20703
|
path: string;
|
17744
20704
|
originalFilename: string;
|
17745
20705
|
}[] | {
|
20706
|
+
data?: any;
|
20707
|
+
error?: {
|
20708
|
+
message: string;
|
20709
|
+
statusCode: number | null;
|
20710
|
+
} | null | undefined;
|
20711
|
+
loading?: boolean | null | undefined;
|
20712
|
+
} | {
|
17746
20713
|
start: string;
|
17747
20714
|
end: string;
|
17748
20715
|
} | null | undefined> | null | undefined;
|
@@ -17798,6 +20765,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17798
20765
|
path: string;
|
17799
20766
|
originalFilename: string;
|
17800
20767
|
}[] | {
|
20768
|
+
data?: any;
|
20769
|
+
error?: {
|
20770
|
+
message: string;
|
20771
|
+
statusCode: number | null;
|
20772
|
+
} | null | undefined;
|
20773
|
+
loading?: boolean | null | undefined;
|
20774
|
+
} | {
|
17801
20775
|
start: string;
|
17802
20776
|
end: string;
|
17803
20777
|
} | null | undefined>;
|
@@ -17845,6 +20819,13 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17845
20819
|
path: string;
|
17846
20820
|
originalFilename: string;
|
17847
20821
|
}[] | {
|
20822
|
+
data?: any;
|
20823
|
+
error?: {
|
20824
|
+
message: string;
|
20825
|
+
statusCode: number | null;
|
20826
|
+
} | null | undefined;
|
20827
|
+
loading?: boolean | null | undefined;
|
20828
|
+
} | {
|
17848
20829
|
start: string;
|
17849
20830
|
end: string;
|
17850
20831
|
} | null | undefined> | null | undefined;
|
@@ -17992,6 +20973,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
17992
20973
|
firstname: string;
|
17993
20974
|
surname: string;
|
17994
20975
|
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;
|
17995
21003
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
17996
21004
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
17997
21005
|
start: z.ZodString;
|
@@ -18127,6 +21135,33 @@ export declare const Action: z.ZodUnion<[z.ZodDiscriminatedUnion<"type", [z.ZodO
|
|
18127
21135
|
firstname: string;
|
18128
21136
|
surname: string;
|
18129
21137
|
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;
|
18130
21165
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
18131
21166
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
18132
21167
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|