@openframe-org/criteria-set-protocol 2.1.6 → 2.1.8
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 +138 -186
- package/dist/v1/schemas/criterion.d.ts +26 -35
- package/dist/v1/schemas/task-group.d.ts +20 -27
- package/dist/v1/schemas/task-item.d.ts +8 -11
- package/dist/v1/schemas/task-item.js +1 -2
- package/dist/v1/schemas/task.d.ts +14 -19
- package/dist/v1/schemas/theme.d.ts +32 -43
- package/package.json +1 -1
|
@@ -412,7 +412,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
412
412
|
description: z.ZodOptional<z.ZodString>;
|
|
413
413
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
414
414
|
code: z.ZodString;
|
|
415
|
-
longFormTitle: z.ZodString;
|
|
416
415
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
417
416
|
documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
418
417
|
label: z.ZodString;
|
|
@@ -673,17 +672,19 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
673
672
|
}>]>;
|
|
674
673
|
description: z.ZodOptional<z.ZodString>;
|
|
675
674
|
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">]>>;
|
|
676
|
-
options: z.
|
|
675
|
+
options: z.ZodObject<{
|
|
677
676
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
|
678
677
|
}, "strip", z.ZodTypeAny, {
|
|
679
678
|
excludeFromTargets?: boolean | undefined;
|
|
680
679
|
}, {
|
|
681
680
|
excludeFromTargets?: boolean | undefined;
|
|
682
|
-
}
|
|
681
|
+
}>;
|
|
683
682
|
}, "strip", z.ZodTypeAny, {
|
|
684
683
|
code: string;
|
|
685
684
|
type: "task-item";
|
|
686
|
-
|
|
685
|
+
options: {
|
|
686
|
+
excludeFromTargets?: boolean | undefined;
|
|
687
|
+
};
|
|
687
688
|
definition: {
|
|
688
689
|
type: "select-single";
|
|
689
690
|
options: {
|
|
@@ -743,9 +744,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
743
744
|
readOnly?: boolean | undefined;
|
|
744
745
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
745
746
|
} | undefined;
|
|
746
|
-
options?: {
|
|
747
|
-
excludeFromTargets?: boolean | undefined;
|
|
748
|
-
} | undefined;
|
|
749
747
|
description?: string | undefined;
|
|
750
748
|
tags?: string[] | undefined;
|
|
751
749
|
documentation?: ({
|
|
@@ -768,7 +766,9 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
768
766
|
}, {
|
|
769
767
|
code: string;
|
|
770
768
|
type: "task-item";
|
|
771
|
-
|
|
769
|
+
options: {
|
|
770
|
+
excludeFromTargets?: boolean | undefined;
|
|
771
|
+
};
|
|
772
772
|
definition: {
|
|
773
773
|
type: "select-single";
|
|
774
774
|
options: {
|
|
@@ -828,9 +828,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
828
828
|
readOnly?: boolean | undefined;
|
|
829
829
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
830
830
|
} | undefined;
|
|
831
|
-
options?: {
|
|
832
|
-
excludeFromTargets?: boolean | undefined;
|
|
833
|
-
} | undefined;
|
|
834
831
|
description?: string | undefined;
|
|
835
832
|
tags?: string[] | undefined;
|
|
836
833
|
documentation?: ({
|
|
@@ -876,7 +873,9 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
876
873
|
items: {
|
|
877
874
|
code: string;
|
|
878
875
|
type: "task-item";
|
|
879
|
-
|
|
876
|
+
options: {
|
|
877
|
+
excludeFromTargets?: boolean | undefined;
|
|
878
|
+
};
|
|
880
879
|
definition: {
|
|
881
880
|
type: "select-single";
|
|
882
881
|
options: {
|
|
@@ -936,9 +935,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
936
935
|
readOnly?: boolean | undefined;
|
|
937
936
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
938
937
|
} | undefined;
|
|
939
|
-
options?: {
|
|
940
|
-
excludeFromTargets?: boolean | undefined;
|
|
941
|
-
} | undefined;
|
|
942
938
|
description?: string | undefined;
|
|
943
939
|
tags?: string[] | undefined;
|
|
944
940
|
documentation?: ({
|
|
@@ -1002,7 +998,9 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1002
998
|
items: {
|
|
1003
999
|
code: string;
|
|
1004
1000
|
type: "task-item";
|
|
1005
|
-
|
|
1001
|
+
options: {
|
|
1002
|
+
excludeFromTargets?: boolean | undefined;
|
|
1003
|
+
};
|
|
1006
1004
|
definition: {
|
|
1007
1005
|
type: "select-single";
|
|
1008
1006
|
options: {
|
|
@@ -1062,9 +1060,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1062
1060
|
readOnly?: boolean | undefined;
|
|
1063
1061
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
1064
1062
|
} | undefined;
|
|
1065
|
-
options?: {
|
|
1066
|
-
excludeFromTargets?: boolean | undefined;
|
|
1067
|
-
} | undefined;
|
|
1068
1063
|
description?: string | undefined;
|
|
1069
1064
|
tags?: string[] | undefined;
|
|
1070
1065
|
documentation?: ({
|
|
@@ -1133,7 +1128,9 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1133
1128
|
items: {
|
|
1134
1129
|
code: string;
|
|
1135
1130
|
type: "task-item";
|
|
1136
|
-
|
|
1131
|
+
options: {
|
|
1132
|
+
excludeFromTargets?: boolean | undefined;
|
|
1133
|
+
};
|
|
1137
1134
|
definition: {
|
|
1138
1135
|
type: "select-single";
|
|
1139
1136
|
options: {
|
|
@@ -1193,9 +1190,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1193
1190
|
readOnly?: boolean | undefined;
|
|
1194
1191
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
1195
1192
|
} | undefined;
|
|
1196
|
-
options?: {
|
|
1197
|
-
excludeFromTargets?: boolean | undefined;
|
|
1198
|
-
} | undefined;
|
|
1199
1193
|
description?: string | undefined;
|
|
1200
1194
|
tags?: string[] | undefined;
|
|
1201
1195
|
documentation?: ({
|
|
@@ -1296,7 +1290,9 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1296
1290
|
items: {
|
|
1297
1291
|
code: string;
|
|
1298
1292
|
type: "task-item";
|
|
1299
|
-
|
|
1293
|
+
options: {
|
|
1294
|
+
excludeFromTargets?: boolean | undefined;
|
|
1295
|
+
};
|
|
1300
1296
|
definition: {
|
|
1301
1297
|
type: "select-single";
|
|
1302
1298
|
options: {
|
|
@@ -1356,9 +1352,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1356
1352
|
readOnly?: boolean | undefined;
|
|
1357
1353
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
1358
1354
|
} | undefined;
|
|
1359
|
-
options?: {
|
|
1360
|
-
excludeFromTargets?: boolean | undefined;
|
|
1361
|
-
} | undefined;
|
|
1362
1355
|
description?: string | undefined;
|
|
1363
1356
|
tags?: string[] | undefined;
|
|
1364
1357
|
documentation?: ({
|
|
@@ -1522,7 +1515,9 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1522
1515
|
items: {
|
|
1523
1516
|
code: string;
|
|
1524
1517
|
type: "task-item";
|
|
1525
|
-
|
|
1518
|
+
options: {
|
|
1519
|
+
excludeFromTargets?: boolean | undefined;
|
|
1520
|
+
};
|
|
1526
1521
|
definition: {
|
|
1527
1522
|
type: "select-single";
|
|
1528
1523
|
options: {
|
|
@@ -1582,9 +1577,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1582
1577
|
readOnly?: boolean | undefined;
|
|
1583
1578
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
1584
1579
|
} | undefined;
|
|
1585
|
-
options?: {
|
|
1586
|
-
excludeFromTargets?: boolean | undefined;
|
|
1587
|
-
} | undefined;
|
|
1588
1580
|
description?: string | undefined;
|
|
1589
1581
|
tags?: string[] | undefined;
|
|
1590
1582
|
documentation?: ({
|
|
@@ -1735,7 +1727,9 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1735
1727
|
items: {
|
|
1736
1728
|
code: string;
|
|
1737
1729
|
type: "task-item";
|
|
1738
|
-
|
|
1730
|
+
options: {
|
|
1731
|
+
excludeFromTargets?: boolean | undefined;
|
|
1732
|
+
};
|
|
1739
1733
|
definition: {
|
|
1740
1734
|
type: "select-single";
|
|
1741
1735
|
options: {
|
|
@@ -1795,9 +1789,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
1795
1789
|
readOnly?: boolean | undefined;
|
|
1796
1790
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
1797
1791
|
} | undefined;
|
|
1798
|
-
options?: {
|
|
1799
|
-
excludeFromTargets?: boolean | undefined;
|
|
1800
|
-
} | undefined;
|
|
1801
1792
|
description?: string | undefined;
|
|
1802
1793
|
tags?: string[] | undefined;
|
|
1803
1794
|
documentation?: ({
|
|
@@ -2011,7 +2002,9 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2011
2002
|
items: {
|
|
2012
2003
|
code: string;
|
|
2013
2004
|
type: "task-item";
|
|
2014
|
-
|
|
2005
|
+
options: {
|
|
2006
|
+
excludeFromTargets?: boolean | undefined;
|
|
2007
|
+
};
|
|
2015
2008
|
definition: {
|
|
2016
2009
|
type: "select-single";
|
|
2017
2010
|
options: {
|
|
@@ -2071,9 +2064,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2071
2064
|
readOnly?: boolean | undefined;
|
|
2072
2065
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
2073
2066
|
} | undefined;
|
|
2074
|
-
options?: {
|
|
2075
|
-
excludeFromTargets?: boolean | undefined;
|
|
2076
|
-
} | undefined;
|
|
2077
2067
|
description?: string | undefined;
|
|
2078
2068
|
tags?: string[] | undefined;
|
|
2079
2069
|
documentation?: ({
|
|
@@ -2286,7 +2276,9 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2286
2276
|
items: {
|
|
2287
2277
|
code: string;
|
|
2288
2278
|
type: "task-item";
|
|
2289
|
-
|
|
2279
|
+
options: {
|
|
2280
|
+
excludeFromTargets?: boolean | undefined;
|
|
2281
|
+
};
|
|
2290
2282
|
definition: {
|
|
2291
2283
|
type: "select-single";
|
|
2292
2284
|
options: {
|
|
@@ -2346,9 +2338,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2346
2338
|
readOnly?: boolean | undefined;
|
|
2347
2339
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
2348
2340
|
} | undefined;
|
|
2349
|
-
options?: {
|
|
2350
|
-
excludeFromTargets?: boolean | undefined;
|
|
2351
|
-
} | undefined;
|
|
2352
2341
|
description?: string | undefined;
|
|
2353
2342
|
tags?: string[] | undefined;
|
|
2354
2343
|
documentation?: ({
|
|
@@ -2675,7 +2664,9 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2675
2664
|
items: {
|
|
2676
2665
|
code: string;
|
|
2677
2666
|
type: "task-item";
|
|
2678
|
-
|
|
2667
|
+
options: {
|
|
2668
|
+
excludeFromTargets?: boolean | undefined;
|
|
2669
|
+
};
|
|
2679
2670
|
definition: {
|
|
2680
2671
|
type: "select-single";
|
|
2681
2672
|
options: {
|
|
@@ -2735,9 +2726,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2735
2726
|
readOnly?: boolean | undefined;
|
|
2736
2727
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
2737
2728
|
} | undefined;
|
|
2738
|
-
options?: {
|
|
2739
|
-
excludeFromTargets?: boolean | undefined;
|
|
2740
|
-
} | undefined;
|
|
2741
2729
|
description?: string | undefined;
|
|
2742
2730
|
tags?: string[] | undefined;
|
|
2743
2731
|
documentation?: ({
|
|
@@ -2985,7 +2973,9 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
2985
2973
|
items: {
|
|
2986
2974
|
code: string;
|
|
2987
2975
|
type: "task-item";
|
|
2988
|
-
|
|
2976
|
+
options: {
|
|
2977
|
+
excludeFromTargets?: boolean | undefined;
|
|
2978
|
+
};
|
|
2989
2979
|
definition: {
|
|
2990
2980
|
type: "select-single";
|
|
2991
2981
|
options: {
|
|
@@ -3045,9 +3035,6 @@ export declare const criteriaTreeSchema: z.ZodObject<Pick<{
|
|
|
3045
3035
|
readOnly?: boolean | undefined;
|
|
3046
3036
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
3047
3037
|
} | undefined;
|
|
3048
|
-
options?: {
|
|
3049
|
-
excludeFromTargets?: boolean | undefined;
|
|
3050
|
-
} | undefined;
|
|
3051
3038
|
description?: string | undefined;
|
|
3052
3039
|
tags?: string[] | undefined;
|
|
3053
3040
|
documentation?: ({
|
|
@@ -3644,7 +3631,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3644
3631
|
description: z.ZodOptional<z.ZodString>;
|
|
3645
3632
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
3646
3633
|
code: z.ZodString;
|
|
3647
|
-
longFormTitle: z.ZodString;
|
|
3648
3634
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
3649
3635
|
documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
3650
3636
|
label: z.ZodString;
|
|
@@ -3905,17 +3891,19 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3905
3891
|
}>]>;
|
|
3906
3892
|
description: z.ZodOptional<z.ZodString>;
|
|
3907
3893
|
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">]>>;
|
|
3908
|
-
options: z.
|
|
3894
|
+
options: z.ZodObject<{
|
|
3909
3895
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
|
3910
3896
|
}, "strip", z.ZodTypeAny, {
|
|
3911
3897
|
excludeFromTargets?: boolean | undefined;
|
|
3912
3898
|
}, {
|
|
3913
3899
|
excludeFromTargets?: boolean | undefined;
|
|
3914
|
-
}
|
|
3900
|
+
}>;
|
|
3915
3901
|
}, "strip", z.ZodTypeAny, {
|
|
3916
3902
|
code: string;
|
|
3917
3903
|
type: "task-item";
|
|
3918
|
-
|
|
3904
|
+
options: {
|
|
3905
|
+
excludeFromTargets?: boolean | undefined;
|
|
3906
|
+
};
|
|
3919
3907
|
definition: {
|
|
3920
3908
|
type: "select-single";
|
|
3921
3909
|
options: {
|
|
@@ -3975,9 +3963,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
3975
3963
|
readOnly?: boolean | undefined;
|
|
3976
3964
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
3977
3965
|
} | undefined;
|
|
3978
|
-
options?: {
|
|
3979
|
-
excludeFromTargets?: boolean | undefined;
|
|
3980
|
-
} | undefined;
|
|
3981
3966
|
description?: string | undefined;
|
|
3982
3967
|
tags?: string[] | undefined;
|
|
3983
3968
|
documentation?: ({
|
|
@@ -4000,7 +3985,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4000
3985
|
}, {
|
|
4001
3986
|
code: string;
|
|
4002
3987
|
type: "task-item";
|
|
4003
|
-
|
|
3988
|
+
options: {
|
|
3989
|
+
excludeFromTargets?: boolean | undefined;
|
|
3990
|
+
};
|
|
4004
3991
|
definition: {
|
|
4005
3992
|
type: "select-single";
|
|
4006
3993
|
options: {
|
|
@@ -4060,9 +4047,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4060
4047
|
readOnly?: boolean | undefined;
|
|
4061
4048
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
4062
4049
|
} | undefined;
|
|
4063
|
-
options?: {
|
|
4064
|
-
excludeFromTargets?: boolean | undefined;
|
|
4065
|
-
} | undefined;
|
|
4066
4050
|
description?: string | undefined;
|
|
4067
4051
|
tags?: string[] | undefined;
|
|
4068
4052
|
documentation?: ({
|
|
@@ -4108,7 +4092,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4108
4092
|
items: {
|
|
4109
4093
|
code: string;
|
|
4110
4094
|
type: "task-item";
|
|
4111
|
-
|
|
4095
|
+
options: {
|
|
4096
|
+
excludeFromTargets?: boolean | undefined;
|
|
4097
|
+
};
|
|
4112
4098
|
definition: {
|
|
4113
4099
|
type: "select-single";
|
|
4114
4100
|
options: {
|
|
@@ -4168,9 +4154,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4168
4154
|
readOnly?: boolean | undefined;
|
|
4169
4155
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
4170
4156
|
} | undefined;
|
|
4171
|
-
options?: {
|
|
4172
|
-
excludeFromTargets?: boolean | undefined;
|
|
4173
|
-
} | undefined;
|
|
4174
4157
|
description?: string | undefined;
|
|
4175
4158
|
tags?: string[] | undefined;
|
|
4176
4159
|
documentation?: ({
|
|
@@ -4234,7 +4217,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4234
4217
|
items: {
|
|
4235
4218
|
code: string;
|
|
4236
4219
|
type: "task-item";
|
|
4237
|
-
|
|
4220
|
+
options: {
|
|
4221
|
+
excludeFromTargets?: boolean | undefined;
|
|
4222
|
+
};
|
|
4238
4223
|
definition: {
|
|
4239
4224
|
type: "select-single";
|
|
4240
4225
|
options: {
|
|
@@ -4294,9 +4279,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4294
4279
|
readOnly?: boolean | undefined;
|
|
4295
4280
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
4296
4281
|
} | undefined;
|
|
4297
|
-
options?: {
|
|
4298
|
-
excludeFromTargets?: boolean | undefined;
|
|
4299
|
-
} | undefined;
|
|
4300
4282
|
description?: string | undefined;
|
|
4301
4283
|
tags?: string[] | undefined;
|
|
4302
4284
|
documentation?: ({
|
|
@@ -4365,7 +4347,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4365
4347
|
items: {
|
|
4366
4348
|
code: string;
|
|
4367
4349
|
type: "task-item";
|
|
4368
|
-
|
|
4350
|
+
options: {
|
|
4351
|
+
excludeFromTargets?: boolean | undefined;
|
|
4352
|
+
};
|
|
4369
4353
|
definition: {
|
|
4370
4354
|
type: "select-single";
|
|
4371
4355
|
options: {
|
|
@@ -4425,9 +4409,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4425
4409
|
readOnly?: boolean | undefined;
|
|
4426
4410
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
4427
4411
|
} | undefined;
|
|
4428
|
-
options?: {
|
|
4429
|
-
excludeFromTargets?: boolean | undefined;
|
|
4430
|
-
} | undefined;
|
|
4431
4412
|
description?: string | undefined;
|
|
4432
4413
|
tags?: string[] | undefined;
|
|
4433
4414
|
documentation?: ({
|
|
@@ -4528,7 +4509,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4528
4509
|
items: {
|
|
4529
4510
|
code: string;
|
|
4530
4511
|
type: "task-item";
|
|
4531
|
-
|
|
4512
|
+
options: {
|
|
4513
|
+
excludeFromTargets?: boolean | undefined;
|
|
4514
|
+
};
|
|
4532
4515
|
definition: {
|
|
4533
4516
|
type: "select-single";
|
|
4534
4517
|
options: {
|
|
@@ -4588,9 +4571,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4588
4571
|
readOnly?: boolean | undefined;
|
|
4589
4572
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
4590
4573
|
} | undefined;
|
|
4591
|
-
options?: {
|
|
4592
|
-
excludeFromTargets?: boolean | undefined;
|
|
4593
|
-
} | undefined;
|
|
4594
4574
|
description?: string | undefined;
|
|
4595
4575
|
tags?: string[] | undefined;
|
|
4596
4576
|
documentation?: ({
|
|
@@ -4754,7 +4734,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4754
4734
|
items: {
|
|
4755
4735
|
code: string;
|
|
4756
4736
|
type: "task-item";
|
|
4757
|
-
|
|
4737
|
+
options: {
|
|
4738
|
+
excludeFromTargets?: boolean | undefined;
|
|
4739
|
+
};
|
|
4758
4740
|
definition: {
|
|
4759
4741
|
type: "select-single";
|
|
4760
4742
|
options: {
|
|
@@ -4814,9 +4796,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4814
4796
|
readOnly?: boolean | undefined;
|
|
4815
4797
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
4816
4798
|
} | undefined;
|
|
4817
|
-
options?: {
|
|
4818
|
-
excludeFromTargets?: boolean | undefined;
|
|
4819
|
-
} | undefined;
|
|
4820
4799
|
description?: string | undefined;
|
|
4821
4800
|
tags?: string[] | undefined;
|
|
4822
4801
|
documentation?: ({
|
|
@@ -4967,7 +4946,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
4967
4946
|
items: {
|
|
4968
4947
|
code: string;
|
|
4969
4948
|
type: "task-item";
|
|
4970
|
-
|
|
4949
|
+
options: {
|
|
4950
|
+
excludeFromTargets?: boolean | undefined;
|
|
4951
|
+
};
|
|
4971
4952
|
definition: {
|
|
4972
4953
|
type: "select-single";
|
|
4973
4954
|
options: {
|
|
@@ -5027,9 +5008,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5027
5008
|
readOnly?: boolean | undefined;
|
|
5028
5009
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
5029
5010
|
} | undefined;
|
|
5030
|
-
options?: {
|
|
5031
|
-
excludeFromTargets?: boolean | undefined;
|
|
5032
|
-
} | undefined;
|
|
5033
5011
|
description?: string | undefined;
|
|
5034
5012
|
tags?: string[] | undefined;
|
|
5035
5013
|
documentation?: ({
|
|
@@ -5243,7 +5221,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5243
5221
|
items: {
|
|
5244
5222
|
code: string;
|
|
5245
5223
|
type: "task-item";
|
|
5246
|
-
|
|
5224
|
+
options: {
|
|
5225
|
+
excludeFromTargets?: boolean | undefined;
|
|
5226
|
+
};
|
|
5247
5227
|
definition: {
|
|
5248
5228
|
type: "select-single";
|
|
5249
5229
|
options: {
|
|
@@ -5303,9 +5283,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5303
5283
|
readOnly?: boolean | undefined;
|
|
5304
5284
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
5305
5285
|
} | undefined;
|
|
5306
|
-
options?: {
|
|
5307
|
-
excludeFromTargets?: boolean | undefined;
|
|
5308
|
-
} | undefined;
|
|
5309
5286
|
description?: string | undefined;
|
|
5310
5287
|
tags?: string[] | undefined;
|
|
5311
5288
|
documentation?: ({
|
|
@@ -5518,7 +5495,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5518
5495
|
items: {
|
|
5519
5496
|
code: string;
|
|
5520
5497
|
type: "task-item";
|
|
5521
|
-
|
|
5498
|
+
options: {
|
|
5499
|
+
excludeFromTargets?: boolean | undefined;
|
|
5500
|
+
};
|
|
5522
5501
|
definition: {
|
|
5523
5502
|
type: "select-single";
|
|
5524
5503
|
options: {
|
|
@@ -5578,9 +5557,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
5578
5557
|
readOnly?: boolean | undefined;
|
|
5579
5558
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
5580
5559
|
} | undefined;
|
|
5581
|
-
options?: {
|
|
5582
|
-
excludeFromTargets?: boolean | undefined;
|
|
5583
|
-
} | undefined;
|
|
5584
5560
|
description?: string | undefined;
|
|
5585
5561
|
tags?: string[] | undefined;
|
|
5586
5562
|
documentation?: ({
|
|
@@ -6008,7 +5984,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6008
5984
|
description: z.ZodOptional<z.ZodString>;
|
|
6009
5985
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
6010
5986
|
code: z.ZodString;
|
|
6011
|
-
longFormTitle: z.ZodString;
|
|
6012
5987
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
6013
5988
|
documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
6014
5989
|
label: z.ZodString;
|
|
@@ -6269,17 +6244,19 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6269
6244
|
}>]>;
|
|
6270
6245
|
description: z.ZodOptional<z.ZodString>;
|
|
6271
6246
|
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">]>>;
|
|
6272
|
-
options: z.
|
|
6247
|
+
options: z.ZodObject<{
|
|
6273
6248
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
|
6274
6249
|
}, "strip", z.ZodTypeAny, {
|
|
6275
6250
|
excludeFromTargets?: boolean | undefined;
|
|
6276
6251
|
}, {
|
|
6277
6252
|
excludeFromTargets?: boolean | undefined;
|
|
6278
|
-
}
|
|
6253
|
+
}>;
|
|
6279
6254
|
}, "strip", z.ZodTypeAny, {
|
|
6280
6255
|
code: string;
|
|
6281
6256
|
type: "task-item";
|
|
6282
|
-
|
|
6257
|
+
options: {
|
|
6258
|
+
excludeFromTargets?: boolean | undefined;
|
|
6259
|
+
};
|
|
6283
6260
|
definition: {
|
|
6284
6261
|
type: "select-single";
|
|
6285
6262
|
options: {
|
|
@@ -6339,9 +6316,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6339
6316
|
readOnly?: boolean | undefined;
|
|
6340
6317
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
6341
6318
|
} | undefined;
|
|
6342
|
-
options?: {
|
|
6343
|
-
excludeFromTargets?: boolean | undefined;
|
|
6344
|
-
} | undefined;
|
|
6345
6319
|
description?: string | undefined;
|
|
6346
6320
|
tags?: string[] | undefined;
|
|
6347
6321
|
documentation?: ({
|
|
@@ -6364,7 +6338,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6364
6338
|
}, {
|
|
6365
6339
|
code: string;
|
|
6366
6340
|
type: "task-item";
|
|
6367
|
-
|
|
6341
|
+
options: {
|
|
6342
|
+
excludeFromTargets?: boolean | undefined;
|
|
6343
|
+
};
|
|
6368
6344
|
definition: {
|
|
6369
6345
|
type: "select-single";
|
|
6370
6346
|
options: {
|
|
@@ -6424,9 +6400,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6424
6400
|
readOnly?: boolean | undefined;
|
|
6425
6401
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
6426
6402
|
} | undefined;
|
|
6427
|
-
options?: {
|
|
6428
|
-
excludeFromTargets?: boolean | undefined;
|
|
6429
|
-
} | undefined;
|
|
6430
6403
|
description?: string | undefined;
|
|
6431
6404
|
tags?: string[] | undefined;
|
|
6432
6405
|
documentation?: ({
|
|
@@ -6472,7 +6445,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6472
6445
|
items: {
|
|
6473
6446
|
code: string;
|
|
6474
6447
|
type: "task-item";
|
|
6475
|
-
|
|
6448
|
+
options: {
|
|
6449
|
+
excludeFromTargets?: boolean | undefined;
|
|
6450
|
+
};
|
|
6476
6451
|
definition: {
|
|
6477
6452
|
type: "select-single";
|
|
6478
6453
|
options: {
|
|
@@ -6532,9 +6507,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6532
6507
|
readOnly?: boolean | undefined;
|
|
6533
6508
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
6534
6509
|
} | undefined;
|
|
6535
|
-
options?: {
|
|
6536
|
-
excludeFromTargets?: boolean | undefined;
|
|
6537
|
-
} | undefined;
|
|
6538
6510
|
description?: string | undefined;
|
|
6539
6511
|
tags?: string[] | undefined;
|
|
6540
6512
|
documentation?: ({
|
|
@@ -6598,7 +6570,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6598
6570
|
items: {
|
|
6599
6571
|
code: string;
|
|
6600
6572
|
type: "task-item";
|
|
6601
|
-
|
|
6573
|
+
options: {
|
|
6574
|
+
excludeFromTargets?: boolean | undefined;
|
|
6575
|
+
};
|
|
6602
6576
|
definition: {
|
|
6603
6577
|
type: "select-single";
|
|
6604
6578
|
options: {
|
|
@@ -6658,9 +6632,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6658
6632
|
readOnly?: boolean | undefined;
|
|
6659
6633
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
6660
6634
|
} | undefined;
|
|
6661
|
-
options?: {
|
|
6662
|
-
excludeFromTargets?: boolean | undefined;
|
|
6663
|
-
} | undefined;
|
|
6664
6635
|
description?: string | undefined;
|
|
6665
6636
|
tags?: string[] | undefined;
|
|
6666
6637
|
documentation?: ({
|
|
@@ -6729,7 +6700,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6729
6700
|
items: {
|
|
6730
6701
|
code: string;
|
|
6731
6702
|
type: "task-item";
|
|
6732
|
-
|
|
6703
|
+
options: {
|
|
6704
|
+
excludeFromTargets?: boolean | undefined;
|
|
6705
|
+
};
|
|
6733
6706
|
definition: {
|
|
6734
6707
|
type: "select-single";
|
|
6735
6708
|
options: {
|
|
@@ -6789,9 +6762,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6789
6762
|
readOnly?: boolean | undefined;
|
|
6790
6763
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
6791
6764
|
} | undefined;
|
|
6792
|
-
options?: {
|
|
6793
|
-
excludeFromTargets?: boolean | undefined;
|
|
6794
|
-
} | undefined;
|
|
6795
6765
|
description?: string | undefined;
|
|
6796
6766
|
tags?: string[] | undefined;
|
|
6797
6767
|
documentation?: ({
|
|
@@ -6892,7 +6862,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6892
6862
|
items: {
|
|
6893
6863
|
code: string;
|
|
6894
6864
|
type: "task-item";
|
|
6895
|
-
|
|
6865
|
+
options: {
|
|
6866
|
+
excludeFromTargets?: boolean | undefined;
|
|
6867
|
+
};
|
|
6896
6868
|
definition: {
|
|
6897
6869
|
type: "select-single";
|
|
6898
6870
|
options: {
|
|
@@ -6952,9 +6924,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
6952
6924
|
readOnly?: boolean | undefined;
|
|
6953
6925
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
6954
6926
|
} | undefined;
|
|
6955
|
-
options?: {
|
|
6956
|
-
excludeFromTargets?: boolean | undefined;
|
|
6957
|
-
} | undefined;
|
|
6958
6927
|
description?: string | undefined;
|
|
6959
6928
|
tags?: string[] | undefined;
|
|
6960
6929
|
documentation?: ({
|
|
@@ -7118,7 +7087,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7118
7087
|
items: {
|
|
7119
7088
|
code: string;
|
|
7120
7089
|
type: "task-item";
|
|
7121
|
-
|
|
7090
|
+
options: {
|
|
7091
|
+
excludeFromTargets?: boolean | undefined;
|
|
7092
|
+
};
|
|
7122
7093
|
definition: {
|
|
7123
7094
|
type: "select-single";
|
|
7124
7095
|
options: {
|
|
@@ -7178,9 +7149,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7178
7149
|
readOnly?: boolean | undefined;
|
|
7179
7150
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
7180
7151
|
} | undefined;
|
|
7181
|
-
options?: {
|
|
7182
|
-
excludeFromTargets?: boolean | undefined;
|
|
7183
|
-
} | undefined;
|
|
7184
7152
|
description?: string | undefined;
|
|
7185
7153
|
tags?: string[] | undefined;
|
|
7186
7154
|
documentation?: ({
|
|
@@ -7331,7 +7299,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7331
7299
|
items: {
|
|
7332
7300
|
code: string;
|
|
7333
7301
|
type: "task-item";
|
|
7334
|
-
|
|
7302
|
+
options: {
|
|
7303
|
+
excludeFromTargets?: boolean | undefined;
|
|
7304
|
+
};
|
|
7335
7305
|
definition: {
|
|
7336
7306
|
type: "select-single";
|
|
7337
7307
|
options: {
|
|
@@ -7391,9 +7361,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7391
7361
|
readOnly?: boolean | undefined;
|
|
7392
7362
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
7393
7363
|
} | undefined;
|
|
7394
|
-
options?: {
|
|
7395
|
-
excludeFromTargets?: boolean | undefined;
|
|
7396
|
-
} | undefined;
|
|
7397
7364
|
description?: string | undefined;
|
|
7398
7365
|
tags?: string[] | undefined;
|
|
7399
7366
|
documentation?: ({
|
|
@@ -7690,7 +7657,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7690
7657
|
description: z.ZodOptional<z.ZodString>;
|
|
7691
7658
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
7692
7659
|
code: z.ZodString;
|
|
7693
|
-
longFormTitle: z.ZodString;
|
|
7694
7660
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7695
7661
|
documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
7696
7662
|
label: z.ZodString;
|
|
@@ -7951,17 +7917,19 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
7951
7917
|
}>]>;
|
|
7952
7918
|
description: z.ZodOptional<z.ZodString>;
|
|
7953
7919
|
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">]>>;
|
|
7954
|
-
options: z.
|
|
7920
|
+
options: z.ZodObject<{
|
|
7955
7921
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
|
7956
7922
|
}, "strip", z.ZodTypeAny, {
|
|
7957
7923
|
excludeFromTargets?: boolean | undefined;
|
|
7958
7924
|
}, {
|
|
7959
7925
|
excludeFromTargets?: boolean | undefined;
|
|
7960
|
-
}
|
|
7926
|
+
}>;
|
|
7961
7927
|
}, "strip", z.ZodTypeAny, {
|
|
7962
7928
|
code: string;
|
|
7963
7929
|
type: "task-item";
|
|
7964
|
-
|
|
7930
|
+
options: {
|
|
7931
|
+
excludeFromTargets?: boolean | undefined;
|
|
7932
|
+
};
|
|
7965
7933
|
definition: {
|
|
7966
7934
|
type: "select-single";
|
|
7967
7935
|
options: {
|
|
@@ -8021,9 +7989,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8021
7989
|
readOnly?: boolean | undefined;
|
|
8022
7990
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
8023
7991
|
} | undefined;
|
|
8024
|
-
options?: {
|
|
8025
|
-
excludeFromTargets?: boolean | undefined;
|
|
8026
|
-
} | undefined;
|
|
8027
7992
|
description?: string | undefined;
|
|
8028
7993
|
tags?: string[] | undefined;
|
|
8029
7994
|
documentation?: ({
|
|
@@ -8046,7 +8011,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8046
8011
|
}, {
|
|
8047
8012
|
code: string;
|
|
8048
8013
|
type: "task-item";
|
|
8049
|
-
|
|
8014
|
+
options: {
|
|
8015
|
+
excludeFromTargets?: boolean | undefined;
|
|
8016
|
+
};
|
|
8050
8017
|
definition: {
|
|
8051
8018
|
type: "select-single";
|
|
8052
8019
|
options: {
|
|
@@ -8106,9 +8073,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8106
8073
|
readOnly?: boolean | undefined;
|
|
8107
8074
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
8108
8075
|
} | undefined;
|
|
8109
|
-
options?: {
|
|
8110
|
-
excludeFromTargets?: boolean | undefined;
|
|
8111
|
-
} | undefined;
|
|
8112
8076
|
description?: string | undefined;
|
|
8113
8077
|
tags?: string[] | undefined;
|
|
8114
8078
|
documentation?: ({
|
|
@@ -8154,7 +8118,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8154
8118
|
items: {
|
|
8155
8119
|
code: string;
|
|
8156
8120
|
type: "task-item";
|
|
8157
|
-
|
|
8121
|
+
options: {
|
|
8122
|
+
excludeFromTargets?: boolean | undefined;
|
|
8123
|
+
};
|
|
8158
8124
|
definition: {
|
|
8159
8125
|
type: "select-single";
|
|
8160
8126
|
options: {
|
|
@@ -8214,9 +8180,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8214
8180
|
readOnly?: boolean | undefined;
|
|
8215
8181
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
8216
8182
|
} | undefined;
|
|
8217
|
-
options?: {
|
|
8218
|
-
excludeFromTargets?: boolean | undefined;
|
|
8219
|
-
} | undefined;
|
|
8220
8183
|
description?: string | undefined;
|
|
8221
8184
|
tags?: string[] | undefined;
|
|
8222
8185
|
documentation?: ({
|
|
@@ -8280,7 +8243,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8280
8243
|
items: {
|
|
8281
8244
|
code: string;
|
|
8282
8245
|
type: "task-item";
|
|
8283
|
-
|
|
8246
|
+
options: {
|
|
8247
|
+
excludeFromTargets?: boolean | undefined;
|
|
8248
|
+
};
|
|
8284
8249
|
definition: {
|
|
8285
8250
|
type: "select-single";
|
|
8286
8251
|
options: {
|
|
@@ -8340,9 +8305,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8340
8305
|
readOnly?: boolean | undefined;
|
|
8341
8306
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
8342
8307
|
} | undefined;
|
|
8343
|
-
options?: {
|
|
8344
|
-
excludeFromTargets?: boolean | undefined;
|
|
8345
|
-
} | undefined;
|
|
8346
8308
|
description?: string | undefined;
|
|
8347
8309
|
tags?: string[] | undefined;
|
|
8348
8310
|
documentation?: ({
|
|
@@ -8411,7 +8373,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8411
8373
|
items: {
|
|
8412
8374
|
code: string;
|
|
8413
8375
|
type: "task-item";
|
|
8414
|
-
|
|
8376
|
+
options: {
|
|
8377
|
+
excludeFromTargets?: boolean | undefined;
|
|
8378
|
+
};
|
|
8415
8379
|
definition: {
|
|
8416
8380
|
type: "select-single";
|
|
8417
8381
|
options: {
|
|
@@ -8471,9 +8435,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8471
8435
|
readOnly?: boolean | undefined;
|
|
8472
8436
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
8473
8437
|
} | undefined;
|
|
8474
|
-
options?: {
|
|
8475
|
-
excludeFromTargets?: boolean | undefined;
|
|
8476
|
-
} | undefined;
|
|
8477
8438
|
description?: string | undefined;
|
|
8478
8439
|
tags?: string[] | undefined;
|
|
8479
8440
|
documentation?: ({
|
|
@@ -8574,7 +8535,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8574
8535
|
items: {
|
|
8575
8536
|
code: string;
|
|
8576
8537
|
type: "task-item";
|
|
8577
|
-
|
|
8538
|
+
options: {
|
|
8539
|
+
excludeFromTargets?: boolean | undefined;
|
|
8540
|
+
};
|
|
8578
8541
|
definition: {
|
|
8579
8542
|
type: "select-single";
|
|
8580
8543
|
options: {
|
|
@@ -8634,9 +8597,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8634
8597
|
readOnly?: boolean | undefined;
|
|
8635
8598
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
8636
8599
|
} | undefined;
|
|
8637
|
-
options?: {
|
|
8638
|
-
excludeFromTargets?: boolean | undefined;
|
|
8639
|
-
} | undefined;
|
|
8640
8600
|
description?: string | undefined;
|
|
8641
8601
|
tags?: string[] | undefined;
|
|
8642
8602
|
documentation?: ({
|
|
@@ -8812,7 +8772,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
8812
8772
|
description: z.ZodOptional<z.ZodString>;
|
|
8813
8773
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
8814
8774
|
code: z.ZodString;
|
|
8815
|
-
longFormTitle: z.ZodString;
|
|
8816
8775
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
8817
8776
|
documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
8818
8777
|
label: z.ZodString;
|
|
@@ -9073,17 +9032,19 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9073
9032
|
}>]>;
|
|
9074
9033
|
description: z.ZodOptional<z.ZodString>;
|
|
9075
9034
|
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">]>>;
|
|
9076
|
-
options: z.
|
|
9035
|
+
options: z.ZodObject<{
|
|
9077
9036
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
|
9078
9037
|
}, "strip", z.ZodTypeAny, {
|
|
9079
9038
|
excludeFromTargets?: boolean | undefined;
|
|
9080
9039
|
}, {
|
|
9081
9040
|
excludeFromTargets?: boolean | undefined;
|
|
9082
|
-
}
|
|
9041
|
+
}>;
|
|
9083
9042
|
}, "strip", z.ZodTypeAny, {
|
|
9084
9043
|
code: string;
|
|
9085
9044
|
type: "task-item";
|
|
9086
|
-
|
|
9045
|
+
options: {
|
|
9046
|
+
excludeFromTargets?: boolean | undefined;
|
|
9047
|
+
};
|
|
9087
9048
|
definition: {
|
|
9088
9049
|
type: "select-single";
|
|
9089
9050
|
options: {
|
|
@@ -9143,9 +9104,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9143
9104
|
readOnly?: boolean | undefined;
|
|
9144
9105
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
9145
9106
|
} | undefined;
|
|
9146
|
-
options?: {
|
|
9147
|
-
excludeFromTargets?: boolean | undefined;
|
|
9148
|
-
} | undefined;
|
|
9149
9107
|
description?: string | undefined;
|
|
9150
9108
|
tags?: string[] | undefined;
|
|
9151
9109
|
documentation?: ({
|
|
@@ -9168,7 +9126,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9168
9126
|
}, {
|
|
9169
9127
|
code: string;
|
|
9170
9128
|
type: "task-item";
|
|
9171
|
-
|
|
9129
|
+
options: {
|
|
9130
|
+
excludeFromTargets?: boolean | undefined;
|
|
9131
|
+
};
|
|
9172
9132
|
definition: {
|
|
9173
9133
|
type: "select-single";
|
|
9174
9134
|
options: {
|
|
@@ -9228,9 +9188,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9228
9188
|
readOnly?: boolean | undefined;
|
|
9229
9189
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
9230
9190
|
} | undefined;
|
|
9231
|
-
options?: {
|
|
9232
|
-
excludeFromTargets?: boolean | undefined;
|
|
9233
|
-
} | undefined;
|
|
9234
9191
|
description?: string | undefined;
|
|
9235
9192
|
tags?: string[] | undefined;
|
|
9236
9193
|
documentation?: ({
|
|
@@ -9276,7 +9233,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9276
9233
|
items: {
|
|
9277
9234
|
code: string;
|
|
9278
9235
|
type: "task-item";
|
|
9279
|
-
|
|
9236
|
+
options: {
|
|
9237
|
+
excludeFromTargets?: boolean | undefined;
|
|
9238
|
+
};
|
|
9280
9239
|
definition: {
|
|
9281
9240
|
type: "select-single";
|
|
9282
9241
|
options: {
|
|
@@ -9336,9 +9295,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9336
9295
|
readOnly?: boolean | undefined;
|
|
9337
9296
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
9338
9297
|
} | undefined;
|
|
9339
|
-
options?: {
|
|
9340
|
-
excludeFromTargets?: boolean | undefined;
|
|
9341
|
-
} | undefined;
|
|
9342
9298
|
description?: string | undefined;
|
|
9343
9299
|
tags?: string[] | undefined;
|
|
9344
9300
|
documentation?: ({
|
|
@@ -9402,7 +9358,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9402
9358
|
items: {
|
|
9403
9359
|
code: string;
|
|
9404
9360
|
type: "task-item";
|
|
9405
|
-
|
|
9361
|
+
options: {
|
|
9362
|
+
excludeFromTargets?: boolean | undefined;
|
|
9363
|
+
};
|
|
9406
9364
|
definition: {
|
|
9407
9365
|
type: "select-single";
|
|
9408
9366
|
options: {
|
|
@@ -9462,9 +9420,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9462
9420
|
readOnly?: boolean | undefined;
|
|
9463
9421
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
9464
9422
|
} | undefined;
|
|
9465
|
-
options?: {
|
|
9466
|
-
excludeFromTargets?: boolean | undefined;
|
|
9467
|
-
} | undefined;
|
|
9468
9423
|
description?: string | undefined;
|
|
9469
9424
|
tags?: string[] | undefined;
|
|
9470
9425
|
documentation?: ({
|
|
@@ -9518,7 +9473,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9518
9473
|
sortOrder?: number | undefined;
|
|
9519
9474
|
}>, z.ZodObject<{
|
|
9520
9475
|
code: z.ZodString;
|
|
9521
|
-
longFormTitle: z.ZodString;
|
|
9522
9476
|
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
9523
9477
|
documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
|
|
9524
9478
|
label: z.ZodString;
|
|
@@ -9779,17 +9733,19 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9779
9733
|
}>]>;
|
|
9780
9734
|
description: z.ZodOptional<z.ZodString>;
|
|
9781
9735
|
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">]>>;
|
|
9782
|
-
options: z.
|
|
9736
|
+
options: z.ZodObject<{
|
|
9783
9737
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
|
9784
9738
|
}, "strip", z.ZodTypeAny, {
|
|
9785
9739
|
excludeFromTargets?: boolean | undefined;
|
|
9786
9740
|
}, {
|
|
9787
9741
|
excludeFromTargets?: boolean | undefined;
|
|
9788
|
-
}
|
|
9742
|
+
}>;
|
|
9789
9743
|
}, "strip", z.ZodTypeAny, {
|
|
9790
9744
|
code: string;
|
|
9791
9745
|
type: "task-item";
|
|
9792
|
-
|
|
9746
|
+
options: {
|
|
9747
|
+
excludeFromTargets?: boolean | undefined;
|
|
9748
|
+
};
|
|
9793
9749
|
definition: {
|
|
9794
9750
|
type: "select-single";
|
|
9795
9751
|
options: {
|
|
@@ -9849,9 +9805,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9849
9805
|
readOnly?: boolean | undefined;
|
|
9850
9806
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
9851
9807
|
} | undefined;
|
|
9852
|
-
options?: {
|
|
9853
|
-
excludeFromTargets?: boolean | undefined;
|
|
9854
|
-
} | undefined;
|
|
9855
9808
|
description?: string | undefined;
|
|
9856
9809
|
tags?: string[] | undefined;
|
|
9857
9810
|
documentation?: ({
|
|
@@ -9874,7 +9827,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9874
9827
|
}, {
|
|
9875
9828
|
code: string;
|
|
9876
9829
|
type: "task-item";
|
|
9877
|
-
|
|
9830
|
+
options: {
|
|
9831
|
+
excludeFromTargets?: boolean | undefined;
|
|
9832
|
+
};
|
|
9878
9833
|
definition: {
|
|
9879
9834
|
type: "select-single";
|
|
9880
9835
|
options: {
|
|
@@ -9934,9 +9889,6 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<"type",
|
|
|
9934
9889
|
readOnly?: boolean | undefined;
|
|
9935
9890
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
9936
9891
|
} | undefined;
|
|
9937
|
-
options?: {
|
|
9938
|
-
excludeFromTargets?: boolean | undefined;
|
|
9939
|
-
} | undefined;
|
|
9940
9892
|
description?: string | undefined;
|
|
9941
9893
|
tags?: string[] | undefined;
|
|
9942
9894
|
documentation?: ({
|