@opencrvs/toolkit 1.8.1-rc.032a7f2 → 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 +1350 -4
- package/dist/commons/events/ActionConfig.d.ts +15480 -7338
- 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 +200 -8
- package/dist/commons/events/EventConfig.d.ts +8815 -5048
- 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 +1108 -1128
- package/dist/commons/events/FieldType.d.ts +3 -6
- 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 +7497 -3687
- package/dist/commons/events/PageConfig.d.ts +1382 -460
- package/dist/commons/events/WorkqueueConfig.d.ts +8 -8
- package/dist/commons/events/defineConfig.d.ts +737 -62
- package/dist/commons/events/test.utils.d.ts +43 -2
- package/dist/commons/events/utils.d.ts +1474 -143
- package/dist/events/index.js +882 -896
- package/package.json +1 -1
@@ -136,6 +136,33 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
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
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
141
168
|
start: z.ZodString;
|
@@ -271,6 +298,33 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
271
298
|
firstname: string;
|
272
299
|
surname: string;
|
273
300
|
middlename?: string | null | undefined;
|
301
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
302
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
303
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
304
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
305
|
+
message: z.ZodString;
|
306
|
+
}, "strip", z.ZodTypeAny, {
|
307
|
+
message: string;
|
308
|
+
statusCode: number | null;
|
309
|
+
}, {
|
310
|
+
message: string;
|
311
|
+
statusCode: number | null;
|
312
|
+
}>>>;
|
313
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
314
|
+
}, "strip", z.ZodTypeAny, {
|
315
|
+
data?: any;
|
316
|
+
error?: {
|
317
|
+
message: string;
|
318
|
+
statusCode: number | null;
|
319
|
+
} | null | undefined;
|
320
|
+
loading?: boolean | null | undefined;
|
321
|
+
}, {
|
322
|
+
data?: any;
|
323
|
+
error?: {
|
324
|
+
message: string;
|
325
|
+
statusCode: number | null;
|
326
|
+
} | null | undefined;
|
327
|
+
loading?: boolean | null | undefined;
|
274
328
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
275
329
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
276
330
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -318,6 +372,13 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
318
372
|
path: string;
|
319
373
|
originalFilename: string;
|
320
374
|
}[] | {
|
375
|
+
data?: any;
|
376
|
+
error?: {
|
377
|
+
message: string;
|
378
|
+
statusCode: number | null;
|
379
|
+
} | null | undefined;
|
380
|
+
loading?: boolean | null | undefined;
|
381
|
+
} | {
|
321
382
|
start: string;
|
322
383
|
end: string;
|
323
384
|
} | null | undefined>;
|
@@ -364,6 +425,13 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
364
425
|
path: string;
|
365
426
|
originalFilename: string;
|
366
427
|
}[] | {
|
428
|
+
data?: any;
|
429
|
+
error?: {
|
430
|
+
message: string;
|
431
|
+
statusCode: number | null;
|
432
|
+
} | null | undefined;
|
433
|
+
loading?: boolean | null | undefined;
|
434
|
+
} | {
|
367
435
|
start: string;
|
368
436
|
end: string;
|
369
437
|
} | null | undefined> | undefined;
|
@@ -414,6 +482,13 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
414
482
|
path: string;
|
415
483
|
originalFilename: string;
|
416
484
|
}[] | {
|
485
|
+
data?: any;
|
486
|
+
error?: {
|
487
|
+
message: string;
|
488
|
+
statusCode: number | null;
|
489
|
+
} | null | undefined;
|
490
|
+
loading?: boolean | null | undefined;
|
491
|
+
} | {
|
417
492
|
start: string;
|
418
493
|
end: string;
|
419
494
|
} | null | undefined> | undefined;
|
@@ -459,6 +534,13 @@ export declare const BaseActionInput: z.ZodObject<{
|
|
459
534
|
path: string;
|
460
535
|
originalFilename: string;
|
461
536
|
}[] | {
|
537
|
+
data?: any;
|
538
|
+
error?: {
|
539
|
+
message: string;
|
540
|
+
statusCode: number | null;
|
541
|
+
} | null | undefined;
|
542
|
+
loading?: boolean | null | undefined;
|
543
|
+
} | {
|
462
544
|
start: string;
|
463
545
|
end: string;
|
464
546
|
} | null | undefined> | undefined;
|
@@ -602,6 +684,33 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
602
684
|
firstname: string;
|
603
685
|
surname: string;
|
604
686
|
middlename?: string | null | undefined;
|
687
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
688
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
689
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
690
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
691
|
+
message: z.ZodString;
|
692
|
+
}, "strip", z.ZodTypeAny, {
|
693
|
+
message: string;
|
694
|
+
statusCode: number | null;
|
695
|
+
}, {
|
696
|
+
message: string;
|
697
|
+
statusCode: number | null;
|
698
|
+
}>>>;
|
699
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
700
|
+
}, "strip", z.ZodTypeAny, {
|
701
|
+
data?: any;
|
702
|
+
error?: {
|
703
|
+
message: string;
|
704
|
+
statusCode: number | null;
|
705
|
+
} | null | undefined;
|
706
|
+
loading?: boolean | null | undefined;
|
707
|
+
}, {
|
708
|
+
data?: any;
|
709
|
+
error?: {
|
710
|
+
message: string;
|
711
|
+
statusCode: number | null;
|
712
|
+
} | null | undefined;
|
713
|
+
loading?: boolean | null | undefined;
|
605
714
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
606
715
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
607
716
|
start: z.ZodString;
|
@@ -737,6 +846,33 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
737
846
|
firstname: string;
|
738
847
|
surname: string;
|
739
848
|
middlename?: string | null | undefined;
|
849
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
850
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
851
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
852
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
853
|
+
message: z.ZodString;
|
854
|
+
}, "strip", z.ZodTypeAny, {
|
855
|
+
message: string;
|
856
|
+
statusCode: number | null;
|
857
|
+
}, {
|
858
|
+
message: string;
|
859
|
+
statusCode: number | null;
|
860
|
+
}>>>;
|
861
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
862
|
+
}, "strip", z.ZodTypeAny, {
|
863
|
+
data?: any;
|
864
|
+
error?: {
|
865
|
+
message: string;
|
866
|
+
statusCode: number | null;
|
867
|
+
} | null | undefined;
|
868
|
+
loading?: boolean | null | undefined;
|
869
|
+
}, {
|
870
|
+
data?: any;
|
871
|
+
error?: {
|
872
|
+
message: string;
|
873
|
+
statusCode: number | null;
|
874
|
+
} | null | undefined;
|
875
|
+
loading?: boolean | null | undefined;
|
740
876
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
741
877
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
742
878
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -788,6 +924,13 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
788
924
|
path: string;
|
789
925
|
originalFilename: string;
|
790
926
|
}[] | {
|
927
|
+
data?: any;
|
928
|
+
error?: {
|
929
|
+
message: string;
|
930
|
+
statusCode: number | null;
|
931
|
+
} | null | undefined;
|
932
|
+
loading?: boolean | null | undefined;
|
933
|
+
} | {
|
791
934
|
start: string;
|
792
935
|
end: string;
|
793
936
|
} | null | undefined>;
|
@@ -834,6 +977,13 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
834
977
|
path: string;
|
835
978
|
originalFilename: string;
|
836
979
|
}[] | {
|
980
|
+
data?: any;
|
981
|
+
error?: {
|
982
|
+
message: string;
|
983
|
+
statusCode: number | null;
|
984
|
+
} | null | undefined;
|
985
|
+
loading?: boolean | null | undefined;
|
986
|
+
} | {
|
837
987
|
start: string;
|
838
988
|
end: string;
|
839
989
|
} | null | undefined> | undefined;
|
@@ -886,6 +1036,13 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
886
1036
|
path: string;
|
887
1037
|
originalFilename: string;
|
888
1038
|
}[] | {
|
1039
|
+
data?: any;
|
1040
|
+
error?: {
|
1041
|
+
message: string;
|
1042
|
+
statusCode: number | null;
|
1043
|
+
} | null | undefined;
|
1044
|
+
loading?: boolean | null | undefined;
|
1045
|
+
} | {
|
889
1046
|
start: string;
|
890
1047
|
end: string;
|
891
1048
|
} | null | undefined> | undefined;
|
@@ -931,6 +1088,13 @@ export declare const RegisterActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
931
1088
|
path: string;
|
932
1089
|
originalFilename: string;
|
933
1090
|
}[] | {
|
1091
|
+
data?: any;
|
1092
|
+
error?: {
|
1093
|
+
message: string;
|
1094
|
+
statusCode: number | null;
|
1095
|
+
} | null | undefined;
|
1096
|
+
loading?: boolean | null | undefined;
|
1097
|
+
} | {
|
934
1098
|
start: string;
|
935
1099
|
end: string;
|
936
1100
|
} | null | undefined> | undefined;
|
@@ -1076,6 +1240,33 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1076
1240
|
firstname: string;
|
1077
1241
|
surname: string;
|
1078
1242
|
middlename?: string | null | undefined;
|
1243
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1244
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
1245
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
1246
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
1247
|
+
message: z.ZodString;
|
1248
|
+
}, "strip", z.ZodTypeAny, {
|
1249
|
+
message: string;
|
1250
|
+
statusCode: number | null;
|
1251
|
+
}, {
|
1252
|
+
message: string;
|
1253
|
+
statusCode: number | null;
|
1254
|
+
}>>>;
|
1255
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
1256
|
+
}, "strip", z.ZodTypeAny, {
|
1257
|
+
data?: any;
|
1258
|
+
error?: {
|
1259
|
+
message: string;
|
1260
|
+
statusCode: number | null;
|
1261
|
+
} | null | undefined;
|
1262
|
+
loading?: boolean | null | undefined;
|
1263
|
+
}, {
|
1264
|
+
data?: any;
|
1265
|
+
error?: {
|
1266
|
+
message: string;
|
1267
|
+
statusCode: number | null;
|
1268
|
+
} | null | undefined;
|
1269
|
+
loading?: boolean | null | undefined;
|
1079
1270
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
1080
1271
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
1081
1272
|
start: z.ZodString;
|
@@ -1211,6 +1402,33 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1211
1402
|
firstname: string;
|
1212
1403
|
surname: string;
|
1213
1404
|
middlename?: string | null | undefined;
|
1405
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1406
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
1407
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
1408
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
1409
|
+
message: z.ZodString;
|
1410
|
+
}, "strip", z.ZodTypeAny, {
|
1411
|
+
message: string;
|
1412
|
+
statusCode: number | null;
|
1413
|
+
}, {
|
1414
|
+
message: string;
|
1415
|
+
statusCode: number | null;
|
1416
|
+
}>>>;
|
1417
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
1418
|
+
}, "strip", z.ZodTypeAny, {
|
1419
|
+
data?: any;
|
1420
|
+
error?: {
|
1421
|
+
message: string;
|
1422
|
+
statusCode: number | null;
|
1423
|
+
} | null | undefined;
|
1424
|
+
loading?: boolean | null | undefined;
|
1425
|
+
}, {
|
1426
|
+
data?: any;
|
1427
|
+
error?: {
|
1428
|
+
message: string;
|
1429
|
+
statusCode: number | null;
|
1430
|
+
} | null | undefined;
|
1431
|
+
loading?: boolean | null | undefined;
|
1214
1432
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
1215
1433
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
1216
1434
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -1262,6 +1480,13 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1262
1480
|
path: string;
|
1263
1481
|
originalFilename: string;
|
1264
1482
|
}[] | {
|
1483
|
+
data?: any;
|
1484
|
+
error?: {
|
1485
|
+
message: string;
|
1486
|
+
statusCode: number | null;
|
1487
|
+
} | null | undefined;
|
1488
|
+
loading?: boolean | null | undefined;
|
1489
|
+
} | {
|
1265
1490
|
start: string;
|
1266
1491
|
end: string;
|
1267
1492
|
} | null | undefined>;
|
@@ -1309,6 +1534,13 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1309
1534
|
path: string;
|
1310
1535
|
originalFilename: string;
|
1311
1536
|
}[] | {
|
1537
|
+
data?: any;
|
1538
|
+
error?: {
|
1539
|
+
message: string;
|
1540
|
+
statusCode: number | null;
|
1541
|
+
} | null | undefined;
|
1542
|
+
loading?: boolean | null | undefined;
|
1543
|
+
} | {
|
1312
1544
|
start: string;
|
1313
1545
|
end: string;
|
1314
1546
|
} | null | undefined> | undefined;
|
@@ -1361,6 +1593,13 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1361
1593
|
path: string;
|
1362
1594
|
originalFilename: string;
|
1363
1595
|
}[] | {
|
1596
|
+
data?: any;
|
1597
|
+
error?: {
|
1598
|
+
message: string;
|
1599
|
+
statusCode: number | null;
|
1600
|
+
} | null | undefined;
|
1601
|
+
loading?: boolean | null | undefined;
|
1602
|
+
} | {
|
1364
1603
|
start: string;
|
1365
1604
|
end: string;
|
1366
1605
|
} | null | undefined> | undefined;
|
@@ -1406,6 +1645,13 @@ export declare const ValidateActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1406
1645
|
path: string;
|
1407
1646
|
originalFilename: string;
|
1408
1647
|
}[] | {
|
1648
|
+
data?: any;
|
1649
|
+
error?: {
|
1650
|
+
message: string;
|
1651
|
+
statusCode: number | null;
|
1652
|
+
} | null | undefined;
|
1653
|
+
loading?: boolean | null | undefined;
|
1654
|
+
} | {
|
1409
1655
|
start: string;
|
1410
1656
|
end: string;
|
1411
1657
|
} | null | undefined> | undefined;
|
@@ -1550,6 +1796,33 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1550
1796
|
firstname: string;
|
1551
1797
|
surname: string;
|
1552
1798
|
middlename?: string | null | undefined;
|
1799
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1800
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
1801
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
1802
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
1803
|
+
message: z.ZodString;
|
1804
|
+
}, "strip", z.ZodTypeAny, {
|
1805
|
+
message: string;
|
1806
|
+
statusCode: number | null;
|
1807
|
+
}, {
|
1808
|
+
message: string;
|
1809
|
+
statusCode: number | null;
|
1810
|
+
}>>>;
|
1811
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
1812
|
+
}, "strip", z.ZodTypeAny, {
|
1813
|
+
data?: any;
|
1814
|
+
error?: {
|
1815
|
+
message: string;
|
1816
|
+
statusCode: number | null;
|
1817
|
+
} | null | undefined;
|
1818
|
+
loading?: boolean | null | undefined;
|
1819
|
+
}, {
|
1820
|
+
data?: any;
|
1821
|
+
error?: {
|
1822
|
+
message: string;
|
1823
|
+
statusCode: number | null;
|
1824
|
+
} | null | undefined;
|
1825
|
+
loading?: boolean | null | undefined;
|
1553
1826
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
1554
1827
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
1555
1828
|
start: z.ZodString;
|
@@ -1685,6 +1958,33 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1685
1958
|
firstname: string;
|
1686
1959
|
surname: string;
|
1687
1960
|
middlename?: string | null | undefined;
|
1961
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1962
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
1963
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
1964
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
1965
|
+
message: z.ZodString;
|
1966
|
+
}, "strip", z.ZodTypeAny, {
|
1967
|
+
message: string;
|
1968
|
+
statusCode: number | null;
|
1969
|
+
}, {
|
1970
|
+
message: string;
|
1971
|
+
statusCode: number | null;
|
1972
|
+
}>>>;
|
1973
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
1974
|
+
}, "strip", z.ZodTypeAny, {
|
1975
|
+
data?: any;
|
1976
|
+
error?: {
|
1977
|
+
message: string;
|
1978
|
+
statusCode: number | null;
|
1979
|
+
} | null | undefined;
|
1980
|
+
loading?: boolean | null | undefined;
|
1981
|
+
}, {
|
1982
|
+
data?: any;
|
1983
|
+
error?: {
|
1984
|
+
message: string;
|
1985
|
+
statusCode: number | null;
|
1986
|
+
} | null | undefined;
|
1987
|
+
loading?: boolean | null | undefined;
|
1688
1988
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
1689
1989
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
1690
1990
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -1735,6 +2035,13 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1735
2035
|
path: string;
|
1736
2036
|
originalFilename: string;
|
1737
2037
|
}[] | {
|
2038
|
+
data?: any;
|
2039
|
+
error?: {
|
2040
|
+
message: string;
|
2041
|
+
statusCode: number | null;
|
2042
|
+
} | null | undefined;
|
2043
|
+
loading?: boolean | null | undefined;
|
2044
|
+
} | {
|
1738
2045
|
start: string;
|
1739
2046
|
end: string;
|
1740
2047
|
} | null | undefined>;
|
@@ -1781,6 +2088,13 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1781
2088
|
path: string;
|
1782
2089
|
originalFilename: string;
|
1783
2090
|
}[] | {
|
2091
|
+
data?: any;
|
2092
|
+
error?: {
|
2093
|
+
message: string;
|
2094
|
+
statusCode: number | null;
|
2095
|
+
} | null | undefined;
|
2096
|
+
loading?: boolean | null | undefined;
|
2097
|
+
} | {
|
1784
2098
|
start: string;
|
1785
2099
|
end: string;
|
1786
2100
|
} | null | undefined> | undefined;
|
@@ -1832,6 +2146,13 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1832
2146
|
path: string;
|
1833
2147
|
originalFilename: string;
|
1834
2148
|
}[] | {
|
2149
|
+
data?: any;
|
2150
|
+
error?: {
|
2151
|
+
message: string;
|
2152
|
+
statusCode: number | null;
|
2153
|
+
} | null | undefined;
|
2154
|
+
loading?: boolean | null | undefined;
|
2155
|
+
} | {
|
1835
2156
|
start: string;
|
1836
2157
|
end: string;
|
1837
2158
|
} | null | undefined> | undefined;
|
@@ -1877,6 +2198,13 @@ export declare const NotifyActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1877
2198
|
path: string;
|
1878
2199
|
originalFilename: string;
|
1879
2200
|
}[] | {
|
2201
|
+
data?: any;
|
2202
|
+
error?: {
|
2203
|
+
message: string;
|
2204
|
+
statusCode: number | null;
|
2205
|
+
} | null | undefined;
|
2206
|
+
loading?: boolean | null | undefined;
|
2207
|
+
} | {
|
1880
2208
|
start: string;
|
1881
2209
|
end: string;
|
1882
2210
|
} | null | undefined> | undefined;
|
@@ -2021,6 +2349,33 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2021
2349
|
firstname: string;
|
2022
2350
|
surname: string;
|
2023
2351
|
middlename?: string | null | undefined;
|
2352
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2353
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
2354
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
2355
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
2356
|
+
message: z.ZodString;
|
2357
|
+
}, "strip", z.ZodTypeAny, {
|
2358
|
+
message: string;
|
2359
|
+
statusCode: number | null;
|
2360
|
+
}, {
|
2361
|
+
message: string;
|
2362
|
+
statusCode: number | null;
|
2363
|
+
}>>>;
|
2364
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
2365
|
+
}, "strip", z.ZodTypeAny, {
|
2366
|
+
data?: any;
|
2367
|
+
error?: {
|
2368
|
+
message: string;
|
2369
|
+
statusCode: number | null;
|
2370
|
+
} | null | undefined;
|
2371
|
+
loading?: boolean | null | undefined;
|
2372
|
+
}, {
|
2373
|
+
data?: any;
|
2374
|
+
error?: {
|
2375
|
+
message: string;
|
2376
|
+
statusCode: number | null;
|
2377
|
+
} | null | undefined;
|
2378
|
+
loading?: boolean | null | undefined;
|
2024
2379
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
2025
2380
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
2026
2381
|
start: z.ZodString;
|
@@ -2156,6 +2511,33 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2156
2511
|
firstname: string;
|
2157
2512
|
surname: string;
|
2158
2513
|
middlename?: string | null | undefined;
|
2514
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2515
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
2516
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
2517
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
2518
|
+
message: z.ZodString;
|
2519
|
+
}, "strip", z.ZodTypeAny, {
|
2520
|
+
message: string;
|
2521
|
+
statusCode: number | null;
|
2522
|
+
}, {
|
2523
|
+
message: string;
|
2524
|
+
statusCode: number | null;
|
2525
|
+
}>>>;
|
2526
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
2527
|
+
}, "strip", z.ZodTypeAny, {
|
2528
|
+
data?: any;
|
2529
|
+
error?: {
|
2530
|
+
message: string;
|
2531
|
+
statusCode: number | null;
|
2532
|
+
} | null | undefined;
|
2533
|
+
loading?: boolean | null | undefined;
|
2534
|
+
}, {
|
2535
|
+
data?: any;
|
2536
|
+
error?: {
|
2537
|
+
message: string;
|
2538
|
+
statusCode: number | null;
|
2539
|
+
} | null | undefined;
|
2540
|
+
loading?: boolean | null | undefined;
|
2159
2541
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
2160
2542
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
2161
2543
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -2206,6 +2588,13 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2206
2588
|
path: string;
|
2207
2589
|
originalFilename: string;
|
2208
2590
|
}[] | {
|
2591
|
+
data?: any;
|
2592
|
+
error?: {
|
2593
|
+
message: string;
|
2594
|
+
statusCode: number | null;
|
2595
|
+
} | null | undefined;
|
2596
|
+
loading?: boolean | null | undefined;
|
2597
|
+
} | {
|
2209
2598
|
start: string;
|
2210
2599
|
end: string;
|
2211
2600
|
} | null | undefined>;
|
@@ -2252,6 +2641,13 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2252
2641
|
path: string;
|
2253
2642
|
originalFilename: string;
|
2254
2643
|
}[] | {
|
2644
|
+
data?: any;
|
2645
|
+
error?: {
|
2646
|
+
message: string;
|
2647
|
+
statusCode: number | null;
|
2648
|
+
} | null | undefined;
|
2649
|
+
loading?: boolean | null | undefined;
|
2650
|
+
} | {
|
2255
2651
|
start: string;
|
2256
2652
|
end: string;
|
2257
2653
|
} | null | undefined> | undefined;
|
@@ -2303,6 +2699,13 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2303
2699
|
path: string;
|
2304
2700
|
originalFilename: string;
|
2305
2701
|
}[] | {
|
2702
|
+
data?: any;
|
2703
|
+
error?: {
|
2704
|
+
message: string;
|
2705
|
+
statusCode: number | null;
|
2706
|
+
} | null | undefined;
|
2707
|
+
loading?: boolean | null | undefined;
|
2708
|
+
} | {
|
2306
2709
|
start: string;
|
2307
2710
|
end: string;
|
2308
2711
|
} | null | undefined> | undefined;
|
@@ -2348,6 +2751,13 @@ export declare const DeclareActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
2348
2751
|
path: string;
|
2349
2752
|
originalFilename: string;
|
2350
2753
|
}[] | {
|
2754
|
+
data?: any;
|
2755
|
+
error?: {
|
2756
|
+
message: string;
|
2757
|
+
statusCode: number | null;
|
2758
|
+
} | null | undefined;
|
2759
|
+
loading?: boolean | null | undefined;
|
2760
|
+
} | {
|
2351
2761
|
start: string;
|
2352
2762
|
end: string;
|
2353
2763
|
} | null | undefined> | undefined;
|
@@ -2491,6 +2901,33 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2491
2901
|
firstname: string;
|
2492
2902
|
surname: string;
|
2493
2903
|
middlename?: string | null | undefined;
|
2904
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
2905
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
2906
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
2907
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
2908
|
+
message: z.ZodString;
|
2909
|
+
}, "strip", z.ZodTypeAny, {
|
2910
|
+
message: string;
|
2911
|
+
statusCode: number | null;
|
2912
|
+
}, {
|
2913
|
+
message: string;
|
2914
|
+
statusCode: number | null;
|
2915
|
+
}>>>;
|
2916
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
2917
|
+
}, "strip", z.ZodTypeAny, {
|
2918
|
+
data?: any;
|
2919
|
+
error?: {
|
2920
|
+
message: string;
|
2921
|
+
statusCode: number | null;
|
2922
|
+
} | null | undefined;
|
2923
|
+
loading?: boolean | null | undefined;
|
2924
|
+
}, {
|
2925
|
+
data?: any;
|
2926
|
+
error?: {
|
2927
|
+
message: string;
|
2928
|
+
statusCode: number | null;
|
2929
|
+
} | null | undefined;
|
2930
|
+
loading?: boolean | null | undefined;
|
2494
2931
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
2495
2932
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
2496
2933
|
start: z.ZodString;
|
@@ -2626,6 +3063,33 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2626
3063
|
firstname: string;
|
2627
3064
|
surname: string;
|
2628
3065
|
middlename?: string | null | undefined;
|
3066
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3067
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
3068
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
3069
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
3070
|
+
message: z.ZodString;
|
3071
|
+
}, "strip", z.ZodTypeAny, {
|
3072
|
+
message: string;
|
3073
|
+
statusCode: number | null;
|
3074
|
+
}, {
|
3075
|
+
message: string;
|
3076
|
+
statusCode: number | null;
|
3077
|
+
}>>>;
|
3078
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
3079
|
+
}, "strip", z.ZodTypeAny, {
|
3080
|
+
data?: any;
|
3081
|
+
error?: {
|
3082
|
+
message: string;
|
3083
|
+
statusCode: number | null;
|
3084
|
+
} | null | undefined;
|
3085
|
+
loading?: boolean | null | undefined;
|
3086
|
+
}, {
|
3087
|
+
data?: any;
|
3088
|
+
error?: {
|
3089
|
+
message: string;
|
3090
|
+
statusCode: number | null;
|
3091
|
+
} | null | undefined;
|
3092
|
+
loading?: boolean | null | undefined;
|
2629
3093
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
2630
3094
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
2631
3095
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -2683,6 +3147,13 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2683
3147
|
path: string;
|
2684
3148
|
originalFilename: string;
|
2685
3149
|
}[] | {
|
3150
|
+
data?: any;
|
3151
|
+
error?: {
|
3152
|
+
message: string;
|
3153
|
+
statusCode: number | null;
|
3154
|
+
} | null | undefined;
|
3155
|
+
loading?: boolean | null | undefined;
|
3156
|
+
} | {
|
2686
3157
|
start: string;
|
2687
3158
|
end: string;
|
2688
3159
|
} | null | undefined>;
|
@@ -2732,6 +3203,13 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2732
3203
|
path: string;
|
2733
3204
|
originalFilename: string;
|
2734
3205
|
}[] | {
|
3206
|
+
data?: any;
|
3207
|
+
error?: {
|
3208
|
+
message: string;
|
3209
|
+
statusCode: number | null;
|
3210
|
+
} | null | undefined;
|
3211
|
+
loading?: boolean | null | undefined;
|
3212
|
+
} | {
|
2735
3213
|
start: string;
|
2736
3214
|
end: string;
|
2737
3215
|
} | null | undefined> | undefined;
|
@@ -2786,6 +3264,13 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2786
3264
|
path: string;
|
2787
3265
|
originalFilename: string;
|
2788
3266
|
}[] | {
|
3267
|
+
data?: any;
|
3268
|
+
error?: {
|
3269
|
+
message: string;
|
3270
|
+
statusCode: number | null;
|
3271
|
+
} | null | undefined;
|
3272
|
+
loading?: boolean | null | undefined;
|
3273
|
+
} | {
|
2789
3274
|
start: string;
|
2790
3275
|
end: string;
|
2791
3276
|
} | null | undefined> | undefined;
|
@@ -2831,6 +3316,13 @@ export declare const PrintCertificateActionInput: z.ZodObject<z.objectUtil.exten
|
|
2831
3316
|
path: string;
|
2832
3317
|
originalFilename: string;
|
2833
3318
|
}[] | {
|
3319
|
+
data?: any;
|
3320
|
+
error?: {
|
3321
|
+
message: string;
|
3322
|
+
statusCode: number | null;
|
3323
|
+
} | null | undefined;
|
3324
|
+
loading?: boolean | null | undefined;
|
3325
|
+
} | {
|
2834
3326
|
start: string;
|
2835
3327
|
end: string;
|
2836
3328
|
} | null | undefined> | undefined;
|
@@ -2975,6 +3467,33 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
2975
3467
|
firstname: string;
|
2976
3468
|
surname: string;
|
2977
3469
|
middlename?: string | null | undefined;
|
3470
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3471
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
3472
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
3473
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
3474
|
+
message: z.ZodString;
|
3475
|
+
}, "strip", z.ZodTypeAny, {
|
3476
|
+
message: string;
|
3477
|
+
statusCode: number | null;
|
3478
|
+
}, {
|
3479
|
+
message: string;
|
3480
|
+
statusCode: number | null;
|
3481
|
+
}>>>;
|
3482
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
3483
|
+
}, "strip", z.ZodTypeAny, {
|
3484
|
+
data?: any;
|
3485
|
+
error?: {
|
3486
|
+
message: string;
|
3487
|
+
statusCode: number | null;
|
3488
|
+
} | null | undefined;
|
3489
|
+
loading?: boolean | null | undefined;
|
3490
|
+
}, {
|
3491
|
+
data?: any;
|
3492
|
+
error?: {
|
3493
|
+
message: string;
|
3494
|
+
statusCode: number | null;
|
3495
|
+
} | null | undefined;
|
3496
|
+
loading?: boolean | null | undefined;
|
2978
3497
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
2979
3498
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
2980
3499
|
start: z.ZodString;
|
@@ -3110,6 +3629,33 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
3110
3629
|
firstname: string;
|
3111
3630
|
surname: string;
|
3112
3631
|
middlename?: string | null | undefined;
|
3632
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
3633
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
3634
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
3635
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
3636
|
+
message: z.ZodString;
|
3637
|
+
}, "strip", z.ZodTypeAny, {
|
3638
|
+
message: string;
|
3639
|
+
statusCode: number | null;
|
3640
|
+
}, {
|
3641
|
+
message: string;
|
3642
|
+
statusCode: number | null;
|
3643
|
+
}>>>;
|
3644
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
3645
|
+
}, "strip", z.ZodTypeAny, {
|
3646
|
+
data?: any;
|
3647
|
+
error?: {
|
3648
|
+
message: string;
|
3649
|
+
statusCode: number | null;
|
3650
|
+
} | null | undefined;
|
3651
|
+
loading?: boolean | null | undefined;
|
3652
|
+
}, {
|
3653
|
+
data?: any;
|
3654
|
+
error?: {
|
3655
|
+
message: string;
|
3656
|
+
statusCode: number | null;
|
3657
|
+
} | null | undefined;
|
3658
|
+
loading?: boolean | null | undefined;
|
3113
3659
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
3114
3660
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
3115
3661
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -3174,6 +3720,13 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
3174
3720
|
path: string;
|
3175
3721
|
originalFilename: string;
|
3176
3722
|
}[] | {
|
3723
|
+
data?: any;
|
3724
|
+
error?: {
|
3725
|
+
message: string;
|
3726
|
+
statusCode: number | null;
|
3727
|
+
} | null | undefined;
|
3728
|
+
loading?: boolean | null | undefined;
|
3729
|
+
} | {
|
3177
3730
|
start: string;
|
3178
3731
|
end: string;
|
3179
3732
|
} | null | undefined>;
|
@@ -3220,6 +3773,13 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
3220
3773
|
path: string;
|
3221
3774
|
originalFilename: string;
|
3222
3775
|
}[] | {
|
3776
|
+
data?: any;
|
3777
|
+
error?: {
|
3778
|
+
message: string;
|
3779
|
+
statusCode: number | null;
|
3780
|
+
} | null | undefined;
|
3781
|
+
loading?: boolean | null | undefined;
|
3782
|
+
} | {
|
3223
3783
|
start: string;
|
3224
3784
|
end: string;
|
3225
3785
|
} | null | undefined> | undefined;
|
@@ -3275,6 +3835,13 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
3275
3835
|
path: string;
|
3276
3836
|
originalFilename: string;
|
3277
3837
|
}[] | {
|
3838
|
+
data?: any;
|
3839
|
+
error?: {
|
3840
|
+
message: string;
|
3841
|
+
statusCode: number | null;
|
3842
|
+
} | null | undefined;
|
3843
|
+
loading?: boolean | null | undefined;
|
3844
|
+
} | {
|
3278
3845
|
start: string;
|
3279
3846
|
end: string;
|
3280
3847
|
} | null | undefined> | undefined;
|
@@ -3320,6 +3887,13 @@ export declare const RejectDeclarationActionInput: z.ZodObject<z.objectUtil.exte
|
|
3320
3887
|
path: string;
|
3321
3888
|
originalFilename: string;
|
3322
3889
|
}[] | {
|
3890
|
+
data?: any;
|
3891
|
+
error?: {
|
3892
|
+
message: string;
|
3893
|
+
statusCode: number | null;
|
3894
|
+
} | null | undefined;
|
3895
|
+
loading?: boolean | null | undefined;
|
3896
|
+
} | {
|
3323
3897
|
start: string;
|
3324
3898
|
end: string;
|
3325
3899
|
} | null | undefined> | undefined;
|
@@ -3464,6 +4038,33 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3464
4038
|
firstname: string;
|
3465
4039
|
surname: string;
|
3466
4040
|
middlename?: string | null | undefined;
|
4041
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4042
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
4043
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
4044
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
4045
|
+
message: z.ZodString;
|
4046
|
+
}, "strip", z.ZodTypeAny, {
|
4047
|
+
message: string;
|
4048
|
+
statusCode: number | null;
|
4049
|
+
}, {
|
4050
|
+
message: string;
|
4051
|
+
statusCode: number | null;
|
4052
|
+
}>>>;
|
4053
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
4054
|
+
}, "strip", z.ZodTypeAny, {
|
4055
|
+
data?: any;
|
4056
|
+
error?: {
|
4057
|
+
message: string;
|
4058
|
+
statusCode: number | null;
|
4059
|
+
} | null | undefined;
|
4060
|
+
loading?: boolean | null | undefined;
|
4061
|
+
}, {
|
4062
|
+
data?: any;
|
4063
|
+
error?: {
|
4064
|
+
message: string;
|
4065
|
+
statusCode: number | null;
|
4066
|
+
} | null | undefined;
|
4067
|
+
loading?: boolean | null | undefined;
|
3467
4068
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
3468
4069
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
3469
4070
|
start: z.ZodString;
|
@@ -3599,6 +4200,33 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3599
4200
|
firstname: string;
|
3600
4201
|
surname: string;
|
3601
4202
|
middlename?: string | null | undefined;
|
4203
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4204
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
4205
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
4206
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
4207
|
+
message: z.ZodString;
|
4208
|
+
}, "strip", z.ZodTypeAny, {
|
4209
|
+
message: string;
|
4210
|
+
statusCode: number | null;
|
4211
|
+
}, {
|
4212
|
+
message: string;
|
4213
|
+
statusCode: number | null;
|
4214
|
+
}>>>;
|
4215
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
4216
|
+
}, "strip", z.ZodTypeAny, {
|
4217
|
+
data?: any;
|
4218
|
+
error?: {
|
4219
|
+
message: string;
|
4220
|
+
statusCode: number | null;
|
4221
|
+
} | null | undefined;
|
4222
|
+
loading?: boolean | null | undefined;
|
4223
|
+
}, {
|
4224
|
+
data?: any;
|
4225
|
+
error?: {
|
4226
|
+
message: string;
|
4227
|
+
statusCode: number | null;
|
4228
|
+
} | null | undefined;
|
4229
|
+
loading?: boolean | null | undefined;
|
3602
4230
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
3603
4231
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
3604
4232
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -3649,6 +4277,13 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3649
4277
|
path: string;
|
3650
4278
|
originalFilename: string;
|
3651
4279
|
}[] | {
|
4280
|
+
data?: any;
|
4281
|
+
error?: {
|
4282
|
+
message: string;
|
4283
|
+
statusCode: number | null;
|
4284
|
+
} | null | undefined;
|
4285
|
+
loading?: boolean | null | undefined;
|
4286
|
+
} | {
|
3652
4287
|
start: string;
|
3653
4288
|
end: string;
|
3654
4289
|
} | null | undefined>;
|
@@ -3695,6 +4330,13 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3695
4330
|
path: string;
|
3696
4331
|
originalFilename: string;
|
3697
4332
|
}[] | {
|
4333
|
+
data?: any;
|
4334
|
+
error?: {
|
4335
|
+
message: string;
|
4336
|
+
statusCode: number | null;
|
4337
|
+
} | null | undefined;
|
4338
|
+
loading?: boolean | null | undefined;
|
4339
|
+
} | {
|
3698
4340
|
start: string;
|
3699
4341
|
end: string;
|
3700
4342
|
} | null | undefined> | undefined;
|
@@ -3746,6 +4388,13 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3746
4388
|
path: string;
|
3747
4389
|
originalFilename: string;
|
3748
4390
|
}[] | {
|
4391
|
+
data?: any;
|
4392
|
+
error?: {
|
4393
|
+
message: string;
|
4394
|
+
statusCode: number | null;
|
4395
|
+
} | null | undefined;
|
4396
|
+
loading?: boolean | null | undefined;
|
4397
|
+
} | {
|
3749
4398
|
start: string;
|
3750
4399
|
end: string;
|
3751
4400
|
} | null | undefined> | undefined;
|
@@ -3791,6 +4440,13 @@ export declare const MarkedAsDuplicateActionInput: z.ZodObject<z.objectUtil.exte
|
|
3791
4440
|
path: string;
|
3792
4441
|
originalFilename: string;
|
3793
4442
|
}[] | {
|
4443
|
+
data?: any;
|
4444
|
+
error?: {
|
4445
|
+
message: string;
|
4446
|
+
statusCode: number | null;
|
4447
|
+
} | null | undefined;
|
4448
|
+
loading?: boolean | null | undefined;
|
4449
|
+
} | {
|
3794
4450
|
start: string;
|
3795
4451
|
end: string;
|
3796
4452
|
} | null | undefined> | undefined;
|
@@ -3935,6 +4591,33 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
3935
4591
|
firstname: string;
|
3936
4592
|
surname: string;
|
3937
4593
|
middlename?: string | null | undefined;
|
4594
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4595
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
4596
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
4597
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
4598
|
+
message: z.ZodString;
|
4599
|
+
}, "strip", z.ZodTypeAny, {
|
4600
|
+
message: string;
|
4601
|
+
statusCode: number | null;
|
4602
|
+
}, {
|
4603
|
+
message: string;
|
4604
|
+
statusCode: number | null;
|
4605
|
+
}>>>;
|
4606
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
4607
|
+
}, "strip", z.ZodTypeAny, {
|
4608
|
+
data?: any;
|
4609
|
+
error?: {
|
4610
|
+
message: string;
|
4611
|
+
statusCode: number | null;
|
4612
|
+
} | null | undefined;
|
4613
|
+
loading?: boolean | null | undefined;
|
4614
|
+
}, {
|
4615
|
+
data?: any;
|
4616
|
+
error?: {
|
4617
|
+
message: string;
|
4618
|
+
statusCode: number | null;
|
4619
|
+
} | null | undefined;
|
4620
|
+
loading?: boolean | null | undefined;
|
3938
4621
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
3939
4622
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
3940
4623
|
start: z.ZodString;
|
@@ -4070,6 +4753,33 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4070
4753
|
firstname: string;
|
4071
4754
|
surname: string;
|
4072
4755
|
middlename?: string | null | undefined;
|
4756
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
4757
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
4758
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
4759
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
4760
|
+
message: z.ZodString;
|
4761
|
+
}, "strip", z.ZodTypeAny, {
|
4762
|
+
message: string;
|
4763
|
+
statusCode: number | null;
|
4764
|
+
}, {
|
4765
|
+
message: string;
|
4766
|
+
statusCode: number | null;
|
4767
|
+
}>>>;
|
4768
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
4769
|
+
}, "strip", z.ZodTypeAny, {
|
4770
|
+
data?: any;
|
4771
|
+
error?: {
|
4772
|
+
message: string;
|
4773
|
+
statusCode: number | null;
|
4774
|
+
} | null | undefined;
|
4775
|
+
loading?: boolean | null | undefined;
|
4776
|
+
}, {
|
4777
|
+
data?: any;
|
4778
|
+
error?: {
|
4779
|
+
message: string;
|
4780
|
+
statusCode: number | null;
|
4781
|
+
} | null | undefined;
|
4782
|
+
loading?: boolean | null | undefined;
|
4073
4783
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4074
4784
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
4075
4785
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -4134,6 +4844,13 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4134
4844
|
path: string;
|
4135
4845
|
originalFilename: string;
|
4136
4846
|
}[] | {
|
4847
|
+
data?: any;
|
4848
|
+
error?: {
|
4849
|
+
message: string;
|
4850
|
+
statusCode: number | null;
|
4851
|
+
} | null | undefined;
|
4852
|
+
loading?: boolean | null | undefined;
|
4853
|
+
} | {
|
4137
4854
|
start: string;
|
4138
4855
|
end: string;
|
4139
4856
|
} | null | undefined>;
|
@@ -4180,6 +4897,13 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4180
4897
|
path: string;
|
4181
4898
|
originalFilename: string;
|
4182
4899
|
}[] | {
|
4900
|
+
data?: any;
|
4901
|
+
error?: {
|
4902
|
+
message: string;
|
4903
|
+
statusCode: number | null;
|
4904
|
+
} | null | undefined;
|
4905
|
+
loading?: boolean | null | undefined;
|
4906
|
+
} | {
|
4183
4907
|
start: string;
|
4184
4908
|
end: string;
|
4185
4909
|
} | null | undefined> | undefined;
|
@@ -4235,6 +4959,13 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4235
4959
|
path: string;
|
4236
4960
|
originalFilename: string;
|
4237
4961
|
}[] | {
|
4962
|
+
data?: any;
|
4963
|
+
error?: {
|
4964
|
+
message: string;
|
4965
|
+
statusCode: number | null;
|
4966
|
+
} | null | undefined;
|
4967
|
+
loading?: boolean | null | undefined;
|
4968
|
+
} | {
|
4238
4969
|
start: string;
|
4239
4970
|
end: string;
|
4240
4971
|
} | null | undefined> | undefined;
|
@@ -4280,6 +5011,13 @@ export declare const ArchiveActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4280
5011
|
path: string;
|
4281
5012
|
originalFilename: string;
|
4282
5013
|
}[] | {
|
5014
|
+
data?: any;
|
5015
|
+
error?: {
|
5016
|
+
message: string;
|
5017
|
+
statusCode: number | null;
|
5018
|
+
} | null | undefined;
|
5019
|
+
loading?: boolean | null | undefined;
|
5020
|
+
} | {
|
4283
5021
|
start: string;
|
4284
5022
|
end: string;
|
4285
5023
|
} | null | undefined> | undefined;
|
@@ -4424,6 +5162,33 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4424
5162
|
firstname: string;
|
4425
5163
|
surname: string;
|
4426
5164
|
middlename?: string | null | undefined;
|
5165
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5166
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
5167
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
5168
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
5169
|
+
message: z.ZodString;
|
5170
|
+
}, "strip", z.ZodTypeAny, {
|
5171
|
+
message: string;
|
5172
|
+
statusCode: number | null;
|
5173
|
+
}, {
|
5174
|
+
message: string;
|
5175
|
+
statusCode: number | null;
|
5176
|
+
}>>>;
|
5177
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
5178
|
+
}, "strip", z.ZodTypeAny, {
|
5179
|
+
data?: any;
|
5180
|
+
error?: {
|
5181
|
+
message: string;
|
5182
|
+
statusCode: number | null;
|
5183
|
+
} | null | undefined;
|
5184
|
+
loading?: boolean | null | undefined;
|
5185
|
+
}, {
|
5186
|
+
data?: any;
|
5187
|
+
error?: {
|
5188
|
+
message: string;
|
5189
|
+
statusCode: number | null;
|
5190
|
+
} | null | undefined;
|
5191
|
+
loading?: boolean | null | undefined;
|
4427
5192
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4428
5193
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
4429
5194
|
start: z.ZodString;
|
@@ -4559,6 +5324,33 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4559
5324
|
firstname: string;
|
4560
5325
|
surname: string;
|
4561
5326
|
middlename?: string | null | undefined;
|
5327
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5328
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
5329
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
5330
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
5331
|
+
message: z.ZodString;
|
5332
|
+
}, "strip", z.ZodTypeAny, {
|
5333
|
+
message: string;
|
5334
|
+
statusCode: number | null;
|
5335
|
+
}, {
|
5336
|
+
message: string;
|
5337
|
+
statusCode: number | null;
|
5338
|
+
}>>>;
|
5339
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
5340
|
+
}, "strip", z.ZodTypeAny, {
|
5341
|
+
data?: any;
|
5342
|
+
error?: {
|
5343
|
+
message: string;
|
5344
|
+
statusCode: number | null;
|
5345
|
+
} | null | undefined;
|
5346
|
+
loading?: boolean | null | undefined;
|
5347
|
+
}, {
|
5348
|
+
data?: any;
|
5349
|
+
error?: {
|
5350
|
+
message: string;
|
5351
|
+
statusCode: number | null;
|
5352
|
+
} | null | undefined;
|
5353
|
+
loading?: boolean | null | undefined;
|
4562
5354
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4563
5355
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
4564
5356
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -4610,6 +5402,13 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4610
5402
|
path: string;
|
4611
5403
|
originalFilename: string;
|
4612
5404
|
}[] | {
|
5405
|
+
data?: any;
|
5406
|
+
error?: {
|
5407
|
+
message: string;
|
5408
|
+
statusCode: number | null;
|
5409
|
+
} | null | undefined;
|
5410
|
+
loading?: boolean | null | undefined;
|
5411
|
+
} | {
|
4613
5412
|
start: string;
|
4614
5413
|
end: string;
|
4615
5414
|
} | null | undefined>;
|
@@ -4657,6 +5456,13 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4657
5456
|
path: string;
|
4658
5457
|
originalFilename: string;
|
4659
5458
|
}[] | {
|
5459
|
+
data?: any;
|
5460
|
+
error?: {
|
5461
|
+
message: string;
|
5462
|
+
statusCode: number | null;
|
5463
|
+
} | null | undefined;
|
5464
|
+
loading?: boolean | null | undefined;
|
5465
|
+
} | {
|
4660
5466
|
start: string;
|
4661
5467
|
end: string;
|
4662
5468
|
} | null | undefined> | undefined;
|
@@ -4709,6 +5515,13 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4709
5515
|
path: string;
|
4710
5516
|
originalFilename: string;
|
4711
5517
|
}[] | {
|
5518
|
+
data?: any;
|
5519
|
+
error?: {
|
5520
|
+
message: string;
|
5521
|
+
statusCode: number | null;
|
5522
|
+
} | null | undefined;
|
5523
|
+
loading?: boolean | null | undefined;
|
5524
|
+
} | {
|
4712
5525
|
start: string;
|
4713
5526
|
end: string;
|
4714
5527
|
} | null | undefined> | undefined;
|
@@ -4754,6 +5567,13 @@ export declare const AssignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4754
5567
|
path: string;
|
4755
5568
|
originalFilename: string;
|
4756
5569
|
}[] | {
|
5570
|
+
data?: any;
|
5571
|
+
error?: {
|
5572
|
+
message: string;
|
5573
|
+
statusCode: number | null;
|
5574
|
+
} | null | undefined;
|
5575
|
+
loading?: boolean | null | undefined;
|
5576
|
+
} | {
|
4757
5577
|
start: string;
|
4758
5578
|
end: string;
|
4759
5579
|
} | null | undefined> | undefined;
|
@@ -4898,6 +5718,33 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
4898
5718
|
firstname: string;
|
4899
5719
|
surname: string;
|
4900
5720
|
middlename?: string | null | undefined;
|
5721
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5722
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
5723
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
5724
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
5725
|
+
message: z.ZodString;
|
5726
|
+
}, "strip", z.ZodTypeAny, {
|
5727
|
+
message: string;
|
5728
|
+
statusCode: number | null;
|
5729
|
+
}, {
|
5730
|
+
message: string;
|
5731
|
+
statusCode: number | null;
|
5732
|
+
}>>>;
|
5733
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
5734
|
+
}, "strip", z.ZodTypeAny, {
|
5735
|
+
data?: any;
|
5736
|
+
error?: {
|
5737
|
+
message: string;
|
5738
|
+
statusCode: number | null;
|
5739
|
+
} | null | undefined;
|
5740
|
+
loading?: boolean | null | undefined;
|
5741
|
+
}, {
|
5742
|
+
data?: any;
|
5743
|
+
error?: {
|
5744
|
+
message: string;
|
5745
|
+
statusCode: number | null;
|
5746
|
+
} | null | undefined;
|
5747
|
+
loading?: boolean | null | undefined;
|
4901
5748
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
4902
5749
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
4903
5750
|
start: z.ZodString;
|
@@ -5033,6 +5880,33 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5033
5880
|
firstname: string;
|
5034
5881
|
surname: string;
|
5035
5882
|
middlename?: string | null | undefined;
|
5883
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
5884
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
5885
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
5886
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
5887
|
+
message: z.ZodString;
|
5888
|
+
}, "strip", z.ZodTypeAny, {
|
5889
|
+
message: string;
|
5890
|
+
statusCode: number | null;
|
5891
|
+
}, {
|
5892
|
+
message: string;
|
5893
|
+
statusCode: number | null;
|
5894
|
+
}>>>;
|
5895
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
5896
|
+
}, "strip", z.ZodTypeAny, {
|
5897
|
+
data?: any;
|
5898
|
+
error?: {
|
5899
|
+
message: string;
|
5900
|
+
statusCode: number | null;
|
5901
|
+
} | null | undefined;
|
5902
|
+
loading?: boolean | null | undefined;
|
5903
|
+
}, {
|
5904
|
+
data?: any;
|
5905
|
+
error?: {
|
5906
|
+
message: string;
|
5907
|
+
statusCode: number | null;
|
5908
|
+
} | null | undefined;
|
5909
|
+
loading?: boolean | null | undefined;
|
5036
5910
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5037
5911
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
5038
5912
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -5084,6 +5958,13 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5084
5958
|
path: string;
|
5085
5959
|
originalFilename: string;
|
5086
5960
|
}[] | {
|
5961
|
+
data?: any;
|
5962
|
+
error?: {
|
5963
|
+
message: string;
|
5964
|
+
statusCode: number | null;
|
5965
|
+
} | null | undefined;
|
5966
|
+
loading?: boolean | null | undefined;
|
5967
|
+
} | {
|
5087
5968
|
start: string;
|
5088
5969
|
end: string;
|
5089
5970
|
} | null | undefined>;
|
@@ -5131,6 +6012,13 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5131
6012
|
path: string;
|
5132
6013
|
originalFilename: string;
|
5133
6014
|
}[] | {
|
6015
|
+
data?: any;
|
6016
|
+
error?: {
|
6017
|
+
message: string;
|
6018
|
+
statusCode: number | null;
|
6019
|
+
} | null | undefined;
|
6020
|
+
loading?: boolean | null | undefined;
|
6021
|
+
} | {
|
5134
6022
|
start: string;
|
5135
6023
|
end: string;
|
5136
6024
|
} | null | undefined> | undefined;
|
@@ -5182,6 +6070,13 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5182
6070
|
path: string;
|
5183
6071
|
originalFilename: string;
|
5184
6072
|
}[] | {
|
6073
|
+
data?: any;
|
6074
|
+
error?: {
|
6075
|
+
message: string;
|
6076
|
+
statusCode: number | null;
|
6077
|
+
} | null | undefined;
|
6078
|
+
loading?: boolean | null | undefined;
|
6079
|
+
} | {
|
5185
6080
|
start: string;
|
5186
6081
|
end: string;
|
5187
6082
|
} | null | undefined> | undefined;
|
@@ -5227,6 +6122,13 @@ export declare const UnassignActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
5227
6122
|
path: string;
|
5228
6123
|
originalFilename: string;
|
5229
6124
|
}[] | {
|
6125
|
+
data?: any;
|
6126
|
+
error?: {
|
6127
|
+
message: string;
|
6128
|
+
statusCode: number | null;
|
6129
|
+
} | null | undefined;
|
6130
|
+
loading?: boolean | null | undefined;
|
6131
|
+
} | {
|
5230
6132
|
start: string;
|
5231
6133
|
end: string;
|
5232
6134
|
} | null | undefined> | undefined;
|
@@ -5372,6 +6274,33 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5372
6274
|
firstname: string;
|
5373
6275
|
surname: string;
|
5374
6276
|
middlename?: string | null | undefined;
|
6277
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6278
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
6279
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
6280
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
6281
|
+
message: z.ZodString;
|
6282
|
+
}, "strip", z.ZodTypeAny, {
|
6283
|
+
message: string;
|
6284
|
+
statusCode: number | null;
|
6285
|
+
}, {
|
6286
|
+
message: string;
|
6287
|
+
statusCode: number | null;
|
6288
|
+
}>>>;
|
6289
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
6290
|
+
}, "strip", z.ZodTypeAny, {
|
6291
|
+
data?: any;
|
6292
|
+
error?: {
|
6293
|
+
message: string;
|
6294
|
+
statusCode: number | null;
|
6295
|
+
} | null | undefined;
|
6296
|
+
loading?: boolean | null | undefined;
|
6297
|
+
}, {
|
6298
|
+
data?: any;
|
6299
|
+
error?: {
|
6300
|
+
message: string;
|
6301
|
+
statusCode: number | null;
|
6302
|
+
} | null | undefined;
|
6303
|
+
loading?: boolean | null | undefined;
|
5375
6304
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5376
6305
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
5377
6306
|
start: z.ZodString;
|
@@ -5507,6 +6436,33 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5507
6436
|
firstname: string;
|
5508
6437
|
surname: string;
|
5509
6438
|
middlename?: string | null | undefined;
|
6439
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6440
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
6441
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
6442
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
6443
|
+
message: z.ZodString;
|
6444
|
+
}, "strip", z.ZodTypeAny, {
|
6445
|
+
message: string;
|
6446
|
+
statusCode: number | null;
|
6447
|
+
}, {
|
6448
|
+
message: string;
|
6449
|
+
statusCode: number | null;
|
6450
|
+
}>>>;
|
6451
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
6452
|
+
}, "strip", z.ZodTypeAny, {
|
6453
|
+
data?: any;
|
6454
|
+
error?: {
|
6455
|
+
message: string;
|
6456
|
+
statusCode: number | null;
|
6457
|
+
} | null | undefined;
|
6458
|
+
loading?: boolean | null | undefined;
|
6459
|
+
}, {
|
6460
|
+
data?: any;
|
6461
|
+
error?: {
|
6462
|
+
message: string;
|
6463
|
+
statusCode: number | null;
|
6464
|
+
} | null | undefined;
|
6465
|
+
loading?: boolean | null | undefined;
|
5510
6466
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5511
6467
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
5512
6468
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -5557,6 +6513,13 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5557
6513
|
path: string;
|
5558
6514
|
originalFilename: string;
|
5559
6515
|
}[] | {
|
6516
|
+
data?: any;
|
6517
|
+
error?: {
|
6518
|
+
message: string;
|
6519
|
+
statusCode: number | null;
|
6520
|
+
} | null | undefined;
|
6521
|
+
loading?: boolean | null | undefined;
|
6522
|
+
} | {
|
5560
6523
|
start: string;
|
5561
6524
|
end: string;
|
5562
6525
|
} | null | undefined>;
|
@@ -5603,6 +6566,13 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5603
6566
|
path: string;
|
5604
6567
|
originalFilename: string;
|
5605
6568
|
}[] | {
|
6569
|
+
data?: any;
|
6570
|
+
error?: {
|
6571
|
+
message: string;
|
6572
|
+
statusCode: number | null;
|
6573
|
+
} | null | undefined;
|
6574
|
+
loading?: boolean | null | undefined;
|
6575
|
+
} | {
|
5606
6576
|
start: string;
|
5607
6577
|
end: string;
|
5608
6578
|
} | null | undefined> | undefined;
|
@@ -5654,6 +6624,13 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5654
6624
|
path: string;
|
5655
6625
|
originalFilename: string;
|
5656
6626
|
}[] | {
|
6627
|
+
data?: any;
|
6628
|
+
error?: {
|
6629
|
+
message: string;
|
6630
|
+
statusCode: number | null;
|
6631
|
+
} | null | undefined;
|
6632
|
+
loading?: boolean | null | undefined;
|
6633
|
+
} | {
|
5657
6634
|
start: string;
|
5658
6635
|
end: string;
|
5659
6636
|
} | null | undefined> | undefined;
|
@@ -5699,6 +6676,13 @@ export declare const RequestCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
5699
6676
|
path: string;
|
5700
6677
|
originalFilename: string;
|
5701
6678
|
}[] | {
|
6679
|
+
data?: any;
|
6680
|
+
error?: {
|
6681
|
+
message: string;
|
6682
|
+
statusCode: number | null;
|
6683
|
+
} | null | undefined;
|
6684
|
+
loading?: boolean | null | undefined;
|
6685
|
+
} | {
|
5702
6686
|
start: string;
|
5703
6687
|
end: string;
|
5704
6688
|
} | null | undefined> | undefined;
|
@@ -5843,6 +6827,33 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
5843
6827
|
firstname: string;
|
5844
6828
|
surname: string;
|
5845
6829
|
middlename?: string | null | undefined;
|
6830
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6831
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
6832
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
6833
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
6834
|
+
message: z.ZodString;
|
6835
|
+
}, "strip", z.ZodTypeAny, {
|
6836
|
+
message: string;
|
6837
|
+
statusCode: number | null;
|
6838
|
+
}, {
|
6839
|
+
message: string;
|
6840
|
+
statusCode: number | null;
|
6841
|
+
}>>>;
|
6842
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
6843
|
+
}, "strip", z.ZodTypeAny, {
|
6844
|
+
data?: any;
|
6845
|
+
error?: {
|
6846
|
+
message: string;
|
6847
|
+
statusCode: number | null;
|
6848
|
+
} | null | undefined;
|
6849
|
+
loading?: boolean | null | undefined;
|
6850
|
+
}, {
|
6851
|
+
data?: any;
|
6852
|
+
error?: {
|
6853
|
+
message: string;
|
6854
|
+
statusCode: number | null;
|
6855
|
+
} | null | undefined;
|
6856
|
+
loading?: boolean | null | undefined;
|
5846
6857
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5847
6858
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
5848
6859
|
start: z.ZodString;
|
@@ -5978,6 +6989,33 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
5978
6989
|
firstname: string;
|
5979
6990
|
surname: string;
|
5980
6991
|
middlename?: string | null | undefined;
|
6992
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
6993
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
6994
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
6995
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
6996
|
+
message: z.ZodString;
|
6997
|
+
}, "strip", z.ZodTypeAny, {
|
6998
|
+
message: string;
|
6999
|
+
statusCode: number | null;
|
7000
|
+
}, {
|
7001
|
+
message: string;
|
7002
|
+
statusCode: number | null;
|
7003
|
+
}>>>;
|
7004
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
7005
|
+
}, "strip", z.ZodTypeAny, {
|
7006
|
+
data?: any;
|
7007
|
+
error?: {
|
7008
|
+
message: string;
|
7009
|
+
statusCode: number | null;
|
7010
|
+
} | null | undefined;
|
7011
|
+
loading?: boolean | null | undefined;
|
7012
|
+
}, {
|
7013
|
+
data?: any;
|
7014
|
+
error?: {
|
7015
|
+
message: string;
|
7016
|
+
statusCode: number | null;
|
7017
|
+
} | null | undefined;
|
7018
|
+
loading?: boolean | null | undefined;
|
5981
7019
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
5982
7020
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
5983
7021
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -6043,6 +7081,13 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
6043
7081
|
path: string;
|
6044
7082
|
originalFilename: string;
|
6045
7083
|
}[] | {
|
7084
|
+
data?: any;
|
7085
|
+
error?: {
|
7086
|
+
message: string;
|
7087
|
+
statusCode: number | null;
|
7088
|
+
} | null | undefined;
|
7089
|
+
loading?: boolean | null | undefined;
|
7090
|
+
} | {
|
6046
7091
|
start: string;
|
6047
7092
|
end: string;
|
6048
7093
|
} | null | undefined>;
|
@@ -6090,6 +7135,13 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
6090
7135
|
path: string;
|
6091
7136
|
originalFilename: string;
|
6092
7137
|
}[] | {
|
7138
|
+
data?: any;
|
7139
|
+
error?: {
|
7140
|
+
message: string;
|
7141
|
+
statusCode: number | null;
|
7142
|
+
} | null | undefined;
|
7143
|
+
loading?: boolean | null | undefined;
|
7144
|
+
} | {
|
6093
7145
|
start: string;
|
6094
7146
|
end: string;
|
6095
7147
|
} | null | undefined> | undefined;
|
@@ -6146,6 +7198,13 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
6146
7198
|
path: string;
|
6147
7199
|
originalFilename: string;
|
6148
7200
|
}[] | {
|
7201
|
+
data?: any;
|
7202
|
+
error?: {
|
7203
|
+
message: string;
|
7204
|
+
statusCode: number | null;
|
7205
|
+
} | null | undefined;
|
7206
|
+
loading?: boolean | null | undefined;
|
7207
|
+
} | {
|
6149
7208
|
start: string;
|
6150
7209
|
end: string;
|
6151
7210
|
} | null | undefined> | undefined;
|
@@ -6191,6 +7250,13 @@ export declare const RejectCorrectionActionInput: z.ZodObject<z.objectUtil.exten
|
|
6191
7250
|
path: string;
|
6192
7251
|
originalFilename: string;
|
6193
7252
|
}[] | {
|
7253
|
+
data?: any;
|
7254
|
+
error?: {
|
7255
|
+
message: string;
|
7256
|
+
statusCode: number | null;
|
7257
|
+
} | null | undefined;
|
7258
|
+
loading?: boolean | null | undefined;
|
7259
|
+
} | {
|
6194
7260
|
start: string;
|
6195
7261
|
end: string;
|
6196
7262
|
} | null | undefined> | undefined;
|
@@ -6335,6 +7401,33 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6335
7401
|
firstname: string;
|
6336
7402
|
surname: string;
|
6337
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;
|
6338
7431
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6339
7432
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
6340
7433
|
start: z.ZodString;
|
@@ -6470,6 +7563,33 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6470
7563
|
firstname: string;
|
6471
7564
|
surname: string;
|
6472
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;
|
6473
7593
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6474
7594
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
6475
7595
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -6521,6 +7641,13 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6521
7641
|
path: string;
|
6522
7642
|
originalFilename: string;
|
6523
7643
|
}[] | {
|
7644
|
+
data?: any;
|
7645
|
+
error?: {
|
7646
|
+
message: string;
|
7647
|
+
statusCode: number | null;
|
7648
|
+
} | null | undefined;
|
7649
|
+
loading?: boolean | null | undefined;
|
7650
|
+
} | {
|
6524
7651
|
start: string;
|
6525
7652
|
end: string;
|
6526
7653
|
} | null | undefined>;
|
@@ -6568,6 +7695,13 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6568
7695
|
path: string;
|
6569
7696
|
originalFilename: string;
|
6570
7697
|
}[] | {
|
7698
|
+
data?: any;
|
7699
|
+
error?: {
|
7700
|
+
message: string;
|
7701
|
+
statusCode: number | null;
|
7702
|
+
} | null | undefined;
|
7703
|
+
loading?: boolean | null | undefined;
|
7704
|
+
} | {
|
6571
7705
|
start: string;
|
6572
7706
|
end: string;
|
6573
7707
|
} | null | undefined> | undefined;
|
@@ -6620,6 +7754,13 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6620
7754
|
path: string;
|
6621
7755
|
originalFilename: string;
|
6622
7756
|
}[] | {
|
7757
|
+
data?: any;
|
7758
|
+
error?: {
|
7759
|
+
message: string;
|
7760
|
+
statusCode: number | null;
|
7761
|
+
} | null | undefined;
|
7762
|
+
loading?: boolean | null | undefined;
|
7763
|
+
} | {
|
6623
7764
|
start: string;
|
6624
7765
|
end: string;
|
6625
7766
|
} | null | undefined> | undefined;
|
@@ -6665,6 +7806,13 @@ export declare const ApproveCorrectionActionInput: z.ZodObject<z.objectUtil.exte
|
|
6665
7806
|
path: string;
|
6666
7807
|
originalFilename: string;
|
6667
7808
|
}[] | {
|
7809
|
+
data?: any;
|
7810
|
+
error?: {
|
7811
|
+
message: string;
|
7812
|
+
statusCode: number | null;
|
7813
|
+
} | null | undefined;
|
7814
|
+
loading?: boolean | null | undefined;
|
7815
|
+
} | {
|
6668
7816
|
start: string;
|
6669
7817
|
end: string;
|
6670
7818
|
} | null | undefined> | undefined;
|
@@ -6809,6 +7957,33 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
6809
7957
|
firstname: string;
|
6810
7958
|
surname: string;
|
6811
7959
|
middlename?: string | null | undefined;
|
7960
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
7961
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
7962
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
7963
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
7964
|
+
message: z.ZodString;
|
7965
|
+
}, "strip", z.ZodTypeAny, {
|
7966
|
+
message: string;
|
7967
|
+
statusCode: number | null;
|
7968
|
+
}, {
|
7969
|
+
message: string;
|
7970
|
+
statusCode: number | null;
|
7971
|
+
}>>>;
|
7972
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
7973
|
+
}, "strip", z.ZodTypeAny, {
|
7974
|
+
data?: any;
|
7975
|
+
error?: {
|
7976
|
+
message: string;
|
7977
|
+
statusCode: number | null;
|
7978
|
+
} | null | undefined;
|
7979
|
+
loading?: boolean | null | undefined;
|
7980
|
+
}, {
|
7981
|
+
data?: any;
|
7982
|
+
error?: {
|
7983
|
+
message: string;
|
7984
|
+
statusCode: number | null;
|
7985
|
+
} | null | undefined;
|
7986
|
+
loading?: boolean | null | undefined;
|
6812
7987
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6813
7988
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
6814
7989
|
start: z.ZodString;
|
@@ -6944,6 +8119,33 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
6944
8119
|
firstname: string;
|
6945
8120
|
surname: string;
|
6946
8121
|
middlename?: string | null | undefined;
|
8122
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8123
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
8124
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
8125
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
8126
|
+
message: z.ZodString;
|
8127
|
+
}, "strip", z.ZodTypeAny, {
|
8128
|
+
message: string;
|
8129
|
+
statusCode: number | null;
|
8130
|
+
}, {
|
8131
|
+
message: string;
|
8132
|
+
statusCode: number | null;
|
8133
|
+
}>>>;
|
8134
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
8135
|
+
}, "strip", z.ZodTypeAny, {
|
8136
|
+
data?: any;
|
8137
|
+
error?: {
|
8138
|
+
message: string;
|
8139
|
+
statusCode: number | null;
|
8140
|
+
} | null | undefined;
|
8141
|
+
loading?: boolean | null | undefined;
|
8142
|
+
}, {
|
8143
|
+
data?: any;
|
8144
|
+
error?: {
|
8145
|
+
message: string;
|
8146
|
+
statusCode: number | null;
|
8147
|
+
} | null | undefined;
|
8148
|
+
loading?: boolean | null | undefined;
|
6947
8149
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
6948
8150
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
6949
8151
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -6994,6 +8196,13 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
6994
8196
|
path: string;
|
6995
8197
|
originalFilename: string;
|
6996
8198
|
}[] | {
|
8199
|
+
data?: any;
|
8200
|
+
error?: {
|
8201
|
+
message: string;
|
8202
|
+
statusCode: number | null;
|
8203
|
+
} | null | undefined;
|
8204
|
+
loading?: boolean | null | undefined;
|
8205
|
+
} | {
|
6997
8206
|
start: string;
|
6998
8207
|
end: string;
|
6999
8208
|
} | null | undefined>;
|
@@ -7040,6 +8249,13 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
7040
8249
|
path: string;
|
7041
8250
|
originalFilename: string;
|
7042
8251
|
}[] | {
|
8252
|
+
data?: any;
|
8253
|
+
error?: {
|
8254
|
+
message: string;
|
8255
|
+
statusCode: number | null;
|
8256
|
+
} | null | undefined;
|
8257
|
+
loading?: boolean | null | undefined;
|
8258
|
+
} | {
|
7043
8259
|
start: string;
|
7044
8260
|
end: string;
|
7045
8261
|
} | null | undefined> | undefined;
|
@@ -7091,6 +8307,13 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
7091
8307
|
path: string;
|
7092
8308
|
originalFilename: string;
|
7093
8309
|
}[] | {
|
8310
|
+
data?: any;
|
8311
|
+
error?: {
|
8312
|
+
message: string;
|
8313
|
+
statusCode: number | null;
|
8314
|
+
} | null | undefined;
|
8315
|
+
loading?: boolean | null | undefined;
|
8316
|
+
} | {
|
7094
8317
|
start: string;
|
7095
8318
|
end: string;
|
7096
8319
|
} | null | undefined> | undefined;
|
@@ -7136,6 +8359,13 @@ export declare const ReadActionInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
7136
8359
|
path: string;
|
7137
8360
|
originalFilename: string;
|
7138
8361
|
}[] | {
|
8362
|
+
data?: any;
|
8363
|
+
error?: {
|
8364
|
+
message: string;
|
8365
|
+
statusCode: number | null;
|
8366
|
+
} | null | undefined;
|
8367
|
+
loading?: boolean | null | undefined;
|
8368
|
+
} | {
|
7139
8369
|
start: string;
|
7140
8370
|
end: string;
|
7141
8371
|
} | null | undefined> | undefined;
|
@@ -7296,6 +8526,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7296
8526
|
firstname: string;
|
7297
8527
|
surname: string;
|
7298
8528
|
middlename?: string | null | undefined;
|
8529
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8530
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
8531
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
8532
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
8533
|
+
message: z.ZodString;
|
8534
|
+
}, "strip", z.ZodTypeAny, {
|
8535
|
+
message: string;
|
8536
|
+
statusCode: number | null;
|
8537
|
+
}, {
|
8538
|
+
message: string;
|
8539
|
+
statusCode: number | null;
|
8540
|
+
}>>>;
|
8541
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
8542
|
+
}, "strip", z.ZodTypeAny, {
|
8543
|
+
data?: any;
|
8544
|
+
error?: {
|
8545
|
+
message: string;
|
8546
|
+
statusCode: number | null;
|
8547
|
+
} | null | undefined;
|
8548
|
+
loading?: boolean | null | undefined;
|
8549
|
+
}, {
|
8550
|
+
data?: any;
|
8551
|
+
error?: {
|
8552
|
+
message: string;
|
8553
|
+
statusCode: number | null;
|
8554
|
+
} | null | undefined;
|
8555
|
+
loading?: boolean | null | undefined;
|
7299
8556
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
7300
8557
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
7301
8558
|
start: z.ZodString;
|
@@ -7431,6 +8688,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7431
8688
|
firstname: string;
|
7432
8689
|
surname: string;
|
7433
8690
|
middlename?: string | null | undefined;
|
8691
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
8692
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
8693
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
8694
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
8695
|
+
message: z.ZodString;
|
8696
|
+
}, "strip", z.ZodTypeAny, {
|
8697
|
+
message: string;
|
8698
|
+
statusCode: number | null;
|
8699
|
+
}, {
|
8700
|
+
message: string;
|
8701
|
+
statusCode: number | null;
|
8702
|
+
}>>>;
|
8703
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
8704
|
+
}, "strip", z.ZodTypeAny, {
|
8705
|
+
data?: any;
|
8706
|
+
error?: {
|
8707
|
+
message: string;
|
8708
|
+
statusCode: number | null;
|
8709
|
+
} | null | undefined;
|
8710
|
+
loading?: boolean | null | undefined;
|
8711
|
+
}, {
|
8712
|
+
data?: any;
|
8713
|
+
error?: {
|
8714
|
+
message: string;
|
8715
|
+
statusCode: number | null;
|
8716
|
+
} | null | undefined;
|
8717
|
+
loading?: boolean | null | undefined;
|
7434
8718
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
7435
8719
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
7436
8720
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -7482,6 +8766,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7482
8766
|
path: string;
|
7483
8767
|
originalFilename: string;
|
7484
8768
|
}[] | {
|
8769
|
+
data?: any;
|
8770
|
+
error?: {
|
8771
|
+
message: string;
|
8772
|
+
statusCode: number | null;
|
8773
|
+
} | null | undefined;
|
8774
|
+
loading?: boolean | null | undefined;
|
8775
|
+
} | {
|
7485
8776
|
start: string;
|
7486
8777
|
end: string;
|
7487
8778
|
} | null | undefined>;
|
@@ -7529,6 +8820,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7529
8820
|
path: string;
|
7530
8821
|
originalFilename: string;
|
7531
8822
|
}[] | {
|
8823
|
+
data?: any;
|
8824
|
+
error?: {
|
8825
|
+
message: string;
|
8826
|
+
statusCode: number | null;
|
8827
|
+
} | null | undefined;
|
8828
|
+
loading?: boolean | null | undefined;
|
8829
|
+
} | {
|
7532
8830
|
start: string;
|
7533
8831
|
end: string;
|
7534
8832
|
} | null | undefined> | undefined;
|
@@ -7581,6 +8879,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7581
8879
|
path: string;
|
7582
8880
|
originalFilename: string;
|
7583
8881
|
}[] | {
|
8882
|
+
data?: any;
|
8883
|
+
error?: {
|
8884
|
+
message: string;
|
8885
|
+
statusCode: number | null;
|
8886
|
+
} | null | undefined;
|
8887
|
+
loading?: boolean | null | undefined;
|
8888
|
+
} | {
|
7584
8889
|
start: string;
|
7585
8890
|
end: string;
|
7586
8891
|
} | null | undefined> | undefined;
|
@@ -7626,6 +8931,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7626
8931
|
path: string;
|
7627
8932
|
originalFilename: string;
|
7628
8933
|
}[] | {
|
8934
|
+
data?: any;
|
8935
|
+
error?: {
|
8936
|
+
message: string;
|
8937
|
+
statusCode: number | null;
|
8938
|
+
} | null | undefined;
|
8939
|
+
loading?: boolean | null | undefined;
|
8940
|
+
} | {
|
7629
8941
|
start: string;
|
7630
8942
|
end: string;
|
7631
8943
|
} | null | undefined> | undefined;
|
@@ -7768,6 +9080,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7768
9080
|
firstname: string;
|
7769
9081
|
surname: string;
|
7770
9082
|
middlename?: string | null | undefined;
|
9083
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9084
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
9085
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
9086
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
9087
|
+
message: z.ZodString;
|
9088
|
+
}, "strip", z.ZodTypeAny, {
|
9089
|
+
message: string;
|
9090
|
+
statusCode: number | null;
|
9091
|
+
}, {
|
9092
|
+
message: string;
|
9093
|
+
statusCode: number | null;
|
9094
|
+
}>>>;
|
9095
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
9096
|
+
}, "strip", z.ZodTypeAny, {
|
9097
|
+
data?: any;
|
9098
|
+
error?: {
|
9099
|
+
message: string;
|
9100
|
+
statusCode: number | null;
|
9101
|
+
} | null | undefined;
|
9102
|
+
loading?: boolean | null | undefined;
|
9103
|
+
}, {
|
9104
|
+
data?: any;
|
9105
|
+
error?: {
|
9106
|
+
message: string;
|
9107
|
+
statusCode: number | null;
|
9108
|
+
} | null | undefined;
|
9109
|
+
loading?: boolean | null | undefined;
|
7771
9110
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
7772
9111
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
7773
9112
|
start: z.ZodString;
|
@@ -7903,6 +9242,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7903
9242
|
firstname: string;
|
7904
9243
|
surname: string;
|
7905
9244
|
middlename?: string | null | undefined;
|
9245
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9246
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
9247
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
9248
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
9249
|
+
message: z.ZodString;
|
9250
|
+
}, "strip", z.ZodTypeAny, {
|
9251
|
+
message: string;
|
9252
|
+
statusCode: number | null;
|
9253
|
+
}, {
|
9254
|
+
message: string;
|
9255
|
+
statusCode: number | null;
|
9256
|
+
}>>>;
|
9257
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
9258
|
+
}, "strip", z.ZodTypeAny, {
|
9259
|
+
data?: any;
|
9260
|
+
error?: {
|
9261
|
+
message: string;
|
9262
|
+
statusCode: number | null;
|
9263
|
+
} | null | undefined;
|
9264
|
+
loading?: boolean | null | undefined;
|
9265
|
+
}, {
|
9266
|
+
data?: any;
|
9267
|
+
error?: {
|
9268
|
+
message: string;
|
9269
|
+
statusCode: number | null;
|
9270
|
+
} | null | undefined;
|
9271
|
+
loading?: boolean | null | undefined;
|
7906
9272
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
7907
9273
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
7908
9274
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -7954,6 +9320,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
7954
9320
|
path: string;
|
7955
9321
|
originalFilename: string;
|
7956
9322
|
}[] | {
|
9323
|
+
data?: any;
|
9324
|
+
error?: {
|
9325
|
+
message: string;
|
9326
|
+
statusCode: number | null;
|
9327
|
+
} | null | undefined;
|
9328
|
+
loading?: boolean | null | undefined;
|
9329
|
+
} | {
|
7957
9330
|
start: string;
|
7958
9331
|
end: string;
|
7959
9332
|
} | null | undefined>;
|
@@ -8001,6 +9374,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8001
9374
|
path: string;
|
8002
9375
|
originalFilename: string;
|
8003
9376
|
}[] | {
|
9377
|
+
data?: any;
|
9378
|
+
error?: {
|
9379
|
+
message: string;
|
9380
|
+
statusCode: number | null;
|
9381
|
+
} | null | undefined;
|
9382
|
+
loading?: boolean | null | undefined;
|
9383
|
+
} | {
|
8004
9384
|
start: string;
|
8005
9385
|
end: string;
|
8006
9386
|
} | null | undefined> | undefined;
|
@@ -8053,6 +9433,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8053
9433
|
path: string;
|
8054
9434
|
originalFilename: string;
|
8055
9435
|
}[] | {
|
9436
|
+
data?: any;
|
9437
|
+
error?: {
|
9438
|
+
message: string;
|
9439
|
+
statusCode: number | null;
|
9440
|
+
} | null | undefined;
|
9441
|
+
loading?: boolean | null | undefined;
|
9442
|
+
} | {
|
8056
9443
|
start: string;
|
8057
9444
|
end: string;
|
8058
9445
|
} | null | undefined> | undefined;
|
@@ -8098,6 +9485,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8098
9485
|
path: string;
|
8099
9486
|
originalFilename: string;
|
8100
9487
|
}[] | {
|
9488
|
+
data?: any;
|
9489
|
+
error?: {
|
9490
|
+
message: string;
|
9491
|
+
statusCode: number | null;
|
9492
|
+
} | null | undefined;
|
9493
|
+
loading?: boolean | null | undefined;
|
9494
|
+
} | {
|
8101
9495
|
start: string;
|
8102
9496
|
end: string;
|
8103
9497
|
} | null | undefined> | undefined;
|
@@ -8240,6 +9634,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8240
9634
|
firstname: string;
|
8241
9635
|
surname: string;
|
8242
9636
|
middlename?: string | null | undefined;
|
9637
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9638
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
9639
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
9640
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
9641
|
+
message: z.ZodString;
|
9642
|
+
}, "strip", z.ZodTypeAny, {
|
9643
|
+
message: string;
|
9644
|
+
statusCode: number | null;
|
9645
|
+
}, {
|
9646
|
+
message: string;
|
9647
|
+
statusCode: number | null;
|
9648
|
+
}>>>;
|
9649
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
9650
|
+
}, "strip", z.ZodTypeAny, {
|
9651
|
+
data?: any;
|
9652
|
+
error?: {
|
9653
|
+
message: string;
|
9654
|
+
statusCode: number | null;
|
9655
|
+
} | null | undefined;
|
9656
|
+
loading?: boolean | null | undefined;
|
9657
|
+
}, {
|
9658
|
+
data?: any;
|
9659
|
+
error?: {
|
9660
|
+
message: string;
|
9661
|
+
statusCode: number | null;
|
9662
|
+
} | null | undefined;
|
9663
|
+
loading?: boolean | null | undefined;
|
8243
9664
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
8244
9665
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
8245
9666
|
start: z.ZodString;
|
@@ -8375,6 +9796,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8375
9796
|
firstname: string;
|
8376
9797
|
surname: string;
|
8377
9798
|
middlename?: string | null | undefined;
|
9799
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
9800
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
9801
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
9802
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
9803
|
+
message: z.ZodString;
|
9804
|
+
}, "strip", z.ZodTypeAny, {
|
9805
|
+
message: string;
|
9806
|
+
statusCode: number | null;
|
9807
|
+
}, {
|
9808
|
+
message: string;
|
9809
|
+
statusCode: number | null;
|
9810
|
+
}>>>;
|
9811
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
9812
|
+
}, "strip", z.ZodTypeAny, {
|
9813
|
+
data?: any;
|
9814
|
+
error?: {
|
9815
|
+
message: string;
|
9816
|
+
statusCode: number | null;
|
9817
|
+
} | null | undefined;
|
9818
|
+
loading?: boolean | null | undefined;
|
9819
|
+
}, {
|
9820
|
+
data?: any;
|
9821
|
+
error?: {
|
9822
|
+
message: string;
|
9823
|
+
statusCode: number | null;
|
9824
|
+
} | null | undefined;
|
9825
|
+
loading?: boolean | null | undefined;
|
8378
9826
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
8379
9827
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
8380
9828
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -8426,6 +9874,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8426
9874
|
path: string;
|
8427
9875
|
originalFilename: string;
|
8428
9876
|
}[] | {
|
9877
|
+
data?: any;
|
9878
|
+
error?: {
|
9879
|
+
message: string;
|
9880
|
+
statusCode: number | null;
|
9881
|
+
} | null | undefined;
|
9882
|
+
loading?: boolean | null | undefined;
|
9883
|
+
} | {
|
8429
9884
|
start: string;
|
8430
9885
|
end: string;
|
8431
9886
|
} | null | undefined>;
|
@@ -8472,6 +9927,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8472
9927
|
path: string;
|
8473
9928
|
originalFilename: string;
|
8474
9929
|
}[] | {
|
9930
|
+
data?: any;
|
9931
|
+
error?: {
|
9932
|
+
message: string;
|
9933
|
+
statusCode: number | null;
|
9934
|
+
} | null | undefined;
|
9935
|
+
loading?: boolean | null | undefined;
|
9936
|
+
} | {
|
8475
9937
|
start: string;
|
8476
9938
|
end: string;
|
8477
9939
|
} | null | undefined> | undefined;
|
@@ -8524,6 +9986,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8524
9986
|
path: string;
|
8525
9987
|
originalFilename: string;
|
8526
9988
|
}[] | {
|
9989
|
+
data?: any;
|
9990
|
+
error?: {
|
9991
|
+
message: string;
|
9992
|
+
statusCode: number | null;
|
9993
|
+
} | null | undefined;
|
9994
|
+
loading?: boolean | null | undefined;
|
9995
|
+
} | {
|
8527
9996
|
start: string;
|
8528
9997
|
end: string;
|
8529
9998
|
} | null | undefined> | undefined;
|
@@ -8569,6 +10038,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8569
10038
|
path: string;
|
8570
10039
|
originalFilename: string;
|
8571
10040
|
}[] | {
|
10041
|
+
data?: any;
|
10042
|
+
error?: {
|
10043
|
+
message: string;
|
10044
|
+
statusCode: number | null;
|
10045
|
+
} | null | undefined;
|
10046
|
+
loading?: boolean | null | undefined;
|
10047
|
+
} | {
|
8572
10048
|
start: string;
|
8573
10049
|
end: string;
|
8574
10050
|
} | null | undefined> | undefined;
|
@@ -8712,6 +10188,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8712
10188
|
firstname: string;
|
8713
10189
|
surname: string;
|
8714
10190
|
middlename?: string | null | undefined;
|
10191
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10192
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
10193
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
10194
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
10195
|
+
message: z.ZodString;
|
10196
|
+
}, "strip", z.ZodTypeAny, {
|
10197
|
+
message: string;
|
10198
|
+
statusCode: number | null;
|
10199
|
+
}, {
|
10200
|
+
message: string;
|
10201
|
+
statusCode: number | null;
|
10202
|
+
}>>>;
|
10203
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
10204
|
+
}, "strip", z.ZodTypeAny, {
|
10205
|
+
data?: any;
|
10206
|
+
error?: {
|
10207
|
+
message: string;
|
10208
|
+
statusCode: number | null;
|
10209
|
+
} | null | undefined;
|
10210
|
+
loading?: boolean | null | undefined;
|
10211
|
+
}, {
|
10212
|
+
data?: any;
|
10213
|
+
error?: {
|
10214
|
+
message: string;
|
10215
|
+
statusCode: number | null;
|
10216
|
+
} | null | undefined;
|
10217
|
+
loading?: boolean | null | undefined;
|
8715
10218
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
8716
10219
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
8717
10220
|
start: z.ZodString;
|
@@ -8847,6 +10350,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8847
10350
|
firstname: string;
|
8848
10351
|
surname: string;
|
8849
10352
|
middlename?: string | null | undefined;
|
10353
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10354
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
10355
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
10356
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
10357
|
+
message: z.ZodString;
|
10358
|
+
}, "strip", z.ZodTypeAny, {
|
10359
|
+
message: string;
|
10360
|
+
statusCode: number | null;
|
10361
|
+
}, {
|
10362
|
+
message: string;
|
10363
|
+
statusCode: number | null;
|
10364
|
+
}>>>;
|
10365
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
10366
|
+
}, "strip", z.ZodTypeAny, {
|
10367
|
+
data?: any;
|
10368
|
+
error?: {
|
10369
|
+
message: string;
|
10370
|
+
statusCode: number | null;
|
10371
|
+
} | null | undefined;
|
10372
|
+
loading?: boolean | null | undefined;
|
10373
|
+
}, {
|
10374
|
+
data?: any;
|
10375
|
+
error?: {
|
10376
|
+
message: string;
|
10377
|
+
statusCode: number | null;
|
10378
|
+
} | null | undefined;
|
10379
|
+
loading?: boolean | null | undefined;
|
8850
10380
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
8851
10381
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
8852
10382
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -8897,6 +10427,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8897
10427
|
path: string;
|
8898
10428
|
originalFilename: string;
|
8899
10429
|
}[] | {
|
10430
|
+
data?: any;
|
10431
|
+
error?: {
|
10432
|
+
message: string;
|
10433
|
+
statusCode: number | null;
|
10434
|
+
} | null | undefined;
|
10435
|
+
loading?: boolean | null | undefined;
|
10436
|
+
} | {
|
8900
10437
|
start: string;
|
8901
10438
|
end: string;
|
8902
10439
|
} | null | undefined>;
|
@@ -8943,6 +10480,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8943
10480
|
path: string;
|
8944
10481
|
originalFilename: string;
|
8945
10482
|
}[] | {
|
10483
|
+
data?: any;
|
10484
|
+
error?: {
|
10485
|
+
message: string;
|
10486
|
+
statusCode: number | null;
|
10487
|
+
} | null | undefined;
|
10488
|
+
loading?: boolean | null | undefined;
|
10489
|
+
} | {
|
8946
10490
|
start: string;
|
8947
10491
|
end: string;
|
8948
10492
|
} | null | undefined> | undefined;
|
@@ -8994,6 +10538,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
8994
10538
|
path: string;
|
8995
10539
|
originalFilename: string;
|
8996
10540
|
}[] | {
|
10541
|
+
data?: any;
|
10542
|
+
error?: {
|
10543
|
+
message: string;
|
10544
|
+
statusCode: number | null;
|
10545
|
+
} | null | undefined;
|
10546
|
+
loading?: boolean | null | undefined;
|
10547
|
+
} | {
|
8997
10548
|
start: string;
|
8998
10549
|
end: string;
|
8999
10550
|
} | null | undefined> | undefined;
|
@@ -9039,6 +10590,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9039
10590
|
path: string;
|
9040
10591
|
originalFilename: string;
|
9041
10592
|
}[] | {
|
10593
|
+
data?: any;
|
10594
|
+
error?: {
|
10595
|
+
message: string;
|
10596
|
+
statusCode: number | null;
|
10597
|
+
} | null | undefined;
|
10598
|
+
loading?: boolean | null | undefined;
|
10599
|
+
} | {
|
9042
10600
|
start: string;
|
9043
10601
|
end: string;
|
9044
10602
|
} | null | undefined> | undefined;
|
@@ -9181,6 +10739,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9181
10739
|
firstname: string;
|
9182
10740
|
surname: string;
|
9183
10741
|
middlename?: string | null | undefined;
|
10742
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10743
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
10744
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
10745
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
10746
|
+
message: z.ZodString;
|
10747
|
+
}, "strip", z.ZodTypeAny, {
|
10748
|
+
message: string;
|
10749
|
+
statusCode: number | null;
|
10750
|
+
}, {
|
10751
|
+
message: string;
|
10752
|
+
statusCode: number | null;
|
10753
|
+
}>>>;
|
10754
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
10755
|
+
}, "strip", z.ZodTypeAny, {
|
10756
|
+
data?: any;
|
10757
|
+
error?: {
|
10758
|
+
message: string;
|
10759
|
+
statusCode: number | null;
|
10760
|
+
} | null | undefined;
|
10761
|
+
loading?: boolean | null | undefined;
|
10762
|
+
}, {
|
10763
|
+
data?: any;
|
10764
|
+
error?: {
|
10765
|
+
message: string;
|
10766
|
+
statusCode: number | null;
|
10767
|
+
} | null | undefined;
|
10768
|
+
loading?: boolean | null | undefined;
|
9184
10769
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
9185
10770
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
9186
10771
|
start: z.ZodString;
|
@@ -9316,6 +10901,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9316
10901
|
firstname: string;
|
9317
10902
|
surname: string;
|
9318
10903
|
middlename?: string | null | undefined;
|
10904
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
10905
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
10906
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
10907
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
10908
|
+
message: z.ZodString;
|
10909
|
+
}, "strip", z.ZodTypeAny, {
|
10910
|
+
message: string;
|
10911
|
+
statusCode: number | null;
|
10912
|
+
}, {
|
10913
|
+
message: string;
|
10914
|
+
statusCode: number | null;
|
10915
|
+
}>>>;
|
10916
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
10917
|
+
}, "strip", z.ZodTypeAny, {
|
10918
|
+
data?: any;
|
10919
|
+
error?: {
|
10920
|
+
message: string;
|
10921
|
+
statusCode: number | null;
|
10922
|
+
} | null | undefined;
|
10923
|
+
loading?: boolean | null | undefined;
|
10924
|
+
}, {
|
10925
|
+
data?: any;
|
10926
|
+
error?: {
|
10927
|
+
message: string;
|
10928
|
+
statusCode: number | null;
|
10929
|
+
} | null | undefined;
|
10930
|
+
loading?: boolean | null | undefined;
|
9319
10931
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
9320
10932
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
9321
10933
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -9366,6 +10978,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9366
10978
|
path: string;
|
9367
10979
|
originalFilename: string;
|
9368
10980
|
}[] | {
|
10981
|
+
data?: any;
|
10982
|
+
error?: {
|
10983
|
+
message: string;
|
10984
|
+
statusCode: number | null;
|
10985
|
+
} | null | undefined;
|
10986
|
+
loading?: boolean | null | undefined;
|
10987
|
+
} | {
|
9369
10988
|
start: string;
|
9370
10989
|
end: string;
|
9371
10990
|
} | null | undefined>;
|
@@ -9412,6 +11031,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9412
11031
|
path: string;
|
9413
11032
|
originalFilename: string;
|
9414
11033
|
}[] | {
|
11034
|
+
data?: any;
|
11035
|
+
error?: {
|
11036
|
+
message: string;
|
11037
|
+
statusCode: number | null;
|
11038
|
+
} | null | undefined;
|
11039
|
+
loading?: boolean | null | undefined;
|
11040
|
+
} | {
|
9415
11041
|
start: string;
|
9416
11042
|
end: string;
|
9417
11043
|
} | null | undefined> | undefined;
|
@@ -9463,6 +11089,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9463
11089
|
path: string;
|
9464
11090
|
originalFilename: string;
|
9465
11091
|
}[] | {
|
11092
|
+
data?: any;
|
11093
|
+
error?: {
|
11094
|
+
message: string;
|
11095
|
+
statusCode: number | null;
|
11096
|
+
} | null | undefined;
|
11097
|
+
loading?: boolean | null | undefined;
|
11098
|
+
} | {
|
9466
11099
|
start: string;
|
9467
11100
|
end: string;
|
9468
11101
|
} | null | undefined> | undefined;
|
@@ -9508,6 +11141,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9508
11141
|
path: string;
|
9509
11142
|
originalFilename: string;
|
9510
11143
|
}[] | {
|
11144
|
+
data?: any;
|
11145
|
+
error?: {
|
11146
|
+
message: string;
|
11147
|
+
statusCode: number | null;
|
11148
|
+
} | null | undefined;
|
11149
|
+
loading?: boolean | null | undefined;
|
11150
|
+
} | {
|
9511
11151
|
start: string;
|
9512
11152
|
end: string;
|
9513
11153
|
} | null | undefined> | undefined;
|
@@ -9650,6 +11290,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9650
11290
|
firstname: string;
|
9651
11291
|
surname: string;
|
9652
11292
|
middlename?: string | null | undefined;
|
11293
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11294
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
11295
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
11296
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
11297
|
+
message: z.ZodString;
|
11298
|
+
}, "strip", z.ZodTypeAny, {
|
11299
|
+
message: string;
|
11300
|
+
statusCode: number | null;
|
11301
|
+
}, {
|
11302
|
+
message: string;
|
11303
|
+
statusCode: number | null;
|
11304
|
+
}>>>;
|
11305
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
11306
|
+
}, "strip", z.ZodTypeAny, {
|
11307
|
+
data?: any;
|
11308
|
+
error?: {
|
11309
|
+
message: string;
|
11310
|
+
statusCode: number | null;
|
11311
|
+
} | null | undefined;
|
11312
|
+
loading?: boolean | null | undefined;
|
11313
|
+
}, {
|
11314
|
+
data?: any;
|
11315
|
+
error?: {
|
11316
|
+
message: string;
|
11317
|
+
statusCode: number | null;
|
11318
|
+
} | null | undefined;
|
11319
|
+
loading?: boolean | null | undefined;
|
9653
11320
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
9654
11321
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
9655
11322
|
start: z.ZodString;
|
@@ -9785,6 +11452,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9785
11452
|
firstname: string;
|
9786
11453
|
surname: string;
|
9787
11454
|
middlename?: string | null | undefined;
|
11455
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11456
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
11457
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
11458
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
11459
|
+
message: z.ZodString;
|
11460
|
+
}, "strip", z.ZodTypeAny, {
|
11461
|
+
message: string;
|
11462
|
+
statusCode: number | null;
|
11463
|
+
}, {
|
11464
|
+
message: string;
|
11465
|
+
statusCode: number | null;
|
11466
|
+
}>>>;
|
11467
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
11468
|
+
}, "strip", z.ZodTypeAny, {
|
11469
|
+
data?: any;
|
11470
|
+
error?: {
|
11471
|
+
message: string;
|
11472
|
+
statusCode: number | null;
|
11473
|
+
} | null | undefined;
|
11474
|
+
loading?: boolean | null | undefined;
|
11475
|
+
}, {
|
11476
|
+
data?: any;
|
11477
|
+
error?: {
|
11478
|
+
message: string;
|
11479
|
+
statusCode: number | null;
|
11480
|
+
} | null | undefined;
|
11481
|
+
loading?: boolean | null | undefined;
|
9788
11482
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
9789
11483
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
9790
11484
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -9849,6 +11543,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9849
11543
|
path: string;
|
9850
11544
|
originalFilename: string;
|
9851
11545
|
}[] | {
|
11546
|
+
data?: any;
|
11547
|
+
error?: {
|
11548
|
+
message: string;
|
11549
|
+
statusCode: number | null;
|
11550
|
+
} | null | undefined;
|
11551
|
+
loading?: boolean | null | undefined;
|
11552
|
+
} | {
|
9852
11553
|
start: string;
|
9853
11554
|
end: string;
|
9854
11555
|
} | null | undefined>;
|
@@ -9895,6 +11596,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9895
11596
|
path: string;
|
9896
11597
|
originalFilename: string;
|
9897
11598
|
}[] | {
|
11599
|
+
data?: any;
|
11600
|
+
error?: {
|
11601
|
+
message: string;
|
11602
|
+
statusCode: number | null;
|
11603
|
+
} | null | undefined;
|
11604
|
+
loading?: boolean | null | undefined;
|
11605
|
+
} | {
|
9898
11606
|
start: string;
|
9899
11607
|
end: string;
|
9900
11608
|
} | null | undefined> | undefined;
|
@@ -9950,6 +11658,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9950
11658
|
path: string;
|
9951
11659
|
originalFilename: string;
|
9952
11660
|
}[] | {
|
11661
|
+
data?: any;
|
11662
|
+
error?: {
|
11663
|
+
message: string;
|
11664
|
+
statusCode: number | null;
|
11665
|
+
} | null | undefined;
|
11666
|
+
loading?: boolean | null | undefined;
|
11667
|
+
} | {
|
9953
11668
|
start: string;
|
9954
11669
|
end: string;
|
9955
11670
|
} | null | undefined> | undefined;
|
@@ -9995,6 +11710,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
9995
11710
|
path: string;
|
9996
11711
|
originalFilename: string;
|
9997
11712
|
}[] | {
|
11713
|
+
data?: any;
|
11714
|
+
error?: {
|
11715
|
+
message: string;
|
11716
|
+
statusCode: number | null;
|
11717
|
+
} | null | undefined;
|
11718
|
+
loading?: boolean | null | undefined;
|
11719
|
+
} | {
|
9998
11720
|
start: string;
|
9999
11721
|
end: string;
|
10000
11722
|
} | null | undefined> | undefined;
|
@@ -10137,6 +11859,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10137
11859
|
firstname: string;
|
10138
11860
|
surname: string;
|
10139
11861
|
middlename?: string | null | undefined;
|
11862
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
11863
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
11864
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
11865
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
11866
|
+
message: z.ZodString;
|
11867
|
+
}, "strip", z.ZodTypeAny, {
|
11868
|
+
message: string;
|
11869
|
+
statusCode: number | null;
|
11870
|
+
}, {
|
11871
|
+
message: string;
|
11872
|
+
statusCode: number | null;
|
11873
|
+
}>>>;
|
11874
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
11875
|
+
}, "strip", z.ZodTypeAny, {
|
11876
|
+
data?: any;
|
11877
|
+
error?: {
|
11878
|
+
message: string;
|
11879
|
+
statusCode: number | null;
|
11880
|
+
} | null | undefined;
|
11881
|
+
loading?: boolean | null | undefined;
|
11882
|
+
}, {
|
11883
|
+
data?: any;
|
11884
|
+
error?: {
|
11885
|
+
message: string;
|
11886
|
+
statusCode: number | null;
|
11887
|
+
} | null | undefined;
|
11888
|
+
loading?: boolean | null | undefined;
|
10140
11889
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
10141
11890
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
10142
11891
|
start: z.ZodString;
|
@@ -10272,6 +12021,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10272
12021
|
firstname: string;
|
10273
12022
|
surname: string;
|
10274
12023
|
middlename?: string | null | undefined;
|
12024
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12025
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
12026
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
12027
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
12028
|
+
message: z.ZodString;
|
12029
|
+
}, "strip", z.ZodTypeAny, {
|
12030
|
+
message: string;
|
12031
|
+
statusCode: number | null;
|
12032
|
+
}, {
|
12033
|
+
message: string;
|
12034
|
+
statusCode: number | null;
|
12035
|
+
}>>>;
|
12036
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
12037
|
+
}, "strip", z.ZodTypeAny, {
|
12038
|
+
data?: any;
|
12039
|
+
error?: {
|
12040
|
+
message: string;
|
12041
|
+
statusCode: number | null;
|
12042
|
+
} | null | undefined;
|
12043
|
+
loading?: boolean | null | undefined;
|
12044
|
+
}, {
|
12045
|
+
data?: any;
|
12046
|
+
error?: {
|
12047
|
+
message: string;
|
12048
|
+
statusCode: number | null;
|
12049
|
+
} | null | undefined;
|
12050
|
+
loading?: boolean | null | undefined;
|
10275
12051
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
10276
12052
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
10277
12053
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -10322,6 +12098,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10322
12098
|
path: string;
|
10323
12099
|
originalFilename: string;
|
10324
12100
|
}[] | {
|
12101
|
+
data?: any;
|
12102
|
+
error?: {
|
12103
|
+
message: string;
|
12104
|
+
statusCode: number | null;
|
12105
|
+
} | null | undefined;
|
12106
|
+
loading?: boolean | null | undefined;
|
12107
|
+
} | {
|
10325
12108
|
start: string;
|
10326
12109
|
end: string;
|
10327
12110
|
} | null | undefined>;
|
@@ -10368,6 +12151,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10368
12151
|
path: string;
|
10369
12152
|
originalFilename: string;
|
10370
12153
|
}[] | {
|
12154
|
+
data?: any;
|
12155
|
+
error?: {
|
12156
|
+
message: string;
|
12157
|
+
statusCode: number | null;
|
12158
|
+
} | null | undefined;
|
12159
|
+
loading?: boolean | null | undefined;
|
12160
|
+
} | {
|
10371
12161
|
start: string;
|
10372
12162
|
end: string;
|
10373
12163
|
} | null | undefined> | undefined;
|
@@ -10419,6 +12209,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10419
12209
|
path: string;
|
10420
12210
|
originalFilename: string;
|
10421
12211
|
}[] | {
|
12212
|
+
data?: any;
|
12213
|
+
error?: {
|
12214
|
+
message: string;
|
12215
|
+
statusCode: number | null;
|
12216
|
+
} | null | undefined;
|
12217
|
+
loading?: boolean | null | undefined;
|
12218
|
+
} | {
|
10422
12219
|
start: string;
|
10423
12220
|
end: string;
|
10424
12221
|
} | null | undefined> | undefined;
|
@@ -10464,6 +12261,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10464
12261
|
path: string;
|
10465
12262
|
originalFilename: string;
|
10466
12263
|
}[] | {
|
12264
|
+
data?: any;
|
12265
|
+
error?: {
|
12266
|
+
message: string;
|
12267
|
+
statusCode: number | null;
|
12268
|
+
} | null | undefined;
|
12269
|
+
loading?: boolean | null | undefined;
|
12270
|
+
} | {
|
10467
12271
|
start: string;
|
10468
12272
|
end: string;
|
10469
12273
|
} | null | undefined> | undefined;
|
@@ -10606,6 +12410,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10606
12410
|
firstname: string;
|
10607
12411
|
surname: string;
|
10608
12412
|
middlename?: string | null | undefined;
|
12413
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12414
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
12415
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
12416
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
12417
|
+
message: z.ZodString;
|
12418
|
+
}, "strip", z.ZodTypeAny, {
|
12419
|
+
message: string;
|
12420
|
+
statusCode: number | null;
|
12421
|
+
}, {
|
12422
|
+
message: string;
|
12423
|
+
statusCode: number | null;
|
12424
|
+
}>>>;
|
12425
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
12426
|
+
}, "strip", z.ZodTypeAny, {
|
12427
|
+
data?: any;
|
12428
|
+
error?: {
|
12429
|
+
message: string;
|
12430
|
+
statusCode: number | null;
|
12431
|
+
} | null | undefined;
|
12432
|
+
loading?: boolean | null | undefined;
|
12433
|
+
}, {
|
12434
|
+
data?: any;
|
12435
|
+
error?: {
|
12436
|
+
message: string;
|
12437
|
+
statusCode: number | null;
|
12438
|
+
} | null | undefined;
|
12439
|
+
loading?: boolean | null | undefined;
|
10609
12440
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
10610
12441
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
10611
12442
|
start: z.ZodString;
|
@@ -10741,6 +12572,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10741
12572
|
firstname: string;
|
10742
12573
|
surname: string;
|
10743
12574
|
middlename?: string | null | undefined;
|
12575
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12576
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
12577
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
12578
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
12579
|
+
message: z.ZodString;
|
12580
|
+
}, "strip", z.ZodTypeAny, {
|
12581
|
+
message: string;
|
12582
|
+
statusCode: number | null;
|
12583
|
+
}, {
|
12584
|
+
message: string;
|
12585
|
+
statusCode: number | null;
|
12586
|
+
}>>>;
|
12587
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
12588
|
+
}, "strip", z.ZodTypeAny, {
|
12589
|
+
data?: any;
|
12590
|
+
error?: {
|
12591
|
+
message: string;
|
12592
|
+
statusCode: number | null;
|
12593
|
+
} | null | undefined;
|
12594
|
+
loading?: boolean | null | undefined;
|
12595
|
+
}, {
|
12596
|
+
data?: any;
|
12597
|
+
error?: {
|
12598
|
+
message: string;
|
12599
|
+
statusCode: number | null;
|
12600
|
+
} | null | undefined;
|
12601
|
+
loading?: boolean | null | undefined;
|
10744
12602
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
10745
12603
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
10746
12604
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -10805,6 +12663,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10805
12663
|
path: string;
|
10806
12664
|
originalFilename: string;
|
10807
12665
|
}[] | {
|
12666
|
+
data?: any;
|
12667
|
+
error?: {
|
12668
|
+
message: string;
|
12669
|
+
statusCode: number | null;
|
12670
|
+
} | null | undefined;
|
12671
|
+
loading?: boolean | null | undefined;
|
12672
|
+
} | {
|
10808
12673
|
start: string;
|
10809
12674
|
end: string;
|
10810
12675
|
} | null | undefined>;
|
@@ -10851,6 +12716,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10851
12716
|
path: string;
|
10852
12717
|
originalFilename: string;
|
10853
12718
|
}[] | {
|
12719
|
+
data?: any;
|
12720
|
+
error?: {
|
12721
|
+
message: string;
|
12722
|
+
statusCode: number | null;
|
12723
|
+
} | null | undefined;
|
12724
|
+
loading?: boolean | null | undefined;
|
12725
|
+
} | {
|
10854
12726
|
start: string;
|
10855
12727
|
end: string;
|
10856
12728
|
} | null | undefined> | undefined;
|
@@ -10906,6 +12778,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10906
12778
|
path: string;
|
10907
12779
|
originalFilename: string;
|
10908
12780
|
}[] | {
|
12781
|
+
data?: any;
|
12782
|
+
error?: {
|
12783
|
+
message: string;
|
12784
|
+
statusCode: number | null;
|
12785
|
+
} | null | undefined;
|
12786
|
+
loading?: boolean | null | undefined;
|
12787
|
+
} | {
|
10909
12788
|
start: string;
|
10910
12789
|
end: string;
|
10911
12790
|
} | null | undefined> | undefined;
|
@@ -10951,6 +12830,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
10951
12830
|
path: string;
|
10952
12831
|
originalFilename: string;
|
10953
12832
|
}[] | {
|
12833
|
+
data?: any;
|
12834
|
+
error?: {
|
12835
|
+
message: string;
|
12836
|
+
statusCode: number | null;
|
12837
|
+
} | null | undefined;
|
12838
|
+
loading?: boolean | null | undefined;
|
12839
|
+
} | {
|
10954
12840
|
start: string;
|
10955
12841
|
end: string;
|
10956
12842
|
} | null | undefined> | undefined;
|
@@ -11093,6 +12979,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11093
12979
|
firstname: string;
|
11094
12980
|
surname: string;
|
11095
12981
|
middlename?: string | null | undefined;
|
12982
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
12983
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
12984
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
12985
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
12986
|
+
message: z.ZodString;
|
12987
|
+
}, "strip", z.ZodTypeAny, {
|
12988
|
+
message: string;
|
12989
|
+
statusCode: number | null;
|
12990
|
+
}, {
|
12991
|
+
message: string;
|
12992
|
+
statusCode: number | null;
|
12993
|
+
}>>>;
|
12994
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
12995
|
+
}, "strip", z.ZodTypeAny, {
|
12996
|
+
data?: any;
|
12997
|
+
error?: {
|
12998
|
+
message: string;
|
12999
|
+
statusCode: number | null;
|
13000
|
+
} | null | undefined;
|
13001
|
+
loading?: boolean | null | undefined;
|
13002
|
+
}, {
|
13003
|
+
data?: any;
|
13004
|
+
error?: {
|
13005
|
+
message: string;
|
13006
|
+
statusCode: number | null;
|
13007
|
+
} | null | undefined;
|
13008
|
+
loading?: boolean | null | undefined;
|
11096
13009
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
11097
13010
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
11098
13011
|
start: z.ZodString;
|
@@ -11228,6 +13141,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11228
13141
|
firstname: string;
|
11229
13142
|
surname: string;
|
11230
13143
|
middlename?: string | null | undefined;
|
13144
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13145
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
13146
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
13147
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
13148
|
+
message: z.ZodString;
|
13149
|
+
}, "strip", z.ZodTypeAny, {
|
13150
|
+
message: string;
|
13151
|
+
statusCode: number | null;
|
13152
|
+
}, {
|
13153
|
+
message: string;
|
13154
|
+
statusCode: number | null;
|
13155
|
+
}>>>;
|
13156
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
13157
|
+
}, "strip", z.ZodTypeAny, {
|
13158
|
+
data?: any;
|
13159
|
+
error?: {
|
13160
|
+
message: string;
|
13161
|
+
statusCode: number | null;
|
13162
|
+
} | null | undefined;
|
13163
|
+
loading?: boolean | null | undefined;
|
13164
|
+
}, {
|
13165
|
+
data?: any;
|
13166
|
+
error?: {
|
13167
|
+
message: string;
|
13168
|
+
statusCode: number | null;
|
13169
|
+
} | null | undefined;
|
13170
|
+
loading?: boolean | null | undefined;
|
11231
13171
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
11232
13172
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
11233
13173
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -11279,6 +13219,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11279
13219
|
path: string;
|
11280
13220
|
originalFilename: string;
|
11281
13221
|
}[] | {
|
13222
|
+
data?: any;
|
13223
|
+
error?: {
|
13224
|
+
message: string;
|
13225
|
+
statusCode: number | null;
|
13226
|
+
} | null | undefined;
|
13227
|
+
loading?: boolean | null | undefined;
|
13228
|
+
} | {
|
11282
13229
|
start: string;
|
11283
13230
|
end: string;
|
11284
13231
|
} | null | undefined>;
|
@@ -11326,6 +13273,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11326
13273
|
path: string;
|
11327
13274
|
originalFilename: string;
|
11328
13275
|
}[] | {
|
13276
|
+
data?: any;
|
13277
|
+
error?: {
|
13278
|
+
message: string;
|
13279
|
+
statusCode: number | null;
|
13280
|
+
} | null | undefined;
|
13281
|
+
loading?: boolean | null | undefined;
|
13282
|
+
} | {
|
11329
13283
|
start: string;
|
11330
13284
|
end: string;
|
11331
13285
|
} | null | undefined> | undefined;
|
@@ -11378,6 +13332,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11378
13332
|
path: string;
|
11379
13333
|
originalFilename: string;
|
11380
13334
|
}[] | {
|
13335
|
+
data?: any;
|
13336
|
+
error?: {
|
13337
|
+
message: string;
|
13338
|
+
statusCode: number | null;
|
13339
|
+
} | null | undefined;
|
13340
|
+
loading?: boolean | null | undefined;
|
13341
|
+
} | {
|
11381
13342
|
start: string;
|
11382
13343
|
end: string;
|
11383
13344
|
} | null | undefined> | undefined;
|
@@ -11423,6 +13384,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11423
13384
|
path: string;
|
11424
13385
|
originalFilename: string;
|
11425
13386
|
}[] | {
|
13387
|
+
data?: any;
|
13388
|
+
error?: {
|
13389
|
+
message: string;
|
13390
|
+
statusCode: number | null;
|
13391
|
+
} | null | undefined;
|
13392
|
+
loading?: boolean | null | undefined;
|
13393
|
+
} | {
|
11426
13394
|
start: string;
|
11427
13395
|
end: string;
|
11428
13396
|
} | null | undefined> | undefined;
|
@@ -11565,6 +13533,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11565
13533
|
firstname: string;
|
11566
13534
|
surname: string;
|
11567
13535
|
middlename?: string | null | undefined;
|
13536
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13537
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
13538
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
13539
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
13540
|
+
message: z.ZodString;
|
13541
|
+
}, "strip", z.ZodTypeAny, {
|
13542
|
+
message: string;
|
13543
|
+
statusCode: number | null;
|
13544
|
+
}, {
|
13545
|
+
message: string;
|
13546
|
+
statusCode: number | null;
|
13547
|
+
}>>>;
|
13548
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
13549
|
+
}, "strip", z.ZodTypeAny, {
|
13550
|
+
data?: any;
|
13551
|
+
error?: {
|
13552
|
+
message: string;
|
13553
|
+
statusCode: number | null;
|
13554
|
+
} | null | undefined;
|
13555
|
+
loading?: boolean | null | undefined;
|
13556
|
+
}, {
|
13557
|
+
data?: any;
|
13558
|
+
error?: {
|
13559
|
+
message: string;
|
13560
|
+
statusCode: number | null;
|
13561
|
+
} | null | undefined;
|
13562
|
+
loading?: boolean | null | undefined;
|
11568
13563
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
11569
13564
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
11570
13565
|
start: z.ZodString;
|
@@ -11700,6 +13695,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11700
13695
|
firstname: string;
|
11701
13696
|
surname: string;
|
11702
13697
|
middlename?: string | null | undefined;
|
13698
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
13699
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
13700
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
13701
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
13702
|
+
message: z.ZodString;
|
13703
|
+
}, "strip", z.ZodTypeAny, {
|
13704
|
+
message: string;
|
13705
|
+
statusCode: number | null;
|
13706
|
+
}, {
|
13707
|
+
message: string;
|
13708
|
+
statusCode: number | null;
|
13709
|
+
}>>>;
|
13710
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
13711
|
+
}, "strip", z.ZodTypeAny, {
|
13712
|
+
data?: any;
|
13713
|
+
error?: {
|
13714
|
+
message: string;
|
13715
|
+
statusCode: number | null;
|
13716
|
+
} | null | undefined;
|
13717
|
+
loading?: boolean | null | undefined;
|
13718
|
+
}, {
|
13719
|
+
data?: any;
|
13720
|
+
error?: {
|
13721
|
+
message: string;
|
13722
|
+
statusCode: number | null;
|
13723
|
+
} | null | undefined;
|
13724
|
+
loading?: boolean | null | undefined;
|
11703
13725
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
11704
13726
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
11705
13727
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -11751,6 +13773,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11751
13773
|
path: string;
|
11752
13774
|
originalFilename: string;
|
11753
13775
|
}[] | {
|
13776
|
+
data?: any;
|
13777
|
+
error?: {
|
13778
|
+
message: string;
|
13779
|
+
statusCode: number | null;
|
13780
|
+
} | null | undefined;
|
13781
|
+
loading?: boolean | null | undefined;
|
13782
|
+
} | {
|
11754
13783
|
start: string;
|
11755
13784
|
end: string;
|
11756
13785
|
} | null | undefined>;
|
@@ -11798,6 +13827,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11798
13827
|
path: string;
|
11799
13828
|
originalFilename: string;
|
11800
13829
|
}[] | {
|
13830
|
+
data?: any;
|
13831
|
+
error?: {
|
13832
|
+
message: string;
|
13833
|
+
statusCode: number | null;
|
13834
|
+
} | null | undefined;
|
13835
|
+
loading?: boolean | null | undefined;
|
13836
|
+
} | {
|
11801
13837
|
start: string;
|
11802
13838
|
end: string;
|
11803
13839
|
} | null | undefined> | undefined;
|
@@ -11849,6 +13885,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11849
13885
|
path: string;
|
11850
13886
|
originalFilename: string;
|
11851
13887
|
}[] | {
|
13888
|
+
data?: any;
|
13889
|
+
error?: {
|
13890
|
+
message: string;
|
13891
|
+
statusCode: number | null;
|
13892
|
+
} | null | undefined;
|
13893
|
+
loading?: boolean | null | undefined;
|
13894
|
+
} | {
|
11852
13895
|
start: string;
|
11853
13896
|
end: string;
|
11854
13897
|
} | null | undefined> | undefined;
|
@@ -11894,6 +13937,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
11894
13937
|
path: string;
|
11895
13938
|
originalFilename: string;
|
11896
13939
|
}[] | {
|
13940
|
+
data?: any;
|
13941
|
+
error?: {
|
13942
|
+
message: string;
|
13943
|
+
statusCode: number | null;
|
13944
|
+
} | null | undefined;
|
13945
|
+
loading?: boolean | null | undefined;
|
13946
|
+
} | {
|
11897
13947
|
start: string;
|
11898
13948
|
end: string;
|
11899
13949
|
} | null | undefined> | undefined;
|
@@ -12037,6 +14087,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12037
14087
|
firstname: string;
|
12038
14088
|
surname: string;
|
12039
14089
|
middlename?: string | null | undefined;
|
14090
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
14091
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
14092
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
14093
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
14094
|
+
message: z.ZodString;
|
14095
|
+
}, "strip", z.ZodTypeAny, {
|
14096
|
+
message: string;
|
14097
|
+
statusCode: number | null;
|
14098
|
+
}, {
|
14099
|
+
message: string;
|
14100
|
+
statusCode: number | null;
|
14101
|
+
}>>>;
|
14102
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
14103
|
+
}, "strip", z.ZodTypeAny, {
|
14104
|
+
data?: any;
|
14105
|
+
error?: {
|
14106
|
+
message: string;
|
14107
|
+
statusCode: number | null;
|
14108
|
+
} | null | undefined;
|
14109
|
+
loading?: boolean | null | undefined;
|
14110
|
+
}, {
|
14111
|
+
data?: any;
|
14112
|
+
error?: {
|
14113
|
+
message: string;
|
14114
|
+
statusCode: number | null;
|
14115
|
+
} | null | undefined;
|
14116
|
+
loading?: boolean | null | undefined;
|
12040
14117
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
12041
14118
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
12042
14119
|
start: z.ZodString;
|
@@ -12172,6 +14249,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12172
14249
|
firstname: string;
|
12173
14250
|
surname: string;
|
12174
14251
|
middlename?: string | null | undefined;
|
14252
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
14253
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
14254
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
14255
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
14256
|
+
message: z.ZodString;
|
14257
|
+
}, "strip", z.ZodTypeAny, {
|
14258
|
+
message: string;
|
14259
|
+
statusCode: number | null;
|
14260
|
+
}, {
|
14261
|
+
message: string;
|
14262
|
+
statusCode: number | null;
|
14263
|
+
}>>>;
|
14264
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
14265
|
+
}, "strip", z.ZodTypeAny, {
|
14266
|
+
data?: any;
|
14267
|
+
error?: {
|
14268
|
+
message: string;
|
14269
|
+
statusCode: number | null;
|
14270
|
+
} | null | undefined;
|
14271
|
+
loading?: boolean | null | undefined;
|
14272
|
+
}, {
|
14273
|
+
data?: any;
|
14274
|
+
error?: {
|
14275
|
+
message: string;
|
14276
|
+
statusCode: number | null;
|
14277
|
+
} | null | undefined;
|
14278
|
+
loading?: boolean | null | undefined;
|
12175
14279
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
12176
14280
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
12177
14281
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -12229,6 +14333,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12229
14333
|
path: string;
|
12230
14334
|
originalFilename: string;
|
12231
14335
|
}[] | {
|
14336
|
+
data?: any;
|
14337
|
+
error?: {
|
14338
|
+
message: string;
|
14339
|
+
statusCode: number | null;
|
14340
|
+
} | null | undefined;
|
14341
|
+
loading?: boolean | null | undefined;
|
14342
|
+
} | {
|
12232
14343
|
start: string;
|
12233
14344
|
end: string;
|
12234
14345
|
} | null | undefined>;
|
@@ -12278,6 +14389,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12278
14389
|
path: string;
|
12279
14390
|
originalFilename: string;
|
12280
14391
|
}[] | {
|
14392
|
+
data?: any;
|
14393
|
+
error?: {
|
14394
|
+
message: string;
|
14395
|
+
statusCode: number | null;
|
14396
|
+
} | null | undefined;
|
14397
|
+
loading?: boolean | null | undefined;
|
14398
|
+
} | {
|
12281
14399
|
start: string;
|
12282
14400
|
end: string;
|
12283
14401
|
} | null | undefined> | undefined;
|
@@ -12332,6 +14450,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12332
14450
|
path: string;
|
12333
14451
|
originalFilename: string;
|
12334
14452
|
}[] | {
|
14453
|
+
data?: any;
|
14454
|
+
error?: {
|
14455
|
+
message: string;
|
14456
|
+
statusCode: number | null;
|
14457
|
+
} | null | undefined;
|
14458
|
+
loading?: boolean | null | undefined;
|
14459
|
+
} | {
|
12335
14460
|
start: string;
|
12336
14461
|
end: string;
|
12337
14462
|
} | null | undefined> | undefined;
|
@@ -12377,6 +14502,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12377
14502
|
path: string;
|
12378
14503
|
originalFilename: string;
|
12379
14504
|
}[] | {
|
14505
|
+
data?: any;
|
14506
|
+
error?: {
|
14507
|
+
message: string;
|
14508
|
+
statusCode: number | null;
|
14509
|
+
} | null | undefined;
|
14510
|
+
loading?: boolean | null | undefined;
|
14511
|
+
} | {
|
12380
14512
|
start: string;
|
12381
14513
|
end: string;
|
12382
14514
|
} | null | undefined> | undefined;
|
@@ -12519,6 +14651,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12519
14651
|
firstname: string;
|
12520
14652
|
surname: string;
|
12521
14653
|
middlename?: string | null | undefined;
|
14654
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
14655
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
14656
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
14657
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
14658
|
+
message: z.ZodString;
|
14659
|
+
}, "strip", z.ZodTypeAny, {
|
14660
|
+
message: string;
|
14661
|
+
statusCode: number | null;
|
14662
|
+
}, {
|
14663
|
+
message: string;
|
14664
|
+
statusCode: number | null;
|
14665
|
+
}>>>;
|
14666
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
14667
|
+
}, "strip", z.ZodTypeAny, {
|
14668
|
+
data?: any;
|
14669
|
+
error?: {
|
14670
|
+
message: string;
|
14671
|
+
statusCode: number | null;
|
14672
|
+
} | null | undefined;
|
14673
|
+
loading?: boolean | null | undefined;
|
14674
|
+
}, {
|
14675
|
+
data?: any;
|
14676
|
+
error?: {
|
14677
|
+
message: string;
|
14678
|
+
statusCode: number | null;
|
14679
|
+
} | null | undefined;
|
14680
|
+
loading?: boolean | null | undefined;
|
12522
14681
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
12523
14682
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
12524
14683
|
start: z.ZodString;
|
@@ -12654,6 +14813,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12654
14813
|
firstname: string;
|
12655
14814
|
surname: string;
|
12656
14815
|
middlename?: string | null | undefined;
|
14816
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
14817
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
14818
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
14819
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
14820
|
+
message: z.ZodString;
|
14821
|
+
}, "strip", z.ZodTypeAny, {
|
14822
|
+
message: string;
|
14823
|
+
statusCode: number | null;
|
14824
|
+
}, {
|
14825
|
+
message: string;
|
14826
|
+
statusCode: number | null;
|
14827
|
+
}>>>;
|
14828
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
14829
|
+
}, "strip", z.ZodTypeAny, {
|
14830
|
+
data?: any;
|
14831
|
+
error?: {
|
14832
|
+
message: string;
|
14833
|
+
statusCode: number | null;
|
14834
|
+
} | null | undefined;
|
14835
|
+
loading?: boolean | null | undefined;
|
14836
|
+
}, {
|
14837
|
+
data?: any;
|
14838
|
+
error?: {
|
14839
|
+
message: string;
|
14840
|
+
statusCode: number | null;
|
14841
|
+
} | null | undefined;
|
14842
|
+
loading?: boolean | null | undefined;
|
12657
14843
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
12658
14844
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
12659
14845
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -12704,6 +14890,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12704
14890
|
path: string;
|
12705
14891
|
originalFilename: string;
|
12706
14892
|
}[] | {
|
14893
|
+
data?: any;
|
14894
|
+
error?: {
|
14895
|
+
message: string;
|
14896
|
+
statusCode: number | null;
|
14897
|
+
} | null | undefined;
|
14898
|
+
loading?: boolean | null | undefined;
|
14899
|
+
} | {
|
12707
14900
|
start: string;
|
12708
14901
|
end: string;
|
12709
14902
|
} | null | undefined>;
|
@@ -12750,6 +14943,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12750
14943
|
path: string;
|
12751
14944
|
originalFilename: string;
|
12752
14945
|
}[] | {
|
14946
|
+
data?: any;
|
14947
|
+
error?: {
|
14948
|
+
message: string;
|
14949
|
+
statusCode: number | null;
|
14950
|
+
} | null | undefined;
|
14951
|
+
loading?: boolean | null | undefined;
|
14952
|
+
} | {
|
12753
14953
|
start: string;
|
12754
14954
|
end: string;
|
12755
14955
|
} | null | undefined> | undefined;
|
@@ -12801,6 +15001,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12801
15001
|
path: string;
|
12802
15002
|
originalFilename: string;
|
12803
15003
|
}[] | {
|
15004
|
+
data?: any;
|
15005
|
+
error?: {
|
15006
|
+
message: string;
|
15007
|
+
statusCode: number | null;
|
15008
|
+
} | null | undefined;
|
15009
|
+
loading?: boolean | null | undefined;
|
15010
|
+
} | {
|
12804
15011
|
start: string;
|
12805
15012
|
end: string;
|
12806
15013
|
} | null | undefined> | undefined;
|
@@ -12846,6 +15053,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12846
15053
|
path: string;
|
12847
15054
|
originalFilename: string;
|
12848
15055
|
}[] | {
|
15056
|
+
data?: any;
|
15057
|
+
error?: {
|
15058
|
+
message: string;
|
15059
|
+
statusCode: number | null;
|
15060
|
+
} | null | undefined;
|
15061
|
+
loading?: boolean | null | undefined;
|
15062
|
+
} | {
|
12849
15063
|
start: string;
|
12850
15064
|
end: string;
|
12851
15065
|
} | null | undefined> | undefined;
|
@@ -12988,6 +15202,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
12988
15202
|
firstname: string;
|
12989
15203
|
surname: string;
|
12990
15204
|
middlename?: string | null | undefined;
|
15205
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
15206
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
15207
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
15208
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
15209
|
+
message: z.ZodString;
|
15210
|
+
}, "strip", z.ZodTypeAny, {
|
15211
|
+
message: string;
|
15212
|
+
statusCode: number | null;
|
15213
|
+
}, {
|
15214
|
+
message: string;
|
15215
|
+
statusCode: number | null;
|
15216
|
+
}>>>;
|
15217
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
15218
|
+
}, "strip", z.ZodTypeAny, {
|
15219
|
+
data?: any;
|
15220
|
+
error?: {
|
15221
|
+
message: string;
|
15222
|
+
statusCode: number | null;
|
15223
|
+
} | null | undefined;
|
15224
|
+
loading?: boolean | null | undefined;
|
15225
|
+
}, {
|
15226
|
+
data?: any;
|
15227
|
+
error?: {
|
15228
|
+
message: string;
|
15229
|
+
statusCode: number | null;
|
15230
|
+
} | null | undefined;
|
15231
|
+
loading?: boolean | null | undefined;
|
12991
15232
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
12992
15233
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
12993
15234
|
start: z.ZodString;
|
@@ -13123,6 +15364,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13123
15364
|
firstname: string;
|
13124
15365
|
surname: string;
|
13125
15366
|
middlename?: string | null | undefined;
|
15367
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
15368
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
15369
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
15370
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
15371
|
+
message: z.ZodString;
|
15372
|
+
}, "strip", z.ZodTypeAny, {
|
15373
|
+
message: string;
|
15374
|
+
statusCode: number | null;
|
15375
|
+
}, {
|
15376
|
+
message: string;
|
15377
|
+
statusCode: number | null;
|
15378
|
+
}>>>;
|
15379
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
15380
|
+
}, "strip", z.ZodTypeAny, {
|
15381
|
+
data?: any;
|
15382
|
+
error?: {
|
15383
|
+
message: string;
|
15384
|
+
statusCode: number | null;
|
15385
|
+
} | null | undefined;
|
15386
|
+
loading?: boolean | null | undefined;
|
15387
|
+
}, {
|
15388
|
+
data?: any;
|
15389
|
+
error?: {
|
15390
|
+
message: string;
|
15391
|
+
statusCode: number | null;
|
15392
|
+
} | null | undefined;
|
15393
|
+
loading?: boolean | null | undefined;
|
13126
15394
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
13127
15395
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
13128
15396
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -13188,6 +15456,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13188
15456
|
path: string;
|
13189
15457
|
originalFilename: string;
|
13190
15458
|
}[] | {
|
15459
|
+
data?: any;
|
15460
|
+
error?: {
|
15461
|
+
message: string;
|
15462
|
+
statusCode: number | null;
|
15463
|
+
} | null | undefined;
|
15464
|
+
loading?: boolean | null | undefined;
|
15465
|
+
} | {
|
13191
15466
|
start: string;
|
13192
15467
|
end: string;
|
13193
15468
|
} | null | undefined>;
|
@@ -13235,6 +15510,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13235
15510
|
path: string;
|
13236
15511
|
originalFilename: string;
|
13237
15512
|
}[] | {
|
15513
|
+
data?: any;
|
15514
|
+
error?: {
|
15515
|
+
message: string;
|
15516
|
+
statusCode: number | null;
|
15517
|
+
} | null | undefined;
|
15518
|
+
loading?: boolean | null | undefined;
|
15519
|
+
} | {
|
13238
15520
|
start: string;
|
13239
15521
|
end: string;
|
13240
15522
|
} | null | undefined> | undefined;
|
@@ -13291,6 +15573,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13291
15573
|
path: string;
|
13292
15574
|
originalFilename: string;
|
13293
15575
|
}[] | {
|
15576
|
+
data?: any;
|
15577
|
+
error?: {
|
15578
|
+
message: string;
|
15579
|
+
statusCode: number | null;
|
15580
|
+
} | null | undefined;
|
15581
|
+
loading?: boolean | null | undefined;
|
15582
|
+
} | {
|
13294
15583
|
start: string;
|
13295
15584
|
end: string;
|
13296
15585
|
} | null | undefined> | undefined;
|
@@ -13336,6 +15625,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13336
15625
|
path: string;
|
13337
15626
|
originalFilename: string;
|
13338
15627
|
}[] | {
|
15628
|
+
data?: any;
|
15629
|
+
error?: {
|
15630
|
+
message: string;
|
15631
|
+
statusCode: number | null;
|
15632
|
+
} | null | undefined;
|
15633
|
+
loading?: boolean | null | undefined;
|
15634
|
+
} | {
|
13339
15635
|
start: string;
|
13340
15636
|
end: string;
|
13341
15637
|
} | null | undefined> | undefined;
|
@@ -13478,6 +15774,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13478
15774
|
firstname: string;
|
13479
15775
|
surname: string;
|
13480
15776
|
middlename?: string | null | undefined;
|
15777
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
15778
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
15779
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
15780
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
15781
|
+
message: z.ZodString;
|
15782
|
+
}, "strip", z.ZodTypeAny, {
|
15783
|
+
message: string;
|
15784
|
+
statusCode: number | null;
|
15785
|
+
}, {
|
15786
|
+
message: string;
|
15787
|
+
statusCode: number | null;
|
15788
|
+
}>>>;
|
15789
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
15790
|
+
}, "strip", z.ZodTypeAny, {
|
15791
|
+
data?: any;
|
15792
|
+
error?: {
|
15793
|
+
message: string;
|
15794
|
+
statusCode: number | null;
|
15795
|
+
} | null | undefined;
|
15796
|
+
loading?: boolean | null | undefined;
|
15797
|
+
}, {
|
15798
|
+
data?: any;
|
15799
|
+
error?: {
|
15800
|
+
message: string;
|
15801
|
+
statusCode: number | null;
|
15802
|
+
} | null | undefined;
|
15803
|
+
loading?: boolean | null | undefined;
|
13481
15804
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
13482
15805
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
13483
15806
|
start: z.ZodString;
|
@@ -13613,6 +15936,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13613
15936
|
firstname: string;
|
13614
15937
|
surname: string;
|
13615
15938
|
middlename?: string | null | undefined;
|
15939
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
15940
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
15941
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
15942
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
15943
|
+
message: z.ZodString;
|
15944
|
+
}, "strip", z.ZodTypeAny, {
|
15945
|
+
message: string;
|
15946
|
+
statusCode: number | null;
|
15947
|
+
}, {
|
15948
|
+
message: string;
|
15949
|
+
statusCode: number | null;
|
15950
|
+
}>>>;
|
15951
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
15952
|
+
}, "strip", z.ZodTypeAny, {
|
15953
|
+
data?: any;
|
15954
|
+
error?: {
|
15955
|
+
message: string;
|
15956
|
+
statusCode: number | null;
|
15957
|
+
} | null | undefined;
|
15958
|
+
loading?: boolean | null | undefined;
|
15959
|
+
}, {
|
15960
|
+
data?: any;
|
15961
|
+
error?: {
|
15962
|
+
message: string;
|
15963
|
+
statusCode: number | null;
|
15964
|
+
} | null | undefined;
|
15965
|
+
loading?: boolean | null | undefined;
|
13616
15966
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
13617
15967
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
13618
15968
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -13664,6 +16014,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13664
16014
|
path: string;
|
13665
16015
|
originalFilename: string;
|
13666
16016
|
}[] | {
|
16017
|
+
data?: any;
|
16018
|
+
error?: {
|
16019
|
+
message: string;
|
16020
|
+
statusCode: number | null;
|
16021
|
+
} | null | undefined;
|
16022
|
+
loading?: boolean | null | undefined;
|
16023
|
+
} | {
|
13667
16024
|
start: string;
|
13668
16025
|
end: string;
|
13669
16026
|
} | null | undefined>;
|
@@ -13711,6 +16068,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13711
16068
|
path: string;
|
13712
16069
|
originalFilename: string;
|
13713
16070
|
}[] | {
|
16071
|
+
data?: any;
|
16072
|
+
error?: {
|
16073
|
+
message: string;
|
16074
|
+
statusCode: number | null;
|
16075
|
+
} | null | undefined;
|
16076
|
+
loading?: boolean | null | undefined;
|
16077
|
+
} | {
|
13714
16078
|
start: string;
|
13715
16079
|
end: string;
|
13716
16080
|
} | null | undefined> | undefined;
|
@@ -13763,6 +16127,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13763
16127
|
path: string;
|
13764
16128
|
originalFilename: string;
|
13765
16129
|
}[] | {
|
16130
|
+
data?: any;
|
16131
|
+
error?: {
|
16132
|
+
message: string;
|
16133
|
+
statusCode: number | null;
|
16134
|
+
} | null | undefined;
|
16135
|
+
loading?: boolean | null | undefined;
|
16136
|
+
} | {
|
13766
16137
|
start: string;
|
13767
16138
|
end: string;
|
13768
16139
|
} | null | undefined> | undefined;
|
@@ -13808,6 +16179,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13808
16179
|
path: string;
|
13809
16180
|
originalFilename: string;
|
13810
16181
|
}[] | {
|
16182
|
+
data?: any;
|
16183
|
+
error?: {
|
16184
|
+
message: string;
|
16185
|
+
statusCode: number | null;
|
16186
|
+
} | null | undefined;
|
16187
|
+
loading?: boolean | null | undefined;
|
16188
|
+
} | {
|
13811
16189
|
start: string;
|
13812
16190
|
end: string;
|
13813
16191
|
} | null | undefined> | undefined;
|
@@ -13950,6 +16328,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
13950
16328
|
firstname: string;
|
13951
16329
|
surname: string;
|
13952
16330
|
middlename?: string | null | undefined;
|
16331
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
16332
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
16333
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
16334
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
16335
|
+
message: z.ZodString;
|
16336
|
+
}, "strip", z.ZodTypeAny, {
|
16337
|
+
message: string;
|
16338
|
+
statusCode: number | null;
|
16339
|
+
}, {
|
16340
|
+
message: string;
|
16341
|
+
statusCode: number | null;
|
16342
|
+
}>>>;
|
16343
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
16344
|
+
}, "strip", z.ZodTypeAny, {
|
16345
|
+
data?: any;
|
16346
|
+
error?: {
|
16347
|
+
message: string;
|
16348
|
+
statusCode: number | null;
|
16349
|
+
} | null | undefined;
|
16350
|
+
loading?: boolean | null | undefined;
|
16351
|
+
}, {
|
16352
|
+
data?: any;
|
16353
|
+
error?: {
|
16354
|
+
message: string;
|
16355
|
+
statusCode: number | null;
|
16356
|
+
} | null | undefined;
|
16357
|
+
loading?: boolean | null | undefined;
|
13953
16358
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
13954
16359
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
13955
16360
|
start: z.ZodString;
|
@@ -14085,6 +16490,33 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
14085
16490
|
firstname: string;
|
14086
16491
|
surname: string;
|
14087
16492
|
middlename?: string | null | undefined;
|
16493
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
16494
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
16495
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
16496
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
16497
|
+
message: z.ZodString;
|
16498
|
+
}, "strip", z.ZodTypeAny, {
|
16499
|
+
message: string;
|
16500
|
+
statusCode: number | null;
|
16501
|
+
}, {
|
16502
|
+
message: string;
|
16503
|
+
statusCode: number | null;
|
16504
|
+
}>>>;
|
16505
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
16506
|
+
}, "strip", z.ZodTypeAny, {
|
16507
|
+
data?: any;
|
16508
|
+
error?: {
|
16509
|
+
message: string;
|
16510
|
+
statusCode: number | null;
|
16511
|
+
} | null | undefined;
|
16512
|
+
loading?: boolean | null | undefined;
|
16513
|
+
}, {
|
16514
|
+
data?: any;
|
16515
|
+
error?: {
|
16516
|
+
message: string;
|
16517
|
+
statusCode: number | null;
|
16518
|
+
} | null | undefined;
|
16519
|
+
loading?: boolean | null | undefined;
|
14088
16520
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
14089
16521
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
14090
16522
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -14135,6 +16567,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
14135
16567
|
path: string;
|
14136
16568
|
originalFilename: string;
|
14137
16569
|
}[] | {
|
16570
|
+
data?: any;
|
16571
|
+
error?: {
|
16572
|
+
message: string;
|
16573
|
+
statusCode: number | null;
|
16574
|
+
} | null | undefined;
|
16575
|
+
loading?: boolean | null | undefined;
|
16576
|
+
} | {
|
14138
16577
|
start: string;
|
14139
16578
|
end: string;
|
14140
16579
|
} | null | undefined>;
|
@@ -14181,6 +16620,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
14181
16620
|
path: string;
|
14182
16621
|
originalFilename: string;
|
14183
16622
|
}[] | {
|
16623
|
+
data?: any;
|
16624
|
+
error?: {
|
16625
|
+
message: string;
|
16626
|
+
statusCode: number | null;
|
16627
|
+
} | null | undefined;
|
16628
|
+
loading?: boolean | null | undefined;
|
16629
|
+
} | {
|
14184
16630
|
start: string;
|
14185
16631
|
end: string;
|
14186
16632
|
} | null | undefined> | undefined;
|
@@ -14232,6 +16678,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
14232
16678
|
path: string;
|
14233
16679
|
originalFilename: string;
|
14234
16680
|
}[] | {
|
16681
|
+
data?: any;
|
16682
|
+
error?: {
|
16683
|
+
message: string;
|
16684
|
+
statusCode: number | null;
|
16685
|
+
} | null | undefined;
|
16686
|
+
loading?: boolean | null | undefined;
|
16687
|
+
} | {
|
14235
16688
|
start: string;
|
14236
16689
|
end: string;
|
14237
16690
|
} | null | undefined> | undefined;
|
@@ -14277,6 +16730,13 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
|
|
14277
16730
|
path: string;
|
14278
16731
|
originalFilename: string;
|
14279
16732
|
}[] | {
|
16733
|
+
data?: any;
|
16734
|
+
error?: {
|
16735
|
+
message: string;
|
16736
|
+
statusCode: number | null;
|
16737
|
+
} | null | undefined;
|
16738
|
+
loading?: boolean | null | undefined;
|
16739
|
+
} | {
|
14280
16740
|
start: string;
|
14281
16741
|
end: string;
|
14282
16742
|
} | null | undefined> | undefined;
|