@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.
Files changed (32) hide show
  1. package/dist/v1/schemas/certification.d.ts +80 -80
  2. package/dist/v1/schemas/certification.js +6 -7
  3. package/dist/v1/schemas/common.d.ts +75 -144
  4. package/dist/v1/schemas/common.js +14 -15
  5. package/dist/v1/schemas/criteria-tree.d.ts +2461 -4280
  6. package/dist/v1/schemas/criteria-tree.js +1 -2
  7. package/dist/v1/schemas/criterion.d.ts +450 -791
  8. package/dist/v1/schemas/criterion.js +3 -4
  9. package/dist/v1/schemas/data-map.d.ts +2 -2
  10. package/dist/v1/schemas/data-map.js +1 -2
  11. package/dist/v1/schemas/metadata.d.ts +19 -28
  12. package/dist/v1/schemas/metadata.js +6 -7
  13. package/dist/v1/schemas/request/matrix-body-schema.d.ts +7 -7
  14. package/dist/v1/schemas/request/matrix-body-schema.js +4 -5
  15. package/dist/v1/schemas/request/matrix-request-body-schema.d.ts +7 -7
  16. package/dist/v1/schemas/request/matrix-request-body-schema.js +4 -5
  17. package/dist/v1/schemas/request/tree-and-data-body-schema.d.ts +6 -6
  18. package/dist/v1/schemas/request/tree-and-data-body-schema.js +3 -4
  19. package/dist/v1/schemas/request/tree-and-data-request-body-schema.d.ts +6 -6
  20. package/dist/v1/schemas/request/tree-and-data-request-body-schema.js +3 -4
  21. package/dist/v1/schemas/response.d.ts +15 -24
  22. package/dist/v1/schemas/task-group.d.ts +321 -584
  23. package/dist/v1/schemas/task-group.js +4 -5
  24. package/dist/v1/schemas/task-item.d.ts +193 -303
  25. package/dist/v1/schemas/task-item.js +13 -14
  26. package/dist/v1/schemas/task.d.ts +210 -395
  27. package/dist/v1/schemas/task.js +3 -4
  28. package/dist/v1/schemas/theme.d.ts +600 -1033
  29. package/dist/v1/schemas/theme.js +3 -4
  30. package/dist/v1/schemas/utils.d.ts +1 -1
  31. package/dist/v1/schemas/utils.js +6 -4
  32. 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.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>, z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>>;
4
+ id: z.ZodOptional<z.ZodString>;
5
5
  text: z.ZodString;
6
- intro: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>, z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>>;
7
- outro: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>, z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>>;
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 | null | undefined;
19
- intro?: string | null | undefined;
20
- outro?: string | null | undefined;
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.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>, z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>>;
27
+ id: z.ZodOptional<z.ZodString>;
28
28
  text: z.ZodString;
29
- intro: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>, z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>>;
30
- outro: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>, z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>>;
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 | null | undefined;
42
- intro?: string | null | undefined;
43
- outro?: string | null | undefined;
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 | null | undefined;
60
- intro?: string | null | undefined;
61
- outro?: string | null | undefined;
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.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>, z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>>;
69
+ id: z.ZodOptional<z.ZodString>;
70
70
  text: z.ZodString;
71
- intro: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>, z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>>;
72
- outro: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>, z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>>;
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 | null | undefined;
84
- intro?: string | null | undefined;
85
- outro?: string | null | undefined;
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 | null | undefined;
102
- intro?: string | null | undefined;
103
- outro?: string | null | undefined;
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.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>>>;
111
- maximum: 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>>>;
112
- step: 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>>>;
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 | null | undefined;
121
- maximum?: number | null | undefined;
122
- step?: number | null | undefined;
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.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>, z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>>;
156
+ id: z.ZodOptional<z.ZodString>;
157
157
  text: z.ZodString;
158
- intro: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>, z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>>;
159
- outro: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>, z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>>;
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 | null | undefined;
171
- intro?: string | null | undefined;
172
- outro?: string | null | undefined;
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 | null | undefined;
189
- intro?: string | null | undefined;
190
- outro?: string | null | undefined;
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.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>, z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>>;
197
+ id: z.ZodOptional<z.ZodString>;
198
198
  text: z.ZodString;
