@openframe-org/criteria-set-protocol 2.4.2 → 2.5.0-alpha.0

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.
@@ -3,75 +3,28 @@ export declare const taskGroupSchema: z.ZodObject<{
3
3
  title: z.ZodString;
4
4
  longFormTitle: z.ZodString;
5
5
  code: z.ZodString;
6
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
7
- documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
6
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
7
+ documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
8
8
  label: z.ZodString;
9
9
  text: z.ZodString;
10
- } & {
11
10
  type: z.ZodLiteral<"pdf">;
12
11
  url: z.ZodString;
13
- }, "strip", z.ZodTypeAny, {
14
- type: "pdf";
15
- url: string;
16
- label: string;
17
- text: string;
18
- }, {
19
- type: "pdf";
20
- url: string;
21
- label: string;
22
- text: string;
23
- }>, z.ZodObject<{
12
+ }, z.core.$strip>, z.ZodObject<{
24
13
  label: z.ZodString;
25
14
  text: z.ZodString;
26
- } & {
27
15
  type: z.ZodLiteral<"text">;
28
- }, "strip", z.ZodTypeAny, {
29
- type: "text";
30
- label: string;
31
- text: string;
32
- }, {
33
- type: "text";
34
- label: string;
35
- text: string;
36
- }>, z.ZodObject<{
16
+ }, z.core.$strip>, z.ZodObject<{
37
17
  label: z.ZodString;
38
18
  text: z.ZodString;
39
- } & {
40
19
  type: z.ZodLiteral<"link">;
41
20
  url: z.ZodString;
42
- }, "strip", z.ZodTypeAny, {
43
- type: "link";
44
- url: string;
45
- label: string;
46
- text: string;
47
- }, {
48
- type: "link";
49
- url: string;
50
- label: string;
51
- text: string;
52
- }>]>, "many">>;
21
+ }, z.core.$strip>], "type">>>;
53
22
  data: z.ZodOptional<z.ZodObject<{
54
- type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
55
- value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
56
- text: z.ZodOptional<z.ZodString>;
57
- total: z.ZodOptional<z.ZodNumber>;
58
- maximumValue: z.ZodOptional<z.ZodNumber>;
59
- minimumValue: z.ZodOptional<z.ZodNumber>;
60
- exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
61
- exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
62
- weight: z.ZodOptional<z.ZodNumber>;
63
- }, "strip", z.ZodAny, z.objectOutputType<{
64
- type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
65
- value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
66
- text: z.ZodOptional<z.ZodString>;
67
- total: z.ZodOptional<z.ZodNumber>;
68
- maximumValue: z.ZodOptional<z.ZodNumber>;
69
- minimumValue: z.ZodOptional<z.ZodNumber>;
70
- exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
71
- exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
72
- weight: z.ZodOptional<z.ZodNumber>;
73
- }, z.ZodAny, "strip">, z.objectInputType<{
74
- type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
23
+ type: z.ZodOptional<z.ZodEnum<{
24
+ number: "number";
25
+ boolean: "boolean";
26
+ percentage: "percentage";
27
+ }>>;
75
28
  value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
76
29
  text: z.ZodOptional<z.ZodString>;
77
30
  total: z.ZodOptional<z.ZodNumber>;
@@ -80,9 +33,8 @@ export declare const taskGroupSchema: z.ZodObject<{
80
33
  exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
81
34
  exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
82
35
  weight: z.ZodOptional<z.ZodNumber>;
83
- }, z.ZodAny, "strip">>>;
36
+ }, z.core.$catchall<z.ZodAny>>>;
84
37
  sortOrder: z.ZodOptional<z.ZodNumber>;
85
- } & {
86
38
  type: z.ZodLiteral<"task-group">;
87
39
  description: z.ZodOptional<z.ZodString>;
88
40
  category: z.ZodOptional<z.ZodString>;
@@ -90,65 +42,28 @@ export declare const taskGroupSchema: z.ZodObject<{
90
42
  title: z.ZodString;
91
43
  longFormTitle: z.ZodString;
92
44
  code: z.ZodString;
93
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
94
- documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
45
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
46
+ documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
95
47
  label: z.ZodString;
96
48
  text: z.ZodString;
97
- } & {
98
49
  type: z.ZodLiteral<"pdf">;
99
50
  url: z.ZodString;
100
- }, "strip", z.ZodTypeAny, {
101
- type: "pdf";
102
- url: string;
103
- label: string;
104
- text: string;
105
- }, {
106
- type: "pdf";
107
- url: string;
108
- label: string;
109
- text: string;
110
- }>, z.ZodObject<{
51
+ }, z.core.$strip>, z.ZodObject<{
111
52
  label: z.ZodString;
112
53
  text: z.ZodString;
113
- } & {
114
54
  type: z.ZodLiteral<"text">;
115
- }, "strip", z.ZodTypeAny, {
116
- type: "text";
117
- label: string;
118
- text: string;
119
- }, {
120
- type: "text";
121
- label: string;
122
- text: string;
123
- }>, z.ZodObject<{
55
+ }, z.core.$strip>, z.ZodObject<{
124
56
  label: z.ZodString;
125
57
  text: z.ZodString;
126
- } & {
127
58
  type: z.ZodLiteral<"link">;
128
59
  url: z.ZodString;
129
- }, "strip", z.ZodTypeAny, {
130
- type: "link";
131
- url: string;
132
- label: string;
133
- text: string;
134
- }, {
135
- type: "link";
136
- url: string;
137
- label: string;
138
- text: string;
139
- }>]>, "many">>;
60
+ }, z.core.$strip>], "type">>>;
140
61
  data: z.ZodOptional<z.ZodObject<{
141
- type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
142
- value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
143
- text: z.ZodOptional<z.ZodString>;
144
- total: z.ZodOptional<z.ZodNumber>;
145
- maximumValue: z.ZodOptional<z.ZodNumber>;
146
- minimumValue: z.ZodOptional<z.ZodNumber>;
147
- exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
148
- exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
149
- weight: z.ZodOptional<z.ZodNumber>;
150
- }, "strip", z.ZodAny, z.objectOutputType<{
151
- type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
62
+ type: z.ZodOptional<z.ZodEnum<{
63
+ number: "number";
64
+ boolean: "boolean";
65
+ percentage: "percentage";
66
+ }>>;
152
67
  value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
153
68
  text: z.ZodOptional<z.ZodString>;
154
69
  total: z.ZodOptional<z.ZodNumber>;
@@ -157,95 +72,36 @@ export declare const taskGroupSchema: z.ZodObject<{
157
72
  exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
158
73
  exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
159
74
  weight: z.ZodOptional<z.ZodNumber>;
160
- }, z.ZodAny, "strip">, z.objectInputType<{
161
- type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
162
- value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
163
- text: z.ZodOptional<z.ZodString>;
164
- total: z.ZodOptional<z.ZodNumber>;
165
- maximumValue: z.ZodOptional<z.ZodNumber>;
166
- minimumValue: z.ZodOptional<z.ZodNumber>;
167
- exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
168
- exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
169
- weight: z.ZodOptional<z.ZodNumber>;
170
- }, z.ZodAny, "strip">>>;
75
+ }, z.core.$catchall<z.ZodAny>>>;
171
76
  sortOrder: z.ZodOptional<z.ZodNumber>;
