@openframe-org/criteria-set-protocol 2.0.23 → 2.0.25
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/v1/schemas/criteria-tree.d.ts +240 -0
- package/dist/v1/schemas/criterion.d.ts +44 -0
- package/dist/v1/schemas/task-group.d.ts +36 -0
- package/dist/v1/schemas/task-item.d.ts +44 -0
- package/dist/v1/schemas/task-item.js +4 -0
- package/dist/v1/schemas/task.d.ts +28 -0
- package/dist/v1/schemas/theme.d.ts +52 -0
- package/package.json +1 -1
|
@@ -423,6 +423,8 @@ export declare const criterionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
423
423
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
424
424
|
}, {
|
|
425
425
|
type: z.ZodLiteral<"select-single">;
|
|
426
|
+
minimum: z.ZodOptional<z.ZodNumber>;
|
|
427
|
+
maximum: z.ZodOptional<z.ZodNumber>;
|
|
426
428
|
options: z.ZodArray<z.ZodObject<{
|
|
427
429
|
id: z.ZodOptional<z.ZodString>;
|
|
428
430
|
text: z.ZodString;
|
|
@@ -453,6 +455,8 @@ export declare const criterionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
453
455
|
outro?: string | undefined;
|
|
454
456
|
}[];
|
|
455
457
|
label?: string | undefined;
|
|
458
|
+
minimum?: number | undefined;
|
|
459
|
+
maximum?: number | undefined;
|
|
456
460
|
defaultValue?: string | undefined;
|
|
457
461
|
readOnly?: boolean | undefined;
|
|
458
462
|
}, {
|
|
@@ -465,6 +469,8 @@ export declare const criterionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
465
469
|
outro?: string | undefined;
|
|
466
470
|
}[];
|
|
467
471
|
label?: string | undefined;
|
|
472
|
+
minimum?: number | undefined;
|
|
473
|
+
maximum?: number | undefined;
|
|
468
474
|
defaultValue?: string | undefined;
|
|
469
475
|
readOnly?: boolean | undefined;
|
|
470
476
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -473,6 +479,8 @@ export declare const criterionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
473
479
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
474
480
|
}, {
|
|
475
481
|
type: z.ZodLiteral<"select-multiple">;
|
|
482
|
+
minimum: z.ZodOptional<z.ZodNumber>;
|
|
483
|
+
maximum: z.ZodOptional<z.ZodNumber>;
|
|
476
484
|
options: z.ZodArray<z.ZodObject<{
|
|
477
485
|
id: z.ZodOptional<z.ZodString>;
|
|
478
486
|
text: z.ZodString;
|
|
@@ -503,6 +511,8 @@ export declare const criterionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
503
511
|
outro?: string | undefined;
|
|
504
512
|
}[];
|
|
505
513
|
label?: string | undefined;
|
|
514
|
+
minimum?: number | undefined;
|
|
515
|
+
maximum?: number | undefined;
|
|
506
516
|
defaultValue?: string[] | undefined;
|
|
507
517
|
readOnly?: boolean | undefined;
|
|
508
518
|
}, {
|
|
@@ -515,6 +525,8 @@ export declare const criterionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
515
525
|
outro?: string | undefined;
|
|
516
526
|
}[];
|
|
517
527
|
label?: string | undefined;
|
|
528
|
+
minimum?: number | undefined;
|
|
529
|
+
maximum?: number | undefined;
|
|
518
530
|
defaultValue?: string[] | undefined;
|
|
519
531
|
readOnly?: boolean | undefined;
|
|
520
532
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -604,6 +616,8 @@ export declare const criterionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
604
616
|
outro?: string | undefined;
|
|
605
617
|
}[];
|
|
606
618
|
label?: string | undefined;
|
|
619
|
+
minimum?: number | undefined;
|
|
620
|
+
maximum?: number | undefined;
|
|
607
621
|
defaultValue?: string | undefined;
|
|
608
622
|
readOnly?: boolean | undefined;
|
|
609
623
|
} | {
|
|
@@ -616,6 +630,8 @@ export declare const criterionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
616
630
|
outro?: string | undefined;
|
|
617
631
|
}[];
|
|
618
632
|
label?: string | undefined;
|
|
633
|
+
minimum?: number | undefined;
|
|
634
|
+
maximum?: number | undefined;
|
|
619
635
|
defaultValue?: string[] | undefined;
|
|
620
636
|
readOnly?: boolean | undefined;
|
|
621
637
|
} | {
|
|
@@ -686,6 +702,8 @@ export declare const criterionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
686
702
|
outro?: string | undefined;
|
|
687
703
|
}[];
|
|
688
704
|
label?: string | undefined;
|
|
705
|
+
minimum?: number | undefined;
|
|
706
|
+
maximum?: number | undefined;
|
|
689
707
|
defaultValue?: string | undefined;
|
|
690
708
|
readOnly?: boolean | undefined;
|
|
691
709
|
} | {
|
|
@@ -698,6 +716,8 @@ export declare const criterionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
698
716
|
outro?: string | undefined;
|
|
699
717
|
}[];
|
|
700
718
|
label?: string | undefined;
|
|
719
|
+
minimum?: number | undefined;
|
|
720
|
+
maximum?: number | undefined;
|
|
701
721
|
defaultValue?: string[] | undefined;
|
|
702
722
|
readOnly?: boolean | undefined;
|
|
703
723
|
} | {
|
|
@@ -780,6 +800,8 @@ export declare const criterionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
780
800
|
outro?: string | undefined;
|
|
781
801
|
}[];
|
|
782
802
|
label?: string | undefined;
|
|
803
|
+
minimum?: number | undefined;
|
|
804
|
+
maximum?: number | undefined;
|
|
783
805
|
defaultValue?: string | undefined;
|
|
784
806
|
readOnly?: boolean | undefined;
|
|
785
807
|
} | {
|
|
@@ -792,6 +814,8 @@ export declare const criterionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
792
814
|
outro?: string | undefined;
|
|
793
815
|
}[];
|
|
794
816
|
label?: string | undefined;
|
|
817
|
+
minimum?: number | undefined;
|
|
818
|
+
maximum?: number | undefined;
|
|
795
819
|
defaultValue?: string[] | undefined;
|
|
796
820
|
readOnly?: boolean | undefined;
|
|
797
821
|
} | {
|
|
@@ -901,6 +925,8 @@ export declare const criterionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
901
925
|
outro?: string | undefined;
|
|
902
926
|
}[];
|
|
903
927
|
label?: string | undefined;
|
|
928
|
+
minimum?: number | undefined;
|
|
929
|
+
maximum?: number | undefined;
|
|
904
930
|
defaultValue?: string | undefined;
|
|
905
931
|
readOnly?: boolean | undefined;
|
|
906
932
|
} | {
|
|
@@ -913,6 +939,8 @@ export declare const criterionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
913
939
|
outro?: string | undefined;
|
|
914
940
|
}[];
|
|
915
941
|
label?: string | undefined;
|
|
942
|
+
minimum?: number | undefined;
|
|
943
|
+
maximum?: number | undefined;
|
|
916
944
|
defaultValue?: string[] | undefined;
|
|
917
945
|
readOnly?: boolean | undefined;
|
|
918
946
|
} | {
|
|
@@ -1037,6 +1065,8 @@ export declare const criterionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1037
1065
|
outro?: string | undefined;
|
|
1038
1066
|
}[];
|
|
1039
1067
|
label?: string | undefined;
|
|
1068
|
+
minimum?: number | undefined;
|
|
1069
|
+
maximum?: number | undefined;
|
|
1040
1070
|
defaultValue?: string | undefined;
|
|
1041
1071
|
readOnly?: boolean | undefined;
|
|
1042
1072
|
} | {
|
|
@@ -1049,6 +1079,8 @@ export declare const criterionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1049
1079
|
outro?: string | undefined;
|
|
1050
1080
|
}[];
|
|
1051
1081
|
label?: string | undefined;
|
|
1082
|
+
minimum?: number | undefined;
|
|
1083
|
+
maximum?: number | undefined;
|
|
1052
1084
|
defaultValue?: string[] | undefined;
|
|
1053
1085
|
readOnly?: boolean | undefined;
|
|
1054
1086
|
} | {
|
|
@@ -1198,6 +1230,8 @@ export declare const criterionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1198
1230
|
outro?: string | undefined;
|
|
1199
1231
|
}[];
|
|
1200
1232
|
label?: string | undefined;
|
|
1233
|
+
minimum?: number | undefined;
|
|
1234
|
+
maximum?: number | undefined;
|
|
1201
1235
|
defaultValue?: string | undefined;
|
|
1202
1236
|
readOnly?: boolean | undefined;
|
|
1203
1237
|
} | {
|
|
@@ -1210,6 +1244,8 @@ export declare const criterionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1210
1244
|
outro?: string | undefined;
|
|
1211
1245
|
}[];
|
|
1212
1246
|
label?: string | undefined;
|
|
1247
|
+
minimum?: number | undefined;
|
|
1248
|
+
maximum?: number | undefined;
|
|
1213
1249
|
defaultValue?: string[] | undefined;
|
|
1214
1250
|
readOnly?: boolean | undefined;
|
|
1215
1251
|
} | {
|
|
@@ -1374,6 +1410,8 @@ export declare const criterionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1374
1410
|
outro?: string | undefined;
|
|
1375
1411
|
}[];
|
|
1376
1412
|
label?: string | undefined;
|
|
1413
|
+
minimum?: number | undefined;
|
|
1414
|
+
maximum?: number | undefined;
|
|
1377
1415
|
defaultValue?: string | undefined;
|
|
1378
1416
|
readOnly?: boolean | undefined;
|
|
1379
1417
|
} | {
|
|
@@ -1386,6 +1424,8 @@ export declare const criterionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1386
1424
|
outro?: string | undefined;
|
|
1387
1425
|
}[];
|
|
1388
1426
|
label?: string | undefined;
|
|
1427
|
+
minimum?: number | undefined;
|
|
1428
|
+
maximum?: number | undefined;
|
|
1389
1429
|
defaultValue?: string[] | undefined;
|
|
1390
1430
|
readOnly?: boolean | undefined;
|
|
1391
1431
|
} | {
|
|
@@ -1574,6 +1614,8 @@ export declare const criterionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1574
1614
|
outro?: string | undefined;
|
|
1575
1615
|
}[];
|
|
1576
1616
|
label?: string | undefined;
|
|
1617
|
+
minimum?: number | undefined;
|
|
1618
|
+
maximum?: number | undefined;
|
|
1577
1619
|
defaultValue?: string | undefined;
|
|
1578
1620
|
readOnly?: boolean | undefined;
|
|
1579
1621
|
} | {
|
|
@@ -1586,6 +1628,8 @@ export declare const criterionSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1586
1628
|
outro?: string | undefined;
|
|
1587
1629
|
}[];
|
|
1588
1630
|
label?: string | undefined;
|
|
1631
|
+
minimum?: number | undefined;
|
|
1632
|
+
maximum?: number | undefined;
|
|
1589
1633
|
defaultValue?: string[] | undefined;
|
|
1590
1634
|
readOnly?: boolean | undefined;
|
|
1591
1635
|
} | {
|
|
@@ -331,6 +331,8 @@ export declare const taskGroupSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
331
331
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
332
332
|
}, {
|
|
333
333
|
type: z.ZodLiteral<"select-single">;
|
|
334
|
+
minimum: z.ZodOptional<z.ZodNumber>;
|
|
335
|
+
maximum: z.ZodOptional<z.ZodNumber>;
|
|
334
336
|
options: z.ZodArray<z.ZodObject<{
|
|
335
337
|
id: z.ZodOptional<z.ZodString>;
|
|
336
338
|
text: z.ZodString;
|
|
@@ -361,6 +363,8 @@ export declare const taskGroupSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
361
363
|
outro?: string | undefined;
|
|
362
364
|
}[];
|
|
363
365
|
label?: string | undefined;
|
|
366
|
+
minimum?: number | undefined;
|
|
367
|
+
maximum?: number | undefined;
|
|
364
368
|
defaultValue?: string | undefined;
|
|
365
369
|
readOnly?: boolean | undefined;
|
|
366
370
|
}, {
|
|
@@ -373,6 +377,8 @@ export declare const taskGroupSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
373
377
|
outro?: string | undefined;
|
|
374
378
|
}[];
|
|
375
379
|
label?: string | undefined;
|
|
380
|
+
minimum?: number | undefined;
|
|
381
|
+
maximum?: number | undefined;
|
|
376
382
|
defaultValue?: string | undefined;
|
|
377
383
|
readOnly?: boolean | undefined;
|
|
378
384
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -381,6 +387,8 @@ export declare const taskGroupSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
381
387
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
382
388
|
}, {
|
|
383
389
|
type: z.ZodLiteral<"select-multiple">;
|
|
390
|
+
minimum: z.ZodOptional<z.ZodNumber>;
|
|
391
|
+
maximum: z.ZodOptional<z.ZodNumber>;
|
|
384
392
|
options: z.ZodArray<z.ZodObject<{
|
|
385
393
|
id: z.ZodOptional<z.ZodString>;
|
|
386
394
|
text: z.ZodString;
|
|
@@ -411,6 +419,8 @@ export declare const taskGroupSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
411
419
|
outro?: string | undefined;
|
|
412
420
|
}[];
|
|
413
421
|
label?: string | undefined;
|
|
422
|
+
minimum?: number | undefined;
|
|
423
|
+
maximum?: number | undefined;
|
|
414
424
|
defaultValue?: string[] | undefined;
|
|
415
425
|
readOnly?: boolean | undefined;
|
|
416
426
|
}, {
|
|
@@ -423,6 +433,8 @@ export declare const taskGroupSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
423
433
|
outro?: string | undefined;
|
|
424
434
|
}[];
|
|
425
435
|
label?: string | undefined;
|
|
436
|
+
minimum?: number | undefined;
|
|
437
|
+
maximum?: number | undefined;
|
|
426
438
|
defaultValue?: string[] | undefined;
|
|
427
439
|
readOnly?: boolean | undefined;
|
|
428
440
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -512,6 +524,8 @@ export declare const taskGroupSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
512
524
|
outro?: string | undefined;
|
|
513
525
|
}[];
|
|
514
526
|
label?: string | undefined;
|
|
527
|
+
minimum?: number | undefined;
|
|
528
|
+
maximum?: number | undefined;
|
|
515
529
|
defaultValue?: string | undefined;
|
|
516
530
|
readOnly?: boolean | undefined;
|
|
517
531
|
} | {
|
|
@@ -524,6 +538,8 @@ export declare const taskGroupSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
524
538
|
outro?: string | undefined;
|
|
525
539
|
}[];
|
|
526
540
|
label?: string | undefined;
|
|
541
|
+
minimum?: number | undefined;
|
|
542
|
+
maximum?: number | undefined;
|
|
527
543
|
defaultValue?: string[] | undefined;
|
|
528
544
|
readOnly?: boolean | undefined;
|
|
529
545
|
} | {
|
|
@@ -594,6 +610,8 @@ export declare const taskGroupSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
594
610
|
outro?: string | undefined;
|
|
595
611
|
}[];
|
|
596
612
|
label?: string | undefined;
|
|
613
|
+
minimum?: number | undefined;
|
|
614
|
+
maximum?: number | undefined;
|
|
597
615
|
defaultValue?: string | undefined;
|
|
598
616
|
readOnly?: boolean | undefined;
|
|
599
617
|
} | {
|
|
@@ -606,6 +624,8 @@ export declare const taskGroupSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
606
624
|
outro?: string | undefined;
|
|
607
625
|
}[];
|
|
608
626
|
label?: string | undefined;
|
|
627
|
+
minimum?: number | undefined;
|
|
628
|
+
maximum?: number | undefined;
|
|
609
629
|
defaultValue?: string[] | undefined;
|
|
610
630
|
readOnly?: boolean | undefined;
|
|
611
631
|
} | {
|
|
@@ -688,6 +708,8 @@ export declare const taskGroupSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
688
708
|
outro?: string | undefined;
|
|
689
709
|
}[];
|
|
690
710
|
label?: string | undefined;
|
|
711
|
+
minimum?: number | undefined;
|
|
712
|
+
maximum?: number | undefined;
|
|
691
713
|
defaultValue?: string | undefined;
|
|
692
714
|
readOnly?: boolean | undefined;
|
|
693
715
|
} | {
|
|
@@ -700,6 +722,8 @@ export declare const taskGroupSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
700
722
|
outro?: string | undefined;
|
|
701
723
|
}[];
|
|
702
724
|
label?: string | undefined;
|
|
725
|
+
minimum?: number | undefined;
|
|
726
|
+
maximum?: number | undefined;
|
|
703
727
|
defaultValue?: string[] | undefined;
|
|
704
728
|
readOnly?: boolean | undefined;
|
|
705
729
|
} | {
|
|
@@ -809,6 +833,8 @@ export declare const taskGroupSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
809
833
|
outro?: string | undefined;
|
|
810
834
|
}[];
|
|
811
835
|
label?: string | undefined;
|
|
836
|
+
minimum?: number | undefined;
|
|
837
|
+
maximum?: number | undefined;
|
|
812
838
|
defaultValue?: string | undefined;
|
|
813
839
|
readOnly?: boolean | undefined;
|
|
814
840
|
} | {
|
|
@@ -821,6 +847,8 @@ export declare const taskGroupSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
821
847
|
outro?: string | undefined;
|
|
822
848
|
}[];
|
|
823
849
|
label?: string | undefined;
|
|
850
|
+
minimum?: number | undefined;
|
|
851
|
+
maximum?: number | undefined;
|
|
824
852
|
defaultValue?: string[] | undefined;
|
|
825
853
|
readOnly?: boolean | undefined;
|
|
826
854
|
} | {
|
|
@@ -945,6 +973,8 @@ export declare const taskGroupSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
945
973
|
outro?: string | undefined;
|
|
946
974
|
}[];
|
|
947
975
|
label?: string | undefined;
|
|
976
|
+
minimum?: number | undefined;
|
|
977
|
+
maximum?: number | undefined;
|
|
948
978
|
defaultValue?: string | undefined;
|
|
949
979
|
readOnly?: boolean | undefined;
|
|
950
980
|
} | {
|
|
@@ -957,6 +987,8 @@ export declare const taskGroupSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
957
987
|
outro?: string | undefined;
|
|
958
988
|
}[];
|
|
959
989
|
label?: string | undefined;
|
|
990
|
+
minimum?: number | undefined;
|
|
991
|
+
maximum?: number | undefined;
|
|
960
992
|
defaultValue?: string[] | undefined;
|
|
961
993
|
readOnly?: boolean | undefined;
|
|
962
994
|
} | {
|
|
@@ -1106,6 +1138,8 @@ export declare const taskGroupSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1106
1138
|
outro?: string | undefined;
|
|
1107
1139
|
}[];
|
|
1108
1140
|
label?: string | undefined;
|
|
1141
|
+
minimum?: number | undefined;
|
|
1142
|
+
maximum?: number | undefined;
|
|
1109
1143
|
defaultValue?: string | undefined;
|
|
1110
1144
|
readOnly?: boolean | undefined;
|
|
1111
1145
|
} | {
|
|
@@ -1118,6 +1152,8 @@ export declare const taskGroupSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1118
1152
|
outro?: string | undefined;
|
|
1119
1153
|
}[];
|
|
1120
1154
|
label?: string | undefined;
|
|
1155
|
+
minimum?: number | undefined;
|
|
1156
|
+
maximum?: number | undefined;
|
|
1121
1157
|
defaultValue?: string[] | undefined;
|
|
1122
1158
|
readOnly?: boolean | undefined;
|
|
1123
1159
|
} | {
|
|
@@ -25,6 +25,8 @@ export declare const selectSingleTypeSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
25
25
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
26
26
|
}, {
|
|
27
27
|
type: z.ZodLiteral<"select-single">;
|
|
28
|
+
minimum: z.ZodOptional<z.ZodNumber>;
|
|
29
|
+
maximum: z.ZodOptional<z.ZodNumber>;
|
|
28
30
|
options: z.ZodArray<z.ZodObject<{
|
|
29
31
|
id: z.ZodOptional<z.ZodString>;
|
|
30
32
|
text: z.ZodString;
|
|
@@ -55,6 +57,8 @@ export declare const selectSingleTypeSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
55
57
|
outro?: string | undefined;
|
|
56
58
|
}[];
|
|
57
59
|
label?: string | undefined;
|
|
60
|
+
minimum?: number | undefined;
|
|
61
|
+
maximum?: number | undefined;
|
|
58
62
|
defaultValue?: string | undefined;
|
|
59
63
|
readOnly?: boolean | undefined;
|
|
60
64
|
}, {
|
|
@@ -67,6 +71,8 @@ export declare const selectSingleTypeSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
67
71
|
outro?: string | undefined;
|
|
68
72
|
}[];
|
|
69
73
|
label?: string | undefined;
|
|
74
|
+
minimum?: number | undefined;
|
|
75
|
+
maximum?: number | undefined;
|
|
70
76
|
defaultValue?: string | undefined;
|
|
71
77
|
readOnly?: boolean | undefined;
|
|
72
78
|
}>;
|
|
@@ -76,6 +82,8 @@ export declare const selectMultipleTypeSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
76
82
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
77
83
|
}, {
|
|
78
84
|
type: z.ZodLiteral<"select-multiple">;
|
|
85
|
+
minimum: z.ZodOptional<z.ZodNumber>;
|
|
86
|
+
maximum: z.ZodOptional<z.ZodNumber>;
|
|
79
87
|
options: z.ZodArray<z.ZodObject<{
|
|
80
88
|
id: z.ZodOptional<z.ZodString>;
|
|
81
89
|
text: z.ZodString;
|
|
@@ -106,6 +114,8 @@ export declare const selectMultipleTypeSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
106
114
|
outro?: string | undefined;
|
|
107
115
|
}[];
|
|
108
116
|
label?: string | undefined;
|
|
117
|
+
minimum?: number | undefined;
|
|
118
|
+
maximum?: number | undefined;
|
|
109
119
|
defaultValue?: string[] | undefined;
|
|
110
120
|
readOnly?: boolean | undefined;
|
|
111
121
|
}, {
|
|
@@ -118,6 +128,8 @@ export declare const selectMultipleTypeSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
118
128
|
outro?: string | undefined;
|
|
119
129
|
}[];
|
|
120
130
|
label?: string | undefined;
|
|
131
|
+
minimum?: number | undefined;
|
|
132
|
+
maximum?: number | undefined;
|
|
121
133
|
defaultValue?: string[] | undefined;
|
|
122
134
|
readOnly?: boolean | undefined;
|
|
123
135
|
}>;
|
|
@@ -190,6 +202,8 @@ export declare const taskItemDefinitionSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
190
202
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
191
203
|
}, {
|
|
192
204
|
type: z.ZodLiteral<"select-single">;
|
|
205
|
+
minimum: z.ZodOptional<z.ZodNumber>;
|
|
206
|
+
maximum: z.ZodOptional<z.ZodNumber>;
|
|
193
207
|
options: z.ZodArray<z.ZodObject<{
|
|
194
208
|
id: z.ZodOptional<z.ZodString>;
|
|
195
209
|
text: z.ZodString;
|
|
@@ -220,6 +234,8 @@ export declare const taskItemDefinitionSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
220
234
|
outro?: string | undefined;
|
|
221
235
|
}[];
|
|
222
236
|
label?: string | undefined;
|
|
237
|
+
minimum?: number | undefined;
|
|
238
|
+
maximum?: number | undefined;
|
|
223
239
|
defaultValue?: string | undefined;
|
|
224
240
|
readOnly?: boolean | undefined;
|
|
225
241
|
}, {
|
|
@@ -232,6 +248,8 @@ export declare const taskItemDefinitionSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
232
248
|
outro?: string | undefined;
|
|
233
249
|
}[];
|
|
234
250
|
label?: string | undefined;
|
|
251
|
+
minimum?: number | undefined;
|
|
252
|
+
maximum?: number | undefined;
|
|
235
253
|
defaultValue?: string | undefined;
|
|
236
254
|
readOnly?: boolean | undefined;
|
|
237
255
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -240,6 +258,8 @@ export declare const taskItemDefinitionSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
240
258
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
241
259
|
}, {
|
|
242
260
|
type: z.ZodLiteral<"select-multiple">;
|
|
261
|
+
minimum: z.ZodOptional<z.ZodNumber>;
|
|
262
|
+
maximum: z.ZodOptional<z.ZodNumber>;
|
|
243
263
|
options: z.ZodArray<z.ZodObject<{
|
|
244
264
|
id: z.ZodOptional<z.ZodString>;
|
|
245
265
|
text: z.ZodString;
|
|
@@ -270,6 +290,8 @@ export declare const taskItemDefinitionSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
270
290
|
outro?: string | undefined;
|
|
271
291
|
}[];
|
|
272
292
|
label?: string | undefined;
|
|
293
|
+
minimum?: number | undefined;
|
|
294
|
+
maximum?: number | undefined;
|
|
273
295
|
defaultValue?: string[] | undefined;
|
|
274
296
|
readOnly?: boolean | undefined;
|
|
275
297
|
}, {
|
|
@@ -282,6 +304,8 @@ export declare const taskItemDefinitionSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
282
304
|
outro?: string | undefined;
|
|
283
305
|
}[];
|
|
284
306
|
label?: string | undefined;
|
|
307
|
+
minimum?: number | undefined;
|
|
308
|
+
maximum?: number | undefined;
|
|
285
309
|
defaultValue?: string[] | undefined;
|
|
286
310
|
readOnly?: boolean | undefined;
|
|
287
311
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -530,6 +554,8 @@ export declare const taskItemSchema: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
530
554
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
531
555
|
}, {
|
|
532
556
|
type: z.ZodLiteral<"select-single">;
|
|
557
|
+
minimum: z.ZodOptional<z.ZodNumber>;
|
|
558
|
+
maximum: z.ZodOptional<z.ZodNumber>;
|
|
533
559
|
options: z.ZodArray<z.ZodObject<{
|
|
534
560
|
id: z.ZodOptional<z.ZodString>;
|
|
535
561
|
text: z.ZodString;
|
|
@@ -560,6 +586,8 @@ export declare const taskItemSchema: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
560
586
|
outro?: string | undefined;
|
|
561
587
|
}[];
|
|
562
588
|
label?: string | undefined;
|
|
589
|
+
minimum?: number | undefined;
|
|
590
|
+
maximum?: number | undefined;
|
|
563
591
|
defaultValue?: string | undefined;
|
|
564
592
|
readOnly?: boolean | undefined;
|
|
565
593
|
}, {
|
|
@@ -572,6 +600,8 @@ export declare const taskItemSchema: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
572
600
|
outro?: string | undefined;
|
|
573
601
|
}[];
|
|
574
602
|
label?: string | undefined;
|
|
603
|
+
minimum?: number | undefined;
|
|
604
|
+
maximum?: number | undefined;
|
|
575
605
|
defaultValue?: string | undefined;
|
|
576
606
|
readOnly?: boolean | undefined;
|
|
577
607
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -580,6 +610,8 @@ export declare const taskItemSchema: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
580
610
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
581
611
|
}, {
|
|
582
612
|
type: z.ZodLiteral<"select-multiple">;
|
|
613
|
+
minimum: z.ZodOptional<z.ZodNumber>;
|
|
614
|
+
maximum: z.ZodOptional<z.ZodNumber>;
|
|
583
615
|
options: z.ZodArray<z.ZodObject<{
|
|
584
616
|
id: z.ZodOptional<z.ZodString>;
|
|
585
617
|
text: z.ZodString;
|
|
@@ -610,6 +642,8 @@ export declare const taskItemSchema: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
610
642
|
outro?: string | undefined;
|
|
611
643
|
}[];
|
|
612
644
|
label?: string | undefined;
|
|
645
|
+
minimum?: number | undefined;
|
|
646
|
+
maximum?: number | undefined;
|
|
613
647
|
defaultValue?: string[] | undefined;
|
|
614
648
|
readOnly?: boolean | undefined;
|
|
615
649
|
}, {
|
|
@@ -622,6 +656,8 @@ export declare const taskItemSchema: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
622
656
|
outro?: string | undefined;
|
|
623
657
|
}[];
|
|
624
658
|
label?: string | undefined;
|
|
659
|
+
minimum?: number | undefined;
|
|
660
|
+
maximum?: number | undefined;
|
|
625
661
|
defaultValue?: string[] | undefined;
|
|
626
662
|
readOnly?: boolean | undefined;
|
|
627
663
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -711,6 +747,8 @@ export declare const taskItemSchema: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
711
747
|
outro?: string | undefined;
|
|
712
748
|
}[];
|
|
713
749
|
label?: string | undefined;
|
|
750
|
+
minimum?: number | undefined;
|
|
751
|
+
maximum?: number | undefined;
|
|
714
752
|
defaultValue?: string | undefined;
|
|
715
753
|
readOnly?: boolean | undefined;
|
|
716
754
|
} | {
|
|
@@ -723,6 +761,8 @@ export declare const taskItemSchema: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
723
761
|
outro?: string | undefined;
|
|
724
762
|
}[];
|
|
725
763
|
label?: string | undefined;
|
|
764
|
+
minimum?: number | undefined;
|
|
765
|
+
maximum?: number | undefined;
|
|
726
766
|
defaultValue?: string[] | undefined;
|
|
727
767
|
readOnly?: boolean | undefined;
|
|
728
768
|
} | {
|
|
@@ -793,6 +833,8 @@ export declare const taskItemSchema: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
793
833
|
outro?: string | undefined;
|
|
794
834
|
}[];
|
|
795
835
|
label?: string | undefined;
|
|
836
|
+
minimum?: number | undefined;
|
|
837
|
+
maximum?: number | undefined;
|
|
796
838
|
defaultValue?: string | undefined;
|
|
797
839
|
readOnly?: boolean | undefined;
|
|
798
840
|
} | {
|
|
@@ -805,6 +847,8 @@ export declare const taskItemSchema: z.ZodObject<z.objectUtil.extendShape<Omit<{
|
|
|
805
847
|
outro?: string | undefined;
|
|
806
848
|
}[];
|
|
807
849
|
label?: string | undefined;
|
|
850
|
+
minimum?: number | undefined;
|
|
851
|
+
maximum?: number | undefined;
|
|
808
852
|
defaultValue?: string[] | undefined;
|
|
809
853
|
readOnly?: boolean | undefined;
|
|
810
854
|
} | {
|
|
@@ -18,11 +18,15 @@ const abstractDefinitionSchema = zod_1.z.object({
|
|
|
18
18
|
});
|
|
19
19
|
exports.selectSingleTypeSchema = abstractDefinitionSchema.extend({
|
|
20
20
|
type: zod_1.z.literal("select-single"),
|
|
21
|
+
minimum: zod_1.z.number().optional(),
|
|
22
|
+
maximum: zod_1.z.number().optional(),
|
|
21
23
|
options: zod_1.z.array(exports.pointOptionSchema),
|
|
22
24
|
defaultValue: zod_1.z.string().optional(),
|
|
23
25
|
});
|
|
24
26
|
exports.selectMultipleTypeSchema = abstractDefinitionSchema.extend({
|
|
25
27
|
type: zod_1.z.literal("select-multiple"),
|
|
28
|
+
minimum: zod_1.z.number().optional(),
|
|
29
|
+
maximum: zod_1.z.number().optional(),
|
|
26
30
|
options: zod_1.z.array(exports.pointOptionSchema),
|
|
27
31
|
defaultValue: zod_1.z.array(zod_1.z.string()).optional(),
|
|
28
32
|
});
|
|
@@ -235,6 +235,8 @@ export declare const taskSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
235
235
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
236
236
|
}, {
|
|
237
237
|
type: z.ZodLiteral<"select-single">;
|
|
238
|
+
minimum: z.ZodOptional<z.ZodNumber>;
|
|
239
|
+
maximum: z.ZodOptional<z.ZodNumber>;
|
|
238
240
|
options: z.ZodArray<z.ZodObject<{
|
|
239
241
|
id: z.ZodOptional<z.ZodString>;
|
|
240
242
|
text: z.ZodString;
|
|
@@ -265,6 +267,8 @@ export declare const taskSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
265
267
|
outro?: string | undefined;
|
|
266
268
|
}[];
|
|
267
269
|
label?: string | undefined;
|
|
270
|
+
minimum?: number | undefined;
|
|
271
|
+
maximum?: number | undefined;
|
|
268
272
|
defaultValue?: string | undefined;
|
|
269
273
|
readOnly?: boolean | undefined;
|
|
270
274
|
}, {
|
|
@@ -277,6 +281,8 @@ export declare const taskSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
277
281
|
outro?: string | undefined;
|
|
278
282
|
}[];
|
|
279
283
|
label?: string | undefined;
|
|
284
|
+
minimum?: number | undefined;
|
|
285
|
+
maximum?: number | undefined;
|
|
280
286
|
defaultValue?: string | undefined;
|
|
281
287
|
readOnly?: boolean | undefined;
|
|
282
288
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -285,6 +291,8 @@ export declare const taskSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
285
291
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
286
292
|
}, {
|
|
287
293
|
type: z.ZodLiteral<"select-multiple">;
|
|
294
|
+
minimum: z.ZodOptional<z.ZodNumber>;
|
|
295
|
+
maximum: z.ZodOptional<z.ZodNumber>;
|
|
288
296
|
options: z.ZodArray<z.ZodObject<{
|
|
289
297
|
id: z.ZodOptional<z.ZodString>;
|
|
290
298
|
text: z.ZodString;
|
|
@@ -315,6 +323,8 @@ export declare const taskSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
315
323
|
outro?: string | undefined;
|
|
316
324
|
}[];
|
|
317
325
|
label?: string | undefined;
|
|
326
|
+
minimum?: number | undefined;
|
|
327
|
+
maximum?: number | undefined;
|
|
318
328
|
defaultValue?: string[] | undefined;
|
|
319
329
|
readOnly?: boolean | undefined;
|
|
320
330
|
}, {
|
|
@@ -327,6 +337,8 @@ export declare const taskSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
327
337
|
outro?: string | undefined;
|
|
328
338
|
}[];
|
|
329
339
|
label?: string | undefined;
|
|
340
|
+
minimum?: number | undefined;
|
|
341
|
+
maximum?: number | undefined;
|
|
330
342
|
defaultValue?: string[] | undefined;
|
|
331
343
|
readOnly?: boolean | undefined;
|
|
332
344
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -416,6 +428,8 @@ export declare const taskSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
416
428
|
outro?: string | undefined;
|
|
417
429
|
}[];
|
|
418
430
|
label?: string | undefined;
|
|
431
|
+
minimum?: number | undefined;
|
|
432
|
+
maximum?: number | undefined;
|
|
419
433
|
defaultValue?: string | undefined;
|
|
420
434
|
readOnly?: boolean | undefined;
|
|
421
435
|
} | {
|
|
@@ -428,6 +442,8 @@ export declare const taskSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
428
442
|
outro?: string | undefined;
|
|
429
443
|
}[];
|
|
430
444
|
label?: string | undefined;
|
|
445
|
+
minimum?: number | undefined;
|
|
446
|
+
maximum?: number | undefined;
|
|
431
447
|
defaultValue?: string[] | undefined;
|
|
432
448
|
readOnly?: boolean | undefined;
|
|
433
449
|
} | {
|
|
@@ -498,6 +514,8 @@ export declare const taskSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
498
514
|
outro?: string | undefined;
|
|
499
515
|
}[];
|
|
500
516
|
label?: string | undefined;
|
|
517
|
+
minimum?: number | undefined;
|
|
518
|
+
maximum?: number | undefined;
|
|
501
519
|
defaultValue?: string | undefined;
|
|
502
520
|
readOnly?: boolean | undefined;
|
|
503
521
|
} | {
|
|
@@ -510,6 +528,8 @@ export declare const taskSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
510
528
|
outro?: string | undefined;
|
|
511
529
|
}[];
|
|
512
530
|
label?: string | undefined;
|
|
531
|
+
minimum?: number | undefined;
|
|
532
|
+
maximum?: number | undefined;
|
|
513
533
|
defaultValue?: string[] | undefined;
|
|
514
534
|
readOnly?: boolean | undefined;
|
|
515
535
|
} | {
|
|
@@ -592,6 +612,8 @@ export declare const taskSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
592
612
|
outro?: string | undefined;
|
|
593
613
|
}[];
|
|
594
614
|
label?: string | undefined;
|
|
615
|
+
minimum?: number | undefined;
|
|
616
|
+
maximum?: number | undefined;
|
|
595
617
|
defaultValue?: string | undefined;
|
|
596
618
|
readOnly?: boolean | undefined;
|
|
597
619
|
} | {
|
|
@@ -604,6 +626,8 @@ export declare const taskSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
604
626
|
outro?: string | undefined;
|
|
605
627
|
}[];
|
|
606
628
|
label?: string | undefined;
|
|
629
|
+
minimum?: number | undefined;
|
|
630
|
+
maximum?: number | undefined;
|
|
607
631
|
defaultValue?: string[] | undefined;
|
|
608
632
|
readOnly?: boolean | undefined;
|
|
609
633
|
} | {
|
|
@@ -713,6 +737,8 @@ export declare const taskSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
713
737
|
outro?: string | undefined;
|
|
714
738
|
}[];
|
|
715
739
|
label?: string | undefined;
|
|
740
|
+
minimum?: number | undefined;
|
|
741
|
+
maximum?: number | undefined;
|
|
716
742
|
defaultValue?: string | undefined;
|
|
717
743
|
readOnly?: boolean | undefined;
|
|
718
744
|
} | {
|
|
@@ -725,6 +751,8 @@ export declare const taskSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
725
751
|
outro?: string | undefined;
|
|
726
752
|
}[];
|
|
727
753
|
label?: string | undefined;
|
|
754
|
+
minimum?: number | undefined;
|
|
755
|
+
maximum?: number | undefined;
|
|
728
756
|
defaultValue?: string[] | undefined;
|
|
729
757
|
readOnly?: boolean | undefined;
|
|
730
758
|
} | {
|