199
- intro: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>, z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>>;
200
- outro: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>, z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>>;
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 | null | undefined;
212
- intro?: string | null | undefined;
213
- outro?: string | null | undefined;
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 | null | undefined;
230
- intro?: string | null | undefined;
231
- outro?: string | null | undefined;
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.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>>>;
238
- maximum: 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>>>;
239
- step: 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>>>;
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 | null | undefined;
248
- maximum?: number | null | undefined;
249
- step?: number | null | undefined;
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.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<"number" | "percentage", z.ZodTypeDef, "number" | "percentage">>>, "number" | "percentage" | undefined, "number" | "percentage" | null | undefined>, z.ZodOptional<z.ZodType<"number" | "percentage", z.ZodTypeDef, "number" | "percentage">>>;
279
- value: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string | number | boolean | (string | number | boolean | null)[] | null, z.ZodTypeDef, string | number | boolean | (string | number | boolean | null)[] | null>>>, string | number | boolean | (string | number | boolean | null)[] | undefined, string | number | boolean | (string | number | boolean | null)[] | null | undefined>, z.ZodOptional<z.ZodType<string | number | boolean | (string | number | boolean | null)[] | null, z.ZodTypeDef, string | number | boolean | (string | number | boolean | null)[] | null>>>;
280
- text: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>, z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>>;
281
- maximumValue: 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>>>;
282
- minimumValue: 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>>>;
283
- exclusiveMaximum: 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>>>;
284
- exclusiveMinimum: 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>>>;
285
- step: 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>>>;
286
- total: 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>>>;
287
- readOnly: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>, z.ZodOptional<z.ZodType<boolean, z.ZodTypeDef, boolean>>>;
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.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string | number | boolean | (string | number | boolean | null)[] | null, z.ZodTypeDef, string | number | boolean | (string | number | boolean | null)[] | null>>>, string | number | boolean | (string | number | boolean | null)[] | undefined, string | number | boolean | (string | number | boolean | null)[] | null | undefined>, z.ZodOptional<z.ZodType<string | number | boolean | (string | number | boolean | null)[] | null, z.ZodTypeDef, string | number | boolean | (string | number | boolean | null)[] | null>>>;
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" | null | undefined;
304
- total?: number | null | undefined;
303
+ type?: "number" | "percentage" | undefined;
304
+ total?: number | undefined;
305
305
  value?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