172
- } & {
173
77
  type: z.ZodLiteral<"task">;
174
78
  description: z.ZodOptional<z.ZodString>;
175
79
  items: z.ZodArray<z.ZodLazy<z.ZodObject<{
176
80
  code: z.ZodString;
177
- tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
178
- documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
81
+ tags: z.ZodOptional<z.ZodArray<z.ZodString>>;
82
+ documentation: z.ZodOptional<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
179
83
  label: z.ZodString;
180
84
  text: z.ZodString;
181
- } & {
182
85
  type: z.ZodLiteral<"pdf">;
183
86
  url: z.ZodString;
184
- }, "strip", z.ZodTypeAny, {
185
- type: "pdf";
186
- url: string;
187
- label: string;
188
- text: string;
189
- }, {
190
- type: "pdf";
191
- url: string;
192
- label: string;
193
- text: string;
194
- }>, z.ZodObject<{
87
+ }, z.core.$strip>, z.ZodObject<{
195
88
  label: z.ZodString;
196
89
  text: z.ZodString;
197
- } & {
198
90
  type: z.ZodLiteral<"text">;
199
- }, "strip", z.ZodTypeAny, {
200
- type: "text";
201
- label: string;
202
- text: string;
203
- }, {
204
- type: "text";
205
- label: string;
206
- text: string;
207
- }>, z.ZodObject<{
91
+ }, z.core.$strip>, z.ZodObject<{
208
92
  label: z.ZodString;
209
93
  text: z.ZodString;
210
- } & {
211
94
  type: z.ZodLiteral<"link">;
212
95
  url: z.ZodString;
213
- }, "strip", z.ZodTypeAny, {
214
- type: "link";
215
- url: string;
216
- label: string;
217
- text: string;
218
- }, {
219
- type: "link";
220
- url: string;
221
- label: string;
222
- text: string;
223
- }>]>, "many">>;
96
+ }, z.core.$strip>], "type">>>;
224
97
  sortOrder: z.ZodOptional<z.ZodNumber>;
