@openframe-org/criteria-set-protocol 2.0.5 → 2.0.6-beta.2
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/certification.d.ts +80 -80
- package/dist/v1/schemas/certification.js +6 -7
- package/dist/v1/schemas/common.d.ts +75 -144
- package/dist/v1/schemas/common.js +14 -15
- package/dist/v1/schemas/criteria-tree.d.ts +2461 -4280
- package/dist/v1/schemas/criteria-tree.js +1 -2
- package/dist/v1/schemas/criterion.d.ts +450 -791
- package/dist/v1/schemas/criterion.js +3 -4
- package/dist/v1/schemas/data-map.d.ts +2 -2
- package/dist/v1/schemas/data-map.js +1 -2
- package/dist/v1/schemas/metadata.d.ts +19 -28
- package/dist/v1/schemas/metadata.js +6 -7
- package/dist/v1/schemas/request/matrix-body-schema.d.ts +7 -7
- package/dist/v1/schemas/request/matrix-body-schema.js +4 -5
- package/dist/v1/schemas/request/matrix-request-body-schema.d.ts +7 -7
- package/dist/v1/schemas/request/matrix-request-body-schema.js +4 -5
- package/dist/v1/schemas/request/tree-and-data-body-schema.d.ts +6 -6
- package/dist/v1/schemas/request/tree-and-data-body-schema.js +3 -4
- package/dist/v1/schemas/request/tree-and-data-request-body-schema.d.ts +6 -6
- package/dist/v1/schemas/request/tree-and-data-request-body-schema.js +3 -4
- package/dist/v1/schemas/response.d.ts +15 -24
- package/dist/v1/schemas/task-group.d.ts +321 -584
- package/dist/v1/schemas/task-group.js +4 -5
- package/dist/v1/schemas/task-item.d.ts +193 -303
- package/dist/v1/schemas/task-item.js +13 -14
- package/dist/v1/schemas/task.d.ts +210 -395
- package/dist/v1/schemas/task.js +3 -4
- package/dist/v1/schemas/theme.d.ts +600 -1033
- package/dist/v1/schemas/theme.js +3 -4
- package/dist/v1/schemas/utils.d.ts +1 -1
- package/dist/v1/schemas/utils.js +6 -4
- package/package.json +1 -1
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const taskItemValueMapSchema: z.ZodRecord<z.ZodString, 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">]>>;
|
|
3
3
|
export declare const pointOptionSchema: z.ZodObject<{
|
|
4
|
-
id: z.
|
|
4
|
+
id: z.ZodOptional<z.ZodString>;
|
|
5
5
|
text: z.ZodString;
|
|
6
|
-
intro: z.
|
|
7
|
-
outro: z.
|
|
6
|
+
intro: z.ZodOptional<z.ZodString>;
|
|
7
|
+
outro: z.ZodOptional<z.ZodString>;
|
|
8
8
|
value: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>;
|
|
9
9
|
}, "strip", z.ZodTypeAny, {
|
|
10
10
|
value: string | number | boolean | null;
|
|
@@ -15,19 +15,19 @@ export declare const pointOptionSchema: z.ZodObject<{
|
|
|
15
15
|
}, {
|
|
16
16
|
value: string | number | boolean | null;
|
|
17
17
|
text: string;
|
|
18
|
-
id?: string |
|
|
19
|
-
intro?: string |
|
|
20
|
-
outro?: string |
|
|
18
|
+
id?: string | undefined;
|
|
19
|
+
intro?: string | undefined;
|
|
20
|
+
outro?: string | undefined;
|
|
21
21
|
}>;
|
|
22
22
|
export declare const selectSingleTypeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
23
23
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
24
24
|
}, {
|
|
25
25
|
type: z.ZodLiteral<"select-single">;
|
|
26
26
|
options: z.ZodArray<z.ZodObject<{
|
|
27
|
-
id: z.
|
|
27
|
+
id: z.ZodOptional<z.ZodString>;
|
|
28
28
|
text: z.ZodString;
|
|
29
|
-
intro: z.
|
|
30
|
-
outro: z.
|
|
29
|
+
intro: z.ZodOptional<z.ZodString>;
|
|
30
|
+
outro: z.ZodOptional<z.ZodString>;
|
|
31
31
|
value: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>;
|
|
32
32
|
}, "strip", z.ZodTypeAny, {
|
|
33
33
|
value: string | number | boolean | null;
|
|
@@ -38,9 +38,9 @@ export declare const selectSingleTypeSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
38
38
|
}, {
|
|
39
39
|
value: string | number | boolean | null;
|
|
40
40
|
text: string;
|
|
41
|
-
id?: string |
|
|
42
|
-
intro?: string |
|
|
43
|
-
outro?: string |
|
|
41
|
+
id?: string | undefined;
|
|
42
|
+
intro?: string | undefined;
|
|
43
|
+
outro?: string | undefined;
|
|
44
44
|
}>, "many">;
|
|
45
45
|
}>, "strip", z.ZodTypeAny, {
|
|
46
46
|
type: "select-single";
|
|
@@ -56,9 +56,9 @@ export declare const selectSingleTypeSchema: z.ZodObject<z.objectUtil.extendShap
|
|
|
56
56
|
options: {
|
|
57
57
|
value: string | number | boolean | null;
|
|
58
58
|
text: string;
|
|
59
|
-
id?: string |
|
|
60
|
-
intro?: string |
|
|
61
|
-
outro?: string |
|
|
59
|
+
id?: string | undefined;
|
|
60
|
+
intro?: string | undefined;
|
|
61
|
+
outro?: string | undefined;
|
|
62
62
|
}[];
|
|
63
63
|
}>;
|
|
64
64
|
export declare const selectMultipleTypeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -66,10 +66,10 @@ export declare const selectMultipleTypeSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
66
66
|
}, {
|
|
67
67
|
type: z.ZodLiteral<"select-multiple">;
|
|
68
68
|
options: z.ZodArray<z.ZodObject<{
|
|
69
|
-
id: z.
|
|
69
|
+
id: z.ZodOptional<z.ZodString>;
|
|
70
70
|
text: z.ZodString;
|
|
71
|
-
intro: z.
|
|
72
|
-
outro: z.
|
|
71
|
+
intro: z.ZodOptional<z.ZodString>;
|
|
72
|
+
outro: z.ZodOptional<z.ZodString>;
|
|
73
73
|
value: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>;
|
|
74
74
|
}, "strip", z.ZodTypeAny, {
|
|
75
75
|
value: string | number | boolean | null;
|
|
@@ -80,9 +80,9 @@ export declare const selectMultipleTypeSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
80
80
|
}, {
|
|
81
81
|
value: string | number | boolean | null;
|
|
82
82
|
text: string;
|
|
83
|
-
id?: string |
|
|
84
|
-
intro?: string |
|
|
85
|
-
outro?: string |
|
|
83
|
+
id?: string | undefined;
|
|
84
|
+
intro?: string | undefined;
|
|
85
|
+
outro?: string | undefined;
|
|
86
86
|
}>, "many">;
|
|
87
87
|
}>, "strip", z.ZodTypeAny, {
|
|
88
88
|
type: "select-multiple";
|
|
@@ -98,18 +98,18 @@ export declare const selectMultipleTypeSchema: z.ZodObject<z.objectUtil.extendSh
|
|
|
98
98
|
options: {
|
|
99
99
|
value: string | number | boolean | null;
|
|
100
100
|
text: string;
|
|
101
|
-
id?: string |
|
|
102
|
-
intro?: string |
|
|
103
|
-
outro?: string |
|
|
101
|
+
id?: string | undefined;
|
|
102
|
+
intro?: string | undefined;
|
|
103
|
+
outro?: string | undefined;
|
|
104
104
|
}[];
|
|
105
105
|
}>;
|
|
106
106
|
export declare const numberTypeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
107
107
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
108
108
|
}, {
|
|
109
109
|
type: z.ZodLiteral<"number">;
|
|
110
|
-
minimum: z.
|
|
111
|
-
maximum: z.
|
|
112
|
-
step: z.
|
|
110
|
+
minimum: z.ZodOptional<z.ZodNumber>;
|
|
111
|
+
maximum: z.ZodOptional<z.ZodNumber>;
|
|
112
|
+
step: z.ZodOptional<z.ZodNumber>;
|
|
113
113
|
}>, "strip", z.ZodTypeAny, {
|
|
114
114
|
type: "number";
|
|
115
115
|
minimum?: number | undefined;
|
|
@@ -117,9 +117,9 @@ export declare const numberTypeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
117
117
|
step?: number | undefined;
|
|
118
118
|
}, {
|
|
119
119
|
type: "number";
|
|
120
|
-
minimum?: number |
|
|
121
|
-
maximum?: number |
|
|
122
|
-
step?: number |
|
|
120
|
+
minimum?: number | undefined;
|
|
121
|
+
maximum?: number | undefined;
|
|
122
|
+
step?: number | undefined;
|
|
123
123
|
}>;
|
|
124
124
|
export declare const booleanTypeSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
125
125
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
@@ -153,10 +153,10 @@ export declare const taskItemDefinitionSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
153
153
|
}, {
|
|
154
154
|
type: z.ZodLiteral<"select-single">;
|
|
155
155
|
options: z.ZodArray<z.ZodObject<{
|
|
156
|
-
id: z.
|
|
156
|
+
id: z.ZodOptional<z.ZodString>;
|
|
157
157
|
text: z.ZodString;
|
|
158
|
-
intro: z.
|
|
159
|
-
outro: z.
|
|
158
|
+
intro: z.ZodOptional<z.ZodString>;
|
|
159
|
+
outro: z.ZodOptional<z.ZodString>;
|
|
160
160
|
value: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>;
|
|
161
161
|
}, "strip", z.ZodTypeAny, {
|
|
162
162
|
value: string | number | boolean | null;
|
|
@@ -167,9 +167,9 @@ export declare const taskItemDefinitionSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
167
167
|
}, {
|
|
168
168
|
value: string | number | boolean | null;
|
|
169
169
|
text: string;
|
|
170
|
-
id?: string |
|
|
171
|
-
intro?: string |
|
|
172
|
-
outro?: string |
|
|
170
|
+
id?: string | undefined;
|
|
171
|
+
intro?: string | undefined;
|
|
172
|
+
outro?: string | undefined;
|
|
173
173
|
}>, "many">;
|
|
174
174
|
}>, "strip", z.ZodTypeAny, {
|
|
175
175
|
type: "select-single";
|
|
@@ -185,19 +185,19 @@ export declare const taskItemDefinitionSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
185
185
|
options: {
|
|
186
186
|
value: string | number | boolean | null;
|
|
187
187
|
text: string;
|
|
188
|
-
id?: string |
|
|
189
|
-
intro?: string |
|
|
190
|
-
outro?: string |
|
|
188
|
+
id?: string | undefined;
|
|
189
|
+
intro?: string | undefined;
|
|
190
|
+
outro?: string | undefined;
|
|
191
191
|
}[];
|
|
192
192
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
193
193
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
194
194
|
}, {
|
|
195
195
|
type: z.ZodLiteral<"select-multiple">;
|
|
196
196
|
options: z.ZodArray<z.ZodObject<{
|
|
197
|
-
id: z.
|
|
197
|
+
id: z.ZodOptional<z.ZodString>;
|
|
198
198
|
text: z.ZodString;
|
|
199
|
-
intro: z.
|
|
200
|
-
outro: z.
|
|
199
|
+
intro: z.ZodOptional<z.ZodString>;
|
|
200
|
+
outro: z.ZodOptional<z.ZodString>;
|
|
201
201
|
value: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>;
|
|
202
202
|
}, "strip", z.ZodTypeAny, {
|
|
203
203
|
value: string | number | boolean | null;
|
|
@@ -208,9 +208,9 @@ export declare const taskItemDefinitionSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
208
208
|
}, {
|
|
209
209
|
value: string | number | boolean | null;
|
|
210
210
|
text: string;
|
|
211
|
-
id?: string |
|
|
212
|
-
intro?: string |
|
|
213
|
-
outro?: string |
|
|
211
|
+
id?: string | undefined;
|
|
212
|
+
intro?: string | undefined;
|
|
213
|
+
outro?: string | undefined;
|
|
214
214
|
}>, "many">;
|
|
215
215
|
}>, "strip", z.ZodTypeAny, {
|
|
216
216
|
type: "select-multiple";
|
|
@@ -226,17 +226,17 @@ export declare const taskItemDefinitionSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
226
226
|
options: {
|
|
227
227
|
value: string | number | boolean | null;
|
|
228
228
|
text: string;
|
|
229
|
-
id?: string |
|
|
230
|
-
intro?: string |
|
|
231
|
-
outro?: string |
|
|
229
|
+
id?: string | undefined;
|
|
230
|
+
intro?: string | undefined;
|
|
231
|
+
outro?: string | undefined;
|
|
232
232
|
}[];
|
|
233
233
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
234
234
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
235
235
|
}, {
|
|
236
236
|
type: z.ZodLiteral<"number">;
|
|
237
|
-
minimum: z.
|
|
238
|
-
maximum: z.
|
|
239
|
-
step: z.
|
|
237
|
+
minimum: z.ZodOptional<z.ZodNumber>;
|
|
238
|
+
maximum: z.ZodOptional<z.ZodNumber>;
|
|
239
|
+
step: z.ZodOptional<z.ZodNumber>;
|
|
240
240
|
}>, "strip", z.ZodTypeAny, {
|
|
241
241
|
type: "number";
|
|
242
242
|
minimum?: number | undefined;
|
|
@@ -244,9 +244,9 @@ export declare const taskItemDefinitionSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
244
244
|
step?: number | undefined;
|
|
245
245
|
}, {
|
|
246
246
|
type: "number";
|
|
247
|
-
minimum?: number |
|
|
248
|
-
maximum?: number |
|
|
249
|
-
step?: number |
|
|
247
|
+
minimum?: number | undefined;
|
|
248
|
+
maximum?: number | undefined;
|
|
249
|
+
step?: number | undefined;
|
|
250
250
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
251
251
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
252
252
|
}, {
|
|
@@ -275,18 +275,18 @@ export declare const taskItemDefinitionSchema: z.ZodDiscriminatedUnion<"type", [
|
|
|
275
275
|
} | undefined;
|
|
276
276
|
}>]>;
|
|
277
277
|
export declare const taskItemDataSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
278
|
-
type: z.
|
|
279
|
-
value: z.
|
|
280
|
-
text: z.
|
|
281
|
-
maximumValue: z.
|
|
282
|
-
minimumValue: z.
|
|
283
|
-
exclusiveMaximum: z.
|
|
284
|
-
exclusiveMinimum: z.
|
|
285
|
-
step: z.
|
|
286
|
-
total: z.
|
|
287
|
-
readOnly: z.
|
|
278
|
+
type: z.ZodOptional<z.ZodEnum<["percentage", "number"]>>;
|
|
279
|
+
value: 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">]>>;
|
|
280
|
+
text: z.ZodOptional<z.ZodString>;
|
|
281
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
282
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
283
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
284
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
285
|
+
step: z.ZodOptional<z.ZodNumber>;
|
|
286
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
287
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
288
288
|
}, {
|
|
289
|
-
valueReference: z.
|
|
289
|
+
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">]>>;
|
|
290
290
|
}>, "strip", z.ZodTypeAny, {
|
|
291
291
|
type?: "number" | "percentage" | undefined;
|
|
292
292
|
total?: number | undefined;
|
|
@@ -300,138 +300,91 @@ export declare const taskItemDataSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
300
300
|
readOnly?: boolean | undefined;
|
|
301
301
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
302
302
|
}, {
|
|
303
|
-
type?: "number" | "percentage" |
|
|
304
|
-
total?: number |
|
|
303
|
+
type?: "number" | "percentage" | undefined;
|
|
304
|
+
total?: number | undefined;
|
|
305
305
|
value?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
306
|
-
text?: string |
|
|
307
|
-
maximumValue?: number |
|
|
308
|
-
minimumValue?: number |
|
|
309
|
-
exclusiveMaximum?: number |
|
|
310
|
-
exclusiveMinimum?: number |
|
|
311
|
-
step?: number |
|
|
312
|
-
readOnly?: boolean |
|
|
306
|
+
text?: string | undefined;
|
|
307
|
+
maximumValue?: number | undefined;
|
|
308
|
+
minimumValue?: number | undefined;
|
|
309
|
+
exclusiveMaximum?: number | undefined;
|
|
310
|
+
exclusiveMinimum?: number | undefined;
|
|
311
|
+
step?: number | undefined;
|
|
312
|
+
readOnly?: boolean | undefined;
|
|
313
313
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
314
314
|
}>;
|
|
315
315
|
export declare const taskItemOptionsSchema: z.ZodObject<{
|
|
316
|
-
hideCode: z.
|
|
316
|
+
hideCode: z.ZodOptional<z.ZodBoolean>;
|
|
317
317
|
}, "strip", z.ZodTypeAny, {
|
|
318
318
|
hideCode?: boolean | undefined;
|
|
319
319
|
}, {
|
|
320
|
-
hideCode?: boolean |
|
|
320
|
+
hideCode?: boolean | undefined;
|
|
321
321
|
}>;
|
|
322
322
|
export declare const taskItemSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
323
323
|
type: z.ZodEnum<["theme", "criterion", "task-group", "task", "task-item"]>;
|
|
324
324
|
title: z.ZodString;
|
|
325
325
|
code: z.ZodString;
|
|
326
|
-
tags: z.
|
|
327
|
-
documentation: z.
|
|
328
|
-
type: "pdf"
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
text: string;
|
|
336
|
-
} | {
|
|
337
|
-
type: "link";
|
|
338
|
-
url: string;
|
|
339
|
-
label: string;
|
|
340
|
-
text: string;
|
|
341
|
-
})[], z.ZodTypeDef, ({
|
|
342
|
-
type: "pdf";
|
|
343
|
-
url: string;
|
|
344
|
-
label: string;
|
|
345
|
-
text: string;
|
|
346
|
-
} | {
|
|
347
|
-
type: "text";
|
|
348
|
-
label: string;
|
|
349
|
-
text: string;
|
|
350
|
-
} | {
|
|
351
|
-
type: "link";
|
|
352
|
-
url: string;
|
|
353
|
-
label: string;
|
|
354
|
-
text: string;
|
|
355
|
-
})[]>>>, ({
|
|
326
|
+
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
327
|
+
documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
328
|
+
type: z.ZodEnum<["pdf", "text", "link"]>;
|
|
329
|
+
label: z.ZodString;
|
|
330
|
+
text: z.ZodString;
|
|
331
|
+
}, {
|
|
332
|
+
type: z.ZodLiteral<"pdf">;
|
|
333
|
+
url: z.ZodString;
|
|
334
|
+
}>, "strip", z.ZodTypeAny, {
|
|
356
335
|
type: "pdf";
|
|
357
336
|
url: string;
|
|
358
337
|
label: string;
|
|
359
338
|
text: string;
|
|
360
|
-
}
|
|
361
|
-
type: "text";
|
|
362
|
-
label: string;
|
|
363
|
-
text: string;
|
|
364
|
-
} | {
|
|
365
|
-
type: "link";
|
|
366
|
-
url: string;
|
|
367
|
-
label: string;
|
|
368
|
-
text: string;
|
|
369
|
-
})[] | undefined, ({
|
|
339
|
+
}, {
|
|
370
340
|
type: "pdf";
|
|
371
341
|
url: string;
|
|
372
342
|
label: string;
|
|
373
343
|
text: string;
|
|
374
|
-
}
|
|
344
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
345
|
+
type: z.ZodEnum<["pdf", "text", "link"]>;
|
|
346
|
+
label: z.ZodString;
|
|
347
|
+
text: z.ZodString;
|
|
348
|
+
}, {
|
|
349
|
+
type: z.ZodLiteral<"text">;
|
|
350
|
+
}>, "strip", z.ZodTypeAny, {
|
|
375
351
|
type: "text";
|
|
376
352
|
label: string;
|
|
377
353
|
text: string;
|
|
378
|
-
}
|
|
379
|
-
type: "link";
|
|
380
|
-
url: string;
|
|
381
|
-
label: string;
|
|
382
|
-
text: string;
|
|
383
|
-
})[] | null | undefined>, z.ZodOptional<z.ZodType<({
|
|
384
|
-
type: "pdf";
|
|
385
|
-
url: string;
|
|
386
|
-
label: string;
|
|
387
|
-
text: string;
|
|
388
|
-
} | {
|
|
354
|
+
}, {
|
|
389
355
|
type: "text";
|
|
390
356
|
label: string;
|
|
391
357
|
text: string;
|
|
392
|
-
}
|
|
358
|
+
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
359
|
+
type: z.ZodEnum<["pdf", "text", "link"]>;
|
|
360
|
+
label: z.ZodString;
|
|
361
|
+
text: z.ZodString;
|
|
362
|
+
}, {
|
|
363
|
+
type: z.ZodLiteral<"link">;
|
|
364
|
+
url: z.ZodString;
|
|
365
|
+
}>, "strip", z.ZodTypeAny, {
|
|
393
366
|
type: "link";
|
|
394
367
|
url: string;
|
|
395
368
|
label: string;
|
|
396
369
|
text: string;
|
|
397
|
-
}
|
|
398
|
-
type: "pdf";
|
|
399
|
-
url: string;
|
|
400
|
-
label: string;
|
|
401
|
-
text: string;
|
|
402
|
-
} | {
|
|
403
|
-
type: "text";
|
|
404
|
-
label: string;
|
|
405
|
-
text: string;
|
|
406
|
-
} | {
|
|
370
|
+
}, {
|
|
407
371
|
type: "link";
|
|
408
372
|
url: string;
|
|
409
373
|
label: string;
|
|
410
374
|
text: string;
|
|
411
|
-
}
|
|
412
|
-
data: z.
|
|
413
|
-
type
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
readOnly
|
|
423
|
-
}, z.
|
|
424
|
-
type?: "number" | "percentage" | null | undefined;
|
|
425
|
-
total?: number | null | undefined;
|
|
426
|
-
value?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
427
|
-
text?: string | null | undefined;
|
|
428
|
-
maximumValue?: number | null | undefined;
|
|
429
|
-
minimumValue?: number | null | undefined;
|
|
430
|
-
exclusiveMaximum?: number | null | undefined;
|
|
431
|
-
exclusiveMinimum?: number | null | undefined;
|
|
432
|
-
step?: number | null | undefined;
|
|
433
|
-
readOnly?: boolean | null | undefined;
|
|
434
|
-
}>>>, {
|
|
375
|
+
}>]>, "many">>;
|
|
376
|
+
data: z.ZodOptional<z.ZodObject<{
|
|
377
|
+
type: z.ZodOptional<z.ZodEnum<["percentage", "number"]>>;
|
|
378
|
+
value: 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">]>>;
|
|
379
|
+
text: z.ZodOptional<z.ZodString>;
|
|
380
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
381
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
382
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
383
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
384
|
+
step: z.ZodOptional<z.ZodNumber>;
|
|
385
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
386
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
387
|
+
}, "strip", z.ZodTypeAny, {
|
|
435
388
|
type?: "number" | "percentage" | undefined;
|
|
436
389
|
total?: number | undefined;
|
|
437
390
|
value?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -442,18 +395,7 @@ export declare const taskItemSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
442
395
|
exclusiveMinimum?: number | undefined;
|
|
443
396
|
step?: number | undefined;
|
|
444
397
|
readOnly?: boolean | undefined;
|
|
445
|
-
}
|
|
446
|
-
type?: "number" | "percentage" | null | undefined;
|
|
447
|
-
total?: number | null | undefined;
|
|
448
|
-
value?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
449
|
-
text?: string | null | undefined;
|
|
450
|
-
maximumValue?: number | null | undefined;
|
|
451
|
-
minimumValue?: number | null | undefined;
|
|
452
|
-
exclusiveMaximum?: number | null | undefined;
|
|
453
|
-
exclusiveMinimum?: number | null | undefined;
|
|
454
|
-
step?: number | null | undefined;
|
|
455
|
-
readOnly?: boolean | null | undefined;
|
|
456
|
-
} | null | undefined>, z.ZodOptional<z.ZodType<{
|
|
398
|
+
}, {
|
|
457
399
|
type?: "number" | "percentage" | undefined;
|
|
458
400
|
total?: number | undefined;
|
|
459
401
|
value?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -464,46 +406,24 @@ export declare const taskItemSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
464
406
|
exclusiveMinimum?: number | undefined;
|
|
465
407
|
step?: number | undefined;
|
|
466
408
|
readOnly?: boolean | undefined;
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
total?: number | null | undefined;
|
|
470
|
-
value?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
471
|
-
text?: string | null | undefined;
|
|
472
|
-
maximumValue?: number | null | undefined;
|
|
473
|
-
minimumValue?: number | null | undefined;
|
|
474
|
-
exclusiveMaximum?: number | null | undefined;
|
|
475
|
-
exclusiveMinimum?: number | null | undefined;
|
|
476
|
-
step?: number | null | undefined;
|
|
477
|
-
readOnly?: boolean | null | undefined;
|
|
478
|
-
}>>>;
|
|
479
|
-
sortOrder: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<number, z.ZodTypeDef, number>>>, number | undefined, number | null | undefined>, z.ZodOptional<z.ZodType<number, z.ZodTypeDef, number>>>;
|
|
409
|
+
}>>;
|
|
410
|
+
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
480
411
|
}, {
|
|
481
412
|
type: z.ZodLiteral<"task-item">;
|
|
482
|
-
data: z.
|
|
483
|
-
type
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
readOnly
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
total?: number | null | undefined;
|
|
497
|
-
value?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
498
|
-
text?: string | null | undefined;
|
|
499
|
-
maximumValue?: number | null | undefined;
|
|
500
|
-
minimumValue?: number | null | undefined;
|
|
501
|
-
exclusiveMaximum?: number | null | undefined;
|
|
502
|
-
exclusiveMinimum?: number | null | undefined;
|
|
503
|
-
step?: number | null | undefined;
|
|
504
|
-
readOnly?: boolean | null | undefined;
|
|
505
|
-
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
506
|
-
}>>>, {
|
|
413
|
+
data: z.ZodOptional<z.ZodObject<z.objectUtil.extendShape<{
|
|
414
|
+
type: z.ZodOptional<z.ZodEnum<["percentage", "number"]>>;
|
|
415
|
+
value: 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">]>>;
|
|
416
|
+
text: z.ZodOptional<z.ZodString>;
|
|
417
|
+
maximumValue: z.ZodOptional<z.ZodNumber>;
|
|
418
|
+
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
419
|
+
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
420
|
+
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
421
|
+
step: z.ZodOptional<z.ZodNumber>;
|
|
422
|
+
total: z.ZodOptional<z.ZodNumber>;
|
|
423
|
+
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
424
|
+
}, {
|
|
425
|
+
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">]>>;
|
|
426
|
+
}>, "strip", z.ZodTypeAny, {
|
|
507
427
|
type?: "number" | "percentage" | undefined;
|
|
508
428
|
total?: number | undefined;
|
|
509
429
|
value?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -515,19 +435,7 @@ export declare const taskItemSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
515
435
|
step?: number | undefined;
|
|
516
436
|
readOnly?: boolean | undefined;
|
|
517
437
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
518
|
-
}
|
|
519
|
-
type?: "number" | "percentage" | null | undefined;
|
|
520
|
-
total?: number | null | undefined;
|
|
521
|
-
value?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
522
|
-
text?: string | null | undefined;
|
|
523
|
-
maximumValue?: number | null | undefined;
|
|
524
|
-
minimumValue?: number | null | undefined;
|
|
525
|
-
exclusiveMaximum?: number | null | undefined;
|
|
526
|
-
exclusiveMinimum?: number | null | undefined;
|
|
527
|
-
step?: number | null | undefined;
|
|
528
|
-
readOnly?: boolean | null | undefined;
|
|
529
|
-
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
530
|
-
} | null | undefined>, z.ZodOptional<z.ZodType<{
|
|
438
|
+
}, {
|
|
531
439
|
type?: "number" | "percentage" | undefined;
|
|
532
440
|
total?: number | undefined;
|
|
533
441
|
value?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
@@ -539,28 +447,16 @@ export declare const taskItemSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
539
447
|
step?: number | undefined;
|
|
540
448
|
readOnly?: boolean | undefined;
|
|
541
449
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
542
|
-
}
|
|
543
|
-
type?: "number" | "percentage" | null | undefined;
|
|
544
|
-
total?: number | null | undefined;
|
|
545
|
-
value?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
546
|
-
text?: string | null | undefined;
|
|
547
|
-
maximumValue?: number | null | undefined;
|
|
548
|
-
minimumValue?: number | null | undefined;
|
|
549
|
-
exclusiveMaximum?: number | null | undefined;
|
|
550
|
-
exclusiveMinimum?: number | null | undefined;
|
|
551
|
-
step?: number | null | undefined;
|
|
552
|
-
readOnly?: boolean | null | undefined;
|
|
553
|
-
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
554
|
-
}>>>;
|
|
450
|
+
}>>;
|
|
555
451
|
definition: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z.objectUtil.extendShape<{
|
|
556
452
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
557
453
|
}, {
|
|
558
454
|
type: z.ZodLiteral<"select-single">;
|
|
559
455
|
options: z.ZodArray<z.ZodObject<{
|
|
560
|
-
id: z.
|
|
456
|
+
id: z.ZodOptional<z.ZodString>;
|
|
561
457
|
text: z.ZodString;
|
|
562
|
-
intro: z.
|
|
563
|
-
outro: z.
|
|
458
|
+
intro: z.ZodOptional<z.ZodString>;
|
|
459
|
+
outro: z.ZodOptional<z.ZodString>;
|
|
564
460
|
value: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>;
|
|
565
461
|
}, "strip", z.ZodTypeAny, {
|
|
566
462
|
value: string | number | boolean | null;
|
|
@@ -571,9 +467,9 @@ export declare const taskItemSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
571
467
|
}, {
|
|
572
468
|
value: string | number | boolean | null;
|
|
573
469
|
text: string;
|
|
574
|
-
id?: string |
|
|
575
|
-
intro?: string |
|
|
576
|
-
outro?: string |
|
|
470
|
+
id?: string | undefined;
|
|
471
|
+
intro?: string | undefined;
|
|
472
|
+
outro?: string | undefined;
|
|
577
473
|
}>, "many">;
|
|
578
474
|
}>, "strip", z.ZodTypeAny, {
|
|
579
475
|
type: "select-single";
|
|
@@ -589,19 +485,19 @@ export declare const taskItemSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
589
485
|
options: {
|
|
590
486
|
value: string | number | boolean | null;
|
|
591
487
|
text: string;
|
|
592
|
-
id?: string |
|
|
593
|
-
intro?: string |
|
|
594
|
-
outro?: string |
|
|
488
|
+
id?: string | undefined;
|
|
489
|
+
intro?: string | undefined;
|
|
490
|
+
outro?: string | undefined;
|
|
595
491
|
}[];
|
|
596
492
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
597
493
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
598
494
|
}, {
|
|
599
495
|
type: z.ZodLiteral<"select-multiple">;
|
|
600
496
|
options: z.ZodArray<z.ZodObject<{
|
|
601
|
-
id: z.
|
|
497
|
+
id: z.ZodOptional<z.ZodString>;
|
|
602
498
|
text: z.ZodString;
|
|
603
|
-
intro: z.
|
|
604
|
-
outro: z.
|
|
499
|
+
intro: z.ZodOptional<z.ZodString>;
|
|
500
|
+
outro: z.ZodOptional<z.ZodString>;
|
|
605
501
|
value: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>;
|
|
606
502
|
}, "strip", z.ZodTypeAny, {
|
|
607
503
|
value: string | number | boolean | null;
|
|
@@ -612,9 +508,9 @@ export declare const taskItemSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
612
508
|
}, {
|
|
613
509
|
value: string | number | boolean | null;
|
|
614
510
|
text: string;
|
|
615
|
-
id?: string |
|
|
616
|
-
intro?: string |
|
|
617
|
-
outro?: string |
|
|
511
|
+
id?: string | undefined;
|
|
512
|
+
intro?: string | undefined;
|
|
513
|
+
outro?: string | undefined;
|
|
618
514
|
}>, "many">;
|
|
619
515
|
}>, "strip", z.ZodTypeAny, {
|
|
620
516
|
type: "select-multiple";
|
|
@@ -630,17 +526,17 @@ export declare const taskItemSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
630
526
|
options: {
|
|
631
527
|
value: string | number | boolean | null;
|
|
632
528
|
text: string;
|
|
633
|
-
id?: string |
|
|
634
|
-
intro?: string |
|
|
635
|
-
outro?: string |
|
|
529
|
+
id?: string | undefined;
|
|
530
|
+
intro?: string | undefined;
|
|
531
|
+
outro?: string | undefined;
|
|
636
532
|
}[];
|
|
637
533
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
638
534
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
639
535
|
}, {
|
|
640
536
|
type: z.ZodLiteral<"number">;
|
|
641
|
-
minimum: z.
|
|
642
|
-
maximum: z.
|
|
643
|
-
step: z.
|
|
537
|
+
minimum: z.ZodOptional<z.ZodNumber>;
|
|
538
|
+
maximum: z.ZodOptional<z.ZodNumber>;
|
|
539
|
+
step: z.ZodOptional<z.ZodNumber>;
|
|
644
540
|
}>, "strip", z.ZodTypeAny, {
|
|
645
541
|
type: "number";
|
|
646
542
|
minimum?: number | undefined;
|
|
@@ -648,9 +544,9 @@ export declare const taskItemSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
648
544
|
step?: number | undefined;
|
|
649
545
|
}, {
|
|
650
546
|
type: "number";
|
|
651
|
-
minimum?: number |
|
|
652
|
-
maximum?: number |
|
|
653
|
-
step?: number |
|
|
547
|
+
minimum?: number | undefined;
|
|
548
|
+
maximum?: number | undefined;
|
|
549
|
+
step?: number | undefined;
|
|
654
550
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
655
551
|
type: z.ZodEnum<["select-single", "select-multiple", "number", "boolean"]>;
|
|
656
552
|
}, {
|
|
@@ -678,22 +574,16 @@ export declare const taskItemSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
678
574
|
true: string;
|
|
679
575
|
} | undefined;
|
|
680
576
|
}>]>;
|
|
681
|
-
description: z.
|
|
682
|
-
providedData: z.
|
|
683
|
-
valueReference: z.
|
|
684
|
-
options: z.
|
|
685
|
-
hideCode
|
|
686
|
-
}, z.
|
|
687
|
-
hideCode?: boolean | null | undefined;
|
|
688
|
-
}>>>, {
|
|
577
|
+
description: z.ZodOptional<z.ZodString>;
|
|
578
|
+
providedData: z.ZodOptional<z.ZodRecord<z.ZodString, 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">]>>>;
|
|
579
|
+
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">]>>;
|
|
580
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
581
|
+
hideCode: z.ZodOptional<z.ZodBoolean>;
|
|
582
|
+
}, "strip", z.ZodTypeAny, {
|
|
689
583
|
hideCode?: boolean | undefined;
|
|
690
|
-
}
|
|
691
|
-
hideCode?: boolean | null | undefined;
|
|
692
|
-
} | null | undefined>, z.ZodOptional<z.ZodType<{
|
|
584
|
+
}, {
|
|
693
585
|
hideCode?: boolean | undefined;
|
|
694
|
-
}
|
|
695
|
-
hideCode?: boolean | null | undefined;
|
|
696
|
-
}>>>;
|
|
586
|
+
}>>;
|
|
697
587
|
}>, "title">, "strip", z.ZodTypeAny, {
|
|
698
588
|
type: "task-item";
|
|
699
589
|
code: string;
|
|
@@ -771,24 +661,24 @@ export declare const taskItemSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
771
661
|
options: {
|
|
772
662
|
value: string | number | boolean | null;
|
|
773
663
|
text: string;
|
|
774
|
-
id?: string |
|
|
775
|
-
intro?: string |
|
|
776
|
-
outro?: string |
|
|
664
|
+
id?: string | undefined;
|
|
665
|
+
intro?: string | undefined;
|
|
666
|
+
outro?: string | undefined;
|
|
777
667
|
}[];
|
|
778
668
|
} | {
|
|
779
669
|
type: "select-multiple";
|
|
780
670
|
options: {
|
|
781
671
|
value: string | number | boolean | null;
|
|
782
672
|
text: string;
|
|
783
|
-
id?: string |
|
|
784
|
-
intro?: string |
|
|
785
|
-
outro?: string |
|
|
673
|
+
id?: string | undefined;
|
|
674
|
+
intro?: string | undefined;
|
|
675
|
+
outro?: string | undefined;
|
|
786
676
|
}[];
|
|
787
677
|
} | {
|
|
788
678
|
type: "number";
|
|
789
|
-
minimum?: number |
|
|
790
|
-
maximum?: number |
|
|
791
|
-
step?: number |
|
|
679
|
+
minimum?: number | undefined;
|
|
680
|
+
maximum?: number | undefined;
|
|
681
|
+
step?: number | undefined;
|
|
792
682
|
} | {
|
|
793
683
|
type: "boolean";
|
|
794
684
|
labels?: {
|
|
@@ -797,23 +687,23 @@ export declare const taskItemSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
797
687
|
} | undefined;
|
|
798
688
|
};
|
|
799
689
|
data?: {
|
|
800
|
-
type?: "number" | "percentage" |
|
|
801
|
-
total?: number |
|
|
690
|
+
type?: "number" | "percentage" | undefined;
|
|
691
|
+
total?: number | undefined;
|
|
802
692
|
value?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
803
|
-
text?: string |
|
|
804
|
-
maximumValue?: number |
|
|
805
|
-
minimumValue?: number |
|
|
806
|
-
exclusiveMaximum?: number |
|
|
807
|
-
exclusiveMinimum?: number |
|
|
808
|
-
step?: number |
|
|
809
|
-
readOnly?: boolean |
|
|
693
|
+
text?: string | undefined;
|
|
694
|
+
maximumValue?: number | undefined;
|
|
695
|
+
minimumValue?: number | undefined;
|
|
696
|
+
exclusiveMaximum?: number | undefined;
|
|
697
|
+
exclusiveMinimum?: number | undefined;
|
|
698
|
+
step?: number | undefined;
|
|
699
|
+
readOnly?: boolean | undefined;
|
|
810
700
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
811
|
-
} |
|
|
701
|
+
} | undefined;
|
|
812
702
|
options?: {
|
|
813
|
-
hideCode?: boolean |
|
|
814
|
-
} |
|
|
815
|
-
description?: string |
|
|
816
|
-
tags?: string[] |
|
|
703
|
+
hideCode?: boolean | undefined;
|
|
704
|
+
} | undefined;
|
|
705
|
+
description?: string | undefined;
|
|
706
|
+
tags?: string[] | undefined;
|
|
817
707
|
documentation?: ({
|
|
818
708
|
type: "pdf";
|
|
819
709
|
url: string;
|
|
@@ -828,8 +718,8 @@ export declare const taskItemSchema: z.ZodObject<Omit<z.objectUtil.extendShape<{
|
|
|
828
718
|
url: string;
|
|
829
719
|
label: string;
|
|
830
720
|
text: string;
|
|
831
|
-
})[] |
|
|
832
|
-
sortOrder?: number |
|
|
721
|
+
})[] | undefined;
|
|
722
|
+
sortOrder?: number | undefined;
|
|
833
723
|
valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
|
|
834
|
-
providedData?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> |
|
|
724
|
+
providedData?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
|
|
835
725
|
}>;
|