@opencrvs/toolkit 1.8.1-rc.0377f8e → 1.8.1-rc.06c1a33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commons/api/router.d.ts +1347 -1
- package/dist/commons/events/ActionConfig.d.ts +13563 -3777
- package/dist/commons/events/ActionDocument.d.ts +3036 -1
- package/dist/commons/events/ActionInput.d.ts +2460 -0
- package/dist/commons/events/AdvancedSearchConfig.d.ts +93 -3
- package/dist/commons/events/CompositeFieldValue.d.ts +60 -0
- package/dist/commons/events/Draft.d.ts +192 -0
- package/dist/commons/events/EventConfig.d.ts +8123 -3864
- package/dist/commons/events/EventDocument.d.ts +1704 -0
- package/dist/commons/events/EventIndex.d.ts +47 -1
- package/dist/commons/events/FieldConfig.d.ts +1121 -359
- package/dist/commons/events/FieldType.d.ts +3 -1
- package/dist/commons/events/FieldTypeMapping.d.ts +85 -3
- package/dist/commons/events/FieldValue.d.ts +62 -3
- package/dist/commons/events/FormConfig.d.ts +5750 -1148
- package/dist/commons/events/PageConfig.d.ts +1708 -562
- package/dist/commons/events/WorkqueueConfig.d.ts +8 -8
- package/dist/commons/events/defineConfig.d.ts +719 -8
- package/dist/commons/events/test.utils.d.ts +42 -0
- package/dist/commons/events/utils.d.ts +1317 -16
- package/dist/events/index.js +95 -33
- package/package.json +1 -1
@@ -149,7 +149,37 @@ export declare const SearchQueryParams: z.ZodObject<{
|
|
149
149
|
firstname: string;
|
150
150
|
surname: string;
|
151
151
|
middlename?: string | null | undefined;
|
152
|
-
}>, z.ZodNull]>, z.ZodUndefined]
|
152
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodNumber, z.ZodObject<{
|
153
|
+
loading: z.ZodBoolean;
|
154
|
+
error: z.ZodNullable<z.ZodObject<{
|
155
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
156
|
+
message: z.ZodString;
|
157
|
+
}, "strip", z.ZodTypeAny, {
|
158
|
+
message: string;
|
159
|
+
statusCode: number | null;
|
160
|
+
}, {
|
161
|
+
message: string;
|
162
|
+
statusCode: number | null;
|
163
|
+
}>>;
|
164
|
+
data: z.ZodAny;
|
165
|
+
trackingValue: z.ZodOptional<z.ZodString>;
|
166
|
+
}, "strip", z.ZodTypeAny, {
|
167
|
+
error: {
|
168
|
+
message: string;
|
169
|
+
statusCode: number | null;
|
170
|
+
} | null;
|
171
|
+
loading: boolean;
|
172
|
+
data?: any;
|
173
|
+
trackingValue?: string | undefined;
|
174
|
+
}, {
|
175
|
+
error: {
|
176
|
+
message: string;
|
177
|
+
statusCode: number | null;
|
178
|
+
} | null;
|
179
|
+
loading: boolean;
|
180
|
+
data?: any;
|
181
|
+
trackingValue?: string | undefined;
|
182
|
+
}>]>, z.objectOutputType<{
|
153
183
|
eventType: z.ZodOptional<z.ZodString>;
|
154
184
|
}, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
155
185
|
start: z.ZodString;
|
@@ -297,7 +327,37 @@ export declare const SearchQueryParams: z.ZodObject<{
|
|
297
327
|
firstname: string;
|
298
328
|
surname: string;
|
299
329
|
middlename?: string | null | undefined;
|
300
|
-
}>, z.ZodNull]>, z.ZodUndefined]
|
330
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodNumber, z.ZodObject<{
|
331
|
+
loading: z.ZodBoolean;
|
332
|
+
error: z.ZodNullable<z.ZodObject<{
|
333
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
334
|
+
message: z.ZodString;
|
335
|
+
}, "strip", z.ZodTypeAny, {
|
336
|
+
message: string;
|
337
|
+
statusCode: number | null;
|
338
|
+
}, {
|
339
|
+
message: string;
|
340
|
+
statusCode: number | null;
|
341
|
+
}>>;
|
342
|
+
data: z.ZodAny;
|
343
|
+
trackingValue: z.ZodOptional<z.ZodString>;
|
344
|
+
}, "strip", z.ZodTypeAny, {
|
345
|
+
error: {
|
346
|
+
message: string;
|
347
|
+
statusCode: number | null;
|
348
|
+
} | null;
|
349
|
+
loading: boolean;
|
350
|
+
data?: any;
|
351
|
+
trackingValue?: string | undefined;
|
352
|
+
}, {
|
353
|
+
error: {
|
354
|
+
message: string;
|
355
|
+
statusCode: number | null;
|
356
|
+
} | null;
|
357
|
+
loading: boolean;
|
358
|
+
data?: any;
|
359
|
+
trackingValue?: string | undefined;
|
360
|
+
}>]>, "strip">, z.objectInputType<{
|
301
361
|
eventType: z.ZodOptional<z.ZodString>;
|
302
362
|
}, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
303
363
|
start: z.ZodString;
|
@@ -445,7 +505,37 @@ export declare const SearchQueryParams: z.ZodObject<{
|
|
445
505
|
firstname: string;
|
446
506
|
surname: string;
|
447
507
|
middlename?: string | null | undefined;
|
448
|
-
}>, z.ZodNull]>, z.ZodUndefined]
|
508
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodNumber, z.ZodObject<{
|
509
|
+
loading: z.ZodBoolean;
|
510
|
+
error: z.ZodNullable<z.ZodObject<{
|
511
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
512
|
+
message: z.ZodString;
|
513
|
+
}, "strip", z.ZodTypeAny, {
|
514
|
+
message: string;
|
515
|
+
statusCode: number | null;
|
516
|
+
}, {
|
517
|
+
message: string;
|
518
|
+
statusCode: number | null;
|
519
|
+
}>>;
|
520
|
+
data: z.ZodAny;
|
521
|
+
trackingValue: z.ZodOptional<z.ZodString>;
|
522
|
+
}, "strip", z.ZodTypeAny, {
|
523
|
+
error: {
|
524
|
+
message: string;
|
525
|
+
statusCode: number | null;
|
526
|
+
} | null;
|
527
|
+
loading: boolean;
|
528
|
+
data?: any;
|
529
|
+
trackingValue?: string | undefined;
|
530
|
+
}, {
|
531
|
+
error: {
|
532
|
+
message: string;
|
533
|
+
statusCode: number | null;
|
534
|
+
} | null;
|
535
|
+
loading: boolean;
|
536
|
+
data?: any;
|
537
|
+
trackingValue?: string | undefined;
|
538
|
+
}>]>, "strip">>;
|
449
539
|
export type SearchQueryParams = z.infer<typeof SearchQueryParams>;
|
450
540
|
export declare const FieldConfigSchema: z.ZodObject<z.objectUtil.extendShape<{
|
451
541
|
config: z.ZodObject<{
|
@@ -442,4 +442,64 @@ export declare const FileFieldWithOptionValue: z.ZodArray<z.ZodObject<{
|
|
442
442
|
originalFilename: string;
|
443
443
|
}>, "many">;
|
444
444
|
export type FileFieldWithOptionValue = z.infer<typeof FileFieldWithOptionValue>;
|
445
|
+
export declare const HttpFieldValue: z.ZodObject<{
|
446
|
+
loading: z.ZodBoolean;
|
447
|
+
error: z.ZodNullable<z.ZodObject<{
|
448
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
449
|
+
message: z.ZodString;
|
450
|
+
}, "strip", z.ZodTypeAny, {
|
451
|
+
message: string;
|
452
|
+
statusCode: number | null;
|
453
|
+
}, {
|
454
|
+
message: string;
|
455
|
+
statusCode: number | null;
|
456
|
+
}>>;
|
457
|
+
data: z.ZodAny;
|
458
|
+
trackingValue: z.ZodOptional<z.ZodString>;
|
459
|
+
}, "strip", z.ZodTypeAny, {
|
460
|
+
error: {
|
461
|
+
message: string;
|
462
|
+
statusCode: number | null;
|
463
|
+
} | null;
|
464
|
+
loading: boolean;
|
465
|
+
data?: any;
|
466
|
+
trackingValue?: string | undefined;
|
467
|
+
}, {
|
468
|
+
error: {
|
469
|
+
message: string;
|
470
|
+
statusCode: number | null;
|
471
|
+
} | null;
|
472
|
+
loading: boolean;
|
473
|
+
data?: any;
|
474
|
+
trackingValue?: string | undefined;
|
475
|
+
}>;
|
476
|
+
export type HttpFieldValue = z.infer<typeof HttpFieldValue>;
|
477
|
+
export declare const HttpFieldUpdateValue: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
478
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
479
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
480
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
481
|
+
message: z.ZodString;
|
482
|
+
}, "strip", z.ZodTypeAny, {
|
483
|
+
message: string;
|
484
|
+
statusCode: number | null;
|
485
|
+
}, {
|
486
|
+
message: string;
|
487
|
+
statusCode: number | null;
|
488
|
+
}>>>;
|
489
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
490
|
+
}, "strip", z.ZodTypeAny, {
|
491
|
+
data?: any;
|
492
|
+
error?: {
|
493
|
+
message: string;
|
494
|
+
statusCode: number | null;
|
495
|
+
} | null | undefined;
|
496
|
+
loading?: boolean | null | undefined;
|
497
|
+
}, {
|
498
|
+
data?: any;
|
499
|
+
error?: {
|
500
|
+
message: string;
|
501
|
+
statusCode: number | null;
|
502
|
+
} | null | undefined;
|
503
|
+
loading?: boolean | null | undefined;
|
504
|
+
}>, z.ZodNull]>, z.ZodUndefined]>;
|
445
505
|
//# sourceMappingURL=CompositeFieldValue.d.ts.map
|
@@ -147,6 +147,33 @@ export declare const Draft: z.ZodObject<{
|
|
147
147
|
firstname: string;
|
148
148
|
surname: string;
|
149
149
|
middlename?: string | null | undefined;
|
150
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
151
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
152
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
153
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
154
|
+
message: z.ZodString;
|
155
|
+
}, "strip", z.ZodTypeAny, {
|
156
|
+
message: string;
|
157
|
+
statusCode: number | null;
|
158
|
+
}, {
|
159
|
+
message: string;
|
160
|
+
statusCode: number | null;
|
161
|
+
}>>>;
|
162
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
163
|
+
}, "strip", z.ZodTypeAny, {
|
164
|
+
data?: any;
|
165
|
+
error?: {
|
166
|
+
message: string;
|
167
|
+
statusCode: number | null;
|
168
|
+
} | null | undefined;
|
169
|
+
loading?: boolean | null | undefined;
|
170
|
+
}, {
|
171
|
+
data?: any;
|
172
|
+
error?: {
|
173
|
+
message: string;
|
174
|
+
statusCode: number | null;
|
175
|
+
} | null | undefined;
|
176
|
+
loading?: boolean | null | undefined;
|
150
177
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>;
|
151
178
|
annotation: z.ZodNullable<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
152
179
|
start: z.ZodString;
|
@@ -282,6 +309,33 @@ export declare const Draft: z.ZodObject<{
|
|
282
309
|
firstname: string;
|
283
310
|
surname: string;
|
284
311
|
middlename?: string | null | undefined;
|
312
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
313
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
314
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
315
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
316
|
+
message: z.ZodString;
|
317
|
+
}, "strip", z.ZodTypeAny, {
|
318
|
+
message: string;
|
319
|
+
statusCode: number | null;
|
320
|
+
}, {
|
321
|
+
message: string;
|
322
|
+
statusCode: number | null;
|
323
|
+
}>>>;
|
324
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
325
|
+
}, "strip", z.ZodTypeAny, {
|
326
|
+
data?: any;
|
327
|
+
error?: {
|
328
|
+
message: string;
|
329
|
+
statusCode: number | null;
|
330
|
+
} | null | undefined;
|
331
|
+
loading?: boolean | null | undefined;
|
332
|
+
}, {
|
333
|
+
data?: any;
|
334
|
+
error?: {
|
335
|
+
message: string;
|
336
|
+
statusCode: number | null;
|
337
|
+
} | null | undefined;
|
338
|
+
loading?: boolean | null | undefined;
|
285
339
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>>;
|
286
340
|
status: z.ZodEnum<["Requested", "Accepted", "Rejected"]>;
|
287
341
|
originalActionId: z.ZodNullable<z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>>;
|
@@ -337,6 +391,13 @@ export declare const Draft: z.ZodObject<{
|
|
337
391
|
path: string;
|
338
392
|
originalFilename: string;
|
339
393
|
}[] | {
|
394
|
+
data?: any;
|
395
|
+
error?: {
|
396
|
+
message: string;
|
397
|
+
statusCode: number | null;
|
398
|
+
} | null | undefined;
|
399
|
+
loading?: boolean | null | undefined;
|
400
|
+
} | {
|
340
401
|
start: string;
|
341
402
|
end: string;
|
342
403
|
} | null | undefined>;
|
@@ -384,6 +445,13 @@ export declare const Draft: z.ZodObject<{
|
|
384
445
|
path: string;
|
385
446
|
originalFilename: string;
|
386
447
|
}[] | {
|
448
|
+
data?: any;
|
449
|
+
error?: {
|
450
|
+
message: string;
|
451
|
+
statusCode: number | null;
|
452
|
+
} | null | undefined;
|
453
|
+
loading?: boolean | null | undefined;
|
454
|
+
} | {
|
387
455
|
start: string;
|
388
456
|
end: string;
|
389
457
|
} | null | undefined> | null | undefined;
|
@@ -438,6 +506,13 @@ export declare const Draft: z.ZodObject<{
|
|
438
506
|
path: string;
|
439
507
|
originalFilename: string;
|
440
508
|
}[] | {
|
509
|
+
data?: any;
|
510
|
+
error?: {
|
511
|
+
message: string;
|
512
|
+
statusCode: number | null;
|
513
|
+
} | null | undefined;
|
514
|
+
loading?: boolean | null | undefined;
|
515
|
+
} | {
|
441
516
|
start: string;
|
442
517
|
end: string;
|
443
518
|
} | null | undefined>;
|
@@ -485,6 +560,13 @@ export declare const Draft: z.ZodObject<{
|
|
485
560
|
path: string;
|
486
561
|
originalFilename: string;
|
487
562
|
}[] | {
|
563
|
+
data?: any;
|
564
|
+
error?: {
|
565
|
+
message: string;
|
566
|
+
statusCode: number | null;
|
567
|
+
} | null | undefined;
|
568
|
+
loading?: boolean | null | undefined;
|
569
|
+
} | {
|
488
570
|
start: string;
|
489
571
|
end: string;
|
490
572
|
} | null | undefined> | null | undefined;
|
@@ -545,6 +627,13 @@ export declare const Draft: z.ZodObject<{
|
|
545
627
|
path: string;
|
546
628
|
originalFilename: string;
|
547
629
|
}[] | {
|
630
|
+
data?: any;
|
631
|
+
error?: {
|
632
|
+
message: string;
|
633
|
+
statusCode: number | null;
|
634
|
+
} | null | undefined;
|
635
|
+
loading?: boolean | null | undefined;
|
636
|
+
} | {
|
548
637
|
start: string;
|
549
638
|
end: string;
|
550
639
|
} | null | undefined>;
|
@@ -592,6 +681,13 @@ export declare const Draft: z.ZodObject<{
|
|
592
681
|
path: string;
|
593
682
|
originalFilename: string;
|
594
683
|
}[] | {
|
684
|
+
data?: any;
|
685
|
+
error?: {
|
686
|
+
message: string;
|
687
|
+
statusCode: number | null;
|
688
|
+
} | null | undefined;
|
689
|
+
loading?: boolean | null | undefined;
|
690
|
+
} | {
|
595
691
|
start: string;
|
596
692
|
end: string;
|
597
693
|
} | null | undefined> | null | undefined;
|
@@ -652,6 +748,13 @@ export declare const Draft: z.ZodObject<{
|
|
652
748
|
path: string;
|
653
749
|
originalFilename: string;
|
654
750
|
}[] | {
|
751
|
+
data?: any;
|
752
|
+
error?: {
|
753
|
+
message: string;
|
754
|
+
statusCode: number | null;
|
755
|
+
} | null | undefined;
|
756
|
+
loading?: boolean | null | undefined;
|
757
|
+
} | {
|
655
758
|
start: string;
|
656
759
|
end: string;
|
657
760
|
} | null | undefined>;
|
@@ -699,6 +802,13 @@ export declare const Draft: z.ZodObject<{
|
|
699
802
|
path: string;
|
700
803
|
originalFilename: string;
|
701
804
|
}[] | {
|
805
|
+
data?: any;
|
806
|
+
error?: {
|
807
|
+
message: string;
|
808
|
+
statusCode: number | null;
|
809
|
+
} | null | undefined;
|
810
|
+
loading?: boolean | null | undefined;
|
811
|
+
} | {
|
702
812
|
start: string;
|
703
813
|
end: string;
|
704
814
|
} | null | undefined> | null | undefined;
|
@@ -842,6 +952,33 @@ export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
842
952
|
firstname: string;
|
843
953
|
surname: string;
|
844
954
|
middlename?: string | null | undefined;
|
955
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
956
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
957
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
958
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
959
|
+
message: z.ZodString;
|
960
|
+
}, "strip", z.ZodTypeAny, {
|
961
|
+
message: string;
|
962
|
+
statusCode: number | null;
|
963
|
+
}, {
|
964
|
+
message: string;
|
965
|
+
statusCode: number | null;
|
966
|
+
}>>>;
|
967
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
968
|
+
}, "strip", z.ZodTypeAny, {
|
969
|
+
data?: any;
|
970
|
+
error?: {
|
971
|
+
message: string;
|
972
|
+
statusCode: number | null;
|
973
|
+
} | null | undefined;
|
974
|
+
loading?: boolean | null | undefined;
|
975
|
+
}, {
|
976
|
+
data?: any;
|
977
|
+
error?: {
|
978
|
+
message: string;
|
979
|
+
statusCode: number | null;
|
980
|
+
} | null | undefined;
|
981
|
+
loading?: boolean | null | undefined;
|
845
982
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
846
983
|
annotation: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodString, z.ZodString, z.ZodUnion<[z.ZodObject<{
|
847
984
|
start: z.ZodString;
|
@@ -977,6 +1114,33 @@ export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
977
1114
|
firstname: string;
|
978
1115
|
surname: string;
|
979
1116
|
middlename?: string | null | undefined;
|
1117
|
+
}>, z.ZodNull]>, z.ZodUndefined]>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
1118
|
+
loading: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
1119
|
+
error: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
1120
|
+
statusCode: z.ZodNullable<z.ZodNumber>;
|
1121
|
+
message: z.ZodString;
|
1122
|
+
}, "strip", z.ZodTypeAny, {
|
1123
|
+
message: string;
|
1124
|
+
statusCode: number | null;
|
1125
|
+
}, {
|
1126
|
+
message: string;
|
1127
|
+
statusCode: number | null;
|
1128
|
+
}>>>;
|
1129
|
+
data: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
1130
|
+
}, "strip", z.ZodTypeAny, {
|
1131
|
+
data?: any;
|
1132
|
+
error?: {
|
1133
|
+
message: string;
|
1134
|
+
statusCode: number | null;
|
1135
|
+
} | null | undefined;
|
1136
|
+
loading?: boolean | null | undefined;
|
1137
|
+
}, {
|
1138
|
+
data?: any;
|
1139
|
+
error?: {
|
1140
|
+
message: string;
|
1141
|
+
statusCode: number | null;
|
1142
|
+
} | null | undefined;
|
1143
|
+
loading?: boolean | null | undefined;
|
980
1144
|
}>, z.ZodNull]>, z.ZodUndefined]>]>>>;
|
981
1145
|
originalActionId: z.ZodOptional<z.ZodBranded<z.ZodString, "UUID">>;
|
982
1146
|
keepAssignment: z.ZodOptional<z.ZodBoolean>;
|
@@ -1029,6 +1193,13 @@ export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1029
1193
|
path: string;
|
1030
1194
|
originalFilename: string;
|
1031
1195
|
}[] | {
|
1196
|
+
data?: any;
|
1197
|
+
error?: {
|
1198
|
+
message: string;
|
1199
|
+
statusCode: number | null;
|
1200
|
+
} | null | undefined;
|
1201
|
+
loading?: boolean | null | undefined;
|
1202
|
+
} | {
|
1032
1203
|
start: string;
|
1033
1204
|
end: string;
|
1034
1205
|
} | null | undefined>;
|
@@ -1075,6 +1246,13 @@ export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1075
1246
|
path: string;
|
1076
1247
|
originalFilename: string;
|
1077
1248
|
}[] | {
|
1249
|
+
data?: any;
|
1250
|
+
error?: {
|
1251
|
+
message: string;
|
1252
|
+
statusCode: number | null;
|
1253
|
+
} | null | undefined;
|
1254
|
+
loading?: boolean | null | undefined;
|
1255
|
+
} | {
|
1078
1256
|
start: string;
|
1079
1257
|
end: string;
|
1080
1258
|
} | null | undefined> | undefined;
|
@@ -1127,6 +1305,13 @@ export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1127
1305
|
path: string;
|
1128
1306
|
originalFilename: string;
|
1129
1307
|
}[] | {
|
1308
|
+
data?: any;
|
1309
|
+
error?: {
|
1310
|
+
message: string;
|
1311
|
+
statusCode: number | null;
|
1312
|
+
} | null | undefined;
|
1313
|
+
loading?: boolean | null | undefined;
|
1314
|
+
} | {
|
1130
1315
|
start: string;
|
1131
1316
|
end: string;
|
1132
1317
|
} | null | undefined> | undefined;
|
@@ -1172,6 +1357,13 @@ export declare const DraftInput: z.ZodObject<z.objectUtil.extendShape<{
|
|
1172
1357
|
path: string;
|
1173
1358
|
originalFilename: string;
|
1174
1359
|
}[] | {
|
1360
|
+
data?: any;
|
1361
|
+
error?: {
|
1362
|
+
message: string;
|
1363
|
+
statusCode: number | null;
|
1364
|
+
} | null | undefined;
|
1365
|
+
loading?: boolean | null | undefined;
|
1366
|
+
} | {
|
1175
1367
|
start: string;
|
1176
1368
|
end: string;
|
1177
1369
|
} | null | undefined> | undefined;
|