225
- } & {
226
98
  type: z.ZodLiteral<"task-item">;
227
99
  data: z.ZodOptional<z.ZodIntersection<z.ZodObject<{
228
- type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
229
- value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
230
- text: z.ZodOptional<z.ZodString>;
231
- total: z.ZodOptional<z.ZodNumber>;
232
- maximumValue: z.ZodOptional<z.ZodNumber>;
233
- minimumValue: z.ZodOptional<z.ZodNumber>;
234
- exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
235
- exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
236
- weight: z.ZodOptional<z.ZodNumber>;
237
- }, "strip", z.ZodAny, z.objectOutputType<{
238
- type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
239
- value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
240
- text: z.ZodOptional<z.ZodString>;
241
- total: z.ZodOptional<z.ZodNumber>;
242
- maximumValue: z.ZodOptional<z.ZodNumber>;
243
- minimumValue: z.ZodOptional<z.ZodNumber>;
244
- exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
245
- exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
246
- weight: z.ZodOptional<z.ZodNumber>;
247
- }, z.ZodAny, "strip">, z.objectInputType<{
248
- type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
100
+ type: z.ZodOptional<z.ZodEnum<{
101
+ number: "number";
102
+ boolean: "boolean";
103
+ percentage: "percentage";
104
+ }>>;
249
105
  value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
250
106
  text: z.ZodOptional<z.ZodString>;
251
107
  total: z.ZodOptional<z.ZodNumber>;
@@ -254,20 +110,13 @@ export declare const taskGroupSchema: z.ZodObject<{
254
110
  exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
255
111
  exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
256
112
  weight: z.ZodOptional<z.ZodNumber>;
257
- }, z.ZodAny, "strip">>, z.ZodObject<{
113
+ }, z.core.$catchall<z.ZodAny>>, z.ZodObject<{
258
114
  readOnly: z.ZodOptional<z.ZodBoolean>;
259
- 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">]>>;
260
- }, "strip", z.ZodTypeAny, {
261
- readOnly?: boolean | undefined;
262
- valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
263
- }, {
264
- readOnly?: boolean | undefined;
265
- valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
266
- }>>>;
267
- definition: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
115
+ valueReference: z.ZodOptional<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]>>]>>;
116
+ }, z.core.$strip>>>;
117
+ definition: z.ZodDiscriminatedUnion<[z.ZodObject<{
268
118
  label: z.ZodOptional<z.ZodString>;
269
119
  readOnly: z.ZodOptional<z.ZodBoolean>;
270
- } & {
271
120
  type: z.ZodLiteral<"select-single">;
272
121
  minimum: z.ZodOptional<z.ZodNumber>;
273
122
  maximum: z.ZodOptional<z.ZodNumber>;
@@ -276,53 +125,12 @@ export declare const taskGroupSchema: z.ZodObject<{
276
125
  text: z.ZodString;
277
126
  intro: z.ZodOptional<z.ZodString>;
278
127
  outro: z.ZodOptional<z.ZodString>;
279
- value: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>;
280
- }, "strip", z.ZodTypeAny, {
281
- value: string | number | boolean | null;
282
- text: string;
283
- id?: string | undefined;
284
- intro?: string | undefined;
285
- outro?: string | undefined;
286
- }, {
287
- value: string | number | boolean | null;
288
- text: string;
289
- id?: string | undefined;
290
- intro?: string | undefined;
291
- outro?: string | undefined;
292
- }>, "many">;
128
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>;
129
+ }, z.core.$strip>>;
293
130
  defaultValue: z.ZodOptional<z.ZodString>;
294
- }, "strip", z.ZodTypeAny, {
295
- type: "select-single";
296
- options: {
297
- value: string | number | boolean | null;
298
- text: string;
299
- id?: string | undefined;
300
- intro?: string | undefined;
301
- outro?: string | undefined;
302
- }[];
303
- label?: string | undefined;
304
- minimum?: number | undefined;
305
- maximum?: number | undefined;
306
- defaultValue?: string | undefined;
307
- readOnly?: boolean | undefined;
308
- }, {
309
- type: "select-single";
310
- options: {
311
- value: string | number | boolean | null;
312
- text: string;
313
- id?: string | undefined;
314
- intro?: string | undefined;
315
- outro?: string | undefined;
316
- }[];
317
- label?: string | undefined;
318
- minimum?: number | undefined;
319
- maximum?: number | undefined;
320
- defaultValue?: string | undefined;
321
- readOnly?: boolean | undefined;
322
- }>, z.ZodObject<{
131
+ }, z.core.$strip>, z.ZodObject<{
323
132
  label: z.ZodOptional<z.ZodString>;
324
133
  readOnly: z.ZodOptional<z.ZodBoolean>;
325
- } & {
326
134
  type: z.ZodLiteral<"select-multiple">;
327
135
  minimum: z.ZodOptional<z.ZodNumber>;
328
136
  maximum: z.ZodOptional<z.ZodNumber>;
@@ -331,906 +139,40 @@ export declare const taskGroupSchema: z.ZodObject<{
331
139
  text: z.ZodString;
332
140
  intro: z.ZodOptional<z.ZodString>;
333
141
  outro: z.ZodOptional<z.ZodString>;
334
- value: z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>;
335
- }, "strip", z.ZodTypeAny, {
336
- value: string | number | boolean | null;
337
- text: string;
338
- id?: string | undefined;
339
- intro?: string | undefined;
340
- outro?: string | undefined;
341
- }, {
342
- value: string | number | boolean | null;
343
- text: string;
344
- id?: string | undefined;
345
- intro?: string | undefined;
346
- outro?: string | undefined;
347
- }>, "many">;
348
- defaultValue: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
349
- }, "strip", z.ZodTypeAny, {
350
- type: "select-multiple";
351
- options: {
352
- value: string | number | boolean | null;
353
- text: string;
354
- id?: string | undefined;
355
- intro?: string | undefined;
356
- outro?: string | undefined;
357
- }[];
358
- label?: string | undefined;
359
- minimum?: number | undefined;
360
- maximum?: number | undefined;
361
- defaultValue?: string[] | undefined;
362
- readOnly?: boolean | undefined;
363
- }, {
364
- type: "select-multiple";
365
- options: {
366
- value: string | number | boolean | null;
367
- text: string;
368
- id?: string | undefined;
369
- intro?: string | undefined;
370
- outro?: string | undefined;
371
- }[];
372
- label?: string | undefined;
373
- minimum?: number | undefined;
374
- maximum?: number | undefined;
375
- defaultValue?: string[] | undefined;
376
- readOnly?: boolean | undefined;
377
- }>, z.ZodObject<{
142
+ value: z.ZodUnion<readonly [z.ZodString, z.ZodNumber, z.ZodBoolean, z.ZodNull]>;
143
+ }, z.core.$strip>>;
144
+ defaultValue: z.ZodOptional<z.ZodArray<z.ZodString>>;
145
+ }, z.core.$strip>, z.ZodObject<{
378
146
  label: z.ZodOptional<z.ZodString>;
379
147
  readOnly: z.ZodOptional<z.ZodBoolean>;
380
- } & {
381
148
  type: z.ZodOptional<z.ZodLiteral<"number">>;
382
149
  minimum: z.ZodOptional<z.ZodNumber>;
383
150
  maximum: z.ZodOptional<z.ZodNumber>;
384
151
  step: z.ZodOptional<z.ZodNumber>;
385
152
  defaultValue: z.ZodOptional<z.ZodNumber>;
386
- }, "strip", z.ZodTypeAny, {
387
- type?: "number" | undefined;
388
- label?: string | undefined;
389
- minimum?: number | undefined;
390
- maximum?: number | undefined;
391
- defaultValue?: number | undefined;
392
- readOnly?: boolean | undefined;
393
- step?: number | undefined;
394
- }, {
395
- type?: "number" | undefined;
396
- label?: string | undefined;
397
- minimum?: number | undefined;
398
- maximum?: number | undefined;
399
- defaultValue?: number | undefined;
400
- readOnly?: boolean | undefined;
401
- step?: number | undefined;
402
- }>, z.ZodObject<{
153
+ }, z.core.$strip>, z.ZodObject<{
403
154
  label: z.ZodOptional<z.ZodString>;
404
155
  readOnly: z.ZodOptional<z.ZodBoolean>;
405
- } & {
406
156
  type: z.ZodLiteral<"boolean">;
407
157
  labels: z.ZodOptional<z.ZodObject<{
408
158
  true: z.ZodString;
409
159
  false: z.ZodString;
410
- }, "strip", z.ZodTypeAny, {
411
- false: string;
412
- true: string;
413
- }, {
414
- false: string;
415
- true: string;
416
- }>>;
160
+ }, z.core.$strip>>;
417
161
  defaultValue: z.ZodOptional<z.ZodBoolean>;
