@openframe-org/criteria-set-protocol 2.0.17 → 2.0.19
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 +720 -0
- package/dist/v1/schemas/criterion.d.ts +132 -0
- package/dist/v1/schemas/task-group.d.ts +108 -0
- package/dist/v1/schemas/task-item.d.ts +132 -0
- package/dist/v1/schemas/task-item.js +6 -0
- package/dist/v1/schemas/task.d.ts +84 -0
- package/dist/v1/schemas/theme.d.ts +156 -0
- package/package.json +1 -1
|
@@ -557,6 +557,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
557
557
|
}>>;
|
|
558
558
|
definition: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
559
559
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
560
|
+
label: z.ZodOptional<z.ZodString>;
|
|
561
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
560
562
|
}, {
|
|
561
563
|
type: z.ZodLiteral<"select-single">;
|
|
562
564
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -578,6 +580,7 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
578
580
|
intro?: string | undefined;
|
|
579
581
|
outro?: string | undefined;
|
|
580
582
|
}>, "many">;
|
|
583
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
581
584
|
}>, "strip", z.ZodTypeAny, {
|
|
582
585
|
type: "select-single";
|
|
583
586
|
options: {
|
|
@@ -587,6 +590,9 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
587
590
|
intro?: string | undefined;
|
|
588
591
|
outro?: string | undefined;
|
|
589
592
|
}[];
|
|
593
|
+
label?: string | undefined;
|
|
594
|
+
defaultValue?: string | undefined;
|
|
595
|
+
readOnly?: boolean | undefined;
|
|
590
596
|
}, {
|
|
591
597
|
type: "select-single";
|
|
592
598
|
options: {
|
|
@@ -596,8 +602,13 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
596
602
|
intro?: string | undefined;
|
|
597
603
|
outro?: string | undefined;
|
|
598
604
|
}[];
|
|
605
|
+
label?: string | undefined;
|
|
606
|
+
defaultValue?: string | undefined;
|
|
607
|
+
readOnly?: boolean | undefined;
|
|
599
608
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
600
609
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
610
|
+
label: z.ZodOptional<z.ZodString>;
|
|
611
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
601
612
|
}, {
|
|
602
613
|
type: z.ZodLiteral<"select-multiple">;
|
|
603
614
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -619,6 +630,7 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
619
630
|
intro?: string | undefined;
|
|
620
631
|
outro?: string | undefined;
|
|
621
632
|
}>, "many">;
|
|
633
|
+
defaultValue: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
622
634
|
}>, "strip", z.ZodTypeAny, {
|
|
623
635
|
type: "select-multiple";
|
|
624
636
|
options: {
|
|
@@ -628,6 +640,9 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
628
640
|
intro?: string | undefined;
|
|
629
641
|
outro?: string | undefined;
|
|
630
642
|
}[];
|
|
643
|
+
label?: string | undefined;
|
|
644
|
+
defaultValue?: string[] | undefined;
|
|
645
|
+
readOnly?: boolean | undefined;
|
|
631
646
|
}, {
|
|
632
647
|
type: "select-multiple";
|
|
633
648
|
options: {
|
|
@@ -637,25 +652,39 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
637
652
|
intro?: string | undefined;
|
|
638
653
|
outro?: string | undefined;
|
|
639
654
|
}[];
|
|
655
|
+
label?: string | undefined;
|
|
656
|
+
defaultValue?: string[] | undefined;
|
|
657
|
+
readOnly?: boolean | undefined;
|
|
640
658
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
641
659
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
660
|
+
label: z.ZodOptional<z.ZodString>;
|
|
661
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
642
662
|
}, {
|
|
643
663
|
type: z.ZodLiteral<"number">;
|
|
644
664
|
minimum: z.ZodOptional<z.ZodNumber>;
|
|
645
665
|
maximum: z.ZodOptional<z.ZodNumber>;
|
|
646
666
|
step: z.ZodOptional<z.ZodNumber>;
|
|
667
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
647
668
|
}>, "strip", z.ZodTypeAny, {
|
|
648
669
|
type: "number";
|
|
670
|
+
label?: string | undefined;
|
|
649
671
|
minimum?: number | undefined;
|
|
650
672
|
maximum?: number | undefined;
|
|
673
|
+
defaultValue?: number | undefined;
|
|
651
674
|
step?: number | undefined;
|
|
675
|
+
readOnly?: boolean | undefined;
|
|
652
676
|
}, {
|
|
653
677
|
type: "number";
|
|
678
|
+
label?: string | undefined;
|
|
654
679
|
minimum?: number | undefined;
|
|
655
680
|
maximum?: number | undefined;
|
|
681
|
+
defaultValue?: number | undefined;
|
|
656
682
|
step?: number | undefined;
|
|
683
|
+
readOnly?: boolean | undefined;
|
|
657
684
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
658
685
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
686
|
+
label: z.ZodOptional<z.ZodString>;
|
|
687
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
659
688
|
}, {
|
|
660
689
|
type: z.ZodLiteral<"boolean">;
|
|
661
690
|
labels: z.ZodOptional<z.ZodObject<{
|
|
@@ -668,18 +697,25 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
668
697
|
false: string;
|
|
669
698
|
true: string;
|
|
670
699
|
}>>;
|
|
700
|
+
defaultValue: z.ZodOptional<z.ZodBoolean>;
|
|
671
701
|
}>, "strip", z.ZodTypeAny, {
|
|
672
702
|
type: "boolean";
|
|
703
|
+
label?: string | undefined;
|
|
673
704
|
labels?: {
|
|
674
705
|
false: string;
|
|
675
706
|
true: string;
|
|
676
707
|
} | undefined;
|
|
708
|
+
defaultValue?: boolean | undefined;
|
|
709
|
+
readOnly?: boolean | undefined;
|
|
677
710
|
}, {
|
|
678
711
|
type: "boolean";
|
|
712
|
+
label?: string | undefined;
|
|
679
713
|
labels?: {
|
|
680
714
|
false: string;
|
|
681
715
|
true: string;
|
|
682
716
|
} | undefined;
|
|
717
|
+
defaultValue?: boolean | undefined;
|
|
718
|
+
readOnly?: boolean | undefined;
|
|
683
719
|
}>]>;
|
|
684
720
|
description: z.ZodOptional<z.ZodString>;
|
|
685
721
|
valueReference: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>;
|
|
@@ -702,6 +738,9 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
702
738
|
intro?: string | undefined;
|
|
703
739
|
outro?: string | undefined;
|
|
704
740
|
}[];
|
|
741
|
+
label?: string | undefined;
|
|
742
|
+
defaultValue?: string | undefined;
|
|
743
|
+
readOnly?: boolean | undefined;
|
|
705
744
|
} | {
|
|
706
745
|
type: "select-multiple";
|
|
707
746
|
options: {
|
|
@@ -711,17 +750,26 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
711
750
|
intro?: string | undefined;
|
|
712
751
|
outro?: string | undefined;
|
|
713
752
|
}[];
|
|
753
|
+
label?: string | undefined;
|
|
754
|
+
defaultValue?: string[] | undefined;
|
|
755
|
+
readOnly?: boolean | undefined;
|
|
714
756
|
} | {
|
|
715
757
|
type: "number";
|
|
758
|
+
label?: string | undefined;
|
|
716
759
|
minimum?: number | undefined;
|
|
717
760
|
maximum?: number | undefined;
|
|
761
|
+
defaultValue?: number | undefined;
|
|
718
762
|
step?: number | undefined;
|
|
763
|
+
readOnly?: boolean | undefined;
|
|
719
764
|
} | {
|
|
720
765
|
type: "boolean";
|
|
766
|
+
label?: string | undefined;
|
|
721
767
|
labels?: {
|
|
722
768
|
false: string;
|
|
723
769
|
true: string;
|
|
724
770
|
} | undefined;
|
|
771
|
+
defaultValue?: boolean | undefined;
|
|
772
|
+
readOnly?: boolean | undefined;
|
|
725
773
|
};
|
|
726
774
|
data?: {
|
|
727
775
|
type?: "number" | "percentage" | undefined;
|
|
@@ -771,6 +819,9 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
771
819
|
intro?: string | undefined;
|
|
772
820
|
outro?: string | undefined;
|
|
773
821
|
}[];
|
|
822
|
+
label?: string | undefined;
|
|
823
|
+
defaultValue?: string | undefined;
|
|
824
|
+
readOnly?: boolean | undefined;
|
|
774
825
|
} | {
|
|
775
826
|
type: "select-multiple";
|
|
776
827
|
options: {
|
|
@@ -780,17 +831,26 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
780
831
|
intro?: string | undefined;
|
|
781
832
|
outro?: string | undefined;
|
|
782
833
|
}[];
|
|
834
|
+
label?: string | undefined;
|
|
835
|
+
defaultValue?: string[] | undefined;
|
|
836
|
+
readOnly?: boolean | undefined;
|
|
783
837
|
} | {
|
|
784
838
|
type: "number";
|
|
839
|
+
label?: string | undefined;
|
|
785
840
|
minimum?: number | undefined;
|
|
786
841
|
maximum?: number | undefined;
|
|
842
|
+
defaultValue?: number | undefined;
|
|
787
843
|
step?: number | undefined;
|
|
844
|
+
readOnly?: boolean | undefined;
|
|
788
845
|
} | {
|
|
789
846
|
type: "boolean";
|
|
847
|
+
label?: string | undefined;
|
|
790
848
|
labels?: {
|
|
791
849
|
false: string;
|
|
792
850
|
true: string;
|
|
793
851
|
} | undefined;
|
|
852
|
+
defaultValue?: boolean | undefined;
|
|
853
|
+
readOnly?: boolean | undefined;
|
|
794
854
|
};
|
|
795
855
|
data?: {
|
|
796
856
|
type?: "number" | "percentage" | undefined;
|
|
@@ -852,6 +912,9 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
852
912
|
intro?: string | undefined;
|
|
853
913
|
outro?: string | undefined;
|
|
854
914
|
}[];
|
|
915
|
+
label?: string | undefined;
|
|
916
|
+
defaultValue?: string | undefined;
|
|
917
|
+
readOnly?: boolean | undefined;
|
|
855
918
|
} | {
|
|
856
919
|
type: "select-multiple";
|
|
857
920
|
options: {
|
|
@@ -861,17 +924,26 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
861
924
|
intro?: string | undefined;
|
|
862
925
|
outro?: string | undefined;
|
|
863
926
|
}[];
|
|
927
|
+
label?: string | undefined;
|
|
928
|
+
defaultValue?: string[] | undefined;
|
|
929
|
+
readOnly?: boolean | undefined;
|
|
864
930
|
} | {
|
|
865
931
|
type: "number";
|
|
932
|
+
label?: string | undefined;
|
|
866
933
|
minimum?: number | undefined;
|
|
867
934
|
maximum?: number | undefined;
|
|
935
|
+
defaultValue?: number | undefined;
|
|
868
936
|
step?: number | undefined;
|
|
937
|
+
readOnly?: boolean | undefined;
|
|
869
938
|
} | {
|
|
870
939
|
type: "boolean";
|
|
940
|
+
label?: string | undefined;
|
|
871
941
|
labels?: {
|
|
872
942
|
false: string;
|
|
873
943
|
true: string;
|
|
874
944
|
} | undefined;
|
|
945
|
+
defaultValue?: boolean | undefined;
|
|
946
|
+
readOnly?: boolean | undefined;
|
|
875
947
|
};
|
|
876
948
|
data?: {
|
|
877
949
|
type?: "number" | "percentage" | undefined;
|
|
@@ -960,6 +1032,9 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
960
1032
|
intro?: string | undefined;
|
|
961
1033
|
outro?: string | undefined;
|
|
962
1034
|
}[];
|
|
1035
|
+
label?: string | undefined;
|
|
1036
|
+
defaultValue?: string | undefined;
|
|
1037
|
+
readOnly?: boolean | undefined;
|
|
963
1038
|
} | {
|
|
964
1039
|
type: "select-multiple";
|
|
965
1040
|
options: {
|
|
@@ -969,17 +1044,26 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
969
1044
|
intro?: string | undefined;
|
|
970
1045
|
outro?: string | undefined;
|
|
971
1046
|
}[];
|
|
1047
|
+
label?: string | undefined;
|
|
1048
|
+
defaultValue?: string[] | undefined;
|
|
1049
|
+
readOnly?: boolean | undefined;
|
|
972
1050
|
} | {
|
|
973
1051
|
type: "number";
|
|
1052
|
+
label?: string | undefined;
|
|
974
1053
|
minimum?: number | undefined;
|
|
975
1054
|
maximum?: number | undefined;
|
|
1055
|
+
defaultValue?: number | undefined;
|
|
976
1056
|
step?: number | undefined;
|
|
1057
|
+
readOnly?: boolean | undefined;
|
|
977
1058
|
} | {
|
|
978
1059
|
type: "boolean";
|
|
1060
|
+
label?: string | undefined;
|
|
979
1061
|
labels?: {
|
|
980
1062
|
false: string;
|
|
981
1063
|
true: string;
|
|
982
1064
|
} | undefined;
|
|
1065
|
+
defaultValue?: boolean | undefined;
|
|
1066
|
+
readOnly?: boolean | undefined;
|
|
983
1067
|
};
|
|
984
1068
|
data?: {
|
|
985
1069
|
type?: "number" | "percentage" | undefined;
|
|
@@ -1083,6 +1167,9 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
1083
1167
|
intro?: string | undefined;
|
|
1084
1168
|
outro?: string | undefined;
|
|
1085
1169
|
}[];
|
|
1170
|
+
label?: string | undefined;
|
|
1171
|
+
defaultValue?: string | undefined;
|
|
1172
|
+
readOnly?: boolean | undefined;
|
|
1086
1173
|
} | {
|
|
1087
1174
|
type: "select-multiple";
|
|
1088
1175
|
options: {
|
|
@@ -1092,17 +1179,26 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
1092
1179
|
intro?: string | undefined;
|
|
1093
1180
|
outro?: string | undefined;
|
|
1094
1181
|
}[];
|
|
1182
|
+
label?: string | undefined;
|
|
1183
|
+
defaultValue?: string[] | undefined;
|
|
1184
|
+
readOnly?: boolean | undefined;
|
|
1095
1185
|
} | {
|
|
1096
1186
|
type: "number";
|
|
1187
|
+
label?: string | undefined;
|
|
1097
1188
|
minimum?: number | undefined;
|
|
1098
1189
|
maximum?: number | undefined;
|
|
1190
|
+
defaultValue?: number | undefined;
|
|
1099
1191
|
step?: number | undefined;
|
|
1192
|
+
readOnly?: boolean | undefined;
|
|
1100
1193
|
} | {
|
|
1101
1194
|
type: "boolean";
|
|
1195
|
+
label?: string | undefined;
|
|
1102
1196
|
labels?: {
|
|
1103
1197
|
false: string;
|
|
1104
1198
|
true: string;
|
|
1105
1199
|
} | undefined;
|
|
1200
|
+
defaultValue?: boolean | undefined;
|
|
1201
|
+
readOnly?: boolean | undefined;
|
|
1106
1202
|
};
|
|
1107
1203
|
data?: {
|
|
1108
1204
|
type?: "number" | "percentage" | undefined;
|
|
@@ -1231,6 +1327,9 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
1231
1327
|
intro?: string | undefined;
|
|
1232
1328
|
outro?: string | undefined;
|
|
1233
1329
|
}[];
|
|
1330
|
+
label?: string | undefined;
|
|
1331
|
+
defaultValue?: string | undefined;
|
|
1332
|
+
readOnly?: boolean | undefined;
|
|
1234
1333
|
} | {
|
|
1235
1334
|
type: "select-multiple";
|
|
1236
1335
|
options: {
|
|
@@ -1240,17 +1339,26 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
1240
1339
|
intro?: string | undefined;
|
|
1241
1340
|
outro?: string | undefined;
|
|
1242
1341
|
}[];
|
|
1342
|
+
label?: string | undefined;
|
|
1343
|
+
defaultValue?: string[] | undefined;
|
|
1344
|
+
readOnly?: boolean | undefined;
|
|
1243
1345
|
} | {
|
|
1244
1346
|
type: "number";
|
|
1347
|
+
label?: string | undefined;
|
|
1245
1348
|
minimum?: number | undefined;
|
|
1246
1349
|
maximum?: number | undefined;
|
|
1350
|
+
defaultValue?: number | undefined;
|
|
1247
1351
|
step?: number | undefined;
|
|
1352
|
+
readOnly?: boolean | undefined;
|
|
1248
1353
|
} | {
|
|
1249
1354
|
type: "boolean";
|
|
1355
|
+
label?: string | undefined;
|
|
1250
1356
|
labels?: {
|
|
1251
1357
|
false: string;
|
|
1252
1358
|
true: string;
|
|
1253
1359
|
} | undefined;
|
|
1360
|
+
defaultValue?: boolean | undefined;
|
|
1361
|
+
readOnly?: boolean | undefined;
|
|
1254
1362
|
};
|
|
1255
1363
|
data?: {
|
|
1256
1364
|
type?: "number" | "percentage" | undefined;
|
|
@@ -1394,6 +1502,9 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
1394
1502
|
intro?: string | undefined;
|
|
1395
1503
|
outro?: string | undefined;
|
|
1396
1504
|
}[];
|
|
1505
|
+
label?: string | undefined;
|
|
1506
|
+
defaultValue?: string | undefined;
|
|
1507
|
+
readOnly?: boolean | undefined;
|
|
1397
1508
|
} | {
|
|
1398
1509
|
type: "select-multiple";
|
|
1399
1510
|
options: {
|
|
@@ -1403,17 +1514,26 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
1403
1514
|
intro?: string | undefined;
|
|
1404
1515
|
outro?: string | undefined;
|
|
1405
1516
|
}[];
|
|
1517
|
+
label?: string | undefined;
|
|
1518
|
+
defaultValue?: string[] | undefined;
|
|
1519
|
+
readOnly?: boolean | undefined;
|
|
1406
1520
|
} | {
|
|
1407
1521
|
type: "number";
|
|
1522
|
+
label?: string | undefined;
|
|
1408
1523
|
minimum?: number | undefined;
|
|
1409
1524
|
maximum?: number | undefined;
|
|
1525
|
+
defaultValue?: number | undefined;
|
|
1410
1526
|
step?: number | undefined;
|
|
1527
|
+
readOnly?: boolean | undefined;
|
|
1411
1528
|
} | {
|
|
1412
1529
|
type: "boolean";
|
|
1530
|
+
label?: string | undefined;
|
|
1413
1531
|
labels?: {
|
|
1414
1532
|
false: string;
|
|
1415
1533
|
true: string;
|
|
1416
1534
|
} | undefined;
|
|
1535
|
+
defaultValue?: boolean | undefined;
|
|
1536
|
+
readOnly?: boolean | undefined;
|
|
1417
1537
|
};
|
|
1418
1538
|
data?: {
|
|
1419
1539
|
type?: "number" | "percentage" | undefined;
|
|
@@ -1581,6 +1701,9 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
1581
1701
|
intro?: string | undefined;
|
|
1582
1702
|
outro?: string | undefined;
|
|
1583
1703
|
}[];
|
|
1704
|
+
label?: string | undefined;
|
|
1705
|
+
defaultValue?: string | undefined;
|
|
1706
|
+
readOnly?: boolean | undefined;
|
|
1584
1707
|
} | {
|
|
1585
1708
|
type: "select-multiple";
|
|
1586
1709
|
options: {
|
|
@@ -1590,17 +1713,26 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
1590
1713
|
intro?: string | undefined;
|
|
1591
1714
|
outro?: string | undefined;
|
|
1592
1715
|
}[];
|
|
1716
|
+
label?: string | undefined;
|
|
1717
|
+
defaultValue?: string[] | undefined;
|
|
1718
|
+
readOnly?: boolean | undefined;
|
|
1593
1719
|
} | {
|
|
1594
1720
|
type: "number";
|
|
1721
|
+
label?: string | undefined;
|
|
1595
1722
|
minimum?: number | undefined;
|
|
1596
1723
|
maximum?: number | undefined;
|
|
1724
|
+
defaultValue?: number | undefined;
|
|
1597
1725
|
step?: number | undefined;
|
|
1726
|
+
readOnly?: boolean | undefined;
|
|
1598
1727
|
} | {
|
|
1599
1728
|
type: "boolean";
|
|
1729
|
+
label?: string | undefined;
|
|
1600
1730
|
labels?: {
|
|
1601
1731
|
false: string;
|
|
1602
1732
|
true: string;
|
|
1603
1733
|
} | undefined;
|
|
1734
|
+
defaultValue?: boolean | undefined;
|
|
1735
|
+
readOnly?: boolean | undefined;
|
|
1604
1736
|
};
|
|
1605
1737
|
data?: {
|
|
1606
1738
|
type?: "number" | "percentage" | undefined;
|
|
@@ -1783,6 +1915,9 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
1783
1915
|
intro?: string | undefined;
|
|
1784
1916
|
outro?: string | undefined;
|
|
1785
1917
|
}[];
|
|
1918
|
+
label?: string | undefined;
|
|
1919
|
+
defaultValue?: string | undefined;
|
|
1920
|
+
readOnly?: boolean | undefined;
|
|
1786
1921
|
} | {
|
|
1787
1922
|
type: "select-multiple";
|
|
1788
1923
|
options: {
|
|
@@ -1792,17 +1927,26 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
1792
1927
|
intro?: string | undefined;
|
|
1793
1928
|
outro?: string | undefined;
|
|
1794
1929
|
}[];
|
|
1930
|
+
label?: string | undefined;
|
|
1931
|
+
defaultValue?: string[] | undefined;
|
|
1932
|
+
readOnly?: boolean | undefined;
|
|
1795
1933
|
} | {
|
|
1796
1934
|
type: "number";
|
|
1935
|
+
label?: string | undefined;
|
|
1797
1936
|
minimum?: number | undefined;
|
|
1798
1937
|
maximum?: number | undefined;
|
|
1938
|
+
defaultValue?: number | undefined;
|
|
1799
1939
|
step?: number | undefined;
|
|
1940
|
+
readOnly?: boolean | undefined;
|
|
1800
1941
|
} | {
|
|
1801
1942
|
type: "boolean";
|
|
1943
|
+
label?: string | undefined;
|
|
1802
1944
|
labels?: {
|
|
1803
1945
|
false: string;
|
|
1804
1946
|
true: string;
|
|
1805
1947
|
} | undefined;
|
|
1948
|
+
defaultValue?: boolean | undefined;
|
|
1949
|
+
readOnly?: boolean | undefined;
|
|
1806
1950
|
};
|
|
1807
1951
|
data?: {
|
|
1808
1952
|
type?: "number" | "percentage" | undefined;
|
|
@@ -2021,6 +2165,9 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
2021
2165
|
intro?: string | undefined;
|
|
2022
2166
|
outro?: string | undefined;
|
|
2023
2167
|
}[];
|
|
2168
|
+
label?: string | undefined;
|
|
2169
|
+
defaultValue?: string | undefined;
|
|
2170
|
+
readOnly?: boolean | undefined;
|
|
2024
2171
|
} | {
|
|
2025
2172
|
type: "select-multiple";
|
|
2026
2173
|
options: {
|
|
@@ -2030,17 +2177,26 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
2030
2177
|
intro?: string | undefined;
|
|
2031
2178
|
outro?: string | undefined;
|
|
2032
2179
|
}[];
|
|
2180
|
+
label?: string | undefined;
|
|
2181
|
+
defaultValue?: string[] | undefined;
|
|
2182
|
+
readOnly?: boolean | undefined;
|
|
2033
2183
|
} | {
|
|
2034
2184
|
type: "number";
|
|
2185
|
+
label?: string | undefined;
|
|
2035
2186
|
minimum?: number | undefined;
|
|
2036
2187
|
maximum?: number | undefined;
|
|
2188
|
+
defaultValue?: number | undefined;
|
|
2037
2189
|
step?: number | undefined;
|
|
2190
|
+
readOnly?: boolean | undefined;
|
|
2038
2191
|
} | {
|
|
2039
2192
|
type: "boolean";
|
|
2193
|
+
label?: string | undefined;
|
|
2040
2194
|
labels?: {
|
|
2041
2195
|
false: string;
|
|
2042
2196
|
true: string;
|
|
2043
2197
|
} | undefined;
|
|
2198
|
+
defaultValue?: boolean | undefined;
|
|
2199
|
+
readOnly?: boolean | undefined;
|
|
2044
2200
|
};
|
|
2045
2201
|
data?: {
|
|
2046
2202
|
type?: "number" | "percentage" | undefined;
|
|
@@ -2365,6 +2521,9 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
2365
2521
|
intro?: string | undefined;
|
|
2366
2522
|
outro?: string | undefined;
|
|
2367
2523
|
}[];
|
|
2524
|
+
label?: string | undefined;
|
|
2525
|
+
defaultValue?: string | undefined;
|
|
2526
|
+
readOnly?: boolean | undefined;
|
|
2368
2527
|
} | {
|
|
2369
2528
|
type: "select-multiple";
|
|
2370
2529
|
options: {
|
|
@@ -2374,17 +2533,26 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
2374
2533
|
intro?: string | undefined;
|
|
2375
2534
|
outro?: string | undefined;
|
|
2376
2535
|
}[];
|
|
2536
|
+
label?: string | undefined;
|
|
2537
|
+
defaultValue?: string[] | undefined;
|
|
2538
|
+
readOnly?: boolean | undefined;
|
|
2377
2539
|
} | {
|
|
2378
2540
|
type: "number";
|
|
2541
|
+
label?: string | undefined;
|
|
2379
2542
|
minimum?: number | undefined;
|
|
2380
2543
|
maximum?: number | undefined;
|
|
2544
|
+
defaultValue?: number | undefined;
|
|
2381
2545
|
step?: number | undefined;
|
|
2546
|
+
readOnly?: boolean | undefined;
|
|
2382
2547
|
} | {
|
|
2383
2548
|
type: "boolean";
|
|
2549
|
+
label?: string | undefined;
|
|
2384
2550
|
labels?: {
|
|
2385
2551
|
false: string;
|
|
2386
2552
|
true: string;
|
|
2387
2553
|
} | undefined;
|
|
2554
|
+
defaultValue?: boolean | undefined;
|
|
2555
|
+
readOnly?: boolean | undefined;
|
|
2388
2556
|
};
|
|
2389
2557
|
data?: {
|
|
2390
2558
|
type?: "number" | "percentage" | undefined;
|
|
@@ -2635,6 +2803,9 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
2635
2803
|
intro?: string | undefined;
|
|
2636
2804
|
outro?: string | undefined;
|
|
2637
2805
|
}[];
|
|
2806
|
+
label?: string | undefined;
|
|
2807
|
+
defaultValue?: string | undefined;
|
|
2808
|
+
readOnly?: boolean | undefined;
|
|
2638
2809
|
} | {
|
|
2639
2810
|
type: "select-multiple";
|
|
2640
2811
|
options: {
|
|
@@ -2644,17 +2815,26 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
|
|
|
2644
2815
|
intro?: string | undefined;
|
|
2645
2816
|
outro?: string | undefined;
|
|
2646
2817
|
}[];
|
|
2818
|
+
label?: string | undefined;
|
|
2819
|
+
defaultValue?: string[] | undefined;
|
|
2820
|
+
readOnly?: boolean | undefined;
|
|
2647
2821
|
} | {
|
|
2648
2822
|
type: "number";
|
|
2823
|
+
label?: string | undefined;
|
|
2649
2824
|
minimum?: number | undefined;
|
|
2650
2825
|
maximum?: number | undefined;
|
|
2826
|
+
defaultValue?: number | undefined;
|
|
2651
2827
|
step?: number | undefined;
|
|
2828
|
+
readOnly?: boolean | undefined;
|
|
2652
2829
|
} | {
|
|
2653
2830
|
type: "boolean";
|
|
2831
|
+
label?: string | undefined;
|
|
2654
2832
|
labels?: {
|
|
2655
2833
|
false: string;
|
|
2656
2834
|
true: string;
|
|
2657
2835
|
} | undefined;
|
|
2836
|
+
defaultValue?: boolean | undefined;
|
|
2837
|
+
readOnly?: boolean | undefined;
|
|
2658
2838
|
};
|
|
2659
2839
|
data?: {
|
|
2660
2840
|
type?: "number" | "percentage" | undefined;
|
|
@@ -3428,6 +3608,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3428
3608
|
}>>;
|
|
3429
3609
|
definition: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
3430
3610
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
3611
|
+
label: z.ZodOptional<z.ZodString>;
|
|
3612
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
3431
3613
|
}, {
|
|
3432
3614
|
type: z.ZodLiteral<"select-single">;
|
|
3433
3615
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -3449,6 +3631,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3449
3631
|
intro?: string | undefined;
|
|
3450
3632
|
outro?: string | undefined;
|
|
3451
3633
|
}>, "many">;
|
|
3634
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
3452
3635
|
}>, "strip", z.ZodTypeAny, {
|
|
3453
3636
|
type: "select-single";
|
|
3454
3637
|
options: {
|
|
@@ -3458,6 +3641,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3458
3641
|
intro?: string | undefined;
|
|
3459
3642
|
outro?: string | undefined;
|
|
3460
3643
|
}[];
|
|
3644
|
+
label?: string | undefined;
|
|
3645
|
+
defaultValue?: string | undefined;
|
|
3646
|
+
readOnly?: boolean | undefined;
|
|
3461
3647
|
}, {
|
|
3462
3648
|
type: "select-single";
|
|
3463
3649
|
options: {
|
|
@@ -3467,8 +3653,13 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3467
3653
|
intro?: string | undefined;
|
|
3468
3654
|
outro?: string | undefined;
|
|
3469
3655
|
}[];
|
|
3656
|
+
label?: string | undefined;
|
|
3657
|
+
defaultValue?: string | undefined;
|
|
3658
|
+
readOnly?: boolean | undefined;
|
|
3470
3659
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3471
3660
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
3661
|
+
label: z.ZodOptional<z.ZodString>;
|
|
3662
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
3472
3663
|
}, {
|
|
3473
3664
|
type: z.ZodLiteral<"select-multiple">;
|
|
3474
3665
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -3490,6 +3681,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3490
3681
|
intro?: string | undefined;
|
|
3491
3682
|
outro?: string | undefined;
|
|
3492
3683
|
}>, "many">;
|
|
3684
|
+
defaultValue: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3493
3685
|
}>, "strip", z.ZodTypeAny, {
|
|
3494
3686
|
type: "select-multiple";
|
|
3495
3687
|
options: {
|
|
@@ -3499,6 +3691,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3499
3691
|
intro?: string | undefined;
|
|
3500
3692
|
outro?: string | undefined;
|
|
3501
3693
|
}[];
|
|
3694
|
+
label?: string | undefined;
|
|
3695
|
+
defaultValue?: string[] | undefined;
|
|
3696
|
+
readOnly?: boolean | undefined;
|
|
3502
3697
|
}, {
|
|
3503
3698
|
type: "select-multiple";
|
|
3504
3699
|
options: {
|
|
@@ -3508,25 +3703,39 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3508
3703
|
intro?: string | undefined;
|
|
3509
3704
|
outro?: string | undefined;
|
|
3510
3705
|
}[];
|
|
3706
|
+
label?: string | undefined;
|
|
3707
|
+
defaultValue?: string[] | undefined;
|
|
3708
|
+
readOnly?: boolean | undefined;
|
|
3511
3709
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3512
3710
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
3711
|
+
label: z.ZodOptional<z.ZodString>;
|
|
3712
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
3513
3713
|
}, {
|
|
3514
3714
|
type: z.ZodLiteral<"number">;
|
|
3515
3715
|
minimum: z.ZodOptional<z.ZodNumber>;
|
|
3516
3716
|
maximum: z.ZodOptional<z.ZodNumber>;
|
|
3517
3717
|
step: z.ZodOptional<z.ZodNumber>;
|
|
3718
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
3518
3719
|
}>, "strip", z.ZodTypeAny, {
|
|
3519
3720
|
type: "number";
|
|
3721
|
+
label?: string | undefined;
|
|
3520
3722
|
minimum?: number | undefined;
|
|
3521
3723
|
maximum?: number | undefined;
|
|
3724
|
+
defaultValue?: number | undefined;
|
|
3522
3725
|
step?: number | undefined;
|
|
3726
|
+
readOnly?: boolean | undefined;
|
|
3523
3727
|
}, {
|
|
3524
3728
|
type: "number";
|
|
3729
|
+
label?: string | undefined;
|
|
3525
3730
|
minimum?: number | undefined;
|
|
3526
3731
|
maximum?: number | undefined;
|
|
3732
|
+
defaultValue?: number | undefined;
|
|
3527
3733
|
step?: number | undefined;
|
|
3734
|
+
readOnly?: boolean | undefined;
|
|
3528
3735
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
3529
3736
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
3737
|
+
label: z.ZodOptional<z.ZodString>;
|
|
3738
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
3530
3739
|
}, {
|
|
3531
3740
|
type: z.ZodLiteral<"boolean">;
|
|
3532
3741
|
labels: z.ZodOptional<z.ZodObject<{
|
|
@@ -3539,18 +3748,25 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3539
3748
|
false: string;
|
|
3540
3749
|
true: string;
|
|
3541
3750
|
}>>;
|
|
3751
|
+
defaultValue: z.ZodOptional<z.ZodBoolean>;
|
|
3542
3752
|
}>, "strip", z.ZodTypeAny, {
|
|
3543
3753
|
type: "boolean";
|
|
3754
|
+
label?: string | undefined;
|
|
3544
3755
|
labels?: {
|
|
3545
3756
|
false: string;
|
|
3546
3757
|
true: string;
|
|
3547
3758
|
} | undefined;
|
|
3759
|
+
defaultValue?: boolean | undefined;
|
|
3760
|
+
readOnly?: boolean | undefined;
|
|
3548
3761
|
}, {
|
|
3549
3762
|
type: "boolean";
|
|
3763
|
+
label?: string | undefined;
|
|
3550
3764
|
labels?: {
|
|
3551
3765
|
false: string;
|
|
3552
3766
|
true: string;
|
|
3553
3767
|
} | undefined;
|
|
3768
|
+
defaultValue?: boolean | undefined;
|
|
3769
|
+
readOnly?: boolean | undefined;
|
|
3554
3770
|
}>]>;
|
|
3555
3771
|
description: z.ZodOptional<z.ZodString>;
|
|
3556
3772
|
valueReference: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>;
|
|
@@ -3573,6 +3789,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3573
3789
|
intro?: string | undefined;
|
|
3574
3790
|
outro?: string | undefined;
|
|
3575
3791
|
}[];
|
|
3792
|
+
label?: string | undefined;
|
|
3793
|
+
defaultValue?: string | undefined;
|
|
3794
|
+
readOnly?: boolean | undefined;
|
|
3576
3795
|
} | {
|
|
3577
3796
|
type: "select-multiple";
|
|
3578
3797
|
options: {
|
|
@@ -3582,17 +3801,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3582
3801
|
intro?: string | undefined;
|
|
3583
3802
|
outro?: string | undefined;
|
|
3584
3803
|
}[];
|
|
3804
|
+
label?: string | undefined;
|
|
3805
|
+
defaultValue?: string[] | undefined;
|
|
3806
|
+
readOnly?: boolean | undefined;
|
|
3585
3807
|
} | {
|
|
3586
3808
|
type: "number";
|
|
3809
|
+
label?: string | undefined;
|
|
3587
3810
|
minimum?: number | undefined;
|
|
3588
3811
|
maximum?: number | undefined;
|
|
3812
|
+
defaultValue?: number | undefined;
|
|
3589
3813
|
step?: number | undefined;
|
|
3814
|
+
readOnly?: boolean | undefined;
|
|
3590
3815
|
} | {
|
|
3591
3816
|
type: "boolean";
|
|
3817
|
+
label?: string | undefined;
|
|
3592
3818
|
labels?: {
|
|
3593
3819
|
false: string;
|
|
3594
3820
|
true: string;
|
|
3595
3821
|
} | undefined;
|
|
3822
|
+
defaultValue?: boolean | undefined;
|
|
3823
|
+
readOnly?: boolean | undefined;
|
|
3596
3824
|
};
|
|
3597
3825
|
data?: {
|
|
3598
3826
|
type?: "number" | "percentage" | undefined;
|
|
@@ -3642,6 +3870,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3642
3870
|
intro?: string | undefined;
|
|
3643
3871
|
outro?: string | undefined;
|
|
3644
3872
|
}[];
|
|
3873
|
+
label?: string | undefined;
|
|
3874
|
+
defaultValue?: string | undefined;
|
|
3875
|
+
readOnly?: boolean | undefined;
|
|
3645
3876
|
} | {
|
|
3646
3877
|
type: "select-multiple";
|
|
3647
3878
|
options: {
|
|
@@ -3651,17 +3882,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3651
3882
|
intro?: string | undefined;
|
|
3652
3883
|
outro?: string | undefined;
|
|
3653
3884
|
}[];
|
|
3885
|
+
label?: string | undefined;
|
|
3886
|
+
defaultValue?: string[] | undefined;
|
|
3887
|
+
readOnly?: boolean | undefined;
|
|
3654
3888
|
} | {
|
|
3655
3889
|
type: "number";
|
|
3890
|
+
label?: string | undefined;
|
|
3656
3891
|
minimum?: number | undefined;
|
|
3657
3892
|
maximum?: number | undefined;
|
|
3893
|
+
defaultValue?: number | undefined;
|
|
3658
3894
|
step?: number | undefined;
|
|
3895
|
+
readOnly?: boolean | undefined;
|
|
3659
3896
|
} | {
|
|
3660
3897
|
type: "boolean";
|
|
3898
|
+
label?: string | undefined;
|
|
3661
3899
|
labels?: {
|
|
3662
3900
|
false: string;
|
|
3663
3901
|
true: string;
|
|
3664
3902
|
} | undefined;
|
|
3903
|
+
defaultValue?: boolean | undefined;
|
|
3904
|
+
readOnly?: boolean | undefined;
|
|
3665
3905
|
};
|
|
3666
3906
|
data?: {
|
|
3667
3907
|
type?: "number" | "percentage" | undefined;
|
|
@@ -3723,6 +3963,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3723
3963
|
intro?: string | undefined;
|
|
3724
3964
|
outro?: string | undefined;
|
|
3725
3965
|
}[];
|
|
3966
|
+
label?: string | undefined;
|
|
3967
|
+
defaultValue?: string | undefined;
|
|
3968
|
+
readOnly?: boolean | undefined;
|
|
3726
3969
|
} | {
|
|
3727
3970
|
type: "select-multiple";
|
|
3728
3971
|
options: {
|
|
@@ -3732,17 +3975,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3732
3975
|
intro?: string | undefined;
|
|
3733
3976
|
outro?: string | undefined;
|
|
3734
3977
|
}[];
|
|
3978
|
+
label?: string | undefined;
|
|
3979
|
+
defaultValue?: string[] | undefined;
|
|
3980
|
+
readOnly?: boolean | undefined;
|
|
3735
3981
|
} | {
|
|
3736
3982
|
type: "number";
|
|
3983
|
+
label?: string | undefined;
|
|
3737
3984
|
minimum?: number | undefined;
|
|
3738
3985
|
maximum?: number | undefined;
|
|
3986
|
+
defaultValue?: number | undefined;
|
|
3739
3987
|
step?: number | undefined;
|
|
3988
|
+
readOnly?: boolean | undefined;
|
|
3740
3989
|
} | {
|
|
3741
3990
|
type: "boolean";
|
|
3991
|
+
label?: string | undefined;
|
|
3742
3992
|
labels?: {
|
|
3743
3993
|
false: string;
|
|
3744
3994
|
true: string;
|
|
3745
3995
|
} | undefined;
|
|
3996
|
+
defaultValue?: boolean | undefined;
|
|
3997
|
+
readOnly?: boolean | undefined;
|
|
3746
3998
|
};
|
|
3747
3999
|
data?: {
|
|
3748
4000
|
type?: "number" | "percentage" | undefined;
|
|
@@ -3831,6 +4083,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3831
4083
|
intro?: string | undefined;
|
|
3832
4084
|
outro?: string | undefined;
|
|
3833
4085
|
}[];
|
|
4086
|
+
label?: string | undefined;
|
|
4087
|
+
defaultValue?: string | undefined;
|
|
4088
|
+
readOnly?: boolean | undefined;
|
|
3834
4089
|
} | {
|
|
3835
4090
|
type: "select-multiple";
|
|
3836
4091
|
options: {
|
|
@@ -3840,17 +4095,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3840
4095
|
intro?: string | undefined;
|
|
3841
4096
|
outro?: string | undefined;
|
|
3842
4097
|
}[];
|
|
4098
|
+
label?: string | undefined;
|
|
4099
|
+
defaultValue?: string[] | undefined;
|
|
4100
|
+
readOnly?: boolean | undefined;
|
|
3843
4101
|
} | {
|
|
3844
4102
|
type: "number";
|
|
4103
|
+
label?: string | undefined;
|
|
3845
4104
|
minimum?: number | undefined;
|
|
3846
4105
|
maximum?: number | undefined;
|
|
4106
|
+
defaultValue?: number | undefined;
|
|
3847
4107
|
step?: number | undefined;
|
|
4108
|
+
readOnly?: boolean | undefined;
|
|
3848
4109
|
} | {
|
|
3849
4110
|
type: "boolean";
|
|
4111
|
+
label?: string | undefined;
|
|
3850
4112
|
labels?: {
|
|
3851
4113
|
false: string;
|
|
3852
4114
|
true: string;
|
|
3853
4115
|
} | undefined;
|
|
4116
|
+
defaultValue?: boolean | undefined;
|
|
4117
|
+
readOnly?: boolean | undefined;
|
|
3854
4118
|
};
|
|
3855
4119
|
data?: {
|
|
3856
4120
|
type?: "number" | "percentage" | undefined;
|
|
@@ -3954,6 +4218,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3954
4218
|
intro?: string | undefined;
|
|
3955
4219
|
outro?: string | undefined;
|
|
3956
4220
|
}[];
|
|
4221
|
+
label?: string | undefined;
|
|
4222
|
+
defaultValue?: string | undefined;
|
|
4223
|
+
readOnly?: boolean | undefined;
|
|
3957
4224
|
} | {
|
|
3958
4225
|
type: "select-multiple";
|
|
3959
4226
|
options: {
|
|
@@ -3963,17 +4230,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3963
4230
|
intro?: string | undefined;
|
|
3964
4231
|
outro?: string | undefined;
|
|
3965
4232
|
}[];
|
|
4233
|
+
label?: string | undefined;
|
|
4234
|
+
defaultValue?: string[] | undefined;
|
|
4235
|
+
readOnly?: boolean | undefined;
|
|
3966
4236
|
} | {
|
|
3967
4237
|
type: "number";
|
|
4238
|
+
label?: string | undefined;
|
|
3968
4239
|
minimum?: number | undefined;
|
|
3969
4240
|
maximum?: number | undefined;
|
|
4241
|
+
defaultValue?: number | undefined;
|
|
3970
4242
|
step?: number | undefined;
|
|
4243
|
+
readOnly?: boolean | undefined;
|
|
3971
4244
|
} | {
|
|
3972
4245
|
type: "boolean";
|
|
4246
|
+
label?: string | undefined;
|
|
3973
4247
|
labels?: {
|
|
3974
4248
|
false: string;
|
|
3975
4249
|
true: string;
|
|
3976
4250
|
} | undefined;
|
|
4251
|
+
defaultValue?: boolean | undefined;
|
|
4252
|
+
readOnly?: boolean | undefined;
|
|
3977
4253
|
};
|
|
3978
4254
|
data?: {
|
|
3979
4255
|
type?: "number" | "percentage" | undefined;
|
|
@@ -4102,6 +4378,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4102
4378
|
intro?: string | undefined;
|
|
4103
4379
|
outro?: string | undefined;
|
|
4104
4380
|
}[];
|
|
4381
|
+
label?: string | undefined;
|
|
4382
|
+
defaultValue?: string | undefined;
|
|
4383
|
+
readOnly?: boolean | undefined;
|
|
4105
4384
|
} | {
|
|
4106
4385
|
type: "select-multiple";
|
|
4107
4386
|
options: {
|
|
@@ -4111,17 +4390,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4111
4390
|
intro?: string | undefined;
|
|
4112
4391
|
outro?: string | undefined;
|
|
4113
4392
|
}[];
|
|
4393
|
+
label?: string | undefined;
|
|
4394
|
+
defaultValue?: string[] | undefined;
|
|
4395
|
+
readOnly?: boolean | undefined;
|
|
4114
4396
|
} | {
|
|
4115
4397
|
type: "number";
|
|
4398
|
+
label?: string | undefined;
|
|
4116
4399
|
minimum?: number | undefined;
|
|
4117
4400
|
maximum?: number | undefined;
|
|
4401
|
+
defaultValue?: number | undefined;
|
|
4118
4402
|
step?: number | undefined;
|
|
4403
|
+
readOnly?: boolean | undefined;
|
|
4119
4404
|
} | {
|
|
4120
4405
|
type: "boolean";
|
|
4406
|
+
label?: string | undefined;
|
|
4121
4407
|
labels?: {
|
|
4122
4408
|
false: string;
|
|
4123
4409
|
true: string;
|
|
4124
4410
|
} | undefined;
|
|
4411
|
+
defaultValue?: boolean | undefined;
|
|
4412
|
+
readOnly?: boolean | undefined;
|
|
4125
4413
|
};
|
|
4126
4414
|
data?: {
|
|
4127
4415
|
type?: "number" | "percentage" | undefined;
|
|
@@ -4265,6 +4553,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4265
4553
|
intro?: string | undefined;
|
|
4266
4554
|
outro?: string | undefined;
|
|
4267
4555
|
}[];
|
|
4556
|
+
label?: string | undefined;
|
|
4557
|
+
defaultValue?: string | undefined;
|
|
4558
|
+
readOnly?: boolean | undefined;
|
|
4268
4559
|
} | {
|
|
4269
4560
|
type: "select-multiple";
|
|
4270
4561
|
options: {
|
|
@@ -4274,17 +4565,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4274
4565
|
intro?: string | undefined;
|
|
4275
4566
|
outro?: string | undefined;
|
|
4276
4567
|
}[];
|
|
4568
|
+
label?: string | undefined;
|
|
4569
|
+
defaultValue?: string[] | undefined;
|
|
4570
|
+
readOnly?: boolean | undefined;
|
|
4277
4571
|
} | {
|
|
4278
4572
|
type: "number";
|
|
4573
|
+
label?: string | undefined;
|
|
4279
4574
|
minimum?: number | undefined;
|
|
4280
4575
|
maximum?: number | undefined;
|
|
4576
|
+
defaultValue?: number | undefined;
|
|
4281
4577
|
step?: number | undefined;
|
|
4578
|
+
readOnly?: boolean | undefined;
|
|
4282
4579
|
} | {
|
|
4283
4580
|
type: "boolean";
|
|
4581
|
+
label?: string | undefined;
|
|
4284
4582
|
labels?: {
|
|
4285
4583
|
false: string;
|
|
4286
4584
|
true: string;
|
|
4287
4585
|
} | undefined;
|
|
4586
|
+
defaultValue?: boolean | undefined;
|
|
4587
|
+
readOnly?: boolean | undefined;
|
|
4288
4588
|
};
|
|
4289
4589
|
data?: {
|
|
4290
4590
|
type?: "number" | "percentage" | undefined;
|
|
@@ -4452,6 +4752,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4452
4752
|
intro?: string | undefined;
|
|
4453
4753
|
outro?: string | undefined;
|
|
4454
4754
|
}[];
|
|
4755
|
+
label?: string | undefined;
|
|
4756
|
+
defaultValue?: string | undefined;
|
|
4757
|
+
readOnly?: boolean | undefined;
|
|
4455
4758
|
} | {
|
|
4456
4759
|
type: "select-multiple";
|
|
4457
4760
|
options: {
|
|
@@ -4461,17 +4764,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4461
4764
|
intro?: string | undefined;
|
|
4462
4765
|
outro?: string | undefined;
|
|
4463
4766
|
}[];
|
|
4767
|
+
label?: string | undefined;
|
|
4768
|
+
defaultValue?: string[] | undefined;
|
|
4769
|
+
readOnly?: boolean | undefined;
|
|
4464
4770
|
} | {
|
|
4465
4771
|
type: "number";
|
|
4772
|
+
label?: string | undefined;
|
|
4466
4773
|
minimum?: number | undefined;
|
|
4467
4774
|
maximum?: number | undefined;
|
|
4775
|
+
defaultValue?: number | undefined;
|
|
4468
4776
|
step?: number | undefined;
|
|
4777
|
+
readOnly?: boolean | undefined;
|
|
4469
4778
|
} | {
|
|
4470
4779
|
type: "boolean";
|
|
4780
|
+
label?: string | undefined;
|
|
4471
4781
|
labels?: {
|
|
4472
4782
|
false: string;
|
|
4473
4783
|
true: string;
|
|
4474
4784
|
} | undefined;
|
|
4785
|
+
defaultValue?: boolean | undefined;
|
|
4786
|
+
readOnly?: boolean | undefined;
|
|
4475
4787
|
};
|
|
4476
4788
|
data?: {
|
|
4477
4789
|
type?: "number" | "percentage" | undefined;
|
|
@@ -4654,6 +4966,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4654
4966
|
intro?: string | undefined;
|
|
4655
4967
|
outro?: string | undefined;
|
|
4656
4968
|
}[];
|
|
4969
|
+
label?: string | undefined;
|
|
4970
|
+
defaultValue?: string | undefined;
|
|
4971
|
+
readOnly?: boolean | undefined;
|
|
4657
4972
|
} | {
|
|
4658
4973
|
type: "select-multiple";
|
|
4659
4974
|
options: {
|
|
@@ -4663,17 +4978,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4663
4978
|
intro?: string | undefined;
|
|
4664
4979
|
outro?: string | undefined;
|
|
4665
4980
|
}[];
|
|
4981
|
+
label?: string | undefined;
|
|
4982
|
+
defaultValue?: string[] | undefined;
|
|
4983
|
+
readOnly?: boolean | undefined;
|
|
4666
4984
|
} | {
|
|
4667
4985
|
type: "number";
|
|
4986
|
+
label?: string | undefined;
|
|
4668
4987
|
minimum?: number | undefined;
|
|
4669
4988
|
maximum?: number | undefined;
|
|
4989
|
+
defaultValue?: number | undefined;
|
|
4670
4990
|
step?: number | undefined;
|
|
4991
|
+
readOnly?: boolean | undefined;
|
|
4671
4992
|
} | {
|
|
4672
4993
|
type: "boolean";
|
|
4994
|
+
label?: string | undefined;
|
|
4673
4995
|
labels?: {
|
|
4674
4996
|
false: string;
|
|
4675
4997
|
true: string;
|
|
4676
4998
|
} | undefined;
|
|
4999
|
+
defaultValue?: boolean | undefined;
|
|
5000
|
+
readOnly?: boolean | undefined;
|
|
4677
5001
|
};
|
|
4678
5002
|
data?: {
|
|
4679
5003
|
type?: "number" | "percentage" | undefined;
|
|
@@ -4892,6 +5216,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4892
5216
|
intro?: string | undefined;
|
|
4893
5217
|
outro?: string | undefined;
|
|
4894
5218
|
}[];
|
|
5219
|
+
label?: string | undefined;
|
|
5220
|
+
defaultValue?: string | undefined;
|
|
5221
|
+
readOnly?: boolean | undefined;
|
|
4895
5222
|
} | {
|
|
4896
5223
|
type: "select-multiple";
|
|
4897
5224
|
options: {
|
|
@@ -4901,17 +5228,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4901
5228
|
intro?: string | undefined;
|
|
4902
5229
|
outro?: string | undefined;
|
|
4903
5230
|
}[];
|
|
5231
|
+
label?: string | undefined;
|
|
5232
|
+
defaultValue?: string[] | undefined;
|
|
5233
|
+
readOnly?: boolean | undefined;
|
|
4904
5234
|
} | {
|
|
4905
5235
|
type: "number";
|
|
5236
|
+
label?: string | undefined;
|
|
4906
5237
|
minimum?: number | undefined;
|
|
4907
5238
|
maximum?: number | undefined;
|
|
5239
|
+
defaultValue?: number | undefined;
|
|
4908
5240
|
step?: number | undefined;
|
|
5241
|
+
readOnly?: boolean | undefined;
|
|
4909
5242
|
} | {
|
|
4910
5243
|
type: "boolean";
|
|
5244
|
+
label?: string | undefined;
|
|
4911
5245
|
labels?: {
|
|
4912
5246
|
false: string;
|
|
4913
5247
|
true: string;
|
|
4914
5248
|
} | undefined;
|
|
5249
|
+
defaultValue?: boolean | undefined;
|
|
5250
|
+
readOnly?: boolean | undefined;
|
|
4915
5251
|
};
|
|
4916
5252
|
data?: {
|
|
4917
5253
|
type?: "number" | "percentage" | undefined;
|
|
@@ -5512,6 +5848,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5512
5848
|
}>>;
|
|
5513
5849
|
definition: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
5514
5850
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
5851
|
+
label: z.ZodOptional<z.ZodString>;
|
|
5852
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
5515
5853
|
}, {
|
|
5516
5854
|
type: z.ZodLiteral<"select-single">;
|
|
5517
5855
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -5533,6 +5871,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5533
5871
|
intro?: string | undefined;
|
|
5534
5872
|
outro?: string | undefined;
|
|
5535
5873
|
}>, "many">;
|
|
5874
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
5536
5875
|
}>, "strip", z.ZodTypeAny, {
|
|
5537
5876
|
type: "select-single";
|
|
5538
5877
|
options: {
|
|
@@ -5542,6 +5881,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5542
5881
|
intro?: string | undefined;
|
|
5543
5882
|
outro?: string | undefined;
|
|
5544
5883
|
}[];
|
|
5884
|
+
label?: string | undefined;
|
|
5885
|
+
defaultValue?: string | undefined;
|
|
5886
|
+
readOnly?: boolean | undefined;
|
|
5545
5887
|
}, {
|
|
5546
5888
|
type: "select-single";
|
|
5547
5889
|
options: {
|
|
@@ -5551,8 +5893,13 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5551
5893
|
intro?: string | undefined;
|
|
5552
5894
|
outro?: string | undefined;
|
|
5553
5895
|
}[];
|
|
5896
|
+
label?: string | undefined;
|
|
5897
|
+
defaultValue?: string | undefined;
|
|
5898
|
+
readOnly?: boolean | undefined;
|
|
5554
5899
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5555
5900
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
5901
|
+
label: z.ZodOptional<z.ZodString>;
|
|
5902
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
5556
5903
|
}, {
|
|
5557
5904
|
type: z.ZodLiteral<"select-multiple">;
|
|
5558
5905
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -5574,6 +5921,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5574
5921
|
intro?: string | undefined;
|
|
5575
5922
|
outro?: string | undefined;
|
|
5576
5923
|
}>, "many">;
|
|
5924
|
+
defaultValue: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5577
5925
|
}>, "strip", z.ZodTypeAny, {
|
|
5578
5926
|
type: "select-multiple";
|
|
5579
5927
|
options: {
|
|
@@ -5583,6 +5931,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5583
5931
|
intro?: string | undefined;
|
|
5584
5932
|
outro?: string | undefined;
|
|
5585
5933
|
}[];
|
|
5934
|
+
label?: string | undefined;
|
|
5935
|
+
defaultValue?: string[] | undefined;
|
|
5936
|
+
readOnly?: boolean | undefined;
|
|
5586
5937
|
}, {
|
|
5587
5938
|
type: "select-multiple";
|
|
5588
5939
|
options: {
|
|
@@ -5592,25 +5943,39 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5592
5943
|
intro?: string | undefined;
|
|
5593
5944
|
outro?: string | undefined;
|
|
5594
5945
|
}[];
|
|
5946
|
+
label?: string | undefined;
|
|
5947
|
+
defaultValue?: string[] | undefined;
|
|
5948
|
+
readOnly?: boolean | undefined;
|
|
5595
5949
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5596
5950
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
5951
|
+
label: z.ZodOptional<z.ZodString>;
|
|
5952
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
5597
5953
|
}, {
|
|
5598
5954
|
type: z.ZodLiteral<"number">;
|
|
5599
5955
|
minimum: z.ZodOptional<z.ZodNumber>;
|
|
5600
5956
|
maximum: z.ZodOptional<z.ZodNumber>;
|
|
5601
5957
|
step: z.ZodOptional<z.ZodNumber>;
|
|
5958
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
5602
5959
|
}>, "strip", z.ZodTypeAny, {
|
|
5603
5960
|
type: "number";
|
|
5961
|
+
label?: string | undefined;
|
|
5604
5962
|
minimum?: number | undefined;
|
|
5605
5963
|
maximum?: number | undefined;
|
|
5964
|
+
defaultValue?: number | undefined;
|
|
5606
5965
|
step?: number | undefined;
|
|
5966
|
+
readOnly?: boolean | undefined;
|
|
5607
5967
|
}, {
|
|
5608
5968
|
type: "number";
|
|
5969
|
+
label?: string | undefined;
|
|
5609
5970
|
minimum?: number | undefined;
|
|
5610
5971
|
maximum?: number | undefined;
|
|
5972
|
+
defaultValue?: number | undefined;
|
|
5611
5973
|
step?: number | undefined;
|
|
5974
|
+
readOnly?: boolean | undefined;
|
|
5612
5975
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5613
5976
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
5977
|
+
label: z.ZodOptional<z.ZodString>;
|
|
5978
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
5614
5979
|
}, {
|
|
5615
5980
|
type: z.ZodLiteral<"boolean">;
|
|
5616
5981
|
labels: z.ZodOptional<z.ZodObject<{
|
|
@@ -5623,18 +5988,25 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5623
5988
|
false: string;
|
|
5624
5989
|
true: string;
|
|
5625
5990
|
}>>;
|
|
5991
|
+
defaultValue: z.ZodOptional<z.ZodBoolean>;
|
|
5626
5992
|
}>, "strip", z.ZodTypeAny, {
|
|
5627
5993
|
type: "boolean";
|
|
5994
|
+
label?: string | undefined;
|
|
5628
5995
|
labels?: {
|
|
5629
5996
|
false: string;
|
|
5630
5997
|
true: string;
|
|
5631
5998
|
} | undefined;
|
|
5999
|
+
defaultValue?: boolean | undefined;
|
|
6000
|
+
readOnly?: boolean | undefined;
|
|
5632
6001
|
}, {
|
|
5633
6002
|
type: "boolean";
|
|
6003
|
+
label?: string | undefined;
|
|
5634
6004
|
labels?: {
|
|
5635
6005
|
false: string;
|
|
5636
6006
|
true: string;
|
|
5637
6007
|
} | undefined;
|
|
6008
|
+
defaultValue?: boolean | undefined;
|
|
6009
|
+
readOnly?: boolean | undefined;
|
|
5638
6010
|
}>]>;
|
|
5639
6011
|
description: z.ZodOptional<z.ZodString>;
|
|
5640
6012
|
valueReference: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>;
|
|
@@ -5657,6 +6029,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5657
6029
|
intro?: string | undefined;
|
|
5658
6030
|
outro?: string | undefined;
|
|
5659
6031
|
}[];
|
|
6032
|
+
label?: string | undefined;
|
|
6033
|
+
defaultValue?: string | undefined;
|
|
6034
|
+
readOnly?: boolean | undefined;
|
|
5660
6035
|
} | {
|
|
5661
6036
|
type: "select-multiple";
|
|
5662
6037
|
options: {
|
|
@@ -5666,17 +6041,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5666
6041
|
intro?: string | undefined;
|
|
5667
6042
|
outro?: string | undefined;
|
|
5668
6043
|
}[];
|
|
6044
|
+
label?: string | undefined;
|
|
6045
|
+
defaultValue?: string[] | undefined;
|
|
6046
|
+
readOnly?: boolean | undefined;
|
|
5669
6047
|
} | {
|
|
5670
6048
|
type: "number";
|
|
6049
|
+
label?: string | undefined;
|
|
5671
6050
|
minimum?: number | undefined;
|
|
5672
6051
|
maximum?: number | undefined;
|
|
6052
|
+
defaultValue?: number | undefined;
|
|
5673
6053
|
step?: number | undefined;
|
|
6054
|
+
readOnly?: boolean | undefined;
|
|
5674
6055
|
} | {
|
|
5675
6056
|
type: "boolean";
|
|
6057
|
+
label?: string | undefined;
|
|
5676
6058
|
labels?: {
|
|
5677
6059
|
false: string;
|
|
5678
6060
|
true: string;
|
|
5679
6061
|
} | undefined;
|
|
6062
|
+
defaultValue?: boolean | undefined;
|
|
6063
|
+
readOnly?: boolean | undefined;
|
|
5680
6064
|
};
|
|
5681
6065
|
data?: {
|
|
5682
6066
|
type?: "number" | "percentage" | undefined;
|
|
@@ -5726,6 +6110,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5726
6110
|
intro?: string | undefined;
|
|
5727
6111
|
outro?: string | undefined;
|
|
5728
6112
|
}[];
|
|
6113
|
+
label?: string | undefined;
|
|
6114
|
+
defaultValue?: string | undefined;
|
|
6115
|
+
readOnly?: boolean | undefined;
|
|
5729
6116
|
} | {
|
|
5730
6117
|
type: "select-multiple";
|
|
5731
6118
|
options: {
|
|
@@ -5735,17 +6122,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5735
6122
|
intro?: string | undefined;
|
|
5736
6123
|
outro?: string | undefined;
|
|
5737
6124
|
}[];
|
|
6125
|
+
label?: string | undefined;
|
|
6126
|
+
defaultValue?: string[] | undefined;
|
|
6127
|
+
readOnly?: boolean | undefined;
|
|
5738
6128
|
} | {
|
|
5739
6129
|
type: "number";
|
|
6130
|
+
label?: string | undefined;
|
|
5740
6131
|
minimum?: number | undefined;
|
|
5741
6132
|
maximum?: number | undefined;
|
|
6133
|
+
defaultValue?: number | undefined;
|
|
5742
6134
|
step?: number | undefined;
|
|
6135
|
+
readOnly?: boolean | undefined;
|
|
5743
6136
|
} | {
|
|
5744
6137
|
type: "boolean";
|
|
6138
|
+
label?: string | undefined;
|
|
5745
6139
|
labels?: {
|
|
5746
6140
|
false: string;
|
|
5747
6141
|
true: string;
|
|
5748
6142
|
} | undefined;
|
|
6143
|
+
defaultValue?: boolean | undefined;
|
|
6144
|
+
readOnly?: boolean | undefined;
|
|
5749
6145
|
};
|
|
5750
6146
|
data?: {
|
|
5751
6147
|
type?: "number" | "percentage" | undefined;
|
|
@@ -5807,6 +6203,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5807
6203
|
intro?: string | undefined;
|
|
5808
6204
|
outro?: string | undefined;
|
|
5809
6205
|
}[];
|
|
6206
|
+
label?: string | undefined;
|
|
6207
|
+
defaultValue?: string | undefined;
|
|
6208
|
+
readOnly?: boolean | undefined;
|
|
5810
6209
|
} | {
|
|
5811
6210
|
type: "select-multiple";
|
|
5812
6211
|
options: {
|
|
@@ -5816,17 +6215,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5816
6215
|
intro?: string | undefined;
|
|
5817
6216
|
outro?: string | undefined;
|
|
5818
6217
|
}[];
|
|
6218
|
+
label?: string | undefined;
|
|
6219
|
+
defaultValue?: string[] | undefined;
|
|
6220
|
+
readOnly?: boolean | undefined;
|
|
5819
6221
|
} | {
|
|
5820
6222
|
type: "number";
|
|
6223
|
+
label?: string | undefined;
|
|
5821
6224
|
minimum?: number | undefined;
|
|
5822
6225
|
maximum?: number | undefined;
|
|
6226
|
+
defaultValue?: number | undefined;
|
|
5823
6227
|
step?: number | undefined;
|
|
6228
|
+
readOnly?: boolean | undefined;
|
|
5824
6229
|
} | {
|
|
5825
6230
|
type: "boolean";
|
|
6231
|
+
label?: string | undefined;
|
|
5826
6232
|
labels?: {
|
|
5827
6233
|
false: string;
|
|
5828
6234
|
true: string;
|
|
5829
6235
|
} | undefined;
|
|
6236
|
+
defaultValue?: boolean | undefined;
|
|
6237
|
+
readOnly?: boolean | undefined;
|
|
5830
6238
|
};
|
|
5831
6239
|
data?: {
|
|
5832
6240
|
type?: "number" | "percentage" | undefined;
|
|
@@ -5915,6 +6323,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5915
6323
|
intro?: string | undefined;
|
|
5916
6324
|
outro?: string | undefined;
|
|
5917
6325
|
}[];
|
|
6326
|
+
label?: string | undefined;
|
|
6327
|
+
defaultValue?: string | undefined;
|
|
6328
|
+
readOnly?: boolean | undefined;
|
|
5918
6329
|
} | {
|
|
5919
6330
|
type: "select-multiple";
|
|
5920
6331
|
options: {
|
|
@@ -5924,17 +6335,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5924
6335
|
intro?: string | undefined;
|
|
5925
6336
|
outro?: string | undefined;
|
|
5926
6337
|
}[];
|
|
6338
|
+
label?: string | undefined;
|
|
6339
|
+
defaultValue?: string[] | undefined;
|
|
6340
|
+
readOnly?: boolean | undefined;
|
|
5927
6341
|
} | {
|
|
5928
6342
|
type: "number";
|
|
6343
|
+
label?: string | undefined;
|
|
5929
6344
|
minimum?: number | undefined;
|
|
5930
6345
|
maximum?: number | undefined;
|
|
6346
|
+
defaultValue?: number | undefined;
|
|
5931
6347
|
step?: number | undefined;
|
|
6348
|
+
readOnly?: boolean | undefined;
|
|
5932
6349
|
} | {
|
|
5933
6350
|
type: "boolean";
|
|
6351
|
+
label?: string | undefined;
|
|
5934
6352
|
labels?: {
|
|
5935
6353
|
false: string;
|
|
5936
6354
|
true: string;
|
|
5937
6355
|
} | undefined;
|
|
6356
|
+
defaultValue?: boolean | undefined;
|
|
6357
|
+
readOnly?: boolean | undefined;
|
|
5938
6358
|
};
|
|
5939
6359
|
data?: {
|
|
5940
6360
|
type?: "number" | "percentage" | undefined;
|
|
@@ -6038,6 +6458,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6038
6458
|
intro?: string | undefined;
|
|
6039
6459
|
outro?: string | undefined;
|
|
6040
6460
|
}[];
|
|
6461
|
+
label?: string | undefined;
|
|
6462
|
+
defaultValue?: string | undefined;
|
|
6463
|
+
readOnly?: boolean | undefined;
|
|
6041
6464
|
} | {
|
|
6042
6465
|
type: "select-multiple";
|
|
6043
6466
|
options: {
|
|
@@ -6047,17 +6470,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6047
6470
|
intro?: string | undefined;
|
|
6048
6471
|
outro?: string | undefined;
|
|
6049
6472
|
}[];
|
|
6473
|
+
label?: string | undefined;
|
|
6474
|
+
defaultValue?: string[] | undefined;
|
|
6475
|
+
readOnly?: boolean | undefined;
|
|
6050
6476
|
} | {
|
|
6051
6477
|
type: "number";
|
|
6478
|
+
label?: string | undefined;
|
|
6052
6479
|
minimum?: number | undefined;
|
|
6053
6480
|
maximum?: number | undefined;
|
|
6481
|
+
defaultValue?: number | undefined;
|
|
6054
6482
|
step?: number | undefined;
|
|
6483
|
+
readOnly?: boolean | undefined;
|
|
6055
6484
|
} | {
|
|
6056
6485
|
type: "boolean";
|
|
6486
|
+
label?: string | undefined;
|
|
6057
6487
|
labels?: {
|
|
6058
6488
|
false: string;
|
|
6059
6489
|
true: string;
|
|
6060
6490
|
} | undefined;
|
|
6491
|
+
defaultValue?: boolean | undefined;
|
|
6492
|
+
readOnly?: boolean | undefined;
|
|
6061
6493
|
};
|
|
6062
6494
|
data?: {
|
|
6063
6495
|
type?: "number" | "percentage" | undefined;
|
|
@@ -6186,6 +6618,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6186
6618
|
intro?: string | undefined;
|
|
6187
6619
|
outro?: string | undefined;
|
|
6188
6620
|
}[];
|
|
6621
|
+
label?: string | undefined;
|
|
6622
|
+
defaultValue?: string | undefined;
|
|
6623
|
+
readOnly?: boolean | undefined;
|
|
6189
6624
|
} | {
|
|
6190
6625
|
type: "select-multiple";
|
|
6191
6626
|
options: {
|
|
@@ -6195,17 +6630,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6195
6630
|
intro?: string | undefined;
|
|
6196
6631
|
outro?: string | undefined;
|
|
6197
6632
|
}[];
|
|
6633
|
+
label?: string | undefined;
|
|
6634
|
+
defaultValue?: string[] | undefined;
|
|
6635
|
+
readOnly?: boolean | undefined;
|
|
6198
6636
|
} | {
|
|
6199
6637
|
type: "number";
|
|
6638
|
+
label?: string | undefined;
|
|
6200
6639
|
minimum?: number | undefined;
|
|
6201
6640
|
maximum?: number | undefined;
|
|
6641
|
+
defaultValue?: number | undefined;
|
|
6202
6642
|
step?: number | undefined;
|
|
6643
|
+
readOnly?: boolean | undefined;
|
|
6203
6644
|
} | {
|
|
6204
6645
|
type: "boolean";
|
|
6646
|
+
label?: string | undefined;
|
|
6205
6647
|
labels?: {
|
|
6206
6648
|
false: string;
|
|
6207
6649
|
true: string;
|
|
6208
6650
|
} | undefined;
|
|
6651
|
+
defaultValue?: boolean | undefined;
|
|
6652
|
+
readOnly?: boolean | undefined;
|
|
6209
6653
|
};
|
|
6210
6654
|
data?: {
|
|
6211
6655
|
type?: "number" | "percentage" | undefined;
|
|
@@ -6349,6 +6793,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6349
6793
|
intro?: string | undefined;
|
|
6350
6794
|
outro?: string | undefined;
|
|
6351
6795
|
}[];
|
|
6796
|
+
label?: string | undefined;
|
|
6797
|
+
defaultValue?: string | undefined;
|
|
6798
|
+
readOnly?: boolean | undefined;
|
|
6352
6799
|
} | {
|
|
6353
6800
|
type: "select-multiple";
|
|
6354
6801
|
options: {
|
|
@@ -6358,17 +6805,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6358
6805
|
intro?: string | undefined;
|
|
6359
6806
|
outro?: string | undefined;
|
|
6360
6807
|
}[];
|
|
6808
|
+
label?: string | undefined;
|
|
6809
|
+
defaultValue?: string[] | undefined;
|
|
6810
|
+
readOnly?: boolean | undefined;
|
|
6361
6811
|
} | {
|
|
6362
6812
|
type: "number";
|
|
6813
|
+
label?: string | undefined;
|
|
6363
6814
|
minimum?: number | undefined;
|
|
6364
6815
|
maximum?: number | undefined;
|
|
6816
|
+
defaultValue?: number | undefined;
|
|
6365
6817
|
step?: number | undefined;
|
|
6818
|
+
readOnly?: boolean | undefined;
|
|
6366
6819
|
} | {
|
|
6367
6820
|
type: "boolean";
|
|
6821
|
+
label?: string | undefined;
|
|
6368
6822
|
labels?: {
|
|
6369
6823
|
false: string;
|
|
6370
6824
|
true: string;
|
|
6371
6825
|
} | undefined;
|
|
6826
|
+
defaultValue?: boolean | undefined;
|
|
6827
|
+
readOnly?: boolean | undefined;
|
|
6372
6828
|
};
|
|
6373
6829
|
data?: {
|
|
6374
6830
|
type?: "number" | "percentage" | undefined;
|
|
@@ -6536,6 +6992,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6536
6992
|
intro?: string | undefined;
|
|
6537
6993
|
outro?: string | undefined;
|
|
6538
6994
|
}[];
|
|
6995
|
+
label?: string | undefined;
|
|
6996
|
+
defaultValue?: string | undefined;
|
|
6997
|
+
readOnly?: boolean | undefined;
|
|
6539
6998
|
} | {
|
|
6540
6999
|
type: "select-multiple";
|
|
6541
7000
|
options: {
|
|
@@ -6545,17 +7004,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6545
7004
|
intro?: string | undefined;
|
|
6546
7005
|
outro?: string | undefined;
|
|
6547
7006
|
}[];
|
|
7007
|
+
label?: string | undefined;
|
|
7008
|
+
defaultValue?: string[] | undefined;
|
|
7009
|
+
readOnly?: boolean | undefined;
|
|
6548
7010
|
} | {
|
|
6549
7011
|
type: "number";
|
|
7012
|
+
label?: string | undefined;
|
|
6550
7013
|
minimum?: number | undefined;
|
|
6551
7014
|
maximum?: number | undefined;
|
|
7015
|
+
defaultValue?: number | undefined;
|
|
6552
7016
|
step?: number | undefined;
|
|
7017
|
+
readOnly?: boolean | undefined;
|
|
6553
7018
|
} | {
|
|
6554
7019
|
type: "boolean";
|
|
7020
|
+
label?: string | undefined;
|
|
6555
7021
|
labels?: {
|
|
6556
7022
|
false: string;
|
|
6557
7023
|
true: string;
|
|
6558
7024
|
} | undefined;
|
|
7025
|
+
defaultValue?: boolean | undefined;
|
|
7026
|
+
readOnly?: boolean | undefined;
|
|
6559
7027
|
};
|
|
6560
7028
|
data?: {
|
|
6561
7029
|
type?: "number" | "percentage" | undefined;
|
|
@@ -7017,6 +7485,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7017
7485
|
}>>;
|
|
7018
7486
|
definition: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
7019
7487
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
7488
|
+
label: z.ZodOptional<z.ZodString>;
|
|
7489
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
7020
7490
|
}, {
|
|
7021
7491
|
type: z.ZodLiteral<"select-single">;
|
|
7022
7492
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -7038,6 +7508,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7038
7508
|
intro?: string | undefined;
|
|
7039
7509
|
outro?: string | undefined;
|
|
7040
7510
|
}>, "many">;
|
|
7511
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
7041
7512
|
}>, "strip", z.ZodTypeAny, {
|
|
7042
7513
|
type: "select-single";
|
|
7043
7514
|
options: {
|
|
@@ -7047,6 +7518,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7047
7518
|
intro?: string | undefined;
|
|
7048
7519
|
outro?: string | undefined;
|
|
7049
7520
|
}[];
|
|
7521
|
+
label?: string | undefined;
|
|
7522
|
+
defaultValue?: string | undefined;
|
|
7523
|
+
readOnly?: boolean | undefined;
|
|
7050
7524
|
}, {
|
|
7051
7525
|
type: "select-single";
|
|
7052
7526
|
options: {
|
|
@@ -7056,8 +7530,13 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7056
7530
|
intro?: string | undefined;
|
|
7057
7531
|
outro?: string | undefined;
|
|
7058
7532
|
}[];
|
|
7533
|
+
label?: string | undefined;
|
|
7534
|
+
defaultValue?: string | undefined;
|
|
7535
|
+
readOnly?: boolean | undefined;
|
|
7059
7536
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7060
7537
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
7538
|
+
label: z.ZodOptional<z.ZodString>;
|
|
7539
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
7061
7540
|
}, {
|
|
7062
7541
|
type: z.ZodLiteral<"select-multiple">;
|
|
7063
7542
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -7079,6 +7558,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7079
7558
|
intro?: string | undefined;
|
|
7080
7559
|
outro?: string | undefined;
|
|
7081
7560
|
}>, "many">;
|
|
7561
|
+
defaultValue: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7082
7562
|
}>, "strip", z.ZodTypeAny, {
|
|
7083
7563
|
type: "select-multiple";
|
|
7084
7564
|
options: {
|
|
@@ -7088,6 +7568,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7088
7568
|
intro?: string | undefined;
|
|
7089
7569
|
outro?: string | undefined;
|
|
7090
7570
|
}[];
|
|
7571
|
+
label?: string | undefined;
|
|
7572
|
+
defaultValue?: string[] | undefined;
|
|
7573
|
+
readOnly?: boolean | undefined;
|
|
7091
7574
|
}, {
|
|
7092
7575
|
type: "select-multiple";
|
|
7093
7576
|
options: {
|
|
@@ -7097,25 +7580,39 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7097
7580
|
intro?: string | undefined;
|
|
7098
7581
|
outro?: string | undefined;
|
|
7099
7582
|
}[];
|
|
7583
|
+
label?: string | undefined;
|
|
7584
|
+
defaultValue?: string[] | undefined;
|
|
7585
|
+
readOnly?: boolean | undefined;
|
|
7100
7586
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7101
7587
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
7588
|
+
label: z.ZodOptional<z.ZodString>;
|
|
7589
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
7102
7590
|
}, {
|
|
7103
7591
|
type: z.ZodLiteral<"number">;
|
|
7104
7592
|
minimum: z.ZodOptional<z.ZodNumber>;
|
|
7105
7593
|
maximum: z.ZodOptional<z.ZodNumber>;
|
|
7106
7594
|
step: z.ZodOptional<z.ZodNumber>;
|
|
7595
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
7107
7596
|
}>, "strip", z.ZodTypeAny, {
|
|
7108
7597
|
type: "number";
|
|
7598
|
+
label?: string | undefined;
|
|
7109
7599
|
minimum?: number | undefined;
|
|
7110
7600
|
maximum?: number | undefined;
|
|
7601
|
+
defaultValue?: number | undefined;
|
|
7111
7602
|
step?: number | undefined;
|
|
7603
|
+
readOnly?: boolean | undefined;
|
|
7112
7604
|
}, {
|
|
7113
7605
|
type: "number";
|
|
7606
|
+
label?: string | undefined;
|
|
7114
7607
|
minimum?: number | undefined;
|
|
7115
7608
|
maximum?: number | undefined;
|
|
7609
|
+
defaultValue?: number | undefined;
|
|
7116
7610
|
step?: number | undefined;
|
|
7611
|
+
readOnly?: boolean | undefined;
|
|
7117
7612
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7118
7613
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
7614
|
+
label: z.ZodOptional<z.ZodString>;
|
|
7615
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
7119
7616
|
}, {
|
|
7120
7617
|
type: z.ZodLiteral<"boolean">;
|
|
7121
7618
|
labels: z.ZodOptional<z.ZodObject<{
|
|
@@ -7128,18 +7625,25 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7128
7625
|
false: string;
|
|
7129
7626
|
true: string;
|
|
7130
7627
|
}>>;
|
|
7628
|
+
defaultValue: z.ZodOptional<z.ZodBoolean>;
|
|
7131
7629
|
}>, "strip", z.ZodTypeAny, {
|
|
7132
7630
|
type: "boolean";
|
|
7631
|
+
label?: string | undefined;
|
|
7133
7632
|
labels?: {
|
|
7134
7633
|
false: string;
|
|
7135
7634
|
true: string;
|
|
7136
7635
|
} | undefined;
|
|
7636
|
+
defaultValue?: boolean | undefined;
|
|
7637
|
+
readOnly?: boolean | undefined;
|
|
7137
7638
|
}, {
|
|
7138
7639
|
type: "boolean";
|
|
7640
|
+
label?: string | undefined;
|
|
7139
7641
|
labels?: {
|
|
7140
7642
|
false: string;
|
|
7141
7643
|
true: string;
|
|
7142
7644
|
} | undefined;
|
|
7645
|
+
defaultValue?: boolean | undefined;
|
|
7646
|
+
readOnly?: boolean | undefined;
|
|
7143
7647
|
}>]>;
|
|
7144
7648
|
description: z.ZodOptional<z.ZodString>;
|
|
7145
7649
|
valueReference: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>;
|
|
@@ -7162,6 +7666,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7162
7666
|
intro?: string | undefined;
|
|
7163
7667
|
outro?: string | undefined;
|
|
7164
7668
|
}[];
|
|
7669
|
+
label?: string | undefined;
|
|
7670
|
+
defaultValue?: string | undefined;
|
|
7671
|
+
readOnly?: boolean | undefined;
|
|
7165
7672
|
} | {
|
|
7166
7673
|
type: "select-multiple";
|
|
7167
7674
|
options: {
|
|
@@ -7171,17 +7678,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7171
7678
|
intro?: string | undefined;
|
|
7172
7679
|
outro?: string | undefined;
|
|
7173
7680
|
}[];
|
|
7681
|
+
label?: string | undefined;
|
|
7682
|
+
defaultValue?: string[] | undefined;
|
|
7683
|
+
readOnly?: boolean | undefined;
|
|
7174
7684
|
} | {
|
|
7175
7685
|
type: "number";
|
|
7686
|
+
label?: string | undefined;
|
|
7176
7687
|
minimum?: number | undefined;
|
|
7177
7688
|
maximum?: number | undefined;
|
|
7689
|
+
defaultValue?: number | undefined;
|
|
7178
7690
|
step?: number | undefined;
|
|
7691
|
+
readOnly?: boolean | undefined;
|
|
7179
7692
|
} | {
|
|
7180
7693
|
type: "boolean";
|
|
7694
|
+
label?: string | undefined;
|
|
7181
7695
|
labels?: {
|
|
7182
7696
|
false: string;
|
|
7183
7697
|
true: string;
|
|
7184
7698
|
} | undefined;
|
|
7699
|
+
defaultValue?: boolean | undefined;
|
|
7700
|
+
readOnly?: boolean | undefined;
|
|
7185
7701
|
};
|
|
7186
7702
|
data?: {
|
|
7187
7703
|
type?: "number" | "percentage" | undefined;
|
|
@@ -7231,6 +7747,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7231
7747
|
intro?: string | undefined;
|
|
7232
7748
|
outro?: string | undefined;
|
|
7233
7749
|
}[];
|
|
7750
|
+
label?: string | undefined;
|
|
7751
|
+
defaultValue?: string | undefined;
|
|
7752
|
+
readOnly?: boolean | undefined;
|
|
7234
7753
|
} | {
|
|
7235
7754
|
type: "select-multiple";
|
|
7236
7755
|
options: {
|
|
@@ -7240,17 +7759,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7240
7759
|
intro?: string | undefined;
|
|
7241
7760
|
outro?: string | undefined;
|
|
7242
7761
|
}[];
|
|
7762
|
+
label?: string | undefined;
|
|
7763
|
+
defaultValue?: string[] | undefined;
|
|
7764
|
+
readOnly?: boolean | undefined;
|
|
7243
7765
|
} | {
|
|
7244
7766
|
type: "number";
|
|
7767
|
+
label?: string | undefined;
|
|
7245
7768
|
minimum?: number | undefined;
|
|
7246
7769
|
maximum?: number | undefined;
|
|
7770
|
+
defaultValue?: number | undefined;
|
|
7247
7771
|
step?: number | undefined;
|
|
7772
|
+
readOnly?: boolean | undefined;
|
|
7248
7773
|
} | {
|
|
7249
7774
|
type: "boolean";
|
|
7775
|
+
label?: string | undefined;
|
|
7250
7776
|
labels?: {
|
|
7251
7777
|
false: string;
|
|
7252
7778
|
true: string;
|
|
7253
7779
|
} | undefined;
|
|
7780
|
+
defaultValue?: boolean | undefined;
|
|
7781
|
+
readOnly?: boolean | undefined;
|
|
7254
7782
|
};
|
|
7255
7783
|
data?: {
|
|
7256
7784
|
type?: "number" | "percentage" | undefined;
|
|
@@ -7312,6 +7840,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7312
7840
|
intro?: string | undefined;
|
|
7313
7841
|
outro?: string | undefined;
|
|
7314
7842
|
}[];
|
|
7843
|
+
label?: string | undefined;
|
|
7844
|
+
defaultValue?: string | undefined;
|
|
7845
|
+
readOnly?: boolean | undefined;
|
|
7315
7846
|
} | {
|
|
7316
7847
|
type: "select-multiple";
|
|
7317
7848
|
options: {
|
|
@@ -7321,17 +7852,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7321
7852
|
intro?: string | undefined;
|
|
7322
7853
|
outro?: string | undefined;
|
|
7323
7854
|
}[];
|
|
7855
|
+
label?: string | undefined;
|
|
7856
|
+
defaultValue?: string[] | undefined;
|
|
7857
|
+
readOnly?: boolean | undefined;
|
|
7324
7858
|
} | {
|
|
7325
7859
|
type: "number";
|
|
7860
|
+
label?: string | undefined;
|
|
7326
7861
|
minimum?: number | undefined;
|
|
7327
7862
|
maximum?: number | undefined;
|
|
7863
|
+
defaultValue?: number | undefined;
|
|
7328
7864
|
step?: number | undefined;
|
|
7865
|
+
readOnly?: boolean | undefined;
|
|
7329
7866
|
} | {
|
|
7330
7867
|
type: "boolean";
|
|
7868
|
+
label?: string | undefined;
|
|
7331
7869
|
labels?: {
|
|
7332
7870
|
false: string;
|
|
7333
7871
|
true: string;
|
|
7334
7872
|
} | undefined;
|
|
7873
|
+
defaultValue?: boolean | undefined;
|
|
7874
|
+
readOnly?: boolean | undefined;
|
|
7335
7875
|
};
|
|
7336
7876
|
data?: {
|
|
7337
7877
|
type?: "number" | "percentage" | undefined;
|
|
@@ -7420,6 +7960,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7420
7960
|
intro?: string | undefined;
|
|
7421
7961
|
outro?: string | undefined;
|
|
7422
7962
|
}[];
|
|
7963
|
+
label?: string | undefined;
|
|
7964
|
+
defaultValue?: string | undefined;
|
|
7965
|
+
readOnly?: boolean | undefined;
|
|
7423
7966
|
} | {
|
|
7424
7967
|
type: "select-multiple";
|
|
7425
7968
|
options: {
|
|
@@ -7429,17 +7972,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7429
7972
|
intro?: string | undefined;
|
|
7430
7973
|
outro?: string | undefined;
|
|
7431
7974
|
}[];
|
|
7975
|
+
label?: string | undefined;
|
|
7976
|
+
defaultValue?: string[] | undefined;
|
|
7977
|
+
readOnly?: boolean | undefined;
|
|
7432
7978
|
} | {
|
|
7433
7979
|
type: "number";
|
|
7980
|
+
label?: string | undefined;
|
|
7434
7981
|
minimum?: number | undefined;
|
|
7435
7982
|
maximum?: number | undefined;
|
|
7983
|
+
defaultValue?: number | undefined;
|
|
7436
7984
|
step?: number | undefined;
|
|
7985
|
+
readOnly?: boolean | undefined;
|
|
7437
7986
|
} | {
|
|
7438
7987
|
type: "boolean";
|
|
7988
|
+
label?: string | undefined;
|
|
7439
7989
|
labels?: {
|
|
7440
7990
|
false: string;
|
|
7441
7991
|
true: string;
|
|
7442
7992
|
} | undefined;
|
|
7993
|
+
defaultValue?: boolean | undefined;
|
|
7994
|
+
readOnly?: boolean | undefined;
|
|
7443
7995
|
};
|
|
7444
7996
|
data?: {
|
|
7445
7997
|
type?: "number" | "percentage" | undefined;
|
|
@@ -7543,6 +8095,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7543
8095
|
intro?: string | undefined;
|
|
7544
8096
|
outro?: string | undefined;
|
|
7545
8097
|
}[];
|
|
8098
|
+
label?: string | undefined;
|
|
8099
|
+
defaultValue?: string | undefined;
|
|
8100
|
+
readOnly?: boolean | undefined;
|
|
7546
8101
|
} | {
|
|
7547
8102
|
type: "select-multiple";
|
|
7548
8103
|
options: {
|
|
@@ -7552,17 +8107,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7552
8107
|
intro?: string | undefined;
|
|
7553
8108
|
outro?: string | undefined;
|
|
7554
8109
|
}[];
|
|
8110
|
+
label?: string | undefined;
|
|
8111
|
+
defaultValue?: string[] | undefined;
|
|
8112
|
+
readOnly?: boolean | undefined;
|
|
7555
8113
|
} | {
|
|
7556
8114
|
type: "number";
|
|
8115
|
+
label?: string | undefined;
|
|
7557
8116
|
minimum?: number | undefined;
|
|
7558
8117
|
maximum?: number | undefined;
|
|
8118
|
+
defaultValue?: number | undefined;
|
|
7559
8119
|
step?: number | undefined;
|
|
8120
|
+
readOnly?: boolean | undefined;
|
|
7560
8121
|
} | {
|
|
7561
8122
|
type: "boolean";
|
|
8123
|
+
label?: string | undefined;
|
|
7562
8124
|
labels?: {
|
|
7563
8125
|
false: string;
|
|
7564
8126
|
true: string;
|
|
7565
8127
|
} | undefined;
|
|
8128
|
+
defaultValue?: boolean | undefined;
|
|
8129
|
+
readOnly?: boolean | undefined;
|
|
7566
8130
|
};
|
|
7567
8131
|
data?: {
|
|
7568
8132
|
type?: "number" | "percentage" | undefined;
|
|
@@ -7691,6 +8255,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7691
8255
|
intro?: string | undefined;
|
|
7692
8256
|
outro?: string | undefined;
|
|
7693
8257
|
}[];
|
|
8258
|
+
label?: string | undefined;
|
|
8259
|
+
defaultValue?: string | undefined;
|
|
8260
|
+
readOnly?: boolean | undefined;
|
|
7694
8261
|
} | {
|
|
7695
8262
|
type: "select-multiple";
|
|
7696
8263
|
options: {
|
|
@@ -7700,17 +8267,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7700
8267
|
intro?: string | undefined;
|
|
7701
8268
|
outro?: string | undefined;
|
|
7702
8269
|
}[];
|
|
8270
|
+
label?: string | undefined;
|
|
8271
|
+
defaultValue?: string[] | undefined;
|
|
8272
|
+
readOnly?: boolean | undefined;
|
|
7703
8273
|
} | {
|
|
7704
8274
|
type: "number";
|
|
8275
|
+
label?: string | undefined;
|
|
7705
8276
|
minimum?: number | undefined;
|
|
7706
8277
|
maximum?: number | undefined;
|
|
8278
|
+
defaultValue?: number | undefined;
|
|
7707
8279
|
step?: number | undefined;
|
|
8280
|
+
readOnly?: boolean | undefined;
|
|
7708
8281
|
} | {
|
|
7709
8282
|
type: "boolean";
|
|
8283
|
+
label?: string | undefined;
|
|
7710
8284
|
labels?: {
|
|
7711
8285
|
false: string;
|
|
7712
8286
|
true: string;
|
|
7713
8287
|
} | undefined;
|
|
8288
|
+
defaultValue?: boolean | undefined;
|
|
8289
|
+
readOnly?: boolean | undefined;
|
|
7714
8290
|
};
|
|
7715
8291
|
data?: {
|
|
7716
8292
|
type?: "number" | "percentage" | undefined;
|
|
@@ -8044,6 +8620,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8044
8620
|
}>>;
|
|
8045
8621
|
definition: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
8046
8622
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
8623
|
+
label: z.ZodOptional<z.ZodString>;
|
|
8624
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
8047
8625
|
}, {
|
|
8048
8626
|
type: z.ZodLiteral<"select-single">;
|
|
8049
8627
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -8065,6 +8643,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8065
8643
|
intro?: string | undefined;
|
|
8066
8644
|
outro?: string | undefined;
|
|
8067
8645
|
}>, "many">;
|
|
8646
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
8068
8647
|
}>, "strip", z.ZodTypeAny, {
|
|
8069
8648
|
type: "select-single";
|
|
8070
8649
|
options: {
|
|
@@ -8074,6 +8653,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8074
8653
|
intro?: string | undefined;
|
|
8075
8654
|
outro?: string | undefined;
|
|
8076
8655
|
}[];
|
|
8656
|
+
label?: string | undefined;
|
|
8657
|
+
defaultValue?: string | undefined;
|
|
8658
|
+
readOnly?: boolean | undefined;
|
|
8077
8659
|
}, {
|
|
8078
8660
|
type: "select-single";
|
|
8079
8661
|
options: {
|
|
@@ -8083,8 +8665,13 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8083
8665
|
intro?: string | undefined;
|
|
8084
8666
|
outro?: string | undefined;
|
|
8085
8667
|
}[];
|
|
8668
|
+
label?: string | undefined;
|
|
8669
|
+
defaultValue?: string | undefined;
|
|
8670
|
+
readOnly?: boolean | undefined;
|
|
8086
8671
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8087
8672
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
8673
|
+
label: z.ZodOptional<z.ZodString>;
|
|
8674
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
8088
8675
|
}, {
|
|
8089
8676
|
type: z.ZodLiteral<"select-multiple">;
|
|
8090
8677
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -8106,6 +8693,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8106
8693
|
intro?: string | undefined;
|
|
8107
8694
|
outro?: string | undefined;
|
|
8108
8695
|
}>, "many">;
|
|
8696
|
+
defaultValue: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8109
8697
|
}>, "strip", z.ZodTypeAny, {
|
|
8110
8698
|
type: "select-multiple";
|
|
8111
8699
|
options: {
|
|
@@ -8115,6 +8703,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8115
8703
|
intro?: string | undefined;
|
|
8116
8704
|
outro?: string | undefined;
|
|
8117
8705
|
}[];
|
|
8706
|
+
label?: string | undefined;
|
|
8707
|
+
defaultValue?: string[] | undefined;
|
|
8708
|
+
readOnly?: boolean | undefined;
|
|
8118
8709
|
}, {
|
|
8119
8710
|
type: "select-multiple";
|
|
8120
8711
|
options: {
|
|
@@ -8124,25 +8715,39 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8124
8715
|
intro?: string | undefined;
|
|
8125
8716
|
outro?: string | undefined;
|
|
8126
8717
|
}[];
|
|
8718
|
+
label?: string | undefined;
|
|
8719
|
+
defaultValue?: string[] | undefined;
|
|
8720
|
+
readOnly?: boolean | undefined;
|
|
8127
8721
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8128
8722
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
8723
|
+
label: z.ZodOptional<z.ZodString>;
|
|
8724
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
8129
8725
|
}, {
|
|
8130
8726
|
type: z.ZodLiteral<"number">;
|
|
8131
8727
|
minimum: z.ZodOptional<z.ZodNumber>;
|
|
8132
8728
|
maximum: z.ZodOptional<z.ZodNumber>;
|
|
8133
8729
|
step: z.ZodOptional<z.ZodNumber>;
|
|
8730
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8134
8731
|
}>, "strip", z.ZodTypeAny, {
|
|
8135
8732
|
type: "number";
|
|
8733
|
+
label?: string | undefined;
|
|
8136
8734
|
minimum?: number | undefined;
|
|
8137
8735
|
maximum?: number | undefined;
|
|
8736
|
+
defaultValue?: number | undefined;
|
|
8138
8737
|
step?: number | undefined;
|
|
8738
|
+
readOnly?: boolean | undefined;
|
|
8139
8739
|
}, {
|
|
8140
8740
|
type: "number";
|
|
8741
|
+
label?: string | undefined;
|
|
8141
8742
|
minimum?: number | undefined;
|
|
8142
8743
|
maximum?: number | undefined;
|
|
8744
|
+
defaultValue?: number | undefined;
|
|
8143
8745
|
step?: number | undefined;
|
|
8746
|
+
readOnly?: boolean | undefined;
|
|
8144
8747
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8145
8748
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
8749
|
+
label: z.ZodOptional<z.ZodString>;
|
|
8750
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
8146
8751
|
}, {
|
|
8147
8752
|
type: z.ZodLiteral<"boolean">;
|
|
8148
8753
|
labels: z.ZodOptional<z.ZodObject<{
|
|
@@ -8155,18 +8760,25 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8155
8760
|
false: string;
|
|
8156
8761
|
true: string;
|
|
8157
8762
|
}>>;
|
|
8763
|
+
defaultValue: z.ZodOptional<z.ZodBoolean>;
|
|
8158
8764
|
}>, "strip", z.ZodTypeAny, {
|
|
8159
8765
|
type: "boolean";
|
|
8766
|
+
label?: string | undefined;
|
|
8160
8767
|
labels?: {
|
|
8161
8768
|
false: string;
|
|
8162
8769
|
true: string;
|
|
8163
8770
|
} | undefined;
|
|
8771
|
+
defaultValue?: boolean | undefined;
|
|
8772
|
+
readOnly?: boolean | undefined;
|
|
8164
8773
|
}, {
|
|
8165
8774
|
type: "boolean";
|
|
8775
|
+
label?: string | undefined;
|
|
8166
8776
|
labels?: {
|
|
8167
8777
|
false: string;
|
|
8168
8778
|
true: string;
|
|
8169
8779
|
} | undefined;
|
|
8780
|
+
defaultValue?: boolean | undefined;
|
|
8781
|
+
readOnly?: boolean | undefined;
|
|
8170
8782
|
}>]>;
|
|
8171
8783
|
description: z.ZodOptional<z.ZodString>;
|
|
8172
8784
|
valueReference: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>;
|
|
@@ -8189,6 +8801,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8189
8801
|
intro?: string | undefined;
|
|
8190
8802
|
outro?: string | undefined;
|
|
8191
8803
|
}[];
|
|
8804
|
+
label?: string | undefined;
|
|
8805
|
+
defaultValue?: string | undefined;
|
|
8806
|
+
readOnly?: boolean | undefined;
|
|
8192
8807
|
} | {
|
|
8193
8808
|
type: "select-multiple";
|
|
8194
8809
|
options: {
|
|
@@ -8198,17 +8813,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8198
8813
|
intro?: string | undefined;
|
|
8199
8814
|
outro?: string | undefined;
|
|
8200
8815
|
}[];
|
|
8816
|
+
label?: string | undefined;
|
|
8817
|
+
defaultValue?: string[] | undefined;
|
|
8818
|
+
readOnly?: boolean | undefined;
|
|
8201
8819
|
} | {
|
|
8202
8820
|
type: "number";
|
|
8821
|
+
label?: string | undefined;
|
|
8203
8822
|
minimum?: number | undefined;
|
|
8204
8823
|
maximum?: number | undefined;
|
|
8824
|
+
defaultValue?: number | undefined;
|
|
8205
8825
|
step?: number | undefined;
|
|
8826
|
+
readOnly?: boolean | undefined;
|
|
8206
8827
|
} | {
|
|
8207
8828
|
type: "boolean";
|
|
8829
|
+
label?: string | undefined;
|
|
8208
8830
|
labels?: {
|
|
8209
8831
|
false: string;
|
|
8210
8832
|
true: string;
|
|
8211
8833
|
} | undefined;
|
|
8834
|
+
defaultValue?: boolean | undefined;
|
|
8835
|
+
readOnly?: boolean | undefined;
|
|
8212
8836
|
};
|
|
8213
8837
|
data?: {
|
|
8214
8838
|
type?: "number" | "percentage" | undefined;
|
|
@@ -8258,6 +8882,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8258
8882
|
intro?: string | undefined;
|
|
8259
8883
|
outro?: string | undefined;
|
|
8260
8884
|
}[];
|
|
8885
|
+
label?: string | undefined;
|
|
8886
|
+
defaultValue?: string | undefined;
|
|
8887
|
+
readOnly?: boolean | undefined;
|
|
8261
8888
|
} | {
|
|
8262
8889
|
type: "select-multiple";
|
|
8263
8890
|
options: {
|
|
@@ -8267,17 +8894,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8267
8894
|
intro?: string | undefined;
|
|
8268
8895
|
outro?: string | undefined;
|
|
8269
8896
|
}[];
|
|
8897
|
+
label?: string | undefined;
|
|
8898
|
+
defaultValue?: string[] | undefined;
|
|
8899
|
+
readOnly?: boolean | undefined;
|
|
8270
8900
|
} | {
|
|
8271
8901
|
type: "number";
|
|
8902
|
+
label?: string | undefined;
|
|
8272
8903
|
minimum?: number | undefined;
|
|
8273
8904
|
maximum?: number | undefined;
|
|
8905
|
+
defaultValue?: number | undefined;
|
|
8274
8906
|
step?: number | undefined;
|
|
8907
|
+
readOnly?: boolean | undefined;
|
|
8275
8908
|
} | {
|
|
8276
8909
|
type: "boolean";
|
|
8910
|
+
label?: string | undefined;
|
|
8277
8911
|
labels?: {
|
|
8278
8912
|
false: string;
|
|
8279
8913
|
true: string;
|
|
8280
8914
|
} | undefined;
|
|
8915
|
+
defaultValue?: boolean | undefined;
|
|
8916
|
+
readOnly?: boolean | undefined;
|
|
8281
8917
|
};
|
|
8282
8918
|
data?: {
|
|
8283
8919
|
type?: "number" | "percentage" | undefined;
|
|
@@ -8339,6 +8975,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8339
8975
|
intro?: string | undefined;
|
|
8340
8976
|
outro?: string | undefined;
|
|
8341
8977
|
}[];
|
|
8978
|
+
label?: string | undefined;
|
|
8979
|
+
defaultValue?: string | undefined;
|
|
8980
|
+
readOnly?: boolean | undefined;
|
|
8342
8981
|
} | {
|
|
8343
8982
|
type: "select-multiple";
|
|
8344
8983
|
options: {
|
|
@@ -8348,17 +8987,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8348
8987
|
intro?: string | undefined;
|
|
8349
8988
|
outro?: string | undefined;
|
|
8350
8989
|
}[];
|
|
8990
|
+
label?: string | undefined;
|
|
8991
|
+
defaultValue?: string[] | undefined;
|
|
8992
|
+
readOnly?: boolean | undefined;
|
|
8351
8993
|
} | {
|
|
8352
8994
|
type: "number";
|
|
8995
|
+
label?: string | undefined;
|
|
8353
8996
|
minimum?: number | undefined;
|
|
8354
8997
|
maximum?: number | undefined;
|
|
8998
|
+
defaultValue?: number | undefined;
|
|
8355
8999
|
step?: number | undefined;
|
|
9000
|
+
readOnly?: boolean | undefined;
|
|
8356
9001
|
} | {
|
|
8357
9002
|
type: "boolean";
|
|
9003
|
+
label?: string | undefined;
|
|
8358
9004
|
labels?: {
|
|
8359
9005
|
false: string;
|
|
8360
9006
|
true: string;
|
|
8361
9007
|
} | undefined;
|
|
9008
|
+
defaultValue?: boolean | undefined;
|
|
9009
|
+
readOnly?: boolean | undefined;
|
|
8362
9010
|
};
|
|
8363
9011
|
data?: {
|
|
8364
9012
|
type?: "number" | "percentage" | undefined;
|
|
@@ -8447,6 +9095,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8447
9095
|
intro?: string | undefined;
|
|
8448
9096
|
outro?: string | undefined;
|
|
8449
9097
|
}[];
|
|
9098
|
+
label?: string | undefined;
|
|
9099
|
+
defaultValue?: string | undefined;
|
|
9100
|
+
readOnly?: boolean | undefined;
|
|
8450
9101
|
} | {
|
|
8451
9102
|
type: "select-multiple";
|
|
8452
9103
|
options: {
|
|
@@ -8456,17 +9107,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8456
9107
|
intro?: string | undefined;
|
|
8457
9108
|
outro?: string | undefined;
|
|
8458
9109
|
}[];
|
|
9110
|
+
label?: string | undefined;
|
|
9111
|
+
defaultValue?: string[] | undefined;
|
|
9112
|
+
readOnly?: boolean | undefined;
|
|
8459
9113
|
} | {
|
|
8460
9114
|
type: "number";
|
|
9115
|
+
label?: string | undefined;
|
|
8461
9116
|
minimum?: number | undefined;
|
|
8462
9117
|
maximum?: number | undefined;
|
|
9118
|
+
defaultValue?: number | undefined;
|
|
8463
9119
|
step?: number | undefined;
|
|
9120
|
+
readOnly?: boolean | undefined;
|
|
8464
9121
|
} | {
|
|
8465
9122
|
type: "boolean";
|
|
9123
|
+
label?: string | undefined;
|
|
8466
9124
|
labels?: {
|
|
8467
9125
|
false: string;
|
|
8468
9126
|
true: string;
|
|
8469
9127
|
} | undefined;
|
|
9128
|
+
defaultValue?: boolean | undefined;
|
|
9129
|
+
readOnly?: boolean | undefined;
|
|
8470
9130
|
};
|
|
8471
9131
|
data?: {
|
|
8472
9132
|
type?: "number" | "percentage" | undefined;
|
|
@@ -8671,6 +9331,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8671
9331
|
}>>;
|
|
8672
9332
|
definition: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
8673
9333
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
9334
|
+
label: z.ZodOptional<z.ZodString>;
|
|
9335
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
8674
9336
|
}, {
|
|
8675
9337
|
type: z.ZodLiteral<"select-single">;
|
|
8676
9338
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -8692,6 +9354,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8692
9354
|
intro?: string | undefined;
|
|
8693
9355
|
outro?: string | undefined;
|
|
8694
9356
|
}>, "many">;
|
|
9357
|
+
defaultValue: z.ZodOptional<z.ZodString>;
|
|
8695
9358
|
}>, "strip", z.ZodTypeAny, {
|
|
8696
9359
|
type: "select-single";
|
|
8697
9360
|
options: {
|
|
@@ -8701,6 +9364,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8701
9364
|
intro?: string | undefined;
|
|
8702
9365
|
outro?: string | undefined;
|
|
8703
9366
|
}[];
|
|
9367
|
+
label?: string | undefined;
|
|
9368
|
+
defaultValue?: string | undefined;
|
|
9369
|
+
readOnly?: boolean | undefined;
|
|
8704
9370
|
}, {
|
|
8705
9371
|
type: "select-single";
|
|
8706
9372
|
options: {
|
|
@@ -8710,8 +9376,13 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8710
9376
|
intro?: string | undefined;
|
|
8711
9377
|
outro?: string | undefined;
|
|
8712
9378
|
}[];
|
|
9379
|
+
label?: string | undefined;
|
|
9380
|
+
defaultValue?: string | undefined;
|
|
9381
|
+
readOnly?: boolean | undefined;
|
|
8713
9382
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8714
9383
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
9384
|
+
label: z.ZodOptional<z.ZodString>;
|
|
9385
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
8715
9386
|
}, {
|
|
8716
9387
|
type: z.ZodLiteral<"select-multiple">;
|
|
8717
9388
|
options: z.ZodArray<z.ZodObject<{
|
|
@@ -8733,6 +9404,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8733
9404
|
intro?: string | undefined;
|
|
8734
9405
|
outro?: string | undefined;
|
|
8735
9406
|
}>, "many">;
|
|
9407
|
+
defaultValue: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8736
9408
|
}>, "strip", z.ZodTypeAny, {
|
|
8737
9409
|
type: "select-multiple";
|
|
8738
9410
|
options: {
|
|
@@ -8742,6 +9414,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8742
9414
|
intro?: string | undefined;
|
|
8743
9415
|
outro?: string | undefined;
|
|
8744
9416
|
}[];
|
|
9417
|
+
label?: string | undefined;
|
|
9418
|
+
defaultValue?: string[] | undefined;
|
|
9419
|
+
readOnly?: boolean | undefined;
|
|
8745
9420
|
}, {
|
|
8746
9421
|
type: "select-multiple";
|
|
8747
9422
|
options: {
|
|
@@ -8751,25 +9426,39 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8751
9426
|
intro?: string | undefined;
|
|
8752
9427
|
outro?: string | undefined;
|
|
8753
9428
|
}[];
|
|
9429
|
+
label?: string | undefined;
|
|
9430
|
+
defaultValue?: string[] | undefined;
|
|
9431
|
+
readOnly?: boolean | undefined;
|
|
8754
9432
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8755
9433
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
9434
|
+
label: z.ZodOptional<z.ZodString>;
|
|
9435
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
8756
9436
|
}, {
|
|
8757
9437
|
type: z.ZodLiteral<"number">;
|
|
8758
9438
|
minimum: z.ZodOptional<z.ZodNumber>;
|
|
8759
9439
|
maximum: z.ZodOptional<z.ZodNumber>;
|
|
8760
9440
|
step: z.ZodOptional<z.ZodNumber>;
|
|
9441
|
+
defaultValue: z.ZodOptional<z.ZodNumber>;
|
|
8761
9442
|
}>, "strip", z.ZodTypeAny, {
|
|
8762
9443
|
type: "number";
|
|
9444
|
+
label?: string | undefined;
|
|
8763
9445
|
minimum?: number | undefined;
|
|
8764
9446
|
maximum?: number | undefined;
|
|
9447
|
+
defaultValue?: number | undefined;
|
|
8765
9448
|
step?: number | undefined;
|
|
9449
|
+
readOnly?: boolean | undefined;
|
|
8766
9450
|
}, {
|
|
8767
9451
|
type: "number";
|
|
9452
|
+
label?: string | undefined;
|
|
8768
9453
|
minimum?: number | undefined;
|
|
8769
9454
|
maximum?: number | undefined;
|
|
9455
|
+
defaultValue?: number | undefined;
|
|
8770
9456
|
step?: number | undefined;
|
|
9457
|
+
readOnly?: boolean | undefined;
|
|
8771
9458
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
8772
9459
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
9460
|
+
label: z.ZodOptional<z.ZodString>;
|
|
9461
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
8773
9462
|
}, {
|
|
8774
9463
|
type: z.ZodLiteral<"boolean">;
|
|
8775
9464
|
labels: z.ZodOptional<z.ZodObject<{
|
|
@@ -8782,18 +9471,25 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8782
9471
|
false: string;
|
|
8783
9472
|
true: string;
|
|
8784
9473
|
}>>;
|
|
9474
|
+
defaultValue: z.ZodOptional<z.ZodBoolean>;
|
|
8785
9475
|
}>, "strip", z.ZodTypeAny, {
|
|
8786
9476
|
type: "boolean";
|
|
9477
|
+
label?: string | undefined;
|
|
8787
9478
|
labels?: {
|
|
8788
9479
|
false: string;
|
|
8789
9480
|
true: string;
|
|
8790
9481
|
} | undefined;
|
|
9482
|
+
defaultValue?: boolean | undefined;
|
|
9483
|
+
readOnly?: boolean | undefined;
|
|
8791
9484
|
}, {
|
|
8792
9485
|
type: "boolean";
|
|
9486
|
+
label?: string | undefined;
|
|
8793
9487
|
labels?: {
|
|
8794
9488
|
false: string;
|
|
8795
9489
|
true: string;
|
|
8796
9490
|
} | undefined;
|
|
9491
|
+
defaultValue?: boolean | undefined;
|
|
9492
|
+
readOnly?: boolean | undefined;
|
|
8797
9493
|
}>]>;
|
|
8798
9494
|
description: z.ZodOptional<z.ZodString>;
|
|
8799
9495
|
valueReference: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, "many">]>>;
|
|
@@ -8816,6 +9512,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8816
9512
|
intro?: string | undefined;
|
|
8817
9513
|
outro?: string | undefined;
|
|
8818
9514
|
}[];
|
|
9515
|
+
label?: string | undefined;
|
|
9516
|
+
defaultValue?: string | undefined;
|
|
9517
|
+
readOnly?: boolean | undefined;
|
|
8819
9518
|
} | {
|
|
8820
9519
|
type: "select-multiple";
|
|
8821
9520
|
options: {
|
|
@@ -8825,17 +9524,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8825
9524
|
intro?: string | undefined;
|
|
8826
9525
|
outro?: string | undefined;
|
|
8827
9526
|
}[];
|
|
9527
|
+
label?: string | undefined;
|
|
9528
|
+
defaultValue?: string[] | undefined;
|
|
9529
|
+
readOnly?: boolean | undefined;
|
|
8828
9530
|
} | {
|
|
8829
9531
|
type: "number";
|
|
9532
|
+
label?: string | undefined;
|
|
8830
9533
|
minimum?: number | undefined;
|
|
8831
9534
|
maximum?: number | undefined;
|
|
9535
|
+
defaultValue?: number | undefined;
|
|
8832
9536
|
step?: number | undefined;
|
|
9537
|
+
readOnly?: boolean | undefined;
|
|
8833
9538
|
} | {
|
|
8834
9539
|
type: "boolean";
|
|
9540
|
+
label?: string | undefined;
|
|
8835
9541
|
labels?: {
|
|
8836
9542
|
false: string;
|
|
8837
9543
|
true: string;
|
|
8838
9544
|
} | undefined;
|
|
9545
|
+
defaultValue?: boolean | undefined;
|
|
9546
|
+
readOnly?: boolean | undefined;
|
|
8839
9547
|
};
|
|
8840
9548
|
data?: {
|
|
8841
9549
|
type?: "number" | "percentage" | undefined;
|
|
@@ -8885,6 +9593,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8885
9593
|
intro?: string | undefined;
|
|
8886
9594
|
outro?: string | undefined;
|
|
8887
9595
|
}[];
|
|
9596
|
+
label?: string | undefined;
|
|
9597
|
+
defaultValue?: string | undefined;
|
|
9598
|
+
readOnly?: boolean | undefined;
|
|
8888
9599
|
} | {
|
|
8889
9600
|
type: "select-multiple";
|
|
8890
9601
|
options: {
|
|
@@ -8894,17 +9605,26 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8894
9605
|
intro?: string | undefined;
|
|
8895
9606
|
outro?: string | undefined;
|
|
8896
9607
|
}[];
|
|
9608
|
+
label?: string | undefined;
|
|
9609
|
+
defaultValue?: string[] | undefined;
|
|
9610
|
+
readOnly?: boolean | undefined;
|
|
8897
9611
|
} | {
|
|
8898
9612
|
type: "number";
|
|
9613
|
+
label?: string | undefined;
|
|
8899
9614
|
minimum?: number | undefined;
|
|
8900
9615
|
maximum?: number | undefined;
|
|
9616
|
+
defaultValue?: number | undefined;
|
|
8901
9617
|
step?: number | undefined;
|
|
9618
|
+
readOnly?: boolean | undefined;
|
|
8902
9619
|
} | {
|
|
8903
9620
|
type: "boolean";
|
|
9621
|
+
label?: string | undefined;
|
|
8904
9622
|
labels?: {
|
|
8905
9623
|
false: string;
|
|
8906
9624
|
true: string;
|
|
8907
9625
|
} | undefined;
|
|
9626
|
+
defaultValue?: boolean | undefined;
|
|
9627
|
+
readOnly?: boolean | undefined;
|
|
8908
9628
|
};
|
|
8909
9629
|
data?: {
|
|
8910
9630
|
type?: "number" | "percentage" | undefined;
|