@openframe-org/criteria-set-protocol 2.0.18 → 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.
@@ -558,6 +558,7 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
558
558
  definition: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
559
559
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
560
560
  label: z.ZodOptional<z.ZodString>;
561
+ readOnly: z.ZodOptional<z.ZodBoolean>;
561
562
  }, {
562
563
  type: z.ZodLiteral<"select-single">;
563
564
  options: z.ZodArray<z.ZodObject<{
@@ -579,6 +580,7 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
579
580
  intro?: string | undefined;
580
581
  outro?: string | undefined;
581
582
  }>, "many">;
583
+ defaultValue: z.ZodOptional<z.ZodString>;
582
584
  }>, "strip", z.ZodTypeAny, {
583
585
  type: "select-single";
584
586
  options: {
@@ -589,6 +591,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
589
591
  outro?: string | undefined;
590
592
  }[];
591
593
  label?: string | undefined;
594
+ defaultValue?: string | undefined;
595
+ readOnly?: boolean | undefined;
592
596
  }, {
593
597
  type: "select-single";
594
598
  options: {
@@ -599,9 +603,12 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
599
603
  outro?: string | undefined;
600
604
  }[];
601
605
  label?: string | undefined;
606
+ defaultValue?: string | undefined;
607
+ readOnly?: boolean | undefined;
602
608
  }>, z.ZodObject<z.objectUtil.extendShape<{
603
609
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
604
610
  label: z.ZodOptional<z.ZodString>;
611
+ readOnly: z.ZodOptional<z.ZodBoolean>;
605
612
  }, {
606
613
  type: z.ZodLiteral<"select-multiple">;
607
614
  options: z.ZodArray<z.ZodObject<{
@@ -623,6 +630,7 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
623
630
  intro?: string | undefined;
624
631
  outro?: string | undefined;
625
632
  }>, "many">;
633
+ defaultValue: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
626
634
  }>, "strip", z.ZodTypeAny, {
627
635
  type: "select-multiple";
628
636
  options: {
@@ -633,6 +641,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
633
641
  outro?: string | undefined;
634
642
  }[];
635
643
  label?: string | undefined;
644
+ defaultValue?: string[] | undefined;
645
+ readOnly?: boolean | undefined;
636
646
  }, {
637
647
  type: "select-multiple";
638
648
  options: {
@@ -643,29 +653,38 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
643
653
  outro?: string | undefined;
644
654
  }[];
645
655
  label?: string | undefined;
656
+ defaultValue?: string[] | undefined;
657
+ readOnly?: boolean | undefined;
646
658
  }>, z.ZodObject<z.objectUtil.extendShape<{
647
659
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
648
660
  label: z.ZodOptional<z.ZodString>;
661
+ readOnly: z.ZodOptional<z.ZodBoolean>;
649
662
  }, {
650
663
  type: z.ZodLiteral<"number">;
651
664
  minimum: z.ZodOptional<z.ZodNumber>;
652
665
  maximum: z.ZodOptional<z.ZodNumber>;
653
666
  step: z.ZodOptional<z.ZodNumber>;
667
+ defaultValue: z.ZodOptional<z.ZodNumber>;
654
668
  }>, "strip", z.ZodTypeAny, {
655
669
  type: "number";
656
670
  label?: string | undefined;
657
671
  minimum?: number | undefined;
658
672
  maximum?: number | undefined;
673
+ defaultValue?: number | undefined;
659
674
  step?: number | undefined;
675
+ readOnly?: boolean | undefined;
660
676
  }, {
661
677
  type: "number";
662
678
  label?: string | undefined;
663
679
  minimum?: number | undefined;
664
680
  maximum?: number | undefined;
681
+ defaultValue?: number | undefined;
665
682
  step?: number | undefined;
683
+ readOnly?: boolean | undefined;
666
684
  }>, z.ZodObject<z.objectUtil.extendShape<{
667
685
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
668
686
  label: z.ZodOptional<z.ZodString>;
687
+ readOnly: z.ZodOptional<z.ZodBoolean>;
669
688
  }, {
670
689
  type: z.ZodLiteral<"boolean">;
671
690
  labels: z.ZodOptional<z.ZodObject<{
@@ -678,6 +697,7 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
678
697
  false: string;
679
698
  true: string;
680
699
  }>>;
700
+ defaultValue: z.ZodOptional<z.ZodBoolean>;
681
701
  }>, "strip", z.ZodTypeAny, {
682
702
  type: "boolean";
683
703
  label?: string | undefined;
@@ -685,6 +705,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
685
705
  false: string;
686
706
  true: string;
687
707
  } | undefined;
708
+ defaultValue?: boolean | undefined;
709
+ readOnly?: boolean | undefined;
688
710
  }, {
689
711
  type: "boolean";
690
712
  label?: string | undefined;
@@ -692,6 +714,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
692
714
  false: string;
693
715
  true: string;
694
716
  } | undefined;
717
+ defaultValue?: boolean | undefined;
718
+ readOnly?: boolean | undefined;
695
719
  }>]>;
696
720
  description: z.ZodOptional<z.ZodString>;
697
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">]>>;
@@ -715,6 +739,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
715
739
  outro?: string | undefined;
716
740
  }[];
717
741
  label?: string | undefined;
742
+ defaultValue?: string | undefined;
743
+ readOnly?: boolean | undefined;
718
744
  } | {
719
745
  type: "select-multiple";
720
746
  options: {
@@ -725,12 +751,16 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
725
751
  outro?: string | undefined;
726
752
  }[];
727
753
  label?: string | undefined;
754
+ defaultValue?: string[] | undefined;
755
+ readOnly?: boolean | undefined;
728
756
  } | {
729
757
  type: "number";
730
758
  label?: string | undefined;
731
759
  minimum?: number | undefined;
732
760
  maximum?: number | undefined;
761
+ defaultValue?: number | undefined;
733
762
  step?: number | undefined;
763
+ readOnly?: boolean | undefined;
734
764
  } | {
735
765
  type: "boolean";
736
766
  label?: string | undefined;
@@ -738,6 +768,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
738
768
  false: string;
739
769
  true: string;
740
770
  } | undefined;
771
+ defaultValue?: boolean | undefined;
772
+ readOnly?: boolean | undefined;
741
773
  };
742
774
  data?: {
743
775
  type?: "number" | "percentage" | undefined;
@@ -788,6 +820,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
788
820
  outro?: string | undefined;
789
821
  }[];
790
822
  label?: string | undefined;
823
+ defaultValue?: string | undefined;
824
+ readOnly?: boolean | undefined;
791
825
  } | {
792
826
  type: "select-multiple";
793
827
  options: {
@@ -798,12 +832,16 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
798
832
  outro?: string | undefined;
799
833
  }[];
800
834
  label?: string | undefined;
835
+ defaultValue?: string[] | undefined;
836
+ readOnly?: boolean | undefined;
801
837
  } | {
802
838
  type: "number";
803
839
  label?: string | undefined;
804
840
  minimum?: number | undefined;
805
841
  maximum?: number | undefined;
842
+ defaultValue?: number | undefined;
806
843
  step?: number | undefined;
844
+ readOnly?: boolean | undefined;
807
845
  } | {
808
846
  type: "boolean";
809
847
  label?: string | undefined;
@@ -811,6 +849,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
811
849
  false: string;
812
850
  true: string;
813
851
  } | undefined;
852
+ defaultValue?: boolean | undefined;
853
+ readOnly?: boolean | undefined;
814
854
  };
815
855
  data?: {
816
856
  type?: "number" | "percentage" | undefined;
@@ -873,6 +913,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
873
913
  outro?: string | undefined;
874
914
  }[];
875
915
  label?: string | undefined;
916
+ defaultValue?: string | undefined;
917
+ readOnly?: boolean | undefined;
876
918
  } | {
877
919
  type: "select-multiple";
878
920
  options: {
@@ -883,12 +925,16 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
883
925
  outro?: string | undefined;
884
926
  }[];
885
927
  label?: string | undefined;
928
+ defaultValue?: string[] | undefined;
929
+ readOnly?: boolean | undefined;
886
930
  } | {
887
931
  type: "number";
888
932
  label?: string | undefined;
889
933
  minimum?: number | undefined;
890
934
  maximum?: number | undefined;
935
+ defaultValue?: number | undefined;
891
936
  step?: number | undefined;
937
+ readOnly?: boolean | undefined;
892
938
  } | {
893
939
  type: "boolean";
894
940
  label?: string | undefined;
@@ -896,6 +942,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
896
942
  false: string;
897
943
  true: string;
898
944
  } | undefined;
945
+ defaultValue?: boolean | undefined;
946
+ readOnly?: boolean | undefined;
899
947
  };
900
948
  data?: {
901
949
  type?: "number" | "percentage" | undefined;
@@ -985,6 +1033,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
985
1033
  outro?: string | undefined;
986
1034
  }[];
987
1035
  label?: string | undefined;
1036
+ defaultValue?: string | undefined;
1037
+ readOnly?: boolean | undefined;
988
1038
  } | {
989
1039
  type: "select-multiple";
990
1040
  options: {
@@ -995,12 +1045,16 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
995
1045
  outro?: string | undefined;
996
1046
  }[];
997
1047
  label?: string | undefined;
1048
+ defaultValue?: string[] | undefined;
1049
+ readOnly?: boolean | undefined;
998
1050
  } | {
999
1051
  type: "number";
1000
1052
  label?: string | undefined;
1001
1053
  minimum?: number | undefined;
1002
1054
  maximum?: number | undefined;
1055
+ defaultValue?: number | undefined;
1003
1056
  step?: number | undefined;
1057
+ readOnly?: boolean | undefined;
1004
1058
  } | {
1005
1059
  type: "boolean";
1006
1060
  label?: string | undefined;
@@ -1008,6 +1062,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
1008
1062
  false: string;
1009
1063
  true: string;
1010
1064
  } | undefined;
1065
+ defaultValue?: boolean | undefined;
1066
+ readOnly?: boolean | undefined;
1011
1067
  };
1012
1068
  data?: {
1013
1069
  type?: "number" | "percentage" | undefined;
@@ -1112,6 +1168,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
1112
1168
  outro?: string | undefined;
1113
1169
  }[];
1114
1170
  label?: string | undefined;
1171
+ defaultValue?: string | undefined;
1172
+ readOnly?: boolean | undefined;
1115
1173
  } | {
1116
1174
  type: "select-multiple";
1117
1175
  options: {
@@ -1122,12 +1180,16 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
1122
1180
  outro?: string | undefined;
1123
1181
  }[];
1124
1182
  label?: string | undefined;
1183
+ defaultValue?: string[] | undefined;
1184
+ readOnly?: boolean | undefined;
1125
1185
  } | {
1126
1186
  type: "number";
1127
1187
  label?: string | undefined;
1128
1188
  minimum?: number | undefined;
1129
1189
  maximum?: number | undefined;
1190
+ defaultValue?: number | undefined;
1130
1191
  step?: number | undefined;
1192
+ readOnly?: boolean | undefined;
1131
1193
  } | {
1132
1194
  type: "boolean";
1133
1195
  label?: string | undefined;
@@ -1135,6 +1197,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
1135
1197
  false: string;
1136
1198
  true: string;
1137
1199
  } | undefined;