418
- }, "strip", z.ZodTypeAny, {
419
- type: "boolean";
420
- label?: string | undefined;
421
- labels?: {
422
- false: string;
423
- true: string;
424
- } | undefined;
425
- defaultValue?: boolean | undefined;
426
- readOnly?: boolean | undefined;
427
- }, {
428
- type: "boolean";
429
- label?: string | undefined;
430
- labels?: {
431
- false: string;
432
- true: string;
433
- } | undefined;
434
- defaultValue?: boolean | undefined;
435
- readOnly?: boolean | undefined;
436
- }>]>;
162
+ }, z.core.$strip>], "type">;
437
163
  description: z.ZodOptional<z.ZodString>;
438
164
  options: z.ZodObject<{
439
165
  excludeFromTargets: z.ZodOptional<z.ZodBoolean>;
440
- }, "strip", z.ZodTypeAny, {
441
- excludeFromTargets?: boolean | undefined;
442
- }, {
443
- excludeFromTargets?: boolean | undefined;
444
- }>;
445
- }, "strip", z.ZodTypeAny, {
446
- code: string;
447
- type: "task-item";
448
- options: {
449
- excludeFromTargets?: boolean | undefined;
450
- };
451
- definition: {
452
- type: "select-single";
453
- options: {
454
- value: string | number | boolean | null;
455
- text: string;
456
- id?: string | undefined;
457
- intro?: string | undefined;
458
- outro?: string | undefined;
459
- }[];
460
- label?: string | undefined;
461
- minimum?: number | undefined;
462
- maximum?: number | undefined;
463
- defaultValue?: string | undefined;
464
- readOnly?: boolean | undefined;
465
- } | {
466
- type: "select-multiple";
467
- options: {
468
- value: string | number | boolean | null;
469
- text: string;
470
- id?: string | undefined;
471
- intro?: string | undefined;
472
- outro?: string | undefined;
473
- }[];
474
- label?: string | undefined;
475
- minimum?: number | undefined;
476
- maximum?: number | undefined;
477
- defaultValue?: string[] | undefined;
478
- readOnly?: boolean | undefined;
479
- } | {
480
- type?: "number" | undefined;
481
- label?: string | undefined;
482
- minimum?: number | undefined;
483
- maximum?: number | undefined;
484
- defaultValue?: number | undefined;
485
- readOnly?: boolean | undefined;
486
- step?: number | undefined;
487
- } | {
488
- type: "boolean";
489
- label?: string | undefined;
490
- labels?: {
491
- false: string;
492
- true: string;
493
- } | undefined;
494
- defaultValue?: boolean | undefined;
495
- readOnly?: boolean | undefined;
496
- };
497
- data?: ({
498
- type?: "number" | "boolean" | "percentage" | undefined;
499
- total?: number | undefined;
500
- value?: number | boolean | undefined;
501
- text?: string | undefined;
502
- maximumValue?: number | undefined;
503
- minimumValue?: number | undefined;
504
- exclusiveMaximum?: number | undefined;
505
- exclusiveMinimum?: number | undefined;
506
- weight?: number | undefined;
507
- } & {
508
- [k: string]: any;
509
- } & {
510
- readOnly?: boolean | undefined;
511
- valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
512
- }) | undefined;
513
- description?: string | undefined;
514
- tags?: string[] | undefined;
515
- documentation?: ({
516
- type: "pdf";
517
- url: string;
518
- label: string;
519
- text: string;
520
- } | {
521
- type: "text";
522
- label: string;
523
- text: string;
524
- } | {
525
- type: "link";
526
- url: string;
527
- label: string;
528
- text: string;
529
- })[] | undefined;
530
- sortOrder?: number | undefined;
531
- }, {
532
- code: string;
533
- type: "task-item";
534
- options: {
535
- excludeFromTargets?: boolean | undefined;
536
- };
537
- definition: {
538
- type: "select-single";
539
- options: {
540
- value: string | number | boolean | null;
541
- text: string;
542
- id?: string | undefined;
543
- intro?: string | undefined;
544
- outro?: string | undefined;
545
- }[];
546
- label?: string | undefined;
547
- minimum?: number | undefined;
548
- maximum?: number | undefined;
549
- defaultValue?: string | undefined;
550
- readOnly?: boolean | undefined;
551
- } | {
552
- type: "select-multiple";
553
- options: {
554
- value: string | number | boolean | null;
555
- text: string;
556
- id?: string | undefined;
557
- intro?: string | undefined;
558
- outro?: string | undefined;
559
- }[];
560
- label?: string | undefined;
561
- minimum?: number | undefined;
562
- maximum?: number | undefined;
563
- defaultValue?: string[] | undefined;
564
- readOnly?: boolean | undefined;
565
- } | {
566
- type?: "number" | undefined;
567
- label?: string | undefined;
568
- minimum?: number | undefined;
569
- maximum?: number | undefined;
570
- defaultValue?: number | undefined;
571
- readOnly?: boolean | undefined;
572
- step?: number | undefined;
573
- } | {
574
- type: "boolean";
575
- label?: string | undefined;
576
- labels?: {
577
- false: string;
578
- true: string;
579
- } | undefined;
580
- defaultValue?: boolean | undefined;
581
- readOnly?: boolean | undefined;
582
- };
583
- data?: ({
584
- type?: "number" | "boolean" | "percentage" | undefined;
585
- total?: number | undefined;
586
- value?: number | boolean | undefined;
587
- text?: string | undefined;
588
- maximumValue?: number | undefined;
589
- minimumValue?: number | undefined;
590
- exclusiveMaximum?: number | undefined;
591
- exclusiveMinimum?: number | undefined;
592
- weight?: number | undefined;
593
- } & {
594
- [k: string]: any;
595
- } & {
596
- readOnly?: boolean | undefined;
597
- valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
598
- }) | undefined;
599
- description?: string | undefined;
600
- tags?: string[] | undefined;
601
- documentation?: ({
602
- type: "pdf";
603
- url: string;
604
- label: string;
605
- text: string;
606
- } | {
607
- type: "text";
608
- label: string;
609
- text: string;
610
- } | {
611
- type: "link";
612
- url: string;
613
- label: string;
614
- text: string;
615
- })[] | undefined;
616
- sortOrder?: number | undefined;
617
- }>>, "many">;
166
+ }, z.core.$strip>;
167
+ }, z.core.$strip>>>;
618
168
  options: z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