306
- text?: string | null | undefined;
307
- maximumValue?: number | null | undefined;
308
- minimumValue?: number | null | undefined;
309
- exclusiveMaximum?: number | null | undefined;
310
- exclusiveMinimum?: number | null | undefined;
311
- step?: number | null | undefined;
312
- readOnly?: boolean | null | undefined;
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.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<boolean, z.ZodTypeDef, boolean>>>, boolean | undefined, boolean | null | undefined>, z.ZodOptional<z.ZodType<boolean, z.ZodTypeDef, boolean>>>;
316
+ hideCode: z.ZodOptional<z.ZodBoolean>;
317
317
  }, "strip", z.ZodTypeAny, {
318
318
  hideCode?: boolean | undefined;
319
319
  }, {
320
- hideCode?: boolean | null | undefined;
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.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string[], z.ZodTypeDef, string[]>>>, string[] | undefined, string[] | null | undefined>, z.ZodOptional<z.ZodType<string[], z.ZodTypeDef, string[]>>>;
327
- documentation: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<({
328
- type: "pdf";
329
- url: string;
330
- label: string;
331
- text: string;
332
- } | {
333
- type: "text";
334
- label: string;
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
- })[], z.ZodTypeDef, ({
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.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
413
- type?: "number" | "percentage" | undefined;
414
- total?: number | undefined;
415
- value?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
416
- text?: string | undefined;
417
- maximumValue?: number | undefined;
418
- minimumValue?: number | undefined;
419
- exclusiveMaximum?: number | undefined;
420
- exclusiveMinimum?: number | undefined;
421
- step?: number | undefined;
422
- readOnly?: boolean | undefined;
423
- }, z.ZodTypeDef, {
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
- } | undefined, {
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
- }, z.ZodTypeDef, {
468
- type?: "number" | "percentage" | null | undefined;
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.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
483
- type?: "number" | "percentage" | undefined;
484
- total?: number | undefined;
485
- value?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
486
- text?: string | undefined;
487
- maximumValue?: number | undefined;
488
- minimumValue?: number | undefined;
489
- exclusiveMaximum?: number | undefined;
490
- exclusiveMinimum?: number | undefined;
491
- step?: number | undefined;
492
- readOnly?: boolean | undefined;
493
- valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
494
- }, z.ZodTypeDef, {
495
- type?: "number" | "percentage" | null | undefined;
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
- } | undefined, {
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
- }, z.ZodTypeDef, {
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.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>, z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>>;
456
+ id: z.ZodOptional<z.ZodString>;
561
457
  text: z.ZodString;
562
- intro: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>, z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>>;
563
- outro: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>, z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>>;
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 | null | undefined;
575
- intro?: string | null | undefined;
576
- outro?: string | null | undefined;
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 | null | undefined;
593
- intro?: string | null | undefined;
594
- outro?: string | null | undefined;
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.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>, z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>>;
497
+ id: z.ZodOptional<z.ZodString>;
602
498
  text: z.ZodString;
603
- intro: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>, z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>>;
604
- outro: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>, z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>>;
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 | null | undefined;
616
- intro?: string | null | undefined;
617
- outro?: string | null | undefined;
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 | null | undefined;
634
- intro?: string | null | undefined;
635
- outro?: string | null | undefined;
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.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>>>;
642
- maximum: 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>>>;
643
- step: 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>>>;
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 | null | undefined;
652
- maximum?: number | null | undefined;
653
- step?: number | null | undefined;
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.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string, z.ZodTypeDef, string>>>, string | undefined, string | null | undefined>, z.ZodOptional<z.ZodType<string, z.ZodTypeDef, string>>>;
682
- providedData: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<Record<string, string | number | boolean | (string | number | boolean | null)[] | null>, z.ZodTypeDef, Record<string, string | number | boolean | (string | number | boolean | null)[] | null>>>>, Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined, Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | null | undefined>, z.ZodOptional<z.ZodType<Record<string, string | number | boolean | (string | number | boolean | null)[] | null>, z.ZodTypeDef, Record<string, string | number | boolean | (string | number | boolean | null)[] | null>>>>;
683
- valueReference: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<string | number | boolean | (string | number | boolean | null)[] | null, z.ZodTypeDef, string | number | boolean | (string | number | boolean | null)[] | null>>>, string | number | boolean | (string | number | boolean | null)[] | undefined, string | number | boolean | (string | number | boolean | null)[] | null | undefined>, z.ZodOptional<z.ZodType<string | number | boolean | (string | number | boolean | null)[] | null, z.ZodTypeDef, string | number | boolean | (string | number | boolean | null)[] | null>>>;
684
- options: z.ZodPipeline<z.ZodEffects<z.ZodOptional<z.ZodNullable<z.ZodType<{
685
- hideCode?: boolean | undefined;
686
- }, z.ZodTypeDef, {
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
- } | undefined, {
691
- hideCode?: boolean | null | undefined;
692
- } | null | undefined>, z.ZodOptional<z.ZodType<{
584
+ }, {
693
585
  hideCode?: boolean | undefined;
694
- }, z.ZodTypeDef, {
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 | null | undefined;
775
- intro?: string | null | undefined;
776
- outro?: string | null | undefined;
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 | null | undefined;
784
- intro?: string | null | undefined;
785
- outro?: string | null | undefined;
673
+ id?: string | undefined;
674
+ intro?: string | undefined;
675
+ outro?: string | undefined;
786
676
  }[];
787
677
  } | {
788
678
  type: "number";
789
- minimum?: number | null | undefined;
790
- maximum?: number | null | undefined;
791
- step?: number | null | undefined;
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" | null | undefined;
801
- total?: number | null | undefined;
690
+ type?: "number" | "percentage" | undefined;
691
+ total?: number | undefined;
802
692
  value?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
803
- text?: string | null | undefined;
804
- maximumValue?: number | null | undefined;
805
- minimumValue?: number | null | undefined;
806
- exclusiveMaximum?: number | null | undefined;
807
- exclusiveMinimum?: number | null | undefined;
808
- step?: number | null | undefined;
809
- readOnly?: boolean | null | undefined;
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
- } | null | undefined;
701
+ } | undefined;
812
702
  options?: {
813
- hideCode?: boolean | null | undefined;
814
- } | null | undefined;
815
- description?: string | null | undefined;
816
- tags?: string[] | null | undefined;
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
- })[] | null | undefined;
832
- sortOrder?: number | null | undefined;
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> | null | undefined;
724
+ providedData?: Record<string, string | number | boolean | (string | number | boolean | null)[] | null> | undefined;
835
725
  }>;