@openframe-org/criteria-set-protocol 2.7.8-alpha.4 → 2.7.9
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/common.d.ts +1 -1
- package/dist/v1/schemas/common.js +1 -0
- package/dist/v1/schemas/criteria-set.d.ts +1 -0
- package/dist/v1/schemas/criteria-set.js +1 -0
- package/dist/v1/schemas/criteria-tree.d.ts +13 -116
- package/dist/v1/schemas/criteria-tree.js +2 -4
- package/dist/v1/schemas/criterion.d.ts +1 -1
- package/dist/v1/schemas/data-map.d.ts +10 -3
- package/dist/v1/schemas/data-map.js +3 -1
- package/dist/v1/schemas/request/matrix-request-body-schema.d.ts +1 -1
- package/dist/v1/schemas/request/tree-and-data-request-body-schema.d.ts +1 -1
- package/dist/v1/schemas/task-group.d.ts +1 -1
- package/dist/v1/schemas/task-item.d.ts +3 -3
- package/dist/v1/schemas/task.d.ts +1 -1
- package/dist/v1/schemas/theme.d.ts +1 -1
- package/package.json +1 -1
|
@@ -4,7 +4,7 @@ export declare const colorSchema: z.ZodUnion<readonly [z.ZodString, z.ZodObject<
|
|
|
4
4
|
green: z.ZodNumber;
|
|
5
5
|
blue: z.ZodNumber;
|
|
6
6
|
}, z.core.$strip>]>;
|
|
7
|
-
export declare const taskItemValueReferenceSchema: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodString>]>;
|
|
7
|
+
export declare const taskItemValueReferenceSchema: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodUndefined, z.ZodArray<z.ZodString>]>;
|
|
8
8
|
export declare const elementDataValueSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
9
9
|
value: z.ZodNumber;
|
|
10
10
|
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
@@ -19,6 +19,7 @@ exports.taskItemValueReferenceSchema = zod_1.z
|
|
|
19
19
|
zod_1.z.number().describe("Numeric value"),
|
|
20
20
|
zod_1.z.boolean().describe("Boolean value"),
|
|
21
21
|
zod_1.z.null().describe("Null value"),
|
|
22
|
+
zod_1.z.undefined().describe("Undefined value"),
|
|
22
23
|
zod_1.z.array(zod_1.z.string()).describe("Multiple select array of option IDs")
|
|
23
24
|
])
|
|
24
25
|
.describe("TaskItemValueReference - Represents the value of a task item based on its definition");
|
|
@@ -10,5 +10,6 @@ exports.dashboardCategoryListingTypeSchema = zod_1.z.enum(exports.DASHBOARD_CATE
|
|
|
10
10
|
exports.criteriaSetOptionsSchema = zod_1.z
|
|
11
11
|
.object({
|
|
12
12
|
dashboardRenderingType: exports.dashboardCategoryListingTypeSchema.describe("Whether to render the criteria set in a dashboard as a list of criteria or as a list of tasks"),
|
|
13
|
+
canExportMatrix: zod_1.z.boolean().describe("Whether the criteria set can be exported as a matrix")
|
|
13
14
|
})
|
|
14
15
|
.describe("CriteriaSetOptions - options for a criteria set");
|
|
@@ -1,111 +1,14 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const criteriaTreeSchema: z.ZodObject<{
|
|
3
|
+
options: z.ZodObject<{
|
|
4
|
+
dashboardRenderingType: z.ZodEnum<{
|
|
5
|
+
"per-criteria": "per-criteria";
|
|
6
|
+
"per-task": "per-task";
|
|
7
|
+
}>;
|
|
8
|
+
canExportMatrix: z.ZodBoolean;
|
|
9
|
+
}, z.core.$strip>;
|
|
3
10
|
version: z.ZodString;
|
|
4
11
|
revision: z.ZodString;
|
|
5
|
-
dataMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodType<{
|
|
6
|
-
text: string;
|
|
7
|
-
} & ({
|
|
8
|
-
[x: string]: any;
|
|
9
|
-
value: number;
|
|
10
|
-
total: number;
|
|
11
|
-
maximumValue?: number | undefined;
|
|
12
|
-
minimumValue?: number | undefined;
|
|
13
|
-
exclusiveMaximum?: number | undefined;
|
|
14
|
-
exclusiveMinimum?: number | undefined;
|
|
15
|
-
weight?: number | undefined;
|
|
16
|
-
type?: "number" | undefined;
|
|
17
|
-
} | {
|
|
18
|
-
[x: string]: any;
|
|
19
|
-
type: "percentage";
|
|
20
|
-
value: number;
|
|
21
|
-
maximumValue?: number | undefined;
|
|
22
|
-
minimumValue?: number | undefined;
|
|
23
|
-
exclusiveMaximum?: number | undefined;
|
|
24
|
-
exclusiveMinimum?: number | undefined;
|
|
25
|
-
weight?: number | undefined;
|
|
26
|
-
} | {
|
|
27
|
-
[x: string]: any;
|
|
28
|
-
type: "boolean";
|
|
29
|
-
value: boolean;
|
|
30
|
-
}), unknown, z.core.$ZodTypeInternals<{
|
|
31
|
-
text: string;
|
|
32
|
-
} & ({
|
|
33
|
-
[x: string]: any;
|
|
34
|
-
value: number;
|
|
35
|
-
total: number;
|
|
36
|
-
maximumValue?: number | undefined;
|
|
37
|
-
minimumValue?: number | undefined;
|
|
38
|
-
exclusiveMaximum?: number | undefined;
|
|
39
|
-
exclusiveMinimum?: number | undefined;
|
|
40
|
-
weight?: number | undefined;
|
|
41
|
-
type?: "number" | undefined;
|
|
42
|
-
} | {
|
|
43
|
-
[x: string]: any;
|
|
44
|
-
type: "percentage";
|
|
45
|
-
value: number;
|
|
46
|
-
maximumValue?: number | undefined;
|
|
47
|
-
minimumValue?: number | undefined;
|
|
48
|
-
exclusiveMaximum?: number | undefined;
|
|
49
|
-
exclusiveMinimum?: number | undefined;
|
|
50
|
-
weight?: number | undefined;
|
|
51
|
-
} | {
|
|
52
|
-
[x: string]: any;
|
|
53
|
-
type: "boolean";
|
|
54
|
-
value: boolean;
|
|
55
|
-
}), unknown>>, z.ZodIntersection<z.ZodType<{
|
|
56
|
-
text: string;
|
|
57
|
-
} & ({
|
|
58
|
-
[x: string]: any;
|
|
59
|
-
value: number;
|
|
60
|
-
total: number;
|
|
61
|
-
maximumValue?: number | undefined;
|
|
62
|
-
minimumValue?: number | undefined;
|
|
63
|
-
exclusiveMaximum?: number | undefined;
|
|
64
|
-
exclusiveMinimum?: number | undefined;
|
|
65
|
-
weight?: number | undefined;
|
|
66
|
-
type?: "number" | undefined;
|
|
67
|
-
} | {
|
|
68
|
-
[x: string]: any;
|
|
69
|
-
type: "percentage";
|
|
70
|
-
value: number;
|
|
71
|
-
maximumValue?: number | undefined;
|
|
72
|
-
minimumValue?: number | undefined;
|
|
73
|
-
exclusiveMaximum?: number | undefined;
|
|
74
|
-
exclusiveMinimum?: number | undefined;
|
|
75
|
-
weight?: number | undefined;
|
|
76
|
-
} | {
|
|
77
|
-
[x: string]: any;
|
|
78
|
-
type: "boolean";
|
|
79
|
-
value: boolean;
|
|
80
|
-
}), unknown, z.core.$ZodTypeInternals<{
|
|
81
|
-
text: string;
|
|
82
|
-
} & ({
|
|
83
|
-
[x: string]: any;
|
|
84
|
-
value: number;
|
|
85
|
-
total: number;
|
|
86
|
-
maximumValue?: number | undefined;
|
|
87
|
-
minimumValue?: number | undefined;
|
|
88
|
-
exclusiveMaximum?: number | undefined;
|
|
89
|
-
exclusiveMinimum?: number | undefined;
|
|
90
|
-
weight?: number | undefined;
|
|
91
|
-
type?: "number" | undefined;
|
|
92
|
-
} | {
|
|
93
|
-
[x: string]: any;
|
|
94
|
-
type: "percentage";
|
|
95
|
-
value: number;
|
|
96
|
-
maximumValue?: number | undefined;
|
|
97
|
-
minimumValue?: number | undefined;
|
|
98
|
-
exclusiveMaximum?: number | undefined;
|
|
99
|
-
exclusiveMinimum?: number | undefined;
|
|
100
|
-
weight?: number | undefined;
|
|
101
|
-
} | {
|
|
102
|
-
[x: string]: any;
|
|
103
|
-
type: "boolean";
|
|
104
|
-
value: boolean;
|
|
105
|
-
}), unknown>>, z.ZodObject<{
|
|
106
|
-
readOnly: z.ZodBoolean;
|
|
107
|
-
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodString>]>>;
|
|
108
|
-
}, z.core.$strip>>]>>;
|
|
109
12
|
result: z.ZodType<{
|
|
110
13
|
text: string;
|
|
111
14
|
} & ({
|
|
@@ -349,7 +252,7 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
349
252
|
value: boolean;
|
|
350
253
|
}), unknown>>, z.ZodObject<{
|
|
351
254
|
readOnly: z.ZodBoolean;
|
|
352
|
-
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodString>]>>;
|
|
255
|
+
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodUndefined, z.ZodArray<z.ZodString>]>>;
|
|
353
256
|
}, z.core.$strip>>;
|
|
354
257
|
options: z.ZodObject<{
|
|
355
258
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -575,12 +478,6 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
575
478
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
576
479
|
}, z.core.$strip>;
|
|
577
480
|
}, z.core.$strip>], "type">>>;
|
|
578
|
-
options: z.ZodObject<{
|
|
579
|
-
dashboardRenderingType: z.ZodEnum<{
|
|
580
|
-
"per-criteria": "per-criteria";
|
|
581
|
-
"per-task": "per-task";
|
|
582
|
-
}>;
|
|
583
|
-
}, z.core.$strip>;
|
|
584
481
|
}, z.core.$strip>;
|
|
585
482
|
export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
586
483
|
code: z.ZodString;
|
|
@@ -773,7 +670,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
773
670
|
value: boolean;
|
|
774
671
|
}), unknown>>, z.ZodObject<{
|
|
775
672
|
readOnly: z.ZodBoolean;
|
|
776
|
-
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodString>]>>;
|
|
673
|
+
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodUndefined, z.ZodArray<z.ZodString>]>>;
|
|
777
674
|
}, z.core.$strip>>;
|
|
778
675
|
options: z.ZodObject<{
|
|
779
676
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1144,7 +1041,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1144
1041
|
value: boolean;
|
|
1145
1042
|
}), unknown>>, z.ZodObject<{
|
|
1146
1043
|
readOnly: z.ZodBoolean;
|
|
1147
|
-
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodString>]>>;
|
|
1044
|
+
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodUndefined, z.ZodArray<z.ZodString>]>>;
|
|
1148
1045
|
}, z.core.$strip>>;
|
|
1149
1046
|
options: z.ZodObject<{
|
|
1150
1047
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1442,7 +1339,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1442
1339
|
value: boolean;
|
|
1443
1340
|
}), unknown>>, z.ZodObject<{
|
|
1444
1341
|
readOnly: z.ZodBoolean;
|
|
1445
|
-
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodString>]>>;
|
|
1342
|
+
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodUndefined, z.ZodArray<z.ZodString>]>>;
|
|
1446
1343
|
}, z.core.$strip>>;
|
|
1447
1344
|
options: z.ZodObject<{
|
|
1448
1345
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1649,7 +1546,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1649
1546
|
value: boolean;
|
|
1650
1547
|
}), unknown>>, z.ZodObject<{
|
|
1651
1548
|
readOnly: z.ZodBoolean;
|
|
1652
|
-
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodString>]>>;
|
|
1549
|
+
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodUndefined, z.ZodArray<z.ZodString>]>>;
|
|
1653
1550
|
}, z.core.$strip>>;
|
|
1654
1551
|
options: z.ZodObject<{
|
|
1655
1552
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1832,7 +1729,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1832
1729
|
value: boolean;
|
|
1833
1730
|
}), unknown>>, z.ZodObject<{
|
|
1834
1731
|
readOnly: z.ZodBoolean;
|
|
1835
|
-
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodString>]>>;
|
|
1732
|
+
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodUndefined, z.ZodArray<z.ZodString>]>>;
|
|
1836
1733
|
}, z.core.$strip>>;
|
|
1837
1734
|
options: z.ZodObject<{
|
|
1838
1735
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -9,14 +9,13 @@ const criterion_1 = require("./criterion");
|
|
|
9
9
|
const task_group_1 = require("./task-group");
|
|
10
10
|
const task_1 = require("./task");
|
|
11
11
|
const task_item_1 = require("./task-item");
|
|
12
|
-
const criteria_set_1 = require("./criteria-set");
|
|
13
12
|
exports.criteriaTreeSchema = data_map_1.dataMapSchema
|
|
14
13
|
.pick({
|
|
15
14
|
version: true,
|
|
16
15
|
revision: true,
|
|
17
|
-
dataMap: true,
|
|
18
16
|
result: true,
|
|
19
|
-
certifications: true
|
|
17
|
+
certifications: true,
|
|
18
|
+
options: true,
|
|
20
19
|
})
|
|
21
20
|
.extend({
|
|
22
21
|
themes: zod_1.z
|
|
@@ -26,7 +25,6 @@ exports.criteriaTreeSchema = data_map_1.dataMapSchema
|
|
|
26
25
|
.array(certification_1.certificationDefinitionSchema)
|
|
27
26
|
.optional()
|
|
28
27
|
.describe("Definitions of the attainable certifications"),
|
|
29
|
-
options: criteria_set_1.criteriaSetOptionsSchema.describe("Configuration options for the criteria set display and behavior"),
|
|
30
28
|
});
|
|
31
29
|
exports.criteriaTreeElementSchema = zod_1.z
|
|
32
30
|
.discriminatedUnion("type", [
|
|
@@ -187,7 +187,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
187
187
|
value: boolean;
|
|
188
188
|
}), unknown>>, z.ZodObject<{
|
|
189
189
|
readOnly: z.ZodBoolean;
|
|
190
|
-
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodString>]>>;
|
|
190
|
+
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodUndefined, z.ZodArray<z.ZodString>]>>;
|
|
191
191
|
}, z.core.$strip>>;
|
|
192
192
|
options: z.ZodObject<{
|
|
193
193
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -101,12 +101,12 @@ export declare const elementDataMapSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[
|
|
|
101
101
|
value: boolean;
|
|
102
102
|
}), unknown>>, z.ZodObject<{
|
|
103
103
|
readOnly: z.ZodBoolean;
|
|
104
|
-
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodString>]>>;
|
|
104
|
+
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodUndefined, z.ZodArray<z.ZodString>]>>;
|
|
105
105
|
}, z.core.$strip>>]>>;
|
|
106
106
|
export declare const dataMapSchema: z.ZodObject<{
|
|
107
107
|
version: z.ZodString;
|
|
108
108
|
revision: z.ZodString;
|
|
109
|
-
|
|
109
|
+
elements: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodType<{
|
|
110
110
|
text: string;
|
|
111
111
|
} & ({
|
|
112
112
|
[x: string]: any;
|
|
@@ -208,7 +208,7 @@ export declare const dataMapSchema: z.ZodObject<{
|
|
|
208
208
|
value: boolean;
|
|
209
209
|
}), unknown>>, z.ZodObject<{
|
|
210
210
|
readOnly: z.ZodBoolean;
|
|
211
|
-
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodString>]>>;
|
|
211
|
+
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodUndefined, z.ZodArray<z.ZodString>]>>;
|
|
212
212
|
}, z.core.$strip>>]>>;
|
|
213
213
|
result: z.ZodType<{
|
|
214
214
|
text: string;
|
|
@@ -262,4 +262,11 @@ export declare const dataMapSchema: z.ZodObject<{
|
|
|
262
262
|
value: boolean;
|
|
263
263
|
}), unknown>>;
|
|
264
264
|
certifications: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
265
|
+
options: z.ZodObject<{
|
|
266
|
+
dashboardRenderingType: z.ZodEnum<{
|
|
267
|
+
"per-criteria": "per-criteria";
|
|
268
|
+
"per-task": "per-task";
|
|
269
|
+
}>;
|
|
270
|
+
canExportMatrix: z.ZodBoolean;
|
|
271
|
+
}, z.core.$strip>;
|
|
265
272
|
}, z.core.$strip>;
|
|
@@ -4,6 +4,7 @@ exports.dataMapSchema = exports.elementDataMapSchema = void 0;
|
|
|
4
4
|
const zod_1 = require("zod");
|
|
5
5
|
const common_1 = require("./common");
|
|
6
6
|
const task_item_1 = require("./task-item");
|
|
7
|
+
const criteria_set_1 = require("./criteria-set");
|
|
7
8
|
exports.elementDataMapSchema = zod_1.z
|
|
8
9
|
.record(zod_1.z.string(), common_1.elementDataSchema.or(task_item_1.taskItemDataSchema));
|
|
9
10
|
exports.dataMapSchema = zod_1.z
|
|
@@ -12,12 +13,13 @@ exports.dataMapSchema = zod_1.z
|
|
|
12
13
|
.string()
|
|
13
14
|
.describe("The version of the criteria set used to generate the data map"),
|
|
14
15
|
revision: zod_1.z.string().describe("The internal version of this criteria set"),
|
|
15
|
-
|
|
16
|
+
elements: exports.elementDataMapSchema
|
|
16
17
|
.describe("The data map consisting of a map of element codes to their data"),
|
|
17
18
|
result: common_1.treeResultSchema.describe("The overall result of the evaluation of the criteria set"),
|
|
18
19
|
certifications: zod_1.z
|
|
19
20
|
.array(zod_1.z.string())
|
|
20
21
|
.optional()
|
|
21
22
|
.describe("The attained certifications"),
|
|
23
|
+
options: criteria_set_1.criteriaSetOptionsSchema.describe("Configuration options for the criteria set display and behavior"),
|
|
22
24
|
})
|
|
23
25
|
.describe("DataMap");
|
|
@@ -4,6 +4,6 @@ import { z } from "zod";
|
|
|
4
4
|
*/
|
|
5
5
|
export declare const matrixRequestBodySchema: z.ZodOptional<z.ZodObject<{
|
|
6
6
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7
|
-
values: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodString>]>>>;
|
|
7
|
+
values: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodUndefined, z.ZodArray<z.ZodString>]>>>;
|
|
8
8
|
additional: z.ZodOptional<z.ZodAny>;
|
|
9
9
|
}, z.core.$strip>>;
|
|
@@ -4,5 +4,5 @@ import { z } from "zod";
|
|
|
4
4
|
*/
|
|
5
5
|
export declare const treeAndDataRequestBodySchema: z.ZodOptional<z.ZodObject<{
|
|
6
6
|
parameters: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
7
|
-
values: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodString>]>>>;
|
|
7
|
+
values: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodUndefined, z.ZodArray<z.ZodString>]>>>;
|
|
8
8
|
}, z.core.$strip>>;
|
|
@@ -165,7 +165,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
165
165
|
value: boolean;
|
|
166
166
|
}), unknown>>, z.ZodObject<{
|
|
167
167
|
readOnly: z.ZodBoolean;
|
|
168
|
-
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodString>]>>;
|
|
168
|
+
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodUndefined, z.ZodArray<z.ZodString>]>>;
|
|
169
169
|
}, z.core.$strip>>;
|
|
170
170
|
options: z.ZodObject<{
|
|
171
171
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
export declare const taskItemValueReferenceMapSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodString>]>>;
|
|
2
|
+
export declare const taskItemValueReferenceMapSchema: z.ZodRecord<z.ZodString, z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodUndefined, z.ZodArray<z.ZodString>]>>;
|
|
3
3
|
export declare const pointOptionSchema: z.ZodObject<{
|
|
4
4
|
id: z.ZodString;
|
|
5
5
|
text: z.ZodString;
|
|
@@ -154,7 +154,7 @@ export declare const taskItemDataSchema: z.ZodIntersection<z.ZodType<{
|
|
|
154
154
|
value: boolean;
|
|
155
155
|
}), unknown>>, z.ZodObject<{
|
|
156
156
|
readOnly: z.ZodBoolean;
|
|
157
|
-
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodString>]>>;
|
|
157
|
+
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodUndefined, z.ZodArray<z.ZodString>]>>;
|
|
158
158
|
}, z.core.$strip>>;
|
|
159
159
|
export declare const taskItemOptionsSchema: z.ZodObject<{
|
|
160
160
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -278,7 +278,7 @@ export declare const taskItemSchema: z.ZodObject<{
|
|
|
278
278
|
value: boolean;
|
|
279
279
|
}), unknown>>, z.ZodObject<{
|
|
280
280
|
readOnly: z.ZodBoolean;
|
|
281
|
-
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodString>]>>;
|
|
281
|
+
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodUndefined, z.ZodArray<z.ZodString>]>>;
|
|
282
282
|
}, z.core.$strip>>;
|
|
283
283
|
options: z.ZodObject<{
|
|
284
284
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -148,7 +148,7 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
148
148
|
value: boolean;
|
|
149
149
|
}), unknown>>, z.ZodObject<{
|
|
150
150
|
readOnly: z.ZodBoolean;
|
|
151
|
-
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodString>]>>;
|
|
151
|
+
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodUndefined, z.ZodArray<z.ZodString>]>>;
|
|
152
152
|
}, z.core.$strip>>;
|
|
153
153
|
options: z.ZodObject<{
|
|
154
154
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -216,7 +216,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
216
216
|
value: boolean;
|
|
217
217
|
}), unknown>>, z.ZodObject<{
|
|
218
218
|
readOnly: z.ZodBoolean;
|
|
219
|
-
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodArray<z.ZodString>]>>;
|
|
219
|
+
valueReference: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull, z.ZodUndefined, z.ZodArray<z.ZodString>]>>;
|
|
220
220
|
}, z.core.$strip>>;
|
|
221
221
|
options: z.ZodObject<{
|
|
222
222
|
excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
|
package/package.json
CHANGED