619
169
  breadcrumbTextFormat: z.ZodString;
620
170
  documentTreeFolderTextFormat: z.ZodString;
621
171
  showCodeAsIndicatorTaskViewTitle: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
622
- }, "strip", z.ZodTypeAny, {
623
- breadcrumbTextFormat: string;
624
- documentTreeFolderTextFormat: string;
625
- showCodeAsIndicatorTaskViewTitle: boolean;
626
- }, {
627
- breadcrumbTextFormat: string;
628
- documentTreeFolderTextFormat: string;
629
- showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
630
- }>, z.ZodObject<{
172
+ }, z.core.$strip>, z.ZodObject<{
631
173
  criteriaTreeElementTextFormat: z.ZodString;
632
- }, "strip", z.ZodTypeAny, {
633
- criteriaTreeElementTextFormat: string;
634
- }, {
635
- criteriaTreeElementTextFormat: string;
636
- }>>, z.ZodObject<{
174
+ }, z.core.$strip>>, z.ZodObject<{
637
175
  reportTitleTextFormat: z.ZodOptional<z.ZodString>;
638
- }, "strip", z.ZodTypeAny, {
639
- reportTitleTextFormat?: string | undefined;
640
- }, {
641
- reportTitleTextFormat?: string | undefined;
642
- }>>;
643
- }, "strip", z.ZodTypeAny, {
644
- code: string;
645
- type: "task";
646
- title: string;
647
- options: {
648
- breadcrumbTextFormat: string;
649
- documentTreeFolderTextFormat: string;
650
- showCodeAsIndicatorTaskViewTitle: boolean;
651
- } & {
652
- criteriaTreeElementTextFormat: string;
653
- } & {
654
- reportTitleTextFormat?: string | undefined;
655
- };
656
- items: {
657
- code: string;
658
- type: "task-item";
659
- options: {
660
- excludeFromTargets?: boolean | undefined;
661
- };
662
- definition: {
663
- type: "select-single";
664
- options: {
665
- value: string | number | boolean | null;
666
- text: string;
667
- id?: string | undefined;
668
- intro?: string | undefined;
669
- outro?: string | undefined;
670
- }[];
671
- label?: string | undefined;
672
- minimum?: number | undefined;
673
- maximum?: number | undefined;
674
- defaultValue?: string | undefined;
675
- readOnly?: boolean | undefined;
676
- } | {
677
- type: "select-multiple";
678
- options: {
679
- value: string | number | boolean | null;
680
- text: string;
681
- id?: string | undefined;
682
- intro?: string | undefined;
683
- outro?: string | undefined;
684
- }[];
685
- label?: string | undefined;
686
- minimum?: number | undefined;
687
- maximum?: number | undefined;
688
- defaultValue?: string[] | undefined;
689
- readOnly?: boolean | undefined;
690
- } | {
691
- type?: "number" | undefined;
692
- label?: string | undefined;
693
- minimum?: number | undefined;
694
- maximum?: number | undefined;
695
- defaultValue?: number | undefined;
696
- readOnly?: boolean | undefined;
697
- step?: number | undefined;
698
- } | {
699
- type: "boolean";
700
- label?: string | undefined;
701
- labels?: {
702
- false: string;
703
- true: string;
704
- } | undefined;
705
- defaultValue?: boolean | undefined;
706
- readOnly?: boolean | undefined;
707
- };
708
- data?: ({
709
- type?: "number" | "boolean" | "percentage" | undefined;
710
- total?: number | undefined;
711
- value?: number | boolean | undefined;
712
- text?: string | undefined;
713
- maximumValue?: number | undefined;
714
- minimumValue?: number | undefined;
715
- exclusiveMaximum?: number | undefined;
716
- exclusiveMinimum?: number | undefined;
717
- weight?: number | undefined;
718
- } & {
719
- [k: string]: any;
720
- } & {
721
- readOnly?: boolean | undefined;
722
- valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
723
- }) | undefined;
724
- description?: string | undefined;
725
- tags?: string[] | undefined;
726
- documentation?: ({
727
- type: "pdf";
728
- url: string;
729
- label: string;
730
- text: string;
731
- } | {
732
- type: "text";
733
- label: string;
734
- text: string;
735
- } | {
736
- type: "link";
737
- url: string;
738
- label: string;
739
- text: string;
740
- })[] | undefined;
741
- sortOrder?: number | undefined;
742
- }[];
743
- longFormTitle: string;
744
- data?: z.objectOutputType<{
745
- type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
746
- value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
747
- text: z.ZodOptional<z.ZodString>;
748
- total: z.ZodOptional<z.ZodNumber>;
749
- maximumValue: z.ZodOptional<z.ZodNumber>;
750
- minimumValue: z.ZodOptional<z.ZodNumber>;
751
- exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
752
- exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
753
- weight: z.ZodOptional<z.ZodNumber>;
754
- }, z.ZodAny, "strip"> | undefined;
755
- description?: string | undefined;
756
- tags?: string[] | undefined;
757
- documentation?: ({
758
- type: "pdf";
759
- url: string;
760
- label: string;
761
- text: string;
762
- } | {
763
- type: "text";
764
- label: string;
765
- text: string;
766
- } | {
767
- type: "link";
768
- url: string;
769
- label: string;
770
- text: string;
771
- })[] | undefined;
772
- sortOrder?: number | undefined;
773
- }, {
774
- code: string;
775
- type: "task";
776
- title: string;
777
- options: {
778
- breadcrumbTextFormat: string;
779
- documentTreeFolderTextFormat: string;
780
- showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
781
- } & {
782
- criteriaTreeElementTextFormat: string;
783
- } & {
784
- reportTitleTextFormat?: string | undefined;
785
- };
786
- items: {
787
- code: string;
788
- type: "task-item";
789
- options: {
790
- excludeFromTargets?: boolean | undefined;
791
- };
792
- definition: {
793
- type: "select-single";
794
- options: {
795
- value: string | number | boolean | null;
796
- text: string;
797
- id?: string | undefined;
798
- intro?: string | undefined;
799
- outro?: string | undefined;
800
- }[];
801
- label?: string | undefined;
802
- minimum?: number | undefined;
803
- maximum?: number | undefined;
804
- defaultValue?: string | undefined;
805
- readOnly?: boolean | undefined;
806
- } | {
807
- type: "select-multiple";
808
- options: {
809
- value: string | number | boolean | null;
810
- text: string;
811
- id?: string | undefined;
812
- intro?: string | undefined;
813
- outro?: string | undefined;
814
- }[];
815
- label?: string | undefined;
816
- minimum?: number | undefined;
817
- maximum?: number | undefined;
818
- defaultValue?: string[] | undefined;
819
- readOnly?: boolean | undefined;
820
- } | {
821
- type?: "number" | undefined;
822
- label?: string | undefined;
823
- minimum?: number | undefined;
824
- maximum?: number | undefined;
825
- defaultValue?: number | undefined;
826
- readOnly?: boolean | undefined;
827
- step?: number | undefined;
828
- } | {
829
- type: "boolean";
830
- label?: string | undefined;
831
- labels?: {
832
- false: string;
833
- true: string;
834
- } | undefined;
835
- defaultValue?: boolean | undefined;
836
- readOnly?: boolean | undefined;
837
- };
838
- data?: ({
839
- type?: "number" | "boolean" | "percentage" | undefined;
840
- total?: number | undefined;
841
- value?: number | boolean | undefined;
842
- text?: string | undefined;
843
- maximumValue?: number | undefined;
844
- minimumValue?: number | undefined;
845
- exclusiveMaximum?: number | undefined;
846
- exclusiveMinimum?: number | undefined;
847
- weight?: number | undefined;
848
- } & {
849
- [k: string]: any;
850
- } & {
851
- readOnly?: boolean | undefined;
852
- valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
853
- }) | undefined;
854
- description?: string | undefined;
855
- tags?: string[] | undefined;
856
- documentation?: ({
857
- type: "pdf";
858
- url: string;
859
- label: string;
860
- text: string;
861
- } | {
862
- type: "text";
863
- label: string;
864
- text: string;
865
- } | {
866
- type: "link";
867
- url: string;
868
- label: string;
869
- text: string;
870
- })[] | undefined;
871
- sortOrder?: number | undefined;
872
- }[];
873
- longFormTitle: string;
874
- data?: z.objectInputType<{
875
- type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
876
- value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
877
- text: z.ZodOptional<z.ZodString>;
878
- total: z.ZodOptional<z.ZodNumber>;
879
- maximumValue: z.ZodOptional<z.ZodNumber>;
880
- minimumValue: z.ZodOptional<z.ZodNumber>;
881
- exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
882
- exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
883
- weight: z.ZodOptional<z.ZodNumber>;
884
- }, z.ZodAny, "strip"> | undefined;
885
- description?: string | undefined;
886
- tags?: string[] | undefined;
887
- documentation?: ({
888
- type: "pdf";
889
- url: string;
890
- label: string;
891
- text: string;
892
- } | {
893
- type: "text";
894
- label: string;
895
- text: string;
896
- } | {
897
- type: "link";
898
- url: string;
899
- label: string;
900
- text: string;
901
- })[] | undefined;
902
- sortOrder?: number | undefined;
903
- }>>, "many">;
904
- }, "strip", z.ZodTypeAny, {
905
- code: string;
906
- type: "task-group";
907
- title: string;
908
- items: {
909
- code: string;
910
- type: "task";
911
- title: string;
912
- options: {
913
- breadcrumbTextFormat: string;
914
- documentTreeFolderTextFormat: string;
915
- showCodeAsIndicatorTaskViewTitle: boolean;
916
- } & {
917
- criteriaTreeElementTextFormat: string;
918
- } & {
919
- reportTitleTextFormat?: string | undefined;
920
- };
921
- items: {
922
- code: string;
923
- type: "task-item";
924
- options: {
925
- excludeFromTargets?: boolean | undefined;
926
- };
927
- definition: {
928
- type: "select-single";
929
- options: {
930
- value: string | number | boolean | null;
931
- text: string;
932
- id?: string | undefined;
933
- intro?: string | undefined;
934
- outro?: string | undefined;
935
- }[];
936
- label?: string | undefined;
937
- minimum?: number | undefined;
938
- maximum?: number | undefined;
939
- defaultValue?: string | undefined;
940
- readOnly?: boolean | undefined;
941
- } | {
942
- type: "select-multiple";
943
- options: {
944
- value: string | number | boolean | null;
945
- text: string;
946
- id?: string | undefined;
947
- intro?: string | undefined;
948
- outro?: string | undefined;
949
- }[];
950
- label?: string | undefined;
951
- minimum?: number | undefined;
952
- maximum?: number | undefined;
953
- defaultValue?: string[] | undefined;
954
- readOnly?: boolean | undefined;
955
- } | {
956
- type?: "number" | undefined;
957
- label?: string | undefined;
958
- minimum?: number | undefined;
959
- maximum?: number | undefined;
960
- defaultValue?: number | undefined;
961
- readOnly?: boolean | undefined;
962
- step?: number | undefined;
963
- } | {
964
- type: "boolean";
965
- label?: string | undefined;
966
- labels?: {
967
- false: string;
968
- true: string;
969
- } | undefined;
970
- defaultValue?: boolean | undefined;
971
- readOnly?: boolean | undefined;
972
- };
973
- data?: ({
974
- type?: "number" | "boolean" | "percentage" | undefined;
975
- total?: number | undefined;
976
- value?: number | boolean | undefined;
977
- text?: string | undefined;
978
- maximumValue?: number | undefined;
979
- minimumValue?: number | undefined;
980
- exclusiveMaximum?: number | undefined;
981
- exclusiveMinimum?: number | undefined;
982
- weight?: number | undefined;
983
- } & {
984
- [k: string]: any;
985
- } & {
986
- readOnly?: boolean | undefined;
987
- valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
988
- }) | undefined;
989
- description?: string | undefined;
990
- tags?: string[] | undefined;
991
- documentation?: ({
992
- type: "pdf";
993
- url: string;
994
- label: string;
995
- text: string;
996
- } | {
997
- type: "text";
998
- label: string;
999
- text: string;
1000
- } | {
1001
- type: "link";
1002
- url: string;
1003
- label: string;
1004
- text: string;
1005
- })[] | undefined;
1006
- sortOrder?: number | undefined;
1007
- }[];
1008
- longFormTitle: string;
1009
- data?: z.objectOutputType<{
1010
- type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
1011
- value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
1012
- text: z.ZodOptional<z.ZodString>;
1013
- total: z.ZodOptional<z.ZodNumber>;
1014
- maximumValue: z.ZodOptional<z.ZodNumber>;
1015
- minimumValue: z.ZodOptional<z.ZodNumber>;
1016
- exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
1017
- exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
1018
- weight: z.ZodOptional<z.ZodNumber>;
1019
- }, z.ZodAny, "strip"> | undefined;
1020
- description?: string | undefined;
1021
- tags?: string[] | undefined;
1022
- documentation?: ({
1023
- type: "pdf";
1024
- url: string;
1025
- label: string;
1026
- text: string;
1027
- } | {
1028
- type: "text";
1029
- label: string;
1030
- text: string;
1031
- } | {
1032
- type: "link";
1033
- url: string;
1034
- label: string;
1035
- text: string;
1036
- })[] | undefined;
1037
- sortOrder?: number | undefined;
1038
- }[];
1039
- longFormTitle: string;
1040
- data?: z.objectOutputType<{
1041
- type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
1042
- value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
1043
- text: z.ZodOptional<z.ZodString>;
1044
- total: z.ZodOptional<z.ZodNumber>;
1045
- maximumValue: z.ZodOptional<z.ZodNumber>;
1046
- minimumValue: z.ZodOptional<z.ZodNumber>;
1047
- exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
1048
- exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
1049
- weight: z.ZodOptional<z.ZodNumber>;
1050
- }, z.ZodAny, "strip"> | undefined;
1051
- description?: string | undefined;
1052
- tags?: string[] | undefined;
1053
- documentation?: ({
1054
- type: "pdf";
1055
- url: string;
1056
- label: string;
1057
- text: string;
1058
- } | {
1059
- type: "text";
1060
- label: string;
1061
- text: string;
1062
- } | {
1063
- type: "link";
1064
- url: string;
1065
- label: string;
1066
- text: string;
1067
- })[] | undefined;
1068
- sortOrder?: number | undefined;
1069
- category?: string | undefined;
1070
- }, {
1071
- code: string;
1072
- type: "task-group";
1073
- title: string;
1074
- items: {
1075
- code: string;
1076
- type: "task";
1077
- title: string;
1078
- options: {
1079
- breadcrumbTextFormat: string;
1080
- documentTreeFolderTextFormat: string;
1081
- showCodeAsIndicatorTaskViewTitle?: boolean | undefined;
1082
- } & {
1083
- criteriaTreeElementTextFormat: string;
1084
- } & {
1085
- reportTitleTextFormat?: string | undefined;
1086
- };
1087
- items: {
1088
- code: string;
1089
- type: "task-item";
1090
- options: {
1091
- excludeFromTargets?: boolean | undefined;
1092
- };
1093
- definition: {
1094
- type: "select-single";
1095
- options: {
1096
- value: string | number | boolean | null;
1097
- text: string;
1098
- id?: string | undefined;
1099
- intro?: string | undefined;
1100
- outro?: string | undefined;
1101
- }[];
1102
- label?: string | undefined;
1103
- minimum?: number | undefined;
1104
- maximum?: number | undefined;
1105
- defaultValue?: string | undefined;
1106
- readOnly?: boolean | undefined;
1107
- } | {
1108
- type: "select-multiple";
1109
- options: {
1110
- value: string | number | boolean | null;
1111
- text: string;
1112
- id?: string | undefined;
1113
- intro?: string | undefined;
1114
- outro?: string | undefined;
1115
- }[];
1116
- label?: string | undefined;
1117
- minimum?: number | undefined;
1118
- maximum?: number | undefined;
1119
- defaultValue?: string[] | undefined;
1120
- readOnly?: boolean | undefined;
1121
- } | {
1122
- type?: "number" | undefined;
1123
- label?: string | undefined;
1124
- minimum?: number | undefined;
1125
- maximum?: number | undefined;
1126
- defaultValue?: number | undefined;
1127
- readOnly?: boolean | undefined;
1128
- step?: number | undefined;
1129
- } | {
1130
- type: "boolean";
1131
- label?: string | undefined;
1132
- labels?: {
1133
- false: string;
1134
- true: string;
1135
- } | undefined;
1136
- defaultValue?: boolean | undefined;
1137
- readOnly?: boolean | undefined;
1138
- };
1139
- data?: ({
1140
- type?: "number" | "boolean" | "percentage" | undefined;
1141
- total?: number | undefined;
1142
- value?: number | boolean | undefined;
1143
- text?: string | undefined;
1144
- maximumValue?: number | undefined;
1145
- minimumValue?: number | undefined;
1146
- exclusiveMaximum?: number | undefined;
1147
- exclusiveMinimum?: number | undefined;
1148
- weight?: number | undefined;
1149
- } & {
1150
- [k: string]: any;
1151
- } & {
1152
- readOnly?: boolean | undefined;
1153
- valueReference?: string | number | boolean | (string | number | boolean | null)[] | null | undefined;
1154
- }) | undefined;
1155
- description?: string | undefined;
1156
- tags?: string[] | undefined;
1157
- documentation?: ({
1158
- type: "pdf";
1159
- url: string;
1160
- label: string;
1161
- text: string;
1162
- } | {
1163
- type: "text";
1164
- label: string;
1165
- text: string;
1166
- } | {
1167
- type: "link";
1168
- url: string;
1169
- label: string;
1170
- text: string;
1171
- })[] | undefined;
1172
- sortOrder?: number | undefined;
1173
- }[];
1174
- longFormTitle: string;
1175
- data?: z.objectInputType<{
1176
- type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
1177
- value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
1178
- text: z.ZodOptional<z.ZodString>;
1179
- total: z.ZodOptional<z.ZodNumber>;
1180
- maximumValue: z.ZodOptional<z.ZodNumber>;
1181
- minimumValue: z.ZodOptional<z.ZodNumber>;
1182
- exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
1183
- exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
1184
- weight: z.ZodOptional<z.ZodNumber>;
1185
- }, z.ZodAny, "strip"> | undefined;
1186
- description?: string | undefined;
1187
- tags?: string[] | undefined;
1188
- documentation?: ({
1189
- type: "pdf";
1190
- url: string;
1191
- label: string;
1192
- text: string;
1193
- } | {
1194
- type: "text";
1195
- label: string;
1196
- text: string;
1197
- } | {
1198
- type: "link";
1199
- url: string;
1200
- label: string;
1201
- text: string;
1202
- })[] | undefined;
1203
- sortOrder?: number | undefined;
1204
- }[];
1205
- longFormTitle: string;
1206
- data?: z.objectInputType<{
1207
- type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
1208
- value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
1209
- text: z.ZodOptional<z.ZodString>;
1210
- total: z.ZodOptional<z.ZodNumber>;
1211
- maximumValue: z.ZodOptional<z.ZodNumber>;
1212
- minimumValue: z.ZodOptional<z.ZodNumber>;
1213
- exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
1214
- exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
1215
- weight: z.ZodOptional<z.ZodNumber>;
1216
- }, z.ZodAny, "strip"> | undefined;
1217
- description?: string | undefined;
1218
- tags?: string[] | undefined;
1219
- documentation?: ({
1220
- type: "pdf";
1221
- url: string;
1222
- label: string;
1223
- text: string;
1224
- } | {
1225
- type: "text";
1226
- label: string;
1227
- text: string;
1228
- } | {
1229
- type: "link";
1230
- url: string;
1231
- label: string;
1232
- text: string;
1233
- })[] | undefined;
1234
- sortOrder?: number | undefined;
1235
- category?: string | undefined;
1236
- }>;
176
+ }, z.core.$strip>>;
177
+ }, z.core.$strip>>>;
178
+ }, z.core.$strip>;