1200
+ defaultValue?: boolean | undefined;
1201
+ readOnly?: boolean | undefined;
1138
1202
  };
1139
1203
  data?: {
1140
1204
  type?: "number" | "percentage" | undefined;
@@ -1264,6 +1328,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
1264
1328
  outro?: string | undefined;
1265
1329
  }[];
1266
1330
  label?: string | undefined;
1331
+ defaultValue?: string | undefined;
1332
+ readOnly?: boolean | undefined;
1267
1333
  } | {
1268
1334
  type: "select-multiple";
1269
1335
  options: {
@@ -1274,12 +1340,16 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
1274
1340
  outro?: string | undefined;
1275
1341
  }[];
1276
1342
  label?: string | undefined;
1343
+ defaultValue?: string[] | undefined;
1344
+ readOnly?: boolean | undefined;
1277
1345
  } | {
1278
1346
  type: "number";
1279
1347
  label?: string | undefined;
1280
1348
  minimum?: number | undefined;
1281
1349
  maximum?: number | undefined;
1350
+ defaultValue?: number | undefined;
1282
1351
  step?: number | undefined;
1352
+ readOnly?: boolean | undefined;
1283
1353
  } | {
1284
1354
  type: "boolean";
1285
1355
  label?: string | undefined;
@@ -1287,6 +1357,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
1287
1357
  false: string;
1288
1358
  true: string;
1289
1359
  } | undefined;
1360
+ defaultValue?: boolean | undefined;
1361
+ readOnly?: boolean | undefined;
1290
1362
  };
1291
1363
  data?: {
1292
1364
  type?: "number" | "percentage" | undefined;
@@ -1431,6 +1503,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
1431
1503
  outro?: string | undefined;
1432
1504
  }[];
1433
1505
  label?: string | undefined;
1506
+ defaultValue?: string | undefined;
1507
+ readOnly?: boolean | undefined;
1434
1508
  } | {
1435
1509
  type: "select-multiple";
1436
1510
  options: {
@@ -1441,12 +1515,16 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
1441
1515
  outro?: string | undefined;
1442
1516
  }[];
1443
1517
  label?: string | undefined;
1518
+ defaultValue?: string[] | undefined;
1519
+ readOnly?: boolean | undefined;
1444
1520
  } | {
1445
1521
  type: "number";
1446
1522
  label?: string | undefined;
1447
1523
  minimum?: number | undefined;
1448
1524
  maximum?: number | undefined;
1525
+ defaultValue?: number | undefined;
1449
1526
  step?: number | undefined;
1527
+ readOnly?: boolean | undefined;
1450
1528
  } | {
1451
1529
  type: "boolean";
1452
1530
  label?: string | undefined;
@@ -1454,6 +1532,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
1454
1532
  false: string;
1455
1533
  true: string;
1456
1534
  } | undefined;
1535
+ defaultValue?: boolean | undefined;
1536
+ readOnly?: boolean | undefined;
1457
1537
  };
1458
1538
  data?: {
1459
1539
  type?: "number" | "percentage" | undefined;
@@ -1622,6 +1702,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
1622
1702
  outro?: string | undefined;
1623
1703
  }[];
1624
1704
  label?: string | undefined;
1705
+ defaultValue?: string | undefined;
1706
+ readOnly?: boolean | undefined;
1625
1707
  } | {
1626
1708
  type: "select-multiple";
1627
1709
  options: {
@@ -1632,12 +1714,16 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
1632
1714
  outro?: string | undefined;
1633
1715
  }[];
1634
1716
  label?: string | undefined;
1717
+ defaultValue?: string[] | undefined;
1718
+ readOnly?: boolean | undefined;
1635
1719
  } | {
1636
1720
  type: "number";
1637
1721
  label?: string | undefined;
1638
1722
  minimum?: number | undefined;
1639
1723
  maximum?: number | undefined;
1724
+ defaultValue?: number | undefined;
1640
1725
  step?: number | undefined;
1726
+ readOnly?: boolean | undefined;
1641
1727
  } | {
1642
1728
  type: "boolean";
1643
1729
  label?: string | undefined;
@@ -1645,6 +1731,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
1645
1731
  false: string;
1646
1732
  true: string;
1647
1733
  } | undefined;
1734
+ defaultValue?: boolean | undefined;
1735
+ readOnly?: boolean | undefined;
1648
1736
  };
1649
1737
  data?: {
1650
1738
  type?: "number" | "percentage" | undefined;
@@ -1828,6 +1916,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
1828
1916
  outro?: string | undefined;
1829
1917
  }[];
1830
1918
  label?: string | undefined;
1919
+ defaultValue?: string | undefined;
1920
+ readOnly?: boolean | undefined;
1831
1921
  } | {
1832
1922
  type: "select-multiple";
1833
1923
  options: {
@@ -1838,12 +1928,16 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
1838
1928
  outro?: string | undefined;
1839
1929
  }[];
1840
1930
  label?: string | undefined;
1931
+ defaultValue?: string[] | undefined;
1932
+ readOnly?: boolean | undefined;
1841
1933
  } | {
1842
1934
  type: "number";
1843
1935
  label?: string | undefined;
1844
1936
  minimum?: number | undefined;
1845
1937
  maximum?: number | undefined;
1938
+ defaultValue?: number | undefined;
1846
1939
  step?: number | undefined;
1940
+ readOnly?: boolean | undefined;
1847
1941
  } | {
1848
1942
  type: "boolean";
1849
1943
  label?: string | undefined;
@@ -1851,6 +1945,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
1851
1945
  false: string;
1852
1946
  true: string;
1853
1947
  } | undefined;
1948
+ defaultValue?: boolean | undefined;
1949
+ readOnly?: boolean | undefined;
1854
1950
  };
1855
1951
  data?: {
1856
1952
  type?: "number" | "percentage" | undefined;
@@ -2070,6 +2166,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
2070
2166
  outro?: string | undefined;
2071
2167
  }[];
2072
2168
  label?: string | undefined;
2169
+ defaultValue?: string | undefined;
2170
+ readOnly?: boolean | undefined;
2073
2171
  } | {
2074
2172
  type: "select-multiple";
2075
2173
  options: {
@@ -2080,12 +2178,16 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
2080
2178
  outro?: string | undefined;
2081
2179
  }[];
2082
2180
  label?: string | undefined;
2181
+ defaultValue?: string[] | undefined;
2182
+ readOnly?: boolean | undefined;
2083
2183
  } | {
2084
2184
  type: "number";
2085
2185
  label?: string | undefined;
2086
2186
  minimum?: number | undefined;
2087
2187
  maximum?: number | undefined;
2188
+ defaultValue?: number | undefined;
2088
2189
  step?: number | undefined;
2190
+ readOnly?: boolean | undefined;
2089
2191
  } | {
2090
2192
  type: "boolean";
2091
2193
  label?: string | undefined;
@@ -2093,6 +2195,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
2093
2195
  false: string;
2094
2196
  true: string;
2095
2197
  } | undefined;
2198
+ defaultValue?: boolean | undefined;
2199
+ readOnly?: boolean | undefined;
2096
2200
  };
2097
2201
  data?: {
2098
2202
  type?: "number" | "percentage" | undefined;
@@ -2418,6 +2522,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
2418
2522
  outro?: string | undefined;
2419
2523
  }[];
2420
2524
  label?: string | undefined;
2525
+ defaultValue?: string | undefined;
2526
+ readOnly?: boolean | undefined;
2421
2527
  } | {
2422
2528
  type: "select-multiple";
2423
2529
  options: {
@@ -2428,12 +2534,16 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
2428
2534
  outro?: string | undefined;
2429
2535
  }[];
2430
2536
  label?: string | undefined;
2537
+ defaultValue?: string[] | undefined;
2538
+ readOnly?: boolean | undefined;
2431
2539
  } | {
2432
2540
  type: "number";
2433
2541
  label?: string | undefined;
2434
2542
  minimum?: number | undefined;
2435
2543
  maximum?: number | undefined;
2544
+ defaultValue?: number | undefined;
2436
2545
  step?: number | undefined;
2546
+ readOnly?: boolean | undefined;
2437
2547
  } | {
2438
2548
  type: "boolean";
2439
2549
  label?: string | undefined;
@@ -2441,6 +2551,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
2441
2551
  false: string;
2442
2552
  true: string;
2443
2553
  } | undefined;
2554
+ defaultValue?: boolean | undefined;
2555
+ readOnly?: boolean | undefined;
2444
2556
  };
2445
2557
  data?: {
2446
2558
  type?: "number" | "percentage" | undefined;
@@ -2692,6 +2804,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
2692
2804
  outro?: string | undefined;
2693
2805
  }[];
2694
2806
  label?: string | undefined;
2807
+ defaultValue?: string | undefined;
2808
+ readOnly?: boolean | undefined;
2695
2809
  } | {
2696
2810
  type: "select-multiple";
2697
2811
  options: {
@@ -2702,12 +2816,16 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
2702
2816
  outro?: string | undefined;
2703
2817
  }[];
2704
2818
  label?: string | undefined;
2819
+ defaultValue?: string[] | undefined;
2820
+ readOnly?: boolean | undefined;
2705
2821
  } | {
2706
2822
  type: "number";
2707
2823
  label?: string | undefined;
2708
2824
  minimum?: number | undefined;
2709
2825
  maximum?: number | undefined;
2826
+ defaultValue?: number | undefined;
2710
2827
  step?: number | undefined;
2828
+ readOnly?: boolean | undefined;
2711
2829
  } | {
2712
2830
  type: "boolean";
2713
2831
  label?: string | undefined;
@@ -2715,6 +2833,8 @@ export declare const criteriaTreeSchema: z.ZodObject<z.objectUtil.extendShape<Pi
2715
2833
  false: string;
2716
2834
  true: string;
2717
2835
  } | undefined;
2836
+ defaultValue?: boolean | undefined;
2837
+ readOnly?: boolean | undefined;
2718
2838
  };
