@openframe-org/criteria-set-protocol 3.0.0-alpha.9 → 3.0.0-beta.1
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 +11 -11
- package/dist/v1/schemas/common.js +14 -6
- package/dist/v1/schemas/criteria-tree.d.ts +89 -89
- package/dist/v1/schemas/criterion.d.ts +20 -20
- package/dist/v1/schemas/criterion.js +1 -1
- package/dist/v1/schemas/data-map.d.ts +13 -13
- package/dist/v1/schemas/metadata.js +2 -2
- package/dist/v1/schemas/request/matrix-request-body-schema.d.ts +0 -1
- package/dist/v1/schemas/request/matrix-request-body-schema.js +0 -4
- package/dist/v1/schemas/request/tree-and-data-request-body-schema.d.ts +0 -1
- package/dist/v1/schemas/request/tree-and-data-request-body-schema.js +2 -6
- package/dist/v1/schemas/task-group.d.ts +11 -11
- package/dist/v1/schemas/task-item.d.ts +9 -9
- package/dist/v1/schemas/task-item.js +0 -1
- package/dist/v1/schemas/task.d.ts +9 -9
- package/dist/v1/schemas/task.js +0 -1
- package/dist/v1/schemas/theme.d.ts +26 -26
- package/dist/v1/schemas/theme.js +1 -1
- package/dist/v1/services/criteria-set.service.d.ts +0 -1
- package/dist/v1/utils.js +11 -4
- package/package.json +1 -1
|
@@ -2,7 +2,7 @@ import { z } from "zod";
|
|
|
2
2
|
export declare const criteriaTreeSchema: z.ZodObject<{
|
|
3
3
|
version: z.ZodString;
|
|
4
4
|
revision: z.ZodString;
|
|
5
|
-
result: z.
|
|
5
|
+
result: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
6
6
|
type: z.ZodLiteral<"number">;
|
|
7
7
|
total: z.ZodNullable<z.ZodNumber>;
|
|
8
8
|
value: z.ZodNullable<z.ZodNumber>;
|
|
@@ -10,14 +10,14 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
10
10
|
type: z.ZodLiteral<"percentage">;
|
|
11
11
|
total: z.ZodOptional<z.ZodNever>;
|
|
12
12
|
value: z.ZodNullable<z.ZodNumber>;
|
|
13
|
-
}, z.core.$catchall<z.ZodAny
|
|
13
|
+
}, z.core.$catchall<z.ZodAny>>, z.ZodObject<{
|
|
14
14
|
type: z.ZodLiteral<"boolean">;
|
|
15
15
|
value: z.ZodNullable<z.ZodBoolean>;
|
|
16
16
|
total: z.ZodOptional<z.ZodNever>;
|
|
17
17
|
maximumValue: z.ZodOptional<z.ZodNever>;
|
|
18
18
|
minimumValue: z.ZodOptional<z.ZodNever>;
|
|
19
19
|
weight: z.ZodOptional<z.ZodNever>;
|
|
20
|
-
}, z.core.$catchall<z.ZodAny>>]>;
|
|
20
|
+
}, z.core.$catchall<z.ZodAny>>], "type">;
|
|
21
21
|
certifications: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
22
22
|
themes: z.ZodArray<z.ZodObject<{
|
|
23
23
|
title: z.ZodString;
|
|
@@ -39,7 +39,7 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
39
39
|
type: z.ZodLiteral<"link">;
|
|
40
40
|
url: z.ZodString;
|
|
41
41
|
}, z.core.$strip>], "type">>>;
|
|
42
|
-
data: z.ZodNullable<z.
|
|
42
|
+
data: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
43
43
|
value: z.ZodNullable<z.ZodNumber>;
|
|
44
44
|
maximumValue: z.ZodNullable<z.ZodNumber>;
|
|
45
45
|
minimumValue: z.ZodNullable<z.ZodNumber>;
|
|
@@ -53,14 +53,14 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
53
53
|
weight: z.ZodNullable<z.ZodNumber>;
|
|
54
54
|
type: z.ZodLiteral<"percentage">;
|
|
55
55
|
total: z.ZodOptional<z.ZodNever>;
|
|
56
|
-
}, z.core.$catchall<z.ZodAny
|
|
56
|
+
}, z.core.$catchall<z.ZodAny>>, z.ZodObject<{
|
|
57
57
|
type: z.ZodLiteral<"boolean">;
|
|
58
58
|
value: z.ZodNullable<z.ZodBoolean>;
|
|
59
59
|
total: z.ZodOptional<z.ZodNever>;
|
|
60
60
|
maximumValue: z.ZodOptional<z.ZodNever>;
|
|
61
61
|
minimumValue: z.ZodOptional<z.ZodNever>;
|
|
62
62
|
weight: z.ZodOptional<z.ZodNever>;
|
|
63
|
-
}, z.core.$catchall<z.ZodAny>>]>>;
|
|
63
|
+
}, z.core.$catchall<z.ZodAny>>], "type">>;
|
|
64
64
|
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
65
65
|
type: z.ZodLiteral<"theme">;
|
|
66
66
|
style: z.ZodNullable<z.ZodObject<{
|
|
@@ -95,7 +95,7 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
95
95
|
type: z.ZodLiteral<"link">;
|
|
96
96
|
url: z.ZodString;
|
|
97
97
|
}, z.core.$strip>], "type">>>;
|
|
98
|
-
data: z.ZodNullable<z.
|
|
98
|
+
data: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
99
99
|
value: z.ZodNullable<z.ZodNumber>;
|
|
100
100
|
maximumValue: z.ZodNullable<z.ZodNumber>;
|
|
101
101
|
minimumValue: z.ZodNullable<z.ZodNumber>;
|
|
@@ -109,14 +109,14 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
109
109
|
weight: z.ZodNullable<z.ZodNumber>;
|
|
110
110
|
type: z.ZodLiteral<"percentage">;
|
|
111
111
|
total: z.ZodOptional<z.ZodNever>;
|
|
112
|
-
}, z.core.$catchall<z.ZodAny
|
|
112
|
+
}, z.core.$catchall<z.ZodAny>>, z.ZodObject<{
|
|
113
113
|
type: z.ZodLiteral<"boolean">;
|
|
114
114
|
value: z.ZodNullable<z.ZodBoolean>;
|
|
115
115
|
total: z.ZodOptional<z.ZodNever>;
|
|
116
116
|
maximumValue: z.ZodOptional<z.ZodNever>;
|
|
117
117
|
minimumValue: z.ZodOptional<z.ZodNever>;
|
|
118
118
|
weight: z.ZodOptional<z.ZodNever>;
|
|
119
|
-
}, z.core.$catchall<z.ZodAny>>]>>;
|
|
119
|
+
}, z.core.$catchall<z.ZodAny>>], "type">>;
|
|
120
120
|
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
121
121
|
type: z.ZodLiteral<"criterion">;
|
|
122
122
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
@@ -139,7 +139,7 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
139
139
|
type: z.ZodLiteral<"link">;
|
|
140
140
|
url: z.ZodString;
|
|
141
141
|
}, z.core.$strip>], "type">>>;
|
|
142
|
-
data: z.ZodNullable<z.
|
|
142
|
+
data: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
143
143
|
value: z.ZodNullable<z.ZodNumber>;
|
|
144
144
|
maximumValue: z.ZodNullable<z.ZodNumber>;
|
|
145
145
|
minimumValue: z.ZodNullable<z.ZodNumber>;
|
|
@@ -153,14 +153,14 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
153
153
|
weight: z.ZodNullable<z.ZodNumber>;
|
|
154
154
|
type: z.ZodLiteral<"percentage">;
|
|
155
155
|
total: z.ZodOptional<z.ZodNever>;
|
|
156
|
-
}, z.core.$catchall<z.ZodAny
|
|
156
|
+
}, z.core.$catchall<z.ZodAny>>, z.ZodObject<{
|
|
157
157
|
type: z.ZodLiteral<"boolean">;
|
|
158
158
|
value: z.ZodNullable<z.ZodBoolean>;
|
|
159
159
|
total: z.ZodOptional<z.ZodNever>;
|
|
160
160
|
maximumValue: z.ZodOptional<z.ZodNever>;
|
|
161
161
|
minimumValue: z.ZodOptional<z.ZodNever>;
|
|
162
162
|
weight: z.ZodOptional<z.ZodNever>;
|
|
163
|
-
}, z.core.$catchall<z.ZodAny>>]>>;
|
|
163
|
+
}, z.core.$catchall<z.ZodAny>>], "type">>;
|
|
164
164
|
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
165
165
|
type: z.ZodLiteral<"task-group">;
|
|
166
166
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -185,7 +185,7 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
185
185
|
type: z.ZodLiteral<"link">;
|
|
186
186
|
url: z.ZodString;
|
|
187
187
|
}, z.core.$strip>], "type">>>;
|
|
188
|
-
data: z.ZodNullable<z.
|
|
188
|
+
data: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
189
189
|
value: z.ZodNullable<z.ZodNumber>;
|
|
190
190
|
maximumValue: z.ZodNullable<z.ZodNumber>;
|
|
191
191
|
minimumValue: z.ZodNullable<z.ZodNumber>;
|
|
@@ -199,14 +199,14 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
199
199
|
weight: z.ZodNullable<z.ZodNumber>;
|
|
200
200
|
type: z.ZodLiteral<"percentage">;
|
|
201
201
|
total: z.ZodOptional<z.ZodNever>;
|
|
202
|
-
}, z.core.$catchall<z.ZodAny
|
|
202
|
+
}, z.core.$catchall<z.ZodAny>>, z.ZodObject<{
|
|
203
203
|
type: z.ZodLiteral<"boolean">;
|
|
204
204
|
value: z.ZodNullable<z.ZodBoolean>;
|
|
205
205
|
total: z.ZodOptional<z.ZodNever>;
|
|
206
206
|
maximumValue: z.ZodOptional<z.ZodNever>;
|
|
207
207
|
minimumValue: z.ZodOptional<z.ZodNever>;
|
|
208
208
|
weight: z.ZodOptional<z.ZodNever>;
|
|
209
|
-
}, z.core.$catchall<z.ZodAny>>]>>;
|
|
209
|
+
}, z.core.$catchall<z.ZodAny>>], "type">>;
|
|
210
210
|
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
211
211
|
type: z.ZodLiteral<"task">;
|
|
212
212
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -230,7 +230,7 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
230
230
|
}, z.core.$strip>], "type">>>;
|
|
231
231
|
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
232
232
|
type: z.ZodLiteral<"task-item">;
|
|
233
|
-
data: z.ZodNullable<z.ZodIntersection<z.
|
|
233
|
+
data: z.ZodNullable<z.ZodIntersection<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
234
234
|
value: z.ZodNullable<z.ZodNumber>;
|
|
235
235
|
maximumValue: z.ZodNullable<z.ZodNumber>;
|
|
236
236
|
minimumValue: z.ZodNullable<z.ZodNumber>;
|
|
@@ -244,14 +244,14 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
244
244
|
weight: z.ZodNullable<z.ZodNumber>;
|
|
245
245
|
type: z.ZodLiteral<"percentage">;
|
|
246
246
|
total: z.ZodOptional<z.ZodNever>;
|
|
247
|
-
}, z.core.$catchall<z.ZodAny
|
|
247
|
+
}, z.core.$catchall<z.ZodAny>>, z.ZodObject<{
|
|
248
248
|
type: z.ZodLiteral<"boolean">;
|
|
249
249
|
value: z.ZodNullable<z.ZodBoolean>;
|
|
250
250
|
total: z.ZodOptional<z.ZodNever>;
|
|
251
251
|
maximumValue: z.ZodOptional<z.ZodNever>;
|
|
252
252
|
minimumValue: z.ZodOptional<z.ZodNever>;
|
|
253
253
|
weight: z.ZodOptional<z.ZodNever>;
|
|
254
|
-
}, z.core.$catchall<z.ZodAny>>]>, z.ZodObject<{
|
|
254
|
+
}, z.core.$catchall<z.ZodAny>>], "type">, z.ZodObject<{
|
|
255
255
|
readOnly: z.ZodNullable<z.ZodBoolean>;
|
|
256
256
|
valueReference: z.ZodNullable<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>]>>;
|
|
257
257
|
}, z.core.$strip>>>;
|
|
@@ -286,7 +286,7 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
286
286
|
}, z.core.$strip>, z.ZodObject<{
|
|
287
287
|
label: z.ZodNullable<z.ZodString>;
|
|
288
288
|
readOnly: z.ZodNullable<z.ZodBoolean>;
|
|
289
|
-
type: z.
|
|
289
|
+
type: z.ZodLiteral<"number">;
|
|
290
290
|
minimum: z.ZodNullable<z.ZodNumber>;
|
|
291
291
|
maximum: z.ZodNullable<z.ZodNumber>;
|
|
292
292
|
step: z.ZodNullable<z.ZodNumber>;
|
|
@@ -309,7 +309,7 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
309
309
|
options: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
310
310
|
breadcrumbTextFormat: z.ZodString;
|
|
311
311
|
documentTreeFolderTextFormat: z.ZodString;
|
|
312
|
-
showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.
|
|
312
|
+
showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.ZodBoolean>;
|
|
313
313
|
}, z.core.$strip>, z.ZodObject<{
|
|
314
314
|
criteriaTreeElementTextFormat: z.ZodString;
|
|
315
315
|
}, z.core.$strip>>, z.ZodObject<{
|
|
@@ -318,18 +318,18 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
318
318
|
}, z.core.$strip>>>;
|
|
319
319
|
}, z.core.$strip>>>;
|
|
320
320
|
options: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
321
|
-
hideCodeInReport: z.ZodDefault<z.
|
|
321
|
+
hideCodeInReport: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
322
322
|
}, z.core.$strip>, z.ZodUnion<[z.ZodObject<{
|
|
323
323
|
hideFromBreadcrumbs: z.ZodLiteral<true>;
|
|
324
324
|
breadcrumbTextFormat: z.ZodOptional<z.ZodNever>;
|
|
325
325
|
}, z.core.$strip>, z.ZodObject<{
|
|
326
|
-
hideFromBreadcrumbs: z.ZodDefault<z.
|
|
326
|
+
hideFromBreadcrumbs: z.ZodDefault<z.ZodLiteral<false>>;
|
|
327
327
|
breadcrumbTextFormat: z.ZodString;
|
|
328
328
|
}, z.core.$strip>]>>, z.ZodUnion<[z.ZodObject<{
|
|
329
329
|
hideFromDocumentTree: z.ZodLiteral<true>;
|
|
330
330
|
documentTreeFolderTextFormat: z.ZodOptional<z.ZodNever>;
|
|
331
331
|
}, z.core.$strip>, z.ZodObject<{
|
|
332
|
-
hideFromDocumentTree: z.
|
|
332
|
+
hideFromDocumentTree: z.ZodLiteral<false>;
|
|
333
333
|
documentTreeFolderTextFormat: z.ZodString;
|
|
334
334
|
}, z.core.$strip>]>>, z.ZodObject<{
|
|
335
335
|
criteriaTreeElementTextFormat: z.ZodString;
|
|
@@ -338,18 +338,18 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
338
338
|
}, z.core.$strip>>;
|
|
339
339
|
}, z.core.$strip>>;
|
|
340
340
|
options: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
341
|
-
hideCodeInReport: z.ZodDefault<z.
|
|
341
|
+
hideCodeInReport: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
342
342
|
}, z.core.$strip>, z.ZodUnion<[z.ZodObject<{
|
|
343
343
|
hideFromBreadcrumbs: z.ZodLiteral<true>;
|
|
344
344
|
breadcrumbTextFormat: z.ZodOptional<z.ZodNever>;
|
|
345
345
|
}, z.core.$strip>, z.ZodObject<{
|
|
346
|
-
hideFromBreadcrumbs: z.ZodDefault<z.
|
|
346
|
+
hideFromBreadcrumbs: z.ZodDefault<z.ZodLiteral<false>>;
|
|
347
347
|
breadcrumbTextFormat: z.ZodString;
|
|
348
348
|
}, z.core.$strip>]>>, z.ZodUnion<[z.ZodObject<{
|
|
349
349
|
hideFromDocumentTree: z.ZodLiteral<true>;
|
|
350
350
|
documentTreeFolderTextFormat: z.ZodOptional<z.ZodNever>;
|
|
351
351
|
}, z.core.$strip>, z.ZodObject<{
|
|
352
|
-
hideFromDocumentTree: z.
|
|
352
|
+
hideFromDocumentTree: z.ZodLiteral<false>;
|
|
353
353
|
documentTreeFolderTextFormat: z.ZodString;
|
|
354
354
|
}, z.core.$strip>]>>, z.ZodObject<{
|
|
355
355
|
reportTitleTextFormat: z.ZodString;
|
|
@@ -423,7 +423,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
423
423
|
type: z.ZodLiteral<"link">;
|
|
424
424
|
url: z.ZodString;
|
|
425
425
|
}, z.core.$strip>], "type">>>;
|
|
426
|
-
data: z.ZodNullable<z.
|
|
426
|
+
data: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
427
427
|
value: z.ZodNullable<z.ZodNumber>;
|
|
428
428
|
maximumValue: z.ZodNullable<z.ZodNumber>;
|
|
429
429
|
minimumValue: z.ZodNullable<z.ZodNumber>;
|
|
@@ -437,14 +437,14 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
437
437
|
weight: z.ZodNullable<z.ZodNumber>;
|
|
438
438
|
type: z.ZodLiteral<"percentage">;
|
|
439
439
|
total: z.ZodOptional<z.ZodNever>;
|
|
440
|
-
}, z.core.$catchall<z.ZodAny
|
|
440
|
+
}, z.core.$catchall<z.ZodAny>>, z.ZodObject<{
|
|
441
441
|
type: z.ZodLiteral<"boolean">;
|
|
442
442
|
value: z.ZodNullable<z.ZodBoolean>;
|
|
443
443
|
total: z.ZodOptional<z.ZodNever>;
|
|
444
444
|
maximumValue: z.ZodOptional<z.ZodNever>;
|
|
445
445
|
minimumValue: z.ZodOptional<z.ZodNever>;
|
|
446
446
|
weight: z.ZodOptional<z.ZodNever>;
|
|
447
|
-
}, z.core.$catchall<z.ZodAny>>]>>;
|
|
447
|
+
}, z.core.$catchall<z.ZodAny>>], "type">>;
|
|
448
448
|
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
449
449
|
type: z.ZodLiteral<"theme">;
|
|
450
450
|
style: z.ZodNullable<z.ZodObject<{
|
|
@@ -479,7 +479,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
479
479
|
type: z.ZodLiteral<"link">;
|
|
480
480
|
url: z.ZodString;
|
|
481
481
|
}, z.core.$strip>], "type">>>;
|
|
482
|
-
data: z.ZodNullable<z.
|
|
482
|
+
data: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
483
483
|
value: z.ZodNullable<z.ZodNumber>;
|
|
484
484
|
maximumValue: z.ZodNullable<z.ZodNumber>;
|
|
485
485
|
minimumValue: z.ZodNullable<z.ZodNumber>;
|
|
@@ -493,14 +493,14 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
493
493
|
weight: z.ZodNullable<z.ZodNumber>;
|
|
494
494
|
type: z.ZodLiteral<"percentage">;
|
|
495
495
|
total: z.ZodOptional<z.ZodNever>;
|
|
496
|
-
}, z.core.$catchall<z.ZodAny
|
|
496
|
+
}, z.core.$catchall<z.ZodAny>>, z.ZodObject<{
|
|
497
497
|
type: z.ZodLiteral<"boolean">;
|
|
498
498
|
value: z.ZodNullable<z.ZodBoolean>;
|
|
499
499
|
total: z.ZodOptional<z.ZodNever>;
|
|
500
500
|
maximumValue: z.ZodOptional<z.ZodNever>;
|
|
501
501
|
minimumValue: z.ZodOptional<z.ZodNever>;
|
|
502
502
|
weight: z.ZodOptional<z.ZodNever>;
|
|
503
|
-
}, z.core.$catchall<z.ZodAny>>]>>;
|
|
503
|
+
}, z.core.$catchall<z.ZodAny>>], "type">>;
|
|
504
504
|
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
505
505
|
type: z.ZodLiteral<"criterion">;
|
|
506
506
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
@@ -523,7 +523,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
523
523
|
type: z.ZodLiteral<"link">;
|
|
524
524
|
url: z.ZodString;
|
|
525
525
|
}, z.core.$strip>], "type">>>;
|
|
526
|
-
data: z.ZodNullable<z.
|
|
526
|
+
data: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
527
527
|
value: z.ZodNullable<z.ZodNumber>;
|
|
528
528
|
maximumValue: z.ZodNullable<z.ZodNumber>;
|
|
529
529
|
minimumValue: z.ZodNullable<z.ZodNumber>;
|
|
@@ -537,14 +537,14 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
537
537
|
weight: z.ZodNullable<z.ZodNumber>;
|
|
538
538
|
type: z.ZodLiteral<"percentage">;
|
|
539
539
|
total: z.ZodOptional<z.ZodNever>;
|
|
540
|
-
}, z.core.$catchall<z.ZodAny
|
|
540
|
+
}, z.core.$catchall<z.ZodAny>>, z.ZodObject<{
|
|
541
541
|
type: z.ZodLiteral<"boolean">;
|
|
542
542
|
value: z.ZodNullable<z.ZodBoolean>;
|
|
543
543
|
total: z.ZodOptional<z.ZodNever>;
|
|
544
544
|
maximumValue: z.ZodOptional<z.ZodNever>;
|
|
545
545
|
minimumValue: z.ZodOptional<z.ZodNever>;
|
|
546
546
|
weight: z.ZodOptional<z.ZodNever>;
|
|
547
|
-
}, z.core.$catchall<z.ZodAny>>]>>;
|
|
547
|
+
}, z.core.$catchall<z.ZodAny>>], "type">>;
|
|
548
548
|
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
549
549
|
type: z.ZodLiteral<"task-group">;
|
|
550
550
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -569,7 +569,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
569
569
|
type: z.ZodLiteral<"link">;
|
|
570
570
|
url: z.ZodString;
|
|
571
571
|
}, z.core.$strip>], "type">>>;
|
|
572
|
-
data: z.ZodNullable<z.
|
|
572
|
+
data: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
573
573
|
value: z.ZodNullable<z.ZodNumber>;
|
|
574
574
|
maximumValue: z.ZodNullable<z.ZodNumber>;
|
|
575
575
|
minimumValue: z.ZodNullable<z.ZodNumber>;
|
|
@@ -583,14 +583,14 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
583
583
|
weight: z.ZodNullable<z.ZodNumber>;
|
|
584
584
|
type: z.ZodLiteral<"percentage">;
|
|
585
585
|
total: z.ZodOptional<z.ZodNever>;
|
|
586
|
-
}, z.core.$catchall<z.ZodAny
|
|
586
|
+
}, z.core.$catchall<z.ZodAny>>, z.ZodObject<{
|
|
587
587
|
type: z.ZodLiteral<"boolean">;
|
|
588
588
|
value: z.ZodNullable<z.ZodBoolean>;
|
|
589
589
|
total: z.ZodOptional<z.ZodNever>;
|
|
590
590
|
maximumValue: z.ZodOptional<z.ZodNever>;
|
|
591
591
|
minimumValue: z.ZodOptional<z.ZodNever>;
|
|
592
592
|
weight: z.ZodOptional<z.ZodNever>;
|
|
593
|
-
}, z.core.$catchall<z.ZodAny>>]>>;
|
|
593
|
+
}, z.core.$catchall<z.ZodAny>>], "type">>;
|
|
594
594
|
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
595
595
|
type: z.ZodLiteral<"task">;
|
|
596
596
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -614,7 +614,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
614
614
|
}, z.core.$strip>], "type">>>;
|
|
615
615
|
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
616
616
|
type: z.ZodLiteral<"task-item">;
|
|
617
|
-
data: z.ZodNullable<z.ZodIntersection<z.
|
|
617
|
+
data: z.ZodNullable<z.ZodIntersection<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
618
618
|
value: z.ZodNullable<z.ZodNumber>;
|
|
619
619
|
maximumValue: z.ZodNullable<z.ZodNumber>;
|
|
620
620
|
minimumValue: z.ZodNullable<z.ZodNumber>;
|
|
@@ -628,14 +628,14 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
628
628
|
weight: z.ZodNullable<z.ZodNumber>;
|
|
629
629
|
type: z.ZodLiteral<"percentage">;
|
|
630
630
|
total: z.ZodOptional<z.ZodNever>;
|
|
631
|
-
}, z.core.$catchall<z.ZodAny
|
|
631
|
+
}, z.core.$catchall<z.ZodAny>>, z.ZodObject<{
|
|
632
632
|
type: z.ZodLiteral<"boolean">;
|
|
633
633
|
value: z.ZodNullable<z.ZodBoolean>;
|
|
634
634
|
total: z.ZodOptional<z.ZodNever>;
|
|
635
635
|
maximumValue: z.ZodOptional<z.ZodNever>;
|
|
636
636
|
minimumValue: z.ZodOptional<z.ZodNever>;
|
|
637
637
|
weight: z.ZodOptional<z.ZodNever>;
|
|
638
|
-
}, z.core.$catchall<z.ZodAny>>]>, z.ZodObject<{
|
|
638
|
+
}, z.core.$catchall<z.ZodAny>>], "type">, z.ZodObject<{
|
|
639
639
|
readOnly: z.ZodNullable<z.ZodBoolean>;
|
|
640
640
|
valueReference: z.ZodNullable<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>]>>;
|
|
641
641
|
}, z.core.$strip>>>;
|
|
@@ -670,7 +670,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
670
670
|
}, z.core.$strip>, z.ZodObject<{
|
|
671
671
|
label: z.ZodNullable<z.ZodString>;
|
|
672
672
|
readOnly: z.ZodNullable<z.ZodBoolean>;
|
|
673
|
-
type: z.
|
|
673
|
+
type: z.ZodLiteral<"number">;
|
|
674
674
|
minimum: z.ZodNullable<z.ZodNumber>;
|
|
675
675
|
maximum: z.ZodNullable<z.ZodNumber>;
|
|
676
676
|
step: z.ZodNullable<z.ZodNumber>;
|
|
@@ -693,7 +693,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
693
693
|
options: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
694
694
|
breadcrumbTextFormat: z.ZodString;
|
|
695
695
|
documentTreeFolderTextFormat: z.ZodString;
|
|
696
|
-
showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.
|
|
696
|
+
showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.ZodBoolean>;
|
|
697
697
|
}, z.core.$strip>, z.ZodObject<{
|
|
698
698
|
criteriaTreeElementTextFormat: z.ZodString;
|
|
699
699
|
}, z.core.$strip>>, z.ZodObject<{
|
|
@@ -702,18 +702,18 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
702
702
|
}, z.core.$strip>>>;
|
|
703
703
|
}, z.core.$strip>>>;
|
|
704
704
|
options: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
705
|
-
hideCodeInReport: z.ZodDefault<z.
|
|
705
|
+
hideCodeInReport: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
706
706
|
}, z.core.$strip>, z.ZodUnion<[z.ZodObject<{
|
|
707
707
|
hideFromBreadcrumbs: z.ZodLiteral<true>;
|
|
708
708
|
breadcrumbTextFormat: z.ZodOptional<z.ZodNever>;
|
|
709
709
|
}, z.core.$strip>, z.ZodObject<{
|
|
710
|
-
hideFromBreadcrumbs: z.ZodDefault<z.
|
|
710
|
+
hideFromBreadcrumbs: z.ZodDefault<z.ZodLiteral<false>>;
|
|
711
711
|
breadcrumbTextFormat: z.ZodString;
|
|
712
712
|
}, z.core.$strip>]>>, z.ZodUnion<[z.ZodObject<{
|
|
713
713
|
hideFromDocumentTree: z.ZodLiteral<true>;
|
|
714
714
|
documentTreeFolderTextFormat: z.ZodOptional<z.ZodNever>;
|
|
715
715
|
}, z.core.$strip>, z.ZodObject<{
|
|
716
|
-
hideFromDocumentTree: z.
|
|
716
|
+
hideFromDocumentTree: z.ZodLiteral<false>;
|
|
717
717
|
documentTreeFolderTextFormat: z.ZodString;
|
|
718
718
|
}, z.core.$strip>]>>, z.ZodObject<{
|
|
719
719
|
criteriaTreeElementTextFormat: z.ZodString;
|
|
@@ -722,18 +722,18 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
722
722
|
}, z.core.$strip>>;
|
|
723
723
|
}, z.core.$strip>>;
|
|
724
724
|
options: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
725
|
-
hideCodeInReport: z.ZodDefault<z.
|
|
725
|
+
hideCodeInReport: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
726
726
|
}, z.core.$strip>, z.ZodUnion<[z.ZodObject<{
|
|
727
727
|
hideFromBreadcrumbs: z.ZodLiteral<true>;
|
|
728
728
|
breadcrumbTextFormat: z.ZodOptional<z.ZodNever>;
|
|
729
729
|
}, z.core.$strip>, z.ZodObject<{
|
|
730
|
-
hideFromBreadcrumbs: z.ZodDefault<z.
|
|
730
|
+
hideFromBreadcrumbs: z.ZodDefault<z.ZodLiteral<false>>;
|
|
731
731
|
breadcrumbTextFormat: z.ZodString;
|
|
732
732
|
}, z.core.$strip>]>>, z.ZodUnion<[z.ZodObject<{
|
|
733
733
|
hideFromDocumentTree: z.ZodLiteral<true>;
|
|
734
734
|
documentTreeFolderTextFormat: z.ZodOptional<z.ZodNever>;
|
|
735
735
|
}, z.core.$strip>, z.ZodObject<{
|
|
736
|
-
hideFromDocumentTree: z.
|
|
736
|
+
hideFromDocumentTree: z.ZodLiteral<false>;
|
|
737
737
|
documentTreeFolderTextFormat: z.ZodString;
|
|
738
738
|
}, z.core.$strip>]>>, z.ZodObject<{
|
|
739
739
|
reportTitleTextFormat: z.ZodString;
|
|
@@ -758,7 +758,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
758
758
|
type: z.ZodLiteral<"link">;
|
|
759
759
|
url: z.ZodString;
|
|
760
760
|
}, z.core.$strip>], "type">>>;
|
|
761
|
-
data: z.ZodNullable<z.
|
|
761
|
+
data: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
762
762
|
value: z.ZodNullable<z.ZodNumber>;
|
|
763
763
|
maximumValue: z.ZodNullable<z.ZodNumber>;
|
|
764
764
|
minimumValue: z.ZodNullable<z.ZodNumber>;
|
|
@@ -772,14 +772,14 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
772
772
|
weight: z.ZodNullable<z.ZodNumber>;
|
|
773
773
|
type: z.ZodLiteral<"percentage">;
|
|
774
774
|
total: z.ZodOptional<z.ZodNever>;
|
|
775
|
-
}, z.core.$catchall<z.ZodAny
|
|
775
|
+
}, z.core.$catchall<z.ZodAny>>, z.ZodObject<{
|
|
776
776
|
type: z.ZodLiteral<"boolean">;
|
|
777
777
|
value: z.ZodNullable<z.ZodBoolean>;
|
|
778
778
|
total: z.ZodOptional<z.ZodNever>;
|
|
779
779
|
maximumValue: z.ZodOptional<z.ZodNever>;
|
|
780
780
|
minimumValue: z.ZodOptional<z.ZodNever>;
|
|
781
781
|
weight: z.ZodOptional<z.ZodNever>;
|
|
782
|
-
}, z.core.$catchall<z.ZodAny>>]>>;
|
|
782
|
+
}, z.core.$catchall<z.ZodAny>>], "type">>;
|
|
783
783
|
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
784
784
|
type: z.ZodLiteral<"criterion">;
|
|
785
785
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
@@ -802,7 +802,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
802
802
|
type: z.ZodLiteral<"link">;
|
|
803
803
|
url: z.ZodString;
|
|
804
804
|
}, z.core.$strip>], "type">>>;
|
|
805
|
-
data: z.ZodNullable<z.
|
|
805
|
+
data: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
806
806
|
value: z.ZodNullable<z.ZodNumber>;
|
|
807
807
|
maximumValue: z.ZodNullable<z.ZodNumber>;
|
|
808
808
|
minimumValue: z.ZodNullable<z.ZodNumber>;
|
|
@@ -816,14 +816,14 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
816
816
|
weight: z.ZodNullable<z.ZodNumber>;
|
|
817
817
|
type: z.ZodLiteral<"percentage">;
|
|
818
818
|
total: z.ZodOptional<z.ZodNever>;
|
|
819
|
-
}, z.core.$catchall<z.ZodAny
|
|
819
|
+
}, z.core.$catchall<z.ZodAny>>, z.ZodObject<{
|
|
820
820
|
type: z.ZodLiteral<"boolean">;
|
|
821
821
|
value: z.ZodNullable<z.ZodBoolean>;
|
|
822
822
|
total: z.ZodOptional<z.ZodNever>;
|
|
823
823
|
maximumValue: z.ZodOptional<z.ZodNever>;
|
|
824
824
|
minimumValue: z.ZodOptional<z.ZodNever>;
|
|
825
825
|
weight: z.ZodOptional<z.ZodNever>;
|
|
826
|
-
}, z.core.$catchall<z.ZodAny>>]>>;
|
|
826
|
+
}, z.core.$catchall<z.ZodAny>>], "type">>;
|
|
827
827
|
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
828
828
|
type: z.ZodLiteral<"task-group">;
|
|
829
829
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -848,7 +848,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
848
848
|
type: z.ZodLiteral<"link">;
|
|
849
849
|
url: z.ZodString;
|
|
850
850
|
}, z.core.$strip>], "type">>>;
|
|
851
|
-
data: z.ZodNullable<z.
|
|
851
|
+
data: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
852
852
|
value: z.ZodNullable<z.ZodNumber>;
|
|
853
853
|
maximumValue: z.ZodNullable<z.ZodNumber>;
|
|
854
854
|
minimumValue: z.ZodNullable<z.ZodNumber>;
|
|
@@ -862,14 +862,14 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
862
862
|
weight: z.ZodNullable<z.ZodNumber>;
|
|
863
863
|
type: z.ZodLiteral<"percentage">;
|
|
864
864
|
total: z.ZodOptional<z.ZodNever>;
|
|
865
|
-
}, z.core.$catchall<z.ZodAny
|
|
865
|
+
}, z.core.$catchall<z.ZodAny>>, z.ZodObject<{
|
|
866
866
|
type: z.ZodLiteral<"boolean">;
|
|
867
867
|
value: z.ZodNullable<z.ZodBoolean>;
|
|
868
868
|
total: z.ZodOptional<z.ZodNever>;
|
|
869
869
|
maximumValue: z.ZodOptional<z.ZodNever>;
|
|
870
870
|
minimumValue: z.ZodOptional<z.ZodNever>;
|
|
871
871
|
weight: z.ZodOptional<z.ZodNever>;
|
|
872
|
-
}, z.core.$catchall<z.ZodAny>>]>>;
|
|
872
|
+
}, z.core.$catchall<z.ZodAny>>], "type">>;
|
|
873
873
|
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
874
874
|
type: z.ZodLiteral<"task">;
|
|
875
875
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -893,7 +893,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
893
893
|
}, z.core.$strip>], "type">>>;
|
|
894
894
|
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
895
895
|
type: z.ZodLiteral<"task-item">;
|
|
896
|
-
data: z.ZodNullable<z.ZodIntersection<z.
|
|
896
|
+
data: z.ZodNullable<z.ZodIntersection<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
897
897
|
value: z.ZodNullable<z.ZodNumber>;
|
|
898
898
|
maximumValue: z.ZodNullable<z.ZodNumber>;
|
|
899
899
|
minimumValue: z.ZodNullable<z.ZodNumber>;
|
|
@@ -907,14 +907,14 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
907
907
|
weight: z.ZodNullable<z.ZodNumber>;
|
|
908
908
|
type: z.ZodLiteral<"percentage">;
|
|
909
909
|
total: z.ZodOptional<z.ZodNever>;
|
|
910
|
-
}, z.core.$catchall<z.ZodAny
|
|
910
|
+
}, z.core.$catchall<z.ZodAny>>, z.ZodObject<{
|
|
911
911
|
type: z.ZodLiteral<"boolean">;
|
|
912
912
|
value: z.ZodNullable<z.ZodBoolean>;
|
|
913
913
|
total: z.ZodOptional<z.ZodNever>;
|
|
914
914
|
maximumValue: z.ZodOptional<z.ZodNever>;
|
|
915
915
|
minimumValue: z.ZodOptional<z.ZodNever>;
|
|
916
916
|
weight: z.ZodOptional<z.ZodNever>;
|
|
917
|
-
}, z.core.$catchall<z.ZodAny>>]>, z.ZodObject<{
|
|
917
|
+
}, z.core.$catchall<z.ZodAny>>], "type">, z.ZodObject<{
|
|
918
918
|
readOnly: z.ZodNullable<z.ZodBoolean>;
|
|
919
919
|
valueReference: z.ZodNullable<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>]>>;
|
|
920
920
|
}, z.core.$strip>>>;
|
|
@@ -949,7 +949,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
949
949
|
}, z.core.$strip>, z.ZodObject<{
|
|
950
950
|
label: z.ZodNullable<z.ZodString>;
|
|
951
951
|
readOnly: z.ZodNullable<z.ZodBoolean>;
|
|
952
|
-
type: z.
|
|
952
|
+
type: z.ZodLiteral<"number">;
|
|
953
953
|
minimum: z.ZodNullable<z.ZodNumber>;
|
|
954
954
|
maximum: z.ZodNullable<z.ZodNumber>;
|
|
955
955
|
step: z.ZodNullable<z.ZodNumber>;
|
|
@@ -972,7 +972,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
972
972
|
options: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
973
973
|
breadcrumbTextFormat: z.ZodString;
|
|
974
974
|
documentTreeFolderTextFormat: z.ZodString;
|
|
975
|
-
showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.
|
|
975
|
+
showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.ZodBoolean>;
|
|
976
976
|
}, z.core.$strip>, z.ZodObject<{
|
|
977
977
|
criteriaTreeElementTextFormat: z.ZodString;
|
|
978
978
|
}, z.core.$strip>>, z.ZodObject<{
|
|
@@ -981,18 +981,18 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
981
981
|
}, z.core.$strip>>>;
|
|
982
982
|
}, z.core.$strip>>>;
|
|
983
983
|
options: z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
984
|
-
hideCodeInReport: z.ZodDefault<z.
|
|
984
|
+
hideCodeInReport: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
985
985
|
}, z.core.$strip>, z.ZodUnion<[z.ZodObject<{
|
|
986
986
|
hideFromBreadcrumbs: z.ZodLiteral<true>;
|
|
987
987
|
breadcrumbTextFormat: z.ZodOptional<z.ZodNever>;
|
|
988
988
|
}, z.core.$strip>, z.ZodObject<{
|
|
989
|
-
hideFromBreadcrumbs: z.ZodDefault<z.
|
|
989
|
+
hideFromBreadcrumbs: z.ZodDefault<z.ZodLiteral<false>>;
|
|
990
990
|
breadcrumbTextFormat: z.ZodString;
|
|
991
991
|
}, z.core.$strip>]>>, z.ZodUnion<[z.ZodObject<{
|
|
992
992
|
hideFromDocumentTree: z.ZodLiteral<true>;
|
|
993
993
|
documentTreeFolderTextFormat: z.ZodOptional<z.ZodNever>;
|
|
994
994
|
}, z.core.$strip>, z.ZodObject<{
|
|
995
|
-
hideFromDocumentTree: z.
|
|
995
|
+
hideFromDocumentTree: z.ZodLiteral<false>;
|
|
996
996
|
documentTreeFolderTextFormat: z.ZodString;
|
|
997
997
|
}, z.core.$strip>]>>, z.ZodObject<{
|
|
998
998
|
criteriaTreeElementTextFormat: z.ZodString;
|
|
@@ -1019,7 +1019,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1019
1019
|
type: z.ZodLiteral<"link">;
|
|
1020
1020
|
url: z.ZodString;
|
|
1021
1021
|
}, z.core.$strip>], "type">>>;
|
|
1022
|
-
data: z.ZodNullable<z.
|
|
1022
|
+
data: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1023
1023
|
value: z.ZodNullable<z.ZodNumber>;
|
|
1024
1024
|
maximumValue: z.ZodNullable<z.ZodNumber>;
|
|
1025
1025
|
minimumValue: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1033,14 +1033,14 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1033
1033
|
weight: z.ZodNullable<z.ZodNumber>;
|
|
1034
1034
|
type: z.ZodLiteral<"percentage">;
|
|
1035
1035
|
total: z.ZodOptional<z.ZodNever>;
|
|
1036
|
-
}, z.core.$catchall<z.ZodAny
|
|
1036
|
+
}, z.core.$catchall<z.ZodAny>>, z.ZodObject<{
|
|
1037
1037
|
type: z.ZodLiteral<"boolean">;
|
|
1038
1038
|
value: z.ZodNullable<z.ZodBoolean>;
|
|
1039
1039
|
total: z.ZodOptional<z.ZodNever>;
|
|
1040
1040
|
maximumValue: z.ZodOptional<z.ZodNever>;
|
|
1041
1041
|
minimumValue: z.ZodOptional<z.ZodNever>;
|
|
1042
1042
|
weight: z.ZodOptional<z.ZodNever>;
|
|
1043
|
-
}, z.core.$catchall<z.ZodAny>>]>>;
|
|
1043
|
+
}, z.core.$catchall<z.ZodAny>>], "type">>;
|
|
1044
1044
|
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
1045
1045
|
type: z.ZodLiteral<"task-group">;
|
|
1046
1046
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -1065,7 +1065,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1065
1065
|
type: z.ZodLiteral<"link">;
|
|
1066
1066
|
url: z.ZodString;
|
|
1067
1067
|
}, z.core.$strip>], "type">>>;
|
|
1068
|
-
data: z.ZodNullable<z.
|
|
1068
|
+
data: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1069
1069
|
value: z.ZodNullable<z.ZodNumber>;
|
|
1070
1070
|
maximumValue: z.ZodNullable<z.ZodNumber>;
|
|
1071
1071
|
minimumValue: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1079,14 +1079,14 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1079
1079
|
weight: z.ZodNullable<z.ZodNumber>;
|
|
1080
1080
|
type: z.ZodLiteral<"percentage">;
|
|
1081
1081
|
total: z.ZodOptional<z.ZodNever>;
|
|
1082
|
-
}, z.core.$catchall<z.ZodAny
|
|
1082
|
+
}, z.core.$catchall<z.ZodAny>>, z.ZodObject<{
|
|
1083
1083
|
type: z.ZodLiteral<"boolean">;
|
|
1084
1084
|
value: z.ZodNullable<z.ZodBoolean>;
|
|
1085
1085
|
total: z.ZodOptional<z.ZodNever>;
|
|
1086
1086
|
maximumValue: z.ZodOptional<z.ZodNever>;
|
|
1087
1087
|
minimumValue: z.ZodOptional<z.ZodNever>;
|
|
1088
1088
|
weight: z.ZodOptional<z.ZodNever>;
|
|
1089
|
-
}, z.core.$catchall<z.ZodAny>>]>>;
|
|
1089
|
+
}, z.core.$catchall<z.ZodAny>>], "type">>;
|
|
1090
1090
|
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
1091
1091
|
type: z.ZodLiteral<"task">;
|
|
1092
1092
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -1110,7 +1110,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1110
1110
|
}, z.core.$strip>], "type">>>;
|
|
1111
1111
|
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
1112
1112
|
type: z.ZodLiteral<"task-item">;
|
|
1113
|
-
data: z.ZodNullable<z.ZodIntersection<z.
|
|
1113
|
+
data: z.ZodNullable<z.ZodIntersection<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1114
1114
|
value: z.ZodNullable<z.ZodNumber>;
|
|
1115
1115
|
maximumValue: z.ZodNullable<z.ZodNumber>;
|
|
1116
1116
|
minimumValue: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1124,14 +1124,14 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1124
1124
|
weight: z.ZodNullable<z.ZodNumber>;
|
|
1125
1125
|
type: z.ZodLiteral<"percentage">;
|
|
1126
1126
|
total: z.ZodOptional<z.ZodNever>;
|
|
1127
|
-
}, z.core.$catchall<z.ZodAny
|
|
1127
|
+
}, z.core.$catchall<z.ZodAny>>, z.ZodObject<{
|
|
1128
1128
|
type: z.ZodLiteral<"boolean">;
|
|
1129
1129
|
value: z.ZodNullable<z.ZodBoolean>;
|
|
1130
1130
|
total: z.ZodOptional<z.ZodNever>;
|
|
1131
1131
|
maximumValue: z.ZodOptional<z.ZodNever>;
|
|
1132
1132
|
minimumValue: z.ZodOptional<z.ZodNever>;
|
|
1133
1133
|
weight: z.ZodOptional<z.ZodNever>;
|
|
1134
|
-
}, z.core.$catchall<z.ZodAny>>]>, z.ZodObject<{
|
|
1134
|
+
}, z.core.$catchall<z.ZodAny>>], "type">, z.ZodObject<{
|
|
1135
1135
|
readOnly: z.ZodNullable<z.ZodBoolean>;
|
|
1136
1136
|
valueReference: z.ZodNullable<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>]>>;
|
|
1137
1137
|
}, z.core.$strip>>>;
|
|
@@ -1166,7 +1166,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1166
1166
|
}, z.core.$strip>, z.ZodObject<{
|
|
1167
1167
|
label: z.ZodNullable<z.ZodString>;
|
|
1168
1168
|
readOnly: z.ZodNullable<z.ZodBoolean>;
|
|
1169
|
-
type: z.
|
|
1169
|
+
type: z.ZodLiteral<"number">;
|
|
1170
1170
|
minimum: z.ZodNullable<z.ZodNumber>;
|
|
1171
1171
|
maximum: z.ZodNullable<z.ZodNumber>;
|
|
1172
1172
|
step: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1189,7 +1189,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1189
1189
|
options: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1190
1190
|
breadcrumbTextFormat: z.ZodString;
|
|
1191
1191
|
documentTreeFolderTextFormat: z.ZodString;
|
|
1192
|
-
showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.
|
|
1192
|
+
showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.ZodBoolean>;
|
|
1193
1193
|
}, z.core.$strip>, z.ZodObject<{
|
|
1194
1194
|
criteriaTreeElementTextFormat: z.ZodString;
|
|
1195
1195
|
}, z.core.$strip>>, z.ZodObject<{
|
|
@@ -1216,7 +1216,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1216
1216
|
type: z.ZodLiteral<"link">;
|
|
1217
1217
|
url: z.ZodString;
|
|
1218
1218
|
}, z.core.$strip>], "type">>>;
|
|
1219
|
-
data: z.ZodNullable<z.
|
|
1219
|
+
data: z.ZodNullable<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1220
1220
|
value: z.ZodNullable<z.ZodNumber>;
|
|
1221
1221
|
maximumValue: z.ZodNullable<z.ZodNumber>;
|
|
1222
1222
|
minimumValue: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1230,14 +1230,14 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1230
1230
|
weight: z.ZodNullable<z.ZodNumber>;
|
|
1231
1231
|
type: z.ZodLiteral<"percentage">;
|
|
1232
1232
|
total: z.ZodOptional<z.ZodNever>;
|
|
1233
|
-
}, z.core.$catchall<z.ZodAny
|
|
1233
|
+
}, z.core.$catchall<z.ZodAny>>, z.ZodObject<{
|
|
1234
1234
|
type: z.ZodLiteral<"boolean">;
|
|
1235
1235
|
value: z.ZodNullable<z.ZodBoolean>;
|
|
1236
1236
|
total: z.ZodOptional<z.ZodNever>;
|
|
1237
1237
|
maximumValue: z.ZodOptional<z.ZodNever>;
|
|
1238
1238
|
minimumValue: z.ZodOptional<z.ZodNever>;
|
|
1239
1239
|
weight: z.ZodOptional<z.ZodNever>;
|
|
1240
|
-
}, z.core.$catchall<z.ZodAny>>]>>;
|
|
1240
|
+
}, z.core.$catchall<z.ZodAny>>], "type">>;
|
|
1241
1241
|
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
1242
1242
|
type: z.ZodLiteral<"task">;
|
|
1243
1243
|
description: z.ZodNullable<z.ZodString>;
|
|
@@ -1261,7 +1261,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1261
1261
|
}, z.core.$strip>], "type">>>;
|
|
1262
1262
|
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
1263
1263
|
type: z.ZodLiteral<"task-item">;
|
|
1264
|
-
data: z.ZodNullable<z.ZodIntersection<z.
|
|
1264
|
+
data: z.ZodNullable<z.ZodIntersection<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1265
1265
|
value: z.ZodNullable<z.ZodNumber>;
|
|
1266
1266
|
maximumValue: z.ZodNullable<z.ZodNumber>;
|
|
1267
1267
|
minimumValue: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1275,14 +1275,14 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1275
1275
|
weight: z.ZodNullable<z.ZodNumber>;
|
|
1276
1276
|
type: z.ZodLiteral<"percentage">;
|
|
1277
1277
|
total: z.ZodOptional<z.ZodNever>;
|
|
1278
|
-
}, z.core.$catchall<z.ZodAny
|
|
1278
|
+
}, z.core.$catchall<z.ZodAny>>, z.ZodObject<{
|
|
1279
1279
|
type: z.ZodLiteral<"boolean">;
|
|
1280
1280
|
value: z.ZodNullable<z.ZodBoolean>;
|
|
1281
1281
|
total: z.ZodOptional<z.ZodNever>;
|
|
1282
1282
|
maximumValue: z.ZodOptional<z.ZodNever>;
|
|
1283
1283
|
minimumValue: z.ZodOptional<z.ZodNever>;
|
|
1284
1284
|
weight: z.ZodOptional<z.ZodNever>;
|
|
1285
|
-
}, z.core.$catchall<z.ZodAny>>]>, z.ZodObject<{
|
|
1285
|
+
}, z.core.$catchall<z.ZodAny>>], "type">, z.ZodObject<{
|
|
1286
1286
|
readOnly: z.ZodNullable<z.ZodBoolean>;
|
|
1287
1287
|
valueReference: z.ZodNullable<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>]>>;
|
|
1288
1288
|
}, z.core.$strip>>>;
|
|
@@ -1317,7 +1317,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1317
1317
|
}, z.core.$strip>, z.ZodObject<{
|
|
1318
1318
|
label: z.ZodNullable<z.ZodString>;
|
|
1319
1319
|
readOnly: z.ZodNullable<z.ZodBoolean>;
|
|
1320
|
-
type: z.
|
|
1320
|
+
type: z.ZodLiteral<"number">;
|
|
1321
1321
|
minimum: z.ZodNullable<z.ZodNumber>;
|
|
1322
1322
|
maximum: z.ZodNullable<z.ZodNumber>;
|
|
1323
1323
|
step: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1340,7 +1340,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1340
1340
|
options: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
|
|
1341
1341
|
breadcrumbTextFormat: z.ZodString;
|
|
1342
1342
|
documentTreeFolderTextFormat: z.ZodString;
|
|
1343
|
-
showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.
|
|
1343
|
+
showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.ZodBoolean>;
|
|
1344
1344
|
}, z.core.$strip>, z.ZodObject<{
|
|
1345
1345
|
criteriaTreeElementTextFormat: z.ZodString;
|
|
1346
1346
|
}, z.core.$strip>>, z.ZodObject<{
|
|
@@ -1366,7 +1366,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1366
1366
|
}, z.core.$strip>], "type">>>;
|
|
1367
1367
|
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
1368
1368
|
type: z.ZodLiteral<"task-item">;
|
|
1369
|
-
data: z.ZodNullable<z.ZodIntersection<z.
|
|
1369
|
+
data: z.ZodNullable<z.ZodIntersection<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1370
1370
|
value: z.ZodNullable<z.ZodNumber>;
|
|
1371
1371
|
maximumValue: z.ZodNullable<z.ZodNumber>;
|
|
1372
1372
|
minimumValue: z.ZodNullable<z.ZodNumber>;
|
|
@@ -1380,14 +1380,14 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1380
1380
|
weight: z.ZodNullable<z.ZodNumber>;
|
|
1381
1381
|
type: z.ZodLiteral<"percentage">;
|
|
1382
1382
|
total: z.ZodOptional<z.ZodNever>;
|
|
1383
|
-
}, z.core.$catchall<z.ZodAny
|
|
1383
|
+
}, z.core.$catchall<z.ZodAny>>, z.ZodObject<{
|
|
1384
1384
|
type: z.ZodLiteral<"boolean">;
|
|
1385
1385
|
value: z.ZodNullable<z.ZodBoolean>;
|
|
1386
1386
|
total: z.ZodOptional<z.ZodNever>;
|
|
1387
1387
|
maximumValue: z.ZodOptional<z.ZodNever>;
|
|
1388
1388
|
minimumValue: z.ZodOptional<z.ZodNever>;
|
|
1389
1389
|
weight: z.ZodOptional<z.ZodNever>;
|
|
1390
|
-
}, z.core.$catchall<z.ZodAny>>]>, z.ZodObject<{
|
|
1390
|
+
}, z.core.$catchall<z.ZodAny>>], "type">, z.ZodObject<{
|
|
1391
1391
|
readOnly: z.ZodNullable<z.ZodBoolean>;
|
|
1392
1392
|
valueReference: z.ZodNullable<z.ZodUnion<readonly [z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>, z.ZodArray<z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>>]>>;
|
|
1393
1393
|
}, z.core.$strip>>>;
|
|
@@ -1422,7 +1422,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1422
1422
|
}, z.core.$strip>, z.ZodObject<{
|
|
1423
1423
|
label: z.ZodNullable<z.ZodString>;
|
|
1424
1424
|
readOnly: z.ZodNullable<z.ZodBoolean>;
|
|
1425
|
-
type: z.
|
|
1425
|
+
type: z.ZodLiteral<"number">;
|
|
1426
1426
|
minimum: z.ZodNullable<z.ZodNumber>;
|
|
1427
1427
|
maximum: z.ZodNullable<z.ZodNumber>;
|
|
1428
1428
|
step: z.ZodNullable<z.ZodNumber>;
|