2719
2839
  data?: {
2720
2840
  type?: "number" | "percentage" | undefined;
@@ -3489,6 +3609,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
3489
3609
  definition: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
3490
3610
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
3491
3611
  label: z.ZodOptional<z.ZodString>;
3612
+ readOnly: z.ZodOptional<z.ZodBoolean>;
3492
3613
  }, {
3493
3614
  type: z.ZodLiteral<"select-single">;
3494
3615
  options: z.ZodArray<z.ZodObject<{
@@ -3510,6 +3631,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
3510
3631
  intro?: string | undefined;
3511
3632
  outro?: string | undefined;
3512
3633
  }>, "many">;
3634
+ defaultValue: z.ZodOptional<z.ZodString>;
3513
3635
  }>, "strip", z.ZodTypeAny, {
3514
3636
  type: "select-single";
3515
3637
  options: {
@@ -3520,6 +3642,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
3520
3642
  outro?: string | undefined;
3521
3643
  }[];
3522
3644
  label?: string | undefined;
3645
+ defaultValue?: string | undefined;
3646
+ readOnly?: boolean | undefined;
3523
3647
  }, {
3524
3648
  type: "select-single";
3525
3649
  options: {
@@ -3530,9 +3654,12 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
3530
3654
  outro?: string | undefined;
3531
3655
  }[];
3532
3656
  label?: string | undefined;
3657
+ defaultValue?: string | undefined;
3658
+ readOnly?: boolean | undefined;
3533
3659
  }>, z.ZodObject<z.objectUtil.extendShape<{
3534
3660
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
3535
3661
  label: z.ZodOptional<z.ZodString>;
3662
+ readOnly: z.ZodOptional<z.ZodBoolean>;
3536
3663
  }, {
3537
3664
  type: z.ZodLiteral<"select-multiple">;
3538
3665
  options: z.ZodArray<z.ZodObject<{
@@ -3554,6 +3681,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
3554
3681
  intro?: string | undefined;
3555
3682
  outro?: string | undefined;
3556
3683
  }>, "many">;
3684
+ defaultValue: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3557
3685
  }>, "strip", z.ZodTypeAny, {
3558
3686
  type: "select-multiple";
3559
3687
  options: {
@@ -3564,6 +3692,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
3564
3692
  outro?: string | undefined;
3565
3693
  }[];
3566
3694
  label?: string | undefined;
3695
+ defaultValue?: string[] | undefined;
3696
+ readOnly?: boolean | undefined;
3567
3697
  }, {
3568
3698
  type: "select-multiple";
3569
3699
  options: {
@@ -3574,29 +3704,38 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
3574
3704
  outro?: string | undefined;
3575
3705
  }[];
3576
3706
  label?: string | undefined;
3707
+ defaultValue?: string[] | undefined;
3708
+ readOnly?: boolean | undefined;
3577
3709
  }>, z.ZodObject<z.objectUtil.extendShape<{
3578
3710
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
3579
3711
  label: z.ZodOptional<z.ZodString>;
3712
+ readOnly: z.ZodOptional<z.ZodBoolean>;
3580
3713
  }, {
3581
3714
  type: z.ZodLiteral<"number">;
3582
3715
  minimum: z.ZodOptional<z.ZodNumber>;
3583
3716
  maximum: z.ZodOptional<z.ZodNumber>;
3584
3717
  step: z.ZodOptional<z.ZodNumber>;
3718
+ defaultValue: z.ZodOptional<z.ZodNumber>;
3585
3719
  }>, "strip", z.ZodTypeAny, {
3586
3720
  type: "number";
3587
3721
  label?: string | undefined;
3588
3722
  minimum?: number | undefined;
3589
3723
  maximum?: number | undefined;
3724
+ defaultValue?: number | undefined;
3590
3725
  step?: number | undefined;
3726
+ readOnly?: boolean | undefined;
3591
3727
  }, {
3592
3728
  type: "number";
3593
3729
  label?: string | undefined;
3594
3730
  minimum?: number | undefined;
3595
3731
  maximum?: number | undefined;
3732
+ defaultValue?: number | undefined;
3596
3733
  step?: number | undefined;
3734
+ readOnly?: boolean | undefined;
3597
3735
  }>, z.ZodObject<z.objectUtil.extendShape<{
3598
3736
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
3599
3737
  label: z.ZodOptional<z.ZodString>;
3738
+ readOnly: z.ZodOptional<z.ZodBoolean>;
3600
3739
  }, {
3601
3740
  type: z.ZodLiteral<"boolean">;
3602
3741
  labels: z.ZodOptional<z.ZodObject<{
@@ -3609,6 +3748,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
3609
3748
  false: string;
3610
3749
  true: string;
3611
3750
  }>>;
3751
+ defaultValue: z.ZodOptional<z.ZodBoolean>;
3612
3752
  }>, "strip", z.ZodTypeAny, {
3613
3753
  type: "boolean";
3614
3754
  label?: string | undefined;
@@ -3616,6 +3756,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
3616
3756
  false: string;
3617
3757
  true: string;
3618
3758
  } | undefined;
3759
+ defaultValue?: boolean | undefined;
3760
+ readOnly?: boolean | undefined;
3619
3761
  }, {
3620
3762
  type: "boolean";
3621
3763
  label?: string | undefined;
@@ -3623,6 +3765,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
3623
3765
  false: string;
3624
3766
  true: string;
3625
3767
  } | undefined;
3768
+ defaultValue?: boolean | undefined;
3769
+ readOnly?: boolean | undefined;
3626
3770
  }>]>;
3627
3771
  description: z.ZodOptional<z.ZodString>;
3628
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">]>>;
@@ -3646,6 +3790,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
3646
3790
  outro?: string | undefined;
3647
3791
  }[];
3648
3792
  label?: string | undefined;
3793
+ defaultValue?: string | undefined;
3794
+ readOnly?: boolean | undefined;
3649
3795
  } | {
3650
3796
  type: "select-multiple";
3651
3797
  options: {
@@ -3656,12 +3802,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
3656
3802
  outro?: string | undefined;
3657
3803
  }[];
3658
3804
  label?: string | undefined;
3805
+ defaultValue?: string[] | undefined;
3806
+ readOnly?: boolean | undefined;
3659
3807
  } | {
3660
3808
  type: "number";
3661
3809
  label?: string | undefined;
3662
3810
  minimum?: number | undefined;
3663
3811
  maximum?: number | undefined;
3812
+ defaultValue?: number | undefined;
3664
3813
  step?: number | undefined;
3814
+ readOnly?: boolean | undefined;
3665
3815
  } | {
3666
3816
  type: "boolean";
3667
3817
  label?: string | undefined;
@@ -3669,6 +3819,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
3669
3819
  false: string;
3670
3820
  true: string;
3671
3821
  } | undefined;
3822
+ defaultValue?: boolean | undefined;
3823
+ readOnly?: boolean | undefined;
3672
3824
  };
3673
3825
  data?: {
3674
3826
  type?: "number" | "percentage" | undefined;
@@ -3719,6 +3871,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
3719
3871
  outro?: string | undefined;
3720
3872
  }[];
3721
3873
  label?: string | undefined;
3874
+ defaultValue?: string | undefined;
3875
+ readOnly?: boolean | undefined;
3722
3876
  } | {
3723
3877
  type: "select-multiple";
3724
3878
  options: {
@@ -3729,12 +3883,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
3729
3883
  outro?: string | undefined;
3730
3884
  }[];
3731
3885
  label?: string | undefined;
3886
+ defaultValue?: string[] | undefined;
3887
+ readOnly?: boolean | undefined;
3732
3888
  } | {
3733
3889
  type: "number";
3734
3890
  label?: string | undefined;
3735
3891
  minimum?: number | undefined;
3736
3892
  maximum?: number | undefined;
3893
+ defaultValue?: number | undefined;
3737
3894
  step?: number | undefined;
3895
+ readOnly?: boolean | undefined;
3738
3896
  } | {
3739
3897
  type: "boolean";
3740
3898
  label?: string | undefined;
@@ -3742,6 +3900,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
3742
3900
  false: string;
3743
3901
  true: string;
3744
3902
  } | undefined;
3903
+ defaultValue?: boolean | undefined;
3904
+ readOnly?: boolean | undefined;
3745
3905
  };
3746
3906
  data?: {
3747
3907
  type?: "number" | "percentage" | undefined;
@@ -3804,6 +3964,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
3804
3964
  outro?: string | undefined;
3805
3965
  }[];
3806
3966
  label?: string | undefined;
3967
+ defaultValue?: string | undefined;
3968
+ readOnly?: boolean | undefined;
3807
3969
  } | {
3808
3970
  type: "select-multiple";
3809
3971
  options: {
@@ -3814,12 +3976,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
3814
3976
  outro?: string | undefined;
3815
3977
  }[];
3816
3978
  label?: string | undefined;
3979
+ defaultValue?: string[] | undefined;
3980
+ readOnly?: boolean | undefined;
3817
3981
  } | {
3818
3982
  type: "number";
3819
3983
  label?: string | undefined;
3820
3984
  minimum?: number | undefined;
3821
3985
  maximum?: number | undefined;
3986
+ defaultValue?: number | undefined;
3822
3987
  step?: number | undefined;
3988
+ readOnly?: boolean | undefined;
3823
3989
  } | {
3824
3990
  type: "boolean";
3825
3991
  label?: string | undefined;
@@ -3827,6 +3993,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
3827
3993
  false: string;
3828
3994
  true: string;
3829
3995
  } | undefined;
3996
+ defaultValue?: boolean | undefined;
3997
+ readOnly?: boolean | undefined;
3830
3998
  };
3831
3999
  data?: {
3832
4000
  type?: "number" | "percentage" | undefined;
@@ -3916,6 +4084,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
3916
4084
  outro?: string | undefined;
3917
4085
  }[];
3918
4086
  label?: string | undefined;
4087
+ defaultValue?: string | undefined;
4088
+ readOnly?: boolean | undefined;
3919
4089
  } | {
3920
4090
  type: "select-multiple";
3921
4091
  options: {
@@ -3926,12 +4096,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
3926
4096
  outro?: string | undefined;
3927
4097
  }[];
3928
4098
  label?: string | undefined;
4099
+ defaultValue?: string[] | undefined;
4100
+ readOnly?: boolean | undefined;
3929
4101
  } | {
3930
4102
  type: "number";
3931
4103
  label?: string | undefined;
3932
4104
  minimum?: number | undefined;
3933
4105
  maximum?: number | undefined;
4106
+ defaultValue?: number | undefined;
3934
4107
  step?: number | undefined;
4108
+ readOnly?: boolean | undefined;
3935
4109
  } | {
3936
4110
  type: "boolean";
3937
4111
  label?: string | undefined;
@@ -3939,6 +4113,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
3939
4113
  false: string;
3940
4114
  true: string;
3941
4115
  } | undefined;
4116
+ defaultValue?: boolean | undefined;
4117
+ readOnly?: boolean | undefined;
3942
4118
  };
3943
4119
  data?: {
3944
4120
  type?: "number" | "percentage" | undefined;
@@ -4043,6 +4219,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
4043
4219
  outro?: string | undefined;
4044
4220
  }[];
4045
4221
  label?: string | undefined;
4222
+ defaultValue?: string | undefined;
4223
+ readOnly?: boolean | undefined;
4046
4224
  } | {
4047
4225
  type: "select-multiple";
4048
4226
  options: {
@@ -4053,12 +4231,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
4053
4231
  outro?: string | undefined;
4054
4232
  }[];
4055
4233
  label?: string | undefined;
4234
+ defaultValue?: string[] | undefined;
4235
+ readOnly?: boolean | undefined;
4056
4236
  } | {
4057
4237
  type: "number";
4058
4238
  label?: string | undefined;
4059
4239
  minimum?: number | undefined;
4060
4240
  maximum?: number | undefined;
4241
+ defaultValue?: number | undefined;
4061
4242
  step?: number | undefined;
4243
+ readOnly?: boolean | undefined;
4062
4244
  } | {
4063
4245
  type: "boolean";
4064
4246
  label?: string | undefined;
@@ -4066,6 +4248,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
4066
4248
  false: string;
4067
4249
  true: string;
4068
4250
  } | undefined;
4251
+ defaultValue?: boolean | undefined;
4252
+ readOnly?: boolean | undefined;
4069
4253
  };
4070
4254
  data?: {
4071
4255
  type?: "number" | "percentage" | undefined;
@@ -4195,6 +4379,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
4195
4379
  outro?: string | undefined;
4196
4380
  }[];
4197
4381
  label?: string | undefined;
4382
+ defaultValue?: string | undefined;
4383
+ readOnly?: boolean | undefined;
4198
4384
  } | {
4199
4385
  type: "select-multiple";
4200
4386
  options: {
@@ -4205,12 +4391,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
4205
4391
  outro?: string | undefined;
4206
4392
  }[];
4207
4393
  label?: string | undefined;
4394
+ defaultValue?: string[] | undefined;
4395
+ readOnly?: boolean | undefined;
4208
4396
  } | {
4209
4397
  type: "number";
4210
4398
  label?: string | undefined;
4211
4399
  minimum?: number | undefined;
4212
4400
  maximum?: number | undefined;
4401
+ defaultValue?: number | undefined;
4213
4402
  step?: number | undefined;
4403
+ readOnly?: boolean | undefined;
4214
4404
  } | {
4215
4405
  type: "boolean";
4216
4406
  label?: string | undefined;
@@ -4218,6 +4408,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
4218
4408
  false: string;
4219
4409
  true: string;
4220
4410
  } | undefined;
4411
+ defaultValue?: boolean | undefined;
4412
+ readOnly?: boolean | undefined;
4221
4413
  };
4222
4414
  data?: {
4223
4415
  type?: "number" | "percentage" | undefined;
@@ -4362,6 +4554,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
4362
4554
  outro?: string | undefined;
4363
4555
  }[];
4364
4556
  label?: string | undefined;
4557
+ defaultValue?: string | undefined;
4558
+ readOnly?: boolean | undefined;
4365
4559
  } | {
4366
4560
  type: "select-multiple";
4367
4561
  options: {
@@ -4372,12 +4566,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
4372
4566
  outro?: string | undefined;
4373
4567
  }[];
4374
4568
  label?: string | undefined;
4569
+ defaultValue?: string[] | undefined;
4570
+ readOnly?: boolean | undefined;
4375
4571
  } | {
4376
4572
  type: "number";
4377
4573
  label?: string | undefined;
4378
4574
  minimum?: number | undefined;
4379
4575
  maximum?: number | undefined;
4576
+ defaultValue?: number | undefined;
4380
4577
  step?: number | undefined;
4578
+ readOnly?: boolean | undefined;
4381
4579
  } | {
4382
4580
  type: "boolean";
4383
4581
  label?: string | undefined;
@@ -4385,6 +4583,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
4385
4583
  false: string;
4386
4584
  true: string;
4387
4585
  } | undefined;
4586
+ defaultValue?: boolean | undefined;
4587
+ readOnly?: boolean | undefined;
4388
4588
  };
4389
4589
  data?: {
4390
4590
  type?: "number" | "percentage" | undefined;
@@ -4553,6 +4753,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
4553
4753
  outro?: string | undefined;
4554
4754
  }[];
4555
4755
  label?: string | undefined;
4756
+ defaultValue?: string | undefined;
4757
+ readOnly?: boolean | undefined;
4556
4758
  } | {
4557
4759
  type: "select-multiple";
4558
4760
  options: {
@@ -4563,12 +4765,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
4563
4765
  outro?: string | undefined;
4564
4766
  }[];
4565
4767
  label?: string | undefined;
4768
+ defaultValue?: string[] | undefined;
4769
+ readOnly?: boolean | undefined;
4566
4770
  } | {
4567
4771
  type: "number";
4568
4772
  label?: string | undefined;
4569
4773
  minimum?: number | undefined;
4570
4774
  maximum?: number | undefined;
4775
+ defaultValue?: number | undefined;
4571
4776
  step?: number | undefined;
4777
+ readOnly?: boolean | undefined;
4572
4778
  } | {
4573
4779
  type: "boolean";
4574
4780
  label?: string | undefined;
@@ -4576,6 +4782,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
4576
4782
  false: string;
4577
4783
  true: string;
4578
4784
  } | undefined;
4785
+ defaultValue?: boolean | undefined;
4786
+ readOnly?: boolean | undefined;
4579
4787
  };
4580
4788
  data?: {
4581
4789
  type?: "number" | "percentage" | undefined;
@@ -4759,6 +4967,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
4759
4967
  outro?: string | undefined;
4760
4968
  }[];
4761
4969
  label?: string | undefined;
4970
+ defaultValue?: string | undefined;
4971
+ readOnly?: boolean | undefined;
4762
4972
  } | {
4763
4973
  type: "select-multiple";
4764
4974
  options: {
@@ -4769,12 +4979,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
4769
4979
  outro?: string | undefined;
4770
4980
  }[];
4771
4981
  label?: string | undefined;
4982
+ defaultValue?: string[] | undefined;
4983
+ readOnly?: boolean | undefined;
4772
4984
  } | {
4773
4985
  type: "number";
4774
4986
  label?: string | undefined;
4775
4987
  minimum?: number | undefined;
4776
4988
  maximum?: number | undefined;
4989
+ defaultValue?: number | undefined;
4777
4990
  step?: number | undefined;
4991
+ readOnly?: boolean | undefined;
4778
4992
  } | {
4779
4993
  type: "boolean";
4780
4994
  label?: string | undefined;
@@ -4782,6 +4996,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
4782
4996
  false: string;
4783
4997
  true: string;
4784
4998
  } | undefined;
4999
+ defaultValue?: boolean | undefined;
5000
+ readOnly?: boolean | undefined;
4785
5001
  };
4786
5002
  data?: {
4787
5003
  type?: "number" | "percentage" | undefined;
@@ -5001,6 +5217,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
5001
5217
  outro?: string | undefined;
5002
5218
  }[];
5003
5219
  label?: string | undefined;
5220
+ defaultValue?: string | undefined;
5221
+ readOnly?: boolean | undefined;
5004
5222
  } | {
5005
5223
  type: "select-multiple";
5006
5224
  options: {
@@ -5011,12 +5229,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
5011
5229
  outro?: string | undefined;
5012
5230
  }[];
5013
5231
  label?: string | undefined;
5232
+ defaultValue?: string[] | undefined;
5233
+ readOnly?: boolean | undefined;
5014
5234
  } | {
5015
5235
  type: "number";
5016
5236
  label?: string | undefined;
5017
5237
  minimum?: number | undefined;
5018
5238
  maximum?: number | undefined;
5239
+ defaultValue?: number | undefined;
5019
5240
  step?: number | undefined;
5241
+ readOnly?: boolean | undefined;
5020
5242
  } | {
5021
5243
  type: "boolean";
5022
5244
  label?: string | undefined;
@@ -5024,6 +5246,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
5024
5246
  false: string;
5025
5247
  true: string;
5026
5248
  } | undefined;
5249
+ defaultValue?: boolean | undefined;
5250
+ readOnly?: boolean | undefined;
5027
5251
  };
5028
5252
  data?: {
5029
5253
  type?: "number" | "percentage" | undefined;
@@ -5625,6 +5849,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
5625
5849
  definition: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
5626
5850
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
5627
5851
  label: z.ZodOptional<z.ZodString>;
5852
+ readOnly: z.ZodOptional<z.ZodBoolean>;
5628
5853
  }, {
5629
5854
  type: z.ZodLiteral<"select-single">;
5630
5855
  options: z.ZodArray<z.ZodObject<{
@@ -5646,6 +5871,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
5646
5871
  intro?: string | undefined;
5647
5872
  outro?: string | undefined;
5648
5873
  }>, "many">;
5874
+ defaultValue: z.ZodOptional<z.ZodString>;
5649
5875
  }>, "strip", z.ZodTypeAny, {
5650
5876
  type: "select-single";
5651
5877
  options: {
@@ -5656,6 +5882,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
5656
5882
  outro?: string | undefined;
5657
5883
  }[];
5658
5884
  label?: string | undefined;
5885
+ defaultValue?: string | undefined;
5886
+ readOnly?: boolean | undefined;
5659
5887
  }, {
5660
5888
  type: "select-single";
5661
5889
  options: {
@@ -5666,9 +5894,12 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
5666
5894
  outro?: string | undefined;
5667
5895
  }[];
5668
5896
  label?: string | undefined;
5897
+ defaultValue?: string | undefined;
5898
+ readOnly?: boolean | undefined;
5669
5899
  }>, z.ZodObject<z.objectUtil.extendShape<{
5670
5900
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
5671
5901
  label: z.ZodOptional<z.ZodString>;
5902
+ readOnly: z.ZodOptional<z.ZodBoolean>;
5672
5903
  }, {
5673
5904
  type: z.ZodLiteral<"select-multiple">;
5674
5905
  options: z.ZodArray<z.ZodObject<{
@@ -5690,6 +5921,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
5690
5921
  intro?: string | undefined;
5691
5922
  outro?: string | undefined;
5692
5923
  }>, "many">;
5924
+ defaultValue: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
5693
5925
  }>, "strip", z.ZodTypeAny, {
5694
5926
  type: "select-multiple";
5695
5927
  options: {
@@ -5700,6 +5932,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
5700
5932
  outro?: string | undefined;
5701
5933
  }[];
5702
5934
  label?: string | undefined;
5935
+ defaultValue?: string[] | undefined;
5936
+ readOnly?: boolean | undefined;
5703
5937
  }, {
5704
5938
  type: "select-multiple";
5705
5939
  options: {
@@ -5710,29 +5944,38 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
5710
5944
  outro?: string | undefined;
5711
5945
  }[];
5712
5946
  label?: string | undefined;
5947
+ defaultValue?: string[] | undefined;
5948
+ readOnly?: boolean | undefined;
5713
5949
  }>, z.ZodObject<z.objectUtil.extendShape<{
5714
5950
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
5715
5951
  label: z.ZodOptional<z.ZodString>;
5952
+ readOnly: z.ZodOptional<z.ZodBoolean>;
5716
5953
  }, {
5717
5954
  type: z.ZodLiteral<"number">;
5718
5955
  minimum: z.ZodOptional<z.ZodNumber>;
5719
5956
  maximum: z.ZodOptional<z.ZodNumber>;
5720
5957
  step: z.ZodOptional<z.ZodNumber>;
5958
+ defaultValue: z.ZodOptional<z.ZodNumber>;
5721
5959
  }>, "strip", z.ZodTypeAny, {
5722
5960
  type: "number";
5723
5961
  label?: string | undefined;
5724
5962
  minimum?: number | undefined;
5725
5963
  maximum?: number | undefined;
5964
+ defaultValue?: number | undefined;
5726
5965
  step?: number | undefined;
5966
+ readOnly?: boolean | undefined;
5727
5967
  }, {
5728
5968
  type: "number";
5729
5969
  label?: string | undefined;
5730
5970
  minimum?: number | undefined;
5731
5971
  maximum?: number | undefined;
5972
+ defaultValue?: number | undefined;
5732
5973
  step?: number | undefined;
5974
+ readOnly?: boolean | undefined;
5733
5975
  }>, z.ZodObject<z.objectUtil.extendShape<{
5734
5976
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
5735
5977
  label: z.ZodOptional<z.ZodString>;
5978
+ readOnly: z.ZodOptional<z.ZodBoolean>;
5736
5979
  }, {
5737
5980
  type: z.ZodLiteral<"boolean">;
5738
5981
  labels: z.ZodOptional<z.ZodObject<{
@@ -5745,6 +5988,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
5745
5988
  false: string;
5746
5989
  true: string;
5747
5990
  }>>;
5991
+ defaultValue: z.ZodOptional<z.ZodBoolean>;
5748
5992
  }>, "strip", z.ZodTypeAny, {
5749
5993
  type: "boolean";
5750
5994
  label?: string | undefined;
@@ -5752,6 +5996,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
5752
5996
  false: string;
5753
5997
  true: string;
5754
5998
  } | undefined;
5999
+ defaultValue?: boolean | undefined;
6000
+ readOnly?: boolean | undefined;
5755
6001
  }, {
5756
6002
  type: "boolean";
5757
6003
  label?: string | undefined;
@@ -5759,6 +6005,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
5759
6005
  false: string;
5760
6006
  true: string;
5761
6007
  } | undefined;
6008
+ defaultValue?: boolean | undefined;
6009
+ readOnly?: boolean | undefined;
5762
6010
  }>]>;
5763
6011
  description: z.ZodOptional<z.ZodString>;
5764
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">]>>;
@@ -5782,6 +6030,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
5782
6030
  outro?: string | undefined;
5783
6031
  }[];
5784
6032
  label?: string | undefined;
6033
+ defaultValue?: string | undefined;
6034
+ readOnly?: boolean | undefined;
5785
6035
  } | {
5786
6036
  type: "select-multiple";
5787
6037
  options: {
@@ -5792,12 +6042,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
5792
6042
  outro?: string | undefined;
5793
6043
  }[];
5794
6044
  label?: string | undefined;
6045
+ defaultValue?: string[] | undefined;
6046
+ readOnly?: boolean | undefined;
5795
6047
  } | {
5796
6048
  type: "number";
5797
6049
  label?: string | undefined;
5798
6050
  minimum?: number | undefined;
5799
6051
  maximum?: number | undefined;
6052
+ defaultValue?: number | undefined;
5800
6053
  step?: number | undefined;
6054
+ readOnly?: boolean | undefined;
5801
6055
  } | {
5802
6056
  type: "boolean";
5803
6057
  label?: string | undefined;
@@ -5805,6 +6059,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
5805
6059
  false: string;
5806
6060
  true: string;
5807
6061
  } | undefined;
6062
+ defaultValue?: boolean | undefined;
6063
+ readOnly?: boolean | undefined;
5808
6064
  };
5809
6065
  data?: {
5810
6066
  type?: "number" | "percentage" | undefined;
@@ -5855,6 +6111,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
5855
6111
  outro?: string | undefined;
5856
6112
  }[];
5857
6113
  label?: string | undefined;
6114
+ defaultValue?: string | undefined;
6115
+ readOnly?: boolean | undefined;
5858
6116
  } | {
5859
6117
  type: "select-multiple";
5860
6118
  options: {
@@ -5865,12 +6123,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
5865
6123
  outro?: string | undefined;
5866
6124
  }[];
5867
6125
  label?: string | undefined;
6126
+ defaultValue?: string[] | undefined;
6127
+ readOnly?: boolean | undefined;
5868
6128
  } | {
5869
6129
  type: "number";
5870
6130
  label?: string | undefined;
5871
6131
  minimum?: number | undefined;
5872
6132
  maximum?: number | undefined;
6133
+ defaultValue?: number | undefined;
5873
6134
  step?: number | undefined;
6135
+ readOnly?: boolean | undefined;
5874
6136
  } | {
5875
6137
  type: "boolean";
5876
6138
  label?: string | undefined;
@@ -5878,6 +6140,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
5878
6140
  false: string;
5879
6141
  true: string;
5880
6142
  } | undefined;
6143
+ defaultValue?: boolean | undefined;
6144
+ readOnly?: boolean | undefined;
5881
6145
  };
5882
6146
  data?: {
5883
6147
  type?: "number" | "percentage" | undefined;
@@ -5940,6 +6204,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
5940
6204
  outro?: string | undefined;
5941
6205
  }[];
5942
6206
  label?: string | undefined;
6207
+ defaultValue?: string | undefined;
6208
+ readOnly?: boolean | undefined;
5943
6209
  } | {
5944
6210
  type: "select-multiple";
5945
6211
  options: {
@@ -5950,12 +6216,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
5950
6216
  outro?: string | undefined;
5951
6217
  }[];
5952
6218
  label?: string | undefined;
6219
+ defaultValue?: string[] | undefined;
6220
+ readOnly?: boolean | undefined;
5953
6221
  } | {
5954
6222
  type: "number";
5955
6223
  label?: string | undefined;
5956
6224
  minimum?: number | undefined;
5957
6225
  maximum?: number | undefined;
6226
+ defaultValue?: number | undefined;
5958
6227
  step?: number | undefined;
6228
+ readOnly?: boolean | undefined;
5959
6229
  } | {
5960
6230
  type: "boolean";
5961
6231
  label?: string | undefined;
@@ -5963,6 +6233,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
5963
6233
  false: string;
5964
6234
  true: string;
5965
6235
  } | undefined;
6236
+ defaultValue?: boolean | undefined;
6237
+ readOnly?: boolean | undefined;
5966
6238
  };
5967
6239
  data?: {
5968
6240
  type?: "number" | "percentage" | undefined;
@@ -6052,6 +6324,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
6052
6324
  outro?: string | undefined;
6053
6325
  }[];
6054
6326
  label?: string | undefined;
6327
+ defaultValue?: string | undefined;
6328
+ readOnly?: boolean | undefined;
6055
6329
  } | {
6056
6330
  type: "select-multiple";
6057
6331
  options: {
@@ -6062,12 +6336,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
6062
6336
  outro?: string | undefined;
6063
6337
  }[];
6064
6338
  label?: string | undefined;
6339
+ defaultValue?: string[] | undefined;
6340
+ readOnly?: boolean | undefined;
6065
6341
  } | {
6066
6342
  type: "number";
6067
6343
  label?: string | undefined;
6068
6344
  minimum?: number | undefined;
6069
6345
  maximum?: number | undefined;
6346
+ defaultValue?: number | undefined;
6070
6347
  step?: number | undefined;
6348
+ readOnly?: boolean | undefined;
6071
6349
  } | {
6072
6350
  type: "boolean";
6073
6351
  label?: string | undefined;
@@ -6075,6 +6353,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
6075
6353
  false: string;
6076
6354
  true: string;
6077
6355
  } | undefined;
6356
+ defaultValue?: boolean | undefined;
6357
+ readOnly?: boolean | undefined;
6078
6358
  };
6079
6359
  data?: {
6080
6360
  type?: "number" | "percentage" | undefined;
@@ -6179,6 +6459,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
6179
6459
  outro?: string | undefined;
6180
6460
  }[];
6181
6461
  label?: string | undefined;
6462
+ defaultValue?: string | undefined;
6463
+ readOnly?: boolean | undefined;
6182
6464
  } | {
6183
6465
  type: "select-multiple";
6184
6466
  options: {
@@ -6189,12 +6471,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
6189
6471
  outro?: string | undefined;
6190
6472
  }[];
6191
6473
  label?: string | undefined;
6474
+ defaultValue?: string[] | undefined;
6475
+ readOnly?: boolean | undefined;
6192
6476
  } | {
6193
6477
  type: "number";
6194
6478
  label?: string | undefined;
6195
6479
  minimum?: number | undefined;
6196
6480
  maximum?: number | undefined;
6481
+ defaultValue?: number | undefined;
6197
6482
  step?: number | undefined;
6483
+ readOnly?: boolean | undefined;
6198
6484
  } | {
6199
6485
  type: "boolean";
6200
6486
  label?: string | undefined;
@@ -6202,6 +6488,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
6202
6488
  false: string;
6203
6489
  true: string;
6204
6490
  } | undefined;
6491
+ defaultValue?: boolean | undefined;
6492
+ readOnly?: boolean | undefined;
6205
6493
  };
6206
6494
  data?: {
6207
6495
  type?: "number" | "percentage" | undefined;
@@ -6331,6 +6619,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
6331
6619
  outro?: string | undefined;
6332
6620
  }[];
6333
6621
  label?: string | undefined;
6622
+ defaultValue?: string | undefined;
6623
+ readOnly?: boolean | undefined;
6334
6624
  } | {
6335
6625
  type: "select-multiple";
6336
6626
  options: {
@@ -6341,12 +6631,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
6341
6631
  outro?: string | undefined;
6342
6632
  }[];
6343
6633
  label?: string | undefined;
6634
+ defaultValue?: string[] | undefined;
6635
+ readOnly?: boolean | undefined;
6344
6636
  } | {
6345
6637
  type: "number";
6346
6638
  label?: string | undefined;
6347
6639
  minimum?: number | undefined;
6348
6640
  maximum?: number | undefined;
6641
+ defaultValue?: number | undefined;
6349
6642
  step?: number | undefined;
6643
+ readOnly?: boolean | undefined;
6350
6644
  } | {
6351
6645
  type: "boolean";
6352
6646
  label?: string | undefined;
@@ -6354,6 +6648,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
6354
6648
  false: string;
6355
6649
  true: string;
6356
6650
  } | undefined;
6651
+ defaultValue?: boolean | undefined;
6652
+ readOnly?: boolean | undefined;
6357
6653
  };
6358
6654
  data?: {
6359
6655
  type?: "number" | "percentage" | undefined;
@@ -6498,6 +6794,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
6498
6794
  outro?: string | undefined;
6499
6795
  }[];
6500
6796
  label?: string | undefined;
6797
+ defaultValue?: string | undefined;
6798
+ readOnly?: boolean | undefined;
6501
6799
  } | {
6502
6800
  type: "select-multiple";
6503
6801
  options: {
@@ -6508,12 +6806,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
6508
6806
  outro?: string | undefined;
6509
6807
  }[];
6510
6808
  label?: string | undefined;
6809
+ defaultValue?: string[] | undefined;
6810
+ readOnly?: boolean | undefined;
6511
6811
  } | {
6512
6812
  type: "number";
6513
6813
  label?: string | undefined;
6514
6814
  minimum?: number | undefined;
6515
6815
  maximum?: number | undefined;
6816
+ defaultValue?: number | undefined;
6516
6817
  step?: number | undefined;
6818
+ readOnly?: boolean | undefined;
6517
6819
  } | {
6518
6820
  type: "boolean";
6519
6821
  label?: string | undefined;
@@ -6521,6 +6823,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
6521
6823
  false: string;
6522
6824
  true: string;
6523
6825
  } | undefined;
6826
+ defaultValue?: boolean | undefined;
6827
+ readOnly?: boolean | undefined;
6524
6828
  };
6525
6829
  data?: {
6526
6830
  type?: "number" | "percentage" | undefined;
@@ -6689,6 +6993,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
6689
6993
  outro?: string | undefined;
6690
6994
  }[];
6691
6995
  label?: string | undefined;
6996
+ defaultValue?: string | undefined;
6997
+ readOnly?: boolean | undefined;
6692
6998
  } | {
6693
6999
  type: "select-multiple";
6694
7000
  options: {
@@ -6699,12 +7005,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
6699
7005
  outro?: string | undefined;
6700
7006
  }[];
6701
7007
  label?: string | undefined;
7008
+ defaultValue?: string[] | undefined;
7009
+ readOnly?: boolean | undefined;
6702
7010
  } | {
6703
7011
  type: "number";
6704
7012
  label?: string | undefined;
6705
7013
  minimum?: number | undefined;
6706
7014
  maximum?: number | undefined;
7015
+ defaultValue?: number | undefined;
6707
7016
  step?: number | undefined;
7017
+ readOnly?: boolean | undefined;
6708
7018
  } | {
6709
7019
  type: "boolean";
6710
7020
  label?: string | undefined;
@@ -6712,6 +7022,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
6712
7022
  false: string;
6713
7023
  true: string;
6714
7024
  } | undefined;
7025
+ defaultValue?: boolean | undefined;
7026
+ readOnly?: boolean | undefined;
6715
7027
  };
6716
7028
  data?: {
6717
7029
  type?: "number" | "percentage" | undefined;
@@ -7174,6 +7486,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7174
7486
  definition: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
7175
7487
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
7176
7488
  label: z.ZodOptional<z.ZodString>;
7489
+ readOnly: z.ZodOptional<z.ZodBoolean>;
7177
7490
  }, {
7178
7491
  type: z.ZodLiteral<"select-single">;
7179
7492
  options: z.ZodArray<z.ZodObject<{
@@ -7195,6 +7508,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7195
7508
  intro?: string | undefined;
7196
7509
  outro?: string | undefined;
7197
7510
  }>, "many">;
7511
+ defaultValue: z.ZodOptional<z.ZodString>;
7198
7512
  }>, "strip", z.ZodTypeAny, {
7199
7513
  type: "select-single";
7200
7514
  options: {
@@ -7205,6 +7519,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7205
7519
  outro?: string | undefined;
7206
7520
  }[];
7207
7521
  label?: string | undefined;
7522
+ defaultValue?: string | undefined;
7523
+ readOnly?: boolean | undefined;
7208
7524
  }, {
7209
7525
  type: "select-single";
7210
7526
  options: {
@@ -7215,9 +7531,12 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7215
7531
  outro?: string | undefined;
7216
7532
  }[];
7217
7533
  label?: string | undefined;
7534
+ defaultValue?: string | undefined;
7535
+ readOnly?: boolean | undefined;
7218
7536
  }>, z.ZodObject<z.objectUtil.extendShape<{
7219
7537
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
7220
7538
  label: z.ZodOptional<z.ZodString>;
7539
+ readOnly: z.ZodOptional<z.ZodBoolean>;
7221
7540
  }, {
7222
7541
  type: z.ZodLiteral<"select-multiple">;
7223
7542
  options: z.ZodArray<z.ZodObject<{
@@ -7239,6 +7558,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7239
7558
  intro?: string | undefined;
7240
7559
  outro?: string | undefined;
7241
7560
  }>, "many">;
7561
+ defaultValue: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7242
7562
  }>, "strip", z.ZodTypeAny, {
7243
7563
  type: "select-multiple";
7244
7564
  options: {
@@ -7249,6 +7569,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7249
7569
  outro?: string | undefined;
7250
7570
  }[];
7251
7571
  label?: string | undefined;
7572
+ defaultValue?: string[] | undefined;
7573
+ readOnly?: boolean | undefined;
7252
7574
  }, {
7253
7575
  type: "select-multiple";
7254
7576
  options: {
@@ -7259,29 +7581,38 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7259
7581
  outro?: string | undefined;
7260
7582
  }[];
7261
7583
  label?: string | undefined;
7584
+ defaultValue?: string[] | undefined;
7585
+ readOnly?: boolean | undefined;
7262
7586
  }>, z.ZodObject<z.objectUtil.extendShape<{
7263
7587
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
7264
7588
  label: z.ZodOptional<z.ZodString>;
7589
+ readOnly: z.ZodOptional<z.ZodBoolean>;
7265
7590
  }, {
7266
7591
  type: z.ZodLiteral<"number">;
7267
7592
  minimum: z.ZodOptional<z.ZodNumber>;
7268
7593
  maximum: z.ZodOptional<z.ZodNumber>;
7269
7594
  step: z.ZodOptional<z.ZodNumber>;
7595
+ defaultValue: z.ZodOptional<z.ZodNumber>;
7270
7596
  }>, "strip", z.ZodTypeAny, {
7271
7597
  type: "number";
7272
7598
  label?: string | undefined;
7273
7599
  minimum?: number | undefined;
7274
7600
  maximum?: number | undefined;
7601
+ defaultValue?: number | undefined;
7275
7602
  step?: number | undefined;
7603
+ readOnly?: boolean | undefined;
7276
7604
  }, {
7277
7605
  type: "number";
7278
7606
  label?: string | undefined;
7279
7607
  minimum?: number | undefined;
7280
7608
  maximum?: number | undefined;
7609
+ defaultValue?: number | undefined;
7281
7610
  step?: number | undefined;
7611
+ readOnly?: boolean | undefined;
7282
7612
  }>, z.ZodObject<z.objectUtil.extendShape<{
7283
7613
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
7284
7614
  label: z.ZodOptional<z.ZodString>;
7615
+ readOnly: z.ZodOptional<z.ZodBoolean>;
7285
7616
  }, {
7286
7617
  type: z.ZodLiteral<"boolean">;
7287
7618
  labels: z.ZodOptional<z.ZodObject<{
@@ -7294,6 +7625,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7294
7625
  false: string;
7295
7626
  true: string;
7296
7627
  }>>;
7628
+ defaultValue: z.ZodOptional<z.ZodBoolean>;
7297
7629
  }>, "strip", z.ZodTypeAny, {
7298
7630
  type: "boolean";
7299
7631
  label?: string | undefined;
@@ -7301,6 +7633,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7301
7633
  false: string;
7302
7634
  true: string;
7303
7635
  } | undefined;
7636
+ defaultValue?: boolean | undefined;
7637
+ readOnly?: boolean | undefined;
7304
7638
  }, {
7305
7639
  type: "boolean";
7306
7640
  label?: string | undefined;
@@ -7308,6 +7642,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7308
7642
  false: string;
7309
7643
  true: string;
7310
7644
  } | undefined;
7645
+ defaultValue?: boolean | undefined;
7646
+ readOnly?: boolean | undefined;
7311
7647
  }>]>;
7312
7648
  description: z.ZodOptional<z.ZodString>;
7313
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">]>>;
@@ -7331,6 +7667,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7331
7667
  outro?: string | undefined;
7332
7668
  }[];
7333
7669
  label?: string | undefined;
7670
+ defaultValue?: string | undefined;
7671
+ readOnly?: boolean | undefined;
7334
7672
  } | {
7335
7673
  type: "select-multiple";
7336
7674
  options: {
@@ -7341,12 +7679,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7341
7679
  outro?: string | undefined;
7342
7680
  }[];
7343
7681
  label?: string | undefined;
7682
+ defaultValue?: string[] | undefined;
7683
+ readOnly?: boolean | undefined;
7344
7684
  } | {
7345
7685
  type: "number";
7346
7686
  label?: string | undefined;
7347
7687
  minimum?: number | undefined;
7348
7688
  maximum?: number | undefined;
7689
+ defaultValue?: number | undefined;
7349
7690
  step?: number | undefined;
7691
+ readOnly?: boolean | undefined;
7350
7692
  } | {
7351
7693
  type: "boolean";
7352
7694
  label?: string | undefined;
@@ -7354,6 +7696,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7354
7696
  false: string;
7355
7697
  true: string;
7356
7698
  } | undefined;
7699
+ defaultValue?: boolean | undefined;
7700
+ readOnly?: boolean | undefined;
7357
7701
  };
7358
7702
  data?: {
7359
7703
  type?: "number" | "percentage" | undefined;
@@ -7404,6 +7748,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7404
7748
  outro?: string | undefined;
7405
7749
  }[];
7406
7750
  label?: string | undefined;
7751
+ defaultValue?: string | undefined;
7752
+ readOnly?: boolean | undefined;
7407
7753
  } | {
7408
7754
  type: "select-multiple";
7409
7755
  options: {
@@ -7414,12 +7760,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7414
7760
  outro?: string | undefined;
7415
7761
  }[];
7416
7762
  label?: string | undefined;
7763
+ defaultValue?: string[] | undefined;
7764
+ readOnly?: boolean | undefined;
7417
7765
  } | {
7418
7766
  type: "number";
7419
7767
  label?: string | undefined;
7420
7768
  minimum?: number | undefined;
7421
7769
  maximum?: number | undefined;
7770
+ defaultValue?: number | undefined;
7422
7771
  step?: number | undefined;
7772
+ readOnly?: boolean | undefined;
7423
7773
  } | {
7424
7774
  type: "boolean";
7425
7775
  label?: string | undefined;
@@ -7427,6 +7777,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7427
7777
  false: string;
7428
7778
  true: string;
7429
7779
  } | undefined;
7780
+ defaultValue?: boolean | undefined;
7781
+ readOnly?: boolean | undefined;
7430
7782
  };
7431
7783
  data?: {
7432
7784
  type?: "number" | "percentage" | undefined;
@@ -7489,6 +7841,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7489
7841
  outro?: string | undefined;
7490
7842
  }[];
7491
7843
  label?: string | undefined;
7844
+ defaultValue?: string | undefined;
7845
+ readOnly?: boolean | undefined;
7492
7846
  } | {
7493
7847
  type: "select-multiple";
7494
7848
  options: {
@@ -7499,12 +7853,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7499
7853
  outro?: string | undefined;
7500
7854
  }[];
7501
7855
  label?: string | undefined;
7856
+ defaultValue?: string[] | undefined;
7857
+ readOnly?: boolean | undefined;
7502
7858
  } | {
7503
7859
  type: "number";
7504
7860
  label?: string | undefined;
7505
7861
  minimum?: number | undefined;
7506
7862
  maximum?: number | undefined;
7863
+ defaultValue?: number | undefined;
7507
7864
  step?: number | undefined;
7865
+ readOnly?: boolean | undefined;
7508
7866
  } | {
7509
7867
  type: "boolean";
7510
7868
  label?: string | undefined;
@@ -7512,6 +7870,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7512
7870
  false: string;
7513
7871
  true: string;
7514
7872
  } | undefined;
7873
+ defaultValue?: boolean | undefined;
7874
+ readOnly?: boolean | undefined;
7515
7875
  };
7516
7876
  data?: {
7517
7877
  type?: "number" | "percentage" | undefined;
@@ -7601,6 +7961,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7601
7961
  outro?: string | undefined;
7602
7962
  }[];
7603
7963
  label?: string | undefined;
7964
+ defaultValue?: string | undefined;
7965
+ readOnly?: boolean | undefined;
7604
7966
  } | {
7605
7967
  type: "select-multiple";
7606
7968
  options: {
@@ -7611,12 +7973,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7611
7973
  outro?: string | undefined;
7612
7974
  }[];
7613
7975
  label?: string | undefined;
7976
+ defaultValue?: string[] | undefined;
7977
+ readOnly?: boolean | undefined;
7614
7978
  } | {
7615
7979
  type: "number";
7616
7980
  label?: string | undefined;
7617
7981
  minimum?: number | undefined;
7618
7982
  maximum?: number | undefined;
7983
+ defaultValue?: number | undefined;
7619
7984
  step?: number | undefined;
7985
+ readOnly?: boolean | undefined;
7620
7986
  } | {
7621
7987
  type: "boolean";
7622
7988
  label?: string | undefined;
@@ -7624,6 +7990,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7624
7990
  false: string;
7625
7991
  true: string;
7626
7992
  } | undefined;
7993
+ defaultValue?: boolean | undefined;
7994
+ readOnly?: boolean | undefined;
7627
7995
  };
7628
7996
  data?: {
7629
7997
  type?: "number" | "percentage" | undefined;
@@ -7728,6 +8096,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7728
8096
  outro?: string | undefined;
7729
8097
  }[];
7730
8098
  label?: string | undefined;
8099
+ defaultValue?: string | undefined;
8100
+ readOnly?: boolean | undefined;
7731
8101
  } | {
7732
8102
  type: "select-multiple";
7733
8103
  options: {
@@ -7738,12 +8108,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7738
8108
  outro?: string | undefined;
7739
8109
  }[];
7740
8110
  label?: string | undefined;
8111
+ defaultValue?: string[] | undefined;
8112
+ readOnly?: boolean | undefined;
7741
8113
  } | {
7742
8114
  type: "number";
7743
8115
  label?: string | undefined;
7744
8116
  minimum?: number | undefined;
7745
8117
  maximum?: number | undefined;
8118
+ defaultValue?: number | undefined;
7746
8119
  step?: number | undefined;
8120
+ readOnly?: boolean | undefined;
7747
8121
  } | {
7748
8122
  type: "boolean";
7749
8123
  label?: string | undefined;
@@ -7751,6 +8125,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7751
8125
  false: string;
7752
8126
  true: string;
7753
8127
  } | undefined;
8128
+ defaultValue?: boolean | undefined;
8129
+ readOnly?: boolean | undefined;
7754
8130
  };
7755
8131
  data?: {
7756
8132
  type?: "number" | "percentage" | undefined;
@@ -7880,6 +8256,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7880
8256
  outro?: string | undefined;
7881
8257
  }[];
7882
8258
  label?: string | undefined;
8259
+ defaultValue?: string | undefined;
8260
+ readOnly?: boolean | undefined;
7883
8261
  } | {
7884
8262
  type: "select-multiple";
7885
8263
  options: {
@@ -7890,12 +8268,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7890
8268
  outro?: string | undefined;
7891
8269
  }[];
7892
8270
  label?: string | undefined;
8271
+ defaultValue?: string[] | undefined;
8272
+ readOnly?: boolean | undefined;
7893
8273
  } | {
7894
8274
  type: "number";
7895
8275
  label?: string | undefined;
7896
8276
  minimum?: number | undefined;
7897
8277
  maximum?: number | undefined;
8278
+ defaultValue?: number | undefined;
7898
8279
  step?: number | undefined;
8280
+ readOnly?: boolean | undefined;
7899
8281
  } | {
7900
8282
  type: "boolean";
7901
8283
  label?: string | undefined;
@@ -7903,6 +8285,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
7903
8285
  false: string;
7904
8286
  true: string;
7905
8287
  } | undefined;
8288
+ defaultValue?: boolean | undefined;
8289
+ readOnly?: boolean | undefined;
7906
8290
  };
7907
8291
  data?: {
7908
8292
  type?: "number" | "percentage" | undefined;
@@ -8237,6 +8621,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8237
8621
  definition: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
8238
8622
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
8239
8623
  label: z.ZodOptional<z.ZodString>;
8624
+ readOnly: z.ZodOptional<z.ZodBoolean>;
8240
8625
  }, {
8241
8626
  type: z.ZodLiteral<"select-single">;
8242
8627
  options: z.ZodArray<z.ZodObject<{
@@ -8258,6 +8643,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8258
8643
  intro?: string | undefined;
8259
8644
  outro?: string | undefined;
8260
8645
  }>, "many">;
8646
+ defaultValue: z.ZodOptional<z.ZodString>;
8261
8647
  }>, "strip", z.ZodTypeAny, {
8262
8648
  type: "select-single";
8263
8649
  options: {
@@ -8268,6 +8654,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8268
8654
  outro?: string | undefined;
8269
8655
  }[];
8270
8656
  label?: string | undefined;
8657
+ defaultValue?: string | undefined;
8658
+ readOnly?: boolean | undefined;
8271
8659
  }, {
8272
8660
  type: "select-single";
8273
8661
  options: {
@@ -8278,9 +8666,12 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8278
8666
  outro?: string | undefined;
8279
8667
  }[];
8280
8668
  label?: string | undefined;
8669
+ defaultValue?: string | undefined;
8670
+ readOnly?: boolean | undefined;
8281
8671
  }>, z.ZodObject<z.objectUtil.extendShape<{
8282
8672
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
8283
8673
  label: z.ZodOptional<z.ZodString>;
8674
+ readOnly: z.ZodOptional<z.ZodBoolean>;
8284
8675
  }, {
8285
8676
  type: z.ZodLiteral<"select-multiple">;
8286
8677
  options: z.ZodArray<z.ZodObject<{
@@ -8302,6 +8693,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8302
8693
  intro?: string | undefined;
8303
8694
  outro?: string | undefined;
8304
8695
  }>, "many">;
8696
+ defaultValue: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8305
8697
  }>, "strip", z.ZodTypeAny, {
8306
8698
  type: "select-multiple";
8307
8699
  options: {
@@ -8312,6 +8704,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8312
8704
  outro?: string | undefined;
8313
8705
  }[];
8314
8706
  label?: string | undefined;
8707
+ defaultValue?: string[] | undefined;
8708
+ readOnly?: boolean | undefined;
8315
8709
  }, {
8316
8710
  type: "select-multiple";
8317
8711
  options: {
@@ -8322,29 +8716,38 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8322
8716
  outro?: string | undefined;
8323
8717
  }[];
8324
8718
  label?: string | undefined;
8719
+ defaultValue?: string[] | undefined;
8720
+ readOnly?: boolean | undefined;
8325
8721
  }>, z.ZodObject<z.objectUtil.extendShape<{
8326
8722
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
8327
8723
  label: z.ZodOptional<z.ZodString>;
8724
+ readOnly: z.ZodOptional<z.ZodBoolean>;
8328
8725
  }, {
8329
8726
  type: z.ZodLiteral<"number">;
8330
8727
  minimum: z.ZodOptional<z.ZodNumber>;
8331
8728
  maximum: z.ZodOptional<z.ZodNumber>;
8332
8729
  step: z.ZodOptional<z.ZodNumber>;
8730
+ defaultValue: z.ZodOptional<z.ZodNumber>;
8333
8731
  }>, "strip", z.ZodTypeAny, {
8334
8732
  type: "number";
8335
8733
  label?: string | undefined;
8336
8734
  minimum?: number | undefined;
8337
8735
  maximum?: number | undefined;
8736
+ defaultValue?: number | undefined;
8338
8737
  step?: number | undefined;
8738
+ readOnly?: boolean | undefined;
8339
8739
  }, {
8340
8740
  type: "number";
8341
8741
  label?: string | undefined;
8342
8742
  minimum?: number | undefined;
8343
8743
  maximum?: number | undefined;
8744
+ defaultValue?: number | undefined;
8344
8745
  step?: number | undefined;
8746
+ readOnly?: boolean | undefined;
8345
8747
  }>, z.ZodObject<z.objectUtil.extendShape<{
8346
8748
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
8347
8749
  label: z.ZodOptional<z.ZodString>;
8750
+ readOnly: z.ZodOptional<z.ZodBoolean>;
8348
8751
  }, {
8349
8752
  type: z.ZodLiteral<"boolean">;
8350
8753
  labels: z.ZodOptional<z.ZodObject<{
@@ -8357,6 +8760,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8357
8760
  false: string;
8358
8761
  true: string;
8359
8762
  }>>;
8763
+ defaultValue: z.ZodOptional<z.ZodBoolean>;
8360
8764
  }>, "strip", z.ZodTypeAny, {
8361
8765
  type: "boolean";
8362
8766
  label?: string | undefined;
@@ -8364,6 +8768,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8364
8768
  false: string;
8365
8769
  true: string;
8366
8770
  } | undefined;
8771
+ defaultValue?: boolean | undefined;
8772
+ readOnly?: boolean | undefined;
8367
8773
  }, {
8368
8774
  type: "boolean";
8369
8775
  label?: string | undefined;
@@ -8371,6 +8777,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8371
8777
  false: string;
8372
8778
  true: string;
8373
8779
  } | undefined;
8780
+ defaultValue?: boolean | undefined;
8781
+ readOnly?: boolean | undefined;
8374
8782
  }>]>;
8375
8783
  description: z.ZodOptional<z.ZodString>;
8376
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">]>>;
@@ -8394,6 +8802,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8394
8802
  outro?: string | undefined;
8395
8803
  }[];
8396
8804
  label?: string | undefined;
8805
+ defaultValue?: string | undefined;
8806
+ readOnly?: boolean | undefined;
8397
8807
  } | {
8398
8808
  type: "select-multiple";
8399
8809
  options: {
@@ -8404,12 +8814,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8404
8814
  outro?: string | undefined;
8405
8815
  }[];
8406
8816
  label?: string | undefined;
8817
+ defaultValue?: string[] | undefined;
8818
+ readOnly?: boolean | undefined;
8407
8819
  } | {
8408
8820
  type: "number";
8409
8821
  label?: string | undefined;
8410
8822
  minimum?: number | undefined;
8411
8823
  maximum?: number | undefined;
8824
+ defaultValue?: number | undefined;
8412
8825
  step?: number | undefined;
8826
+ readOnly?: boolean | undefined;
8413
8827
  } | {
8414
8828
  type: "boolean";
8415
8829
  label?: string | undefined;
@@ -8417,6 +8831,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8417
8831
  false: string;
8418
8832
  true: string;
8419
8833
  } | undefined;
8834
+ defaultValue?: boolean | undefined;
8835
+ readOnly?: boolean | undefined;
8420
8836
  };
8421
8837
  data?: {
8422
8838
  type?: "number" | "percentage" | undefined;
@@ -8467,6 +8883,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8467
8883
  outro?: string | undefined;
8468
8884
  }[];
8469
8885
  label?: string | undefined;
8886
+ defaultValue?: string | undefined;
8887
+ readOnly?: boolean | undefined;
8470
8888
  } | {
8471
8889
  type: "select-multiple";
8472
8890
  options: {
@@ -8477,12 +8895,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8477
8895
  outro?: string | undefined;
8478
8896
  }[];
8479
8897
  label?: string | undefined;
8898
+ defaultValue?: string[] | undefined;
8899
+ readOnly?: boolean | undefined;
8480
8900
  } | {
8481
8901
  type: "number";
8482
8902
  label?: string | undefined;
8483
8903
  minimum?: number | undefined;
8484
8904
  maximum?: number | undefined;
8905
+ defaultValue?: number | undefined;
8485
8906
  step?: number | undefined;
8907
+ readOnly?: boolean | undefined;
8486
8908
  } | {
8487
8909
  type: "boolean";
8488
8910
  label?: string | undefined;
@@ -8490,6 +8912,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8490
8912
  false: string;
8491
8913
  true: string;
8492
8914
  } | undefined;
8915
+ defaultValue?: boolean | undefined;
8916
+ readOnly?: boolean | undefined;
8493
8917
  };
8494
8918
  data?: {
8495
8919
  type?: "number" | "percentage" | undefined;
@@ -8552,6 +8976,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8552
8976
  outro?: string | undefined;
8553
8977
  }[];
8554
8978
  label?: string | undefined;
8979
+ defaultValue?: string | undefined;
8980
+ readOnly?: boolean | undefined;
8555
8981
  } | {
8556
8982
  type: "select-multiple";
8557
8983
  options: {
@@ -8562,12 +8988,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8562
8988
  outro?: string | undefined;
8563
8989
  }[];
8564
8990
  label?: string | undefined;
8991
+ defaultValue?: string[] | undefined;
8992
+ readOnly?: boolean | undefined;
8565
8993
  } | {
8566
8994
  type: "number";
8567
8995
  label?: string | undefined;
8568
8996
  minimum?: number | undefined;
8569
8997
  maximum?: number | undefined;
8998
+ defaultValue?: number | undefined;
8570
8999
  step?: number | undefined;
9000
+ readOnly?: boolean | undefined;
8571
9001
  } | {
8572
9002
  type: "boolean";
8573
9003
  label?: string | undefined;
@@ -8575,6 +9005,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8575
9005
  false: string;
8576
9006
  true: string;
8577
9007
  } | undefined;
9008
+ defaultValue?: boolean | undefined;
9009
+ readOnly?: boolean | undefined;
8578
9010
  };
8579
9011
  data?: {
8580
9012
  type?: "number" | "percentage" | undefined;
@@ -8664,6 +9096,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8664
9096
  outro?: string | undefined;
8665
9097
  }[];
8666
9098
  label?: string | undefined;
9099
+ defaultValue?: string | undefined;
9100
+ readOnly?: boolean | undefined;
8667
9101
  } | {
8668
9102
  type: "select-multiple";
8669
9103
  options: {
@@ -8674,12 +9108,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8674
9108
  outro?: string | undefined;
8675
9109
  }[];
8676
9110
  label?: string | undefined;
9111
+ defaultValue?: string[] | undefined;
9112
+ readOnly?: boolean | undefined;
8677
9113
  } | {
8678
9114
  type: "number";
8679
9115
  label?: string | undefined;
8680
9116
  minimum?: number | undefined;
8681
9117
  maximum?: number | undefined;
9118
+ defaultValue?: number | undefined;
8682
9119
  step?: number | undefined;
9120
+ readOnly?: boolean | undefined;
8683
9121
  } | {
8684
9122
  type: "boolean";
8685
9123
  label?: string | undefined;
@@ -8687,6 +9125,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8687
9125
  false: string;
8688
9126
  true: string;
8689
9127
  } | undefined;
9128
+ defaultValue?: boolean | undefined;
9129
+ readOnly?: boolean | undefined;
8690
9130
  };
8691
9131
  data?: {
8692
9132
  type?: "number" | "percentage" | undefined;
@@ -8892,6 +9332,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8892
9332
  definition: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
8893
9333
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
8894
9334
  label: z.ZodOptional<z.ZodString>;
9335
+ readOnly: z.ZodOptional<z.ZodBoolean>;
8895
9336
  }, {
8896
9337
  type: z.ZodLiteral<"select-single">;
8897
9338
  options: z.ZodArray<z.ZodObject<{
@@ -8913,6 +9354,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8913
9354
  intro?: string | undefined;
8914
9355
  outro?: string | undefined;
8915
9356
  }>, "many">;
9357
+ defaultValue: z.ZodOptional<z.ZodString>;
8916
9358
  }>, "strip", z.ZodTypeAny, {
8917
9359
  type: "select-single";
8918
9360
  options: {
@@ -8923,6 +9365,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8923
9365
  outro?: string | undefined;
8924
9366
  }[];
8925
9367
  label?: string | undefined;
9368
+ defaultValue?: string | undefined;
9369
+ readOnly?: boolean | undefined;
8926
9370
  }, {
8927
9371
  type: "select-single";
8928
9372
  options: {
@@ -8933,9 +9377,12 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8933
9377
  outro?: string | undefined;
8934
9378
  }[];
8935
9379
  label?: string | undefined;
9380
+ defaultValue?: string | undefined;
9381
+ readOnly?: boolean | undefined;
8936
9382
  }>, z.ZodObject<z.objectUtil.extendShape<{
8937
9383
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
8938
9384
  label: z.ZodOptional<z.ZodString>;
9385
+ readOnly: z.ZodOptional<z.ZodBoolean>;
8939
9386
  }, {
8940
9387
  type: z.ZodLiteral<"select-multiple">;
8941
9388
  options: z.ZodArray<z.ZodObject<{
@@ -8957,6 +9404,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8957
9404
  intro?: string | undefined;
8958
9405
  outro?: string | undefined;
8959
9406
  }>, "many">;
9407
+ defaultValue: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8960
9408
  }>, "strip", z.ZodTypeAny, {
8961
9409
  type: "select-multiple";
8962
9410
  options: {
@@ -8967,6 +9415,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8967
9415
  outro?: string | undefined;
8968
9416
  }[];
8969
9417
  label?: string | undefined;
9418
+ defaultValue?: string[] | undefined;
9419
+ readOnly?: boolean | undefined;
8970
9420
  }, {
8971
9421
  type: "select-multiple";
8972
9422
  options: {
@@ -8977,29 +9427,38 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
8977
9427
  outro?: string | undefined;
8978
9428
  }[];
8979
9429
  label?: string | undefined;
9430
+ defaultValue?: string[] | undefined;
9431
+ readOnly?: boolean | undefined;
8980
9432
  }>, z.ZodObject<z.objectUtil.extendShape<{
8981
9433
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
8982
9434
  label: z.ZodOptional<z.ZodString>;
9435
+ readOnly: z.ZodOptional<z.ZodBoolean>;
8983
9436
  }, {
8984
9437
  type: z.ZodLiteral<"number">;
8985
9438
  minimum: z.ZodOptional<z.ZodNumber>;
8986
9439
  maximum: z.ZodOptional<z.ZodNumber>;
8987
9440
  step: z.ZodOptional<z.ZodNumber>;
9441
+ defaultValue: z.ZodOptional<z.ZodNumber>;
8988
9442
  }>, "strip", z.ZodTypeAny, {
8989
9443
  type: "number";
8990
9444
  label?: string | undefined;
8991
9445
  minimum?: number | undefined;
8992
9446
  maximum?: number | undefined;
9447
+ defaultValue?: number | undefined;
8993
9448
  step?: number | undefined;
9449
+ readOnly?: boolean | undefined;
8994
9450
  }, {
8995
9451
  type: "number";
8996
9452
  label?: string | undefined;
8997
9453
  minimum?: number | undefined;
8998
9454
  maximum?: number | undefined;
9455
+ defaultValue?: number | undefined;
8999
9456
  step?: number | undefined;
9457
+ readOnly?: boolean | undefined;
9000
9458
  }>, z.ZodObject<z.objectUtil.extendShape<{
9001
9459
  type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
9002
9460
  label: z.ZodOptional<z.ZodString>;
9461
+ readOnly: z.ZodOptional<z.ZodBoolean>;
9003
9462
  }, {
9004
9463
  type: z.ZodLiteral<"boolean">;
9005
9464
  labels: z.ZodOptional<z.ZodObject<{
@@ -9012,6 +9471,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
9012
9471
  false: string;
9013
9472
  true: string;
9014
9473
  }>>;
9474
+ defaultValue: z.ZodOptional<z.ZodBoolean>;
9015
9475
  }>, "strip", z.ZodTypeAny, {
9016
9476
  type: "boolean";
9017
9477
  label?: string | undefined;
@@ -9019,6 +9479,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
9019
9479
  false: string;
9020
9480
  true: string;
9021
9481
  } | undefined;
9482
+ defaultValue?: boolean | undefined;
9483
+ readOnly?: boolean | undefined;
9022
9484
  }, {
9023
9485
  type: "boolean";
9024
9486
  label?: string | undefined;
@@ -9026,6 +9488,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
9026
9488
  false: string;
9027
9489
  true: string;
9028
9490
  } | undefined;
9491
+ defaultValue?: boolean | undefined;
9492
+ readOnly?: boolean | undefined;
9029
9493
  }>]>;
9030
9494
  description: z.ZodOptional<z.ZodString>;
9031
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">]>>;
@@ -9049,6 +9513,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
9049
9513
  outro?: string | undefined;
9050
9514
  }[];
9051
9515
  label?: string | undefined;
9516
+ defaultValue?: string | undefined;
9517
+ readOnly?: boolean | undefined;
9052
9518
  } | {
9053
9519
  type: "select-multiple";
9054
9520
  options: {
@@ -9059,12 +9525,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
9059
9525
  outro?: string | undefined;
9060
9526
  }[];
9061
9527
  label?: string | undefined;
9528
+ defaultValue?: string[] | undefined;
9529
+ readOnly?: boolean | undefined;
9062
9530
  } | {
9063
9531
  type: "number";
9064
9532
  label?: string | undefined;
9065
9533
  minimum?: number | undefined;
9066
9534
  maximum?: number | undefined;
9535
+ defaultValue?: number | undefined;
9067
9536
  step?: number | undefined;
9537
+ readOnly?: boolean | undefined;
9068
9538
  } | {
9069
9539
  type: "boolean";
9070
9540
  label?: string | undefined;
@@ -9072,6 +9542,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
9072
9542
  false: string;
9073
9543
  true: string;
9074
9544
  } | undefined;
9545
+ defaultValue?: boolean | undefined;
9546
+ readOnly?: boolean | undefined;
9075
9547
  };
9076
9548
  data?: {
9077
9549
  type?: "number" | "percentage" | undefined;
@@ -9122,6 +9594,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
9122
9594
  outro?: string | undefined;
9123
9595
  }[];
9124
9596
  label?: string | undefined;
9597
+ defaultValue?: string | undefined;
9598
+ readOnly?: boolean | undefined;
9125
9599
  } | {
9126
9600
  type: "select-multiple";
9127
9601
  options: {
@@ -9132,12 +9606,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
9132
9606
  outro?: string | undefined;
9133
9607
  }[];
9134
9608
  label?: string | undefined;
9609
+ defaultValue?: string[] | undefined;
9610
+ readOnly?: boolean | undefined;
9135
9611
  } | {
9136
9612
  type: "number";
9137
9613
  label?: string | undefined;
9138
9614
  minimum?: number | undefined;
9139
9615
  maximum?: number | undefined;
9616
+ defaultValue?: number | undefined;
9140
9617
  step?: number | undefined;
9618
+ readOnly?: boolean | undefined;
9141
9619
  } | {
9142
9620
  type: "boolean";
9143
9621
  label?: string | undefined;
@@ -9145,6 +9623,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
9145
9623
  false: string;
9146
9624
  true: string;
9147
9625
  } | undefined;
9626
+ defaultValue?: boolean | undefined;
9627
+ readOnly?: boolean | undefined;
9148
9628
  };
9149
9629
  data?: {
9150
9630
  type?: "number" | "percentage" | undefined;