@openframe-org/criteria-set-protocol 2.3.1 → 2.4.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/common.d.ts +11 -0
- package/dist/v1/schemas/common.js +2 -1
- package/dist/v1/schemas/criteria-tree.d.ts +181 -0
- package/dist/v1/schemas/criterion.d.ts +32 -0
- package/dist/v1/schemas/data-map.d.ts +21 -0
- package/dist/v1/schemas/metadata.d.ts +3 -0
- package/dist/v1/schemas/metadata.js +1 -0
- package/dist/v1/schemas/response.d.ts +3 -0
- package/dist/v1/schemas/task-group.d.ts +21 -0
- package/dist/v1/schemas/task-item.d.ts +8 -0
- package/dist/v1/schemas/task.d.ts +12 -0
- package/dist/v1/schemas/theme.d.ts +45 -0
- package/package.json +1 -1
|
@@ -114,6 +114,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
114
114
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
115
115
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
116
116
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
117
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
117
118
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
118
119
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
119
120
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -123,6 +124,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
123
124
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
124
125
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
125
126
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
127
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
126
128
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
127
129
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
128
130
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -132,6 +134,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
132
134
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
133
135
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
134
136
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
137
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
135
138
|
}, z.ZodAny, "strip">>>;
|
|
136
139
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
137
140
|
} & {
|
|
@@ -196,6 +199,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
196
199
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
197
200
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
198
201
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
202
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
199
203
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
200
204
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
201
205
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -205,6 +209,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
205
209
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
206
210
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
207
211
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
212
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
208
213
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
209
214
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
210
215
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -214,6 +219,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
214
219
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
215
220
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
216
221
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
222
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
217
223
|
}, z.ZodAny, "strip">>>;
|
|
218
224
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
219
225
|
} & {
|
|
@@ -280,6 +286,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
280
286
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
281
287
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
282
288
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
289
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
283
290
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
284
291
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
285
292
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -289,6 +296,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
289
296
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
290
297
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
291
298
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
299
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
292
300
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
293
301
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
294
302
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -298,6 +306,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
298
306
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
299
307
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
300
308
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
309
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
301
310
|
}, z.ZodAny, "strip">>>;
|
|
302
311
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
303
312
|
} & {
|
|
@@ -364,6 +373,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
364
373
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
365
374
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
366
375
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
376
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
367
377
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
368
378
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
369
379
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -373,6 +383,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
373
383
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
374
384
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
375
385
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
386
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
376
387
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
377
388
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
378
389
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -382,6 +393,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
382
393
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
383
394
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
384
395
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
396
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
385
397
|
}, z.ZodAny, "strip">>, z.ZodObject<{
|
|
386
398
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
387
399
|
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">]>>;
|
|
@@ -631,6 +643,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
631
643
|
minimumValue?: number | undefined;
|
|
632
644
|
exclusiveMaximum?: number | undefined;
|
|
633
645
|
exclusiveMinimum?: number | undefined;
|
|
646
|
+
weight?: number | undefined;
|
|
634
647
|
} & {
|
|
635
648
|
[k: string]: any;
|
|
636
649
|
} & {
|
|
@@ -716,6 +729,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
716
729
|
minimumValue?: number | undefined;
|
|
717
730
|
exclusiveMaximum?: number | undefined;
|
|
718
731
|
exclusiveMinimum?: number | undefined;
|
|
732
|
+
weight?: number | undefined;
|
|
719
733
|
} & {
|
|
720
734
|
[k: string]: any;
|
|
721
735
|
} & {
|
|
@@ -840,6 +854,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
840
854
|
minimumValue?: number | undefined;
|
|
841
855
|
exclusiveMaximum?: number | undefined;
|
|
842
856
|
exclusiveMinimum?: number | undefined;
|
|
857
|
+
weight?: number | undefined;
|
|
843
858
|
} & {
|
|
844
859
|
[k: string]: any;
|
|
845
860
|
} & {
|
|
@@ -875,6 +890,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
875
890
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
876
891
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
877
892
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
893
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
878
894
|
}, z.ZodAny, "strip"> | undefined;
|
|
879
895
|
description?: string | undefined;
|
|
880
896
|
tags?: string[] | undefined;
|
|
@@ -968,6 +984,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
968
984
|
minimumValue?: number | undefined;
|
|
969
985
|
exclusiveMaximum?: number | undefined;
|
|
970
986
|
exclusiveMinimum?: number | undefined;
|
|
987
|
+
weight?: number | undefined;
|
|
971
988
|
} & {
|
|
972
989
|
[k: string]: any;
|
|
973
990
|
} & {
|
|
@@ -1003,6 +1020,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1003
1020
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1004
1021
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1005
1022
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1023
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1006
1024
|
}, z.ZodAny, "strip"> | undefined;
|
|
1007
1025
|
description?: string | undefined;
|
|
1008
1026
|
tags?: string[] | undefined;
|
|
@@ -1101,6 +1119,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1101
1119
|
minimumValue?: number | undefined;
|
|
1102
1120
|
exclusiveMaximum?: number | undefined;
|
|
1103
1121
|
exclusiveMinimum?: number | undefined;
|
|
1122
|
+
weight?: number | undefined;
|
|
1104
1123
|
} & {
|
|
1105
1124
|
[k: string]: any;
|
|
1106
1125
|
} & {
|
|
@@ -1136,6 +1155,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1136
1155
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1137
1156
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1138
1157
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1158
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1139
1159
|
}, z.ZodAny, "strip"> | undefined;
|
|
1140
1160
|
description?: string | undefined;
|
|
1141
1161
|
tags?: string[] | undefined;
|
|
@@ -1166,6 +1186,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1166
1186
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1167
1187
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1168
1188
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1189
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1169
1190
|
}, z.ZodAny, "strip"> | undefined;
|
|
1170
1191
|
description?: string | undefined;
|
|
1171
1192
|
tags?: string[] | undefined;
|
|
@@ -1264,6 +1285,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1264
1285
|
minimumValue?: number | undefined;
|
|
1265
1286
|
exclusiveMaximum?: number | undefined;
|
|
1266
1287
|
exclusiveMinimum?: number | undefined;
|
|
1288
|
+
weight?: number | undefined;
|
|
1267
1289
|
} & {
|
|
1268
1290
|
[k: string]: any;
|
|
1269
1291
|
} & {
|
|
@@ -1299,6 +1321,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1299
1321
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1300
1322
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1301
1323
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1324
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1302
1325
|
}, z.ZodAny, "strip"> | undefined;
|
|
1303
1326
|
description?: string | undefined;
|
|
1304
1327
|
tags?: string[] | undefined;
|
|
@@ -1329,6 +1352,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1329
1352
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1330
1353
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1331
1354
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1355
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1332
1356
|
}, z.ZodAny, "strip"> | undefined;
|
|
1333
1357
|
description?: string | undefined;
|
|
1334
1358
|
tags?: string[] | undefined;
|
|
@@ -1506,6 +1530,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1506
1530
|
minimumValue?: number | undefined;
|
|
1507
1531
|
exclusiveMaximum?: number | undefined;
|
|
1508
1532
|
exclusiveMinimum?: number | undefined;
|
|
1533
|
+
weight?: number | undefined;
|
|
1509
1534
|
} & {
|
|
1510
1535
|
[k: string]: any;
|
|
1511
1536
|
} & {
|
|
@@ -1541,6 +1566,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1541
1566
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1542
1567
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1543
1568
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1569
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1544
1570
|
}, z.ZodAny, "strip"> | undefined;
|
|
1545
1571
|
description?: string | undefined;
|
|
1546
1572
|
tags?: string[] | undefined;
|
|
@@ -1571,6 +1597,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1571
1597
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1572
1598
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1573
1599
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1600
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1574
1601
|
}, z.ZodAny, "strip"> | undefined;
|
|
1575
1602
|
description?: string | undefined;
|
|
1576
1603
|
tags?: string[] | undefined;
|
|
@@ -1602,6 +1629,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1602
1629
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1603
1630
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1604
1631
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1632
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1605
1633
|
}, z.ZodAny, "strip"> | undefined;
|
|
1606
1634
|
tags?: string[] | undefined;
|
|
1607
1635
|
documentation?: ({
|
|
@@ -1721,6 +1749,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1721
1749
|
minimumValue?: number | undefined;
|
|
1722
1750
|
exclusiveMaximum?: number | undefined;
|
|
1723
1751
|
exclusiveMinimum?: number | undefined;
|
|
1752
|
+
weight?: number | undefined;
|
|
1724
1753
|
} & {
|
|
1725
1754
|
[k: string]: any;
|
|
1726
1755
|
} & {
|
|
@@ -1756,6 +1785,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1756
1785
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1757
1786
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1758
1787
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1788
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1759
1789
|
}, z.ZodAny, "strip"> | undefined;
|
|
1760
1790
|
description?: string | undefined;
|
|
1761
1791
|
tags?: string[] | undefined;
|
|
@@ -1786,6 +1816,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1786
1816
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1787
1817
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1788
1818
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1819
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1789
1820
|
}, z.ZodAny, "strip"> | undefined;
|
|
1790
1821
|
description?: string | undefined;
|
|
1791
1822
|
tags?: string[] | undefined;
|
|
@@ -1817,6 +1848,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
1817
1848
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1818
1849
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1819
1850
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1851
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1820
1852
|
}, z.ZodAny, "strip"> | undefined;
|
|
1821
1853
|
tags?: string[] | undefined;
|
|
1822
1854
|
documentation?: ({
|
|
@@ -8,6 +8,7 @@ export declare const elementDataMapSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[
|
|
|
8
8
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
9
9
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
10
10
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
11
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
11
12
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
12
13
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
13
14
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -17,6 +18,7 @@ export declare const elementDataMapSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[
|
|
|
17
18
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
18
19
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
19
20
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
21
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
20
22
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
21
23
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
22
24
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -26,6 +28,7 @@ export declare const elementDataMapSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[
|
|
|
26
28
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
27
29
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
28
30
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
31
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
29
32
|
}, z.ZodAny, "strip">>, z.ZodIntersection<z.ZodObject<{
|
|
30
33
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
31
34
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -35,6 +38,7 @@ export declare const elementDataMapSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[
|
|
|
35
38
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
36
39
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
37
40
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
41
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
38
42
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
39
43
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
40
44
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -44,6 +48,7 @@ export declare const elementDataMapSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[
|
|
|
44
48
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
45
49
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
46
50
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
51
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
47
52
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
48
53
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
49
54
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -53,6 +58,7 @@ export declare const elementDataMapSchema: z.ZodRecord<z.ZodString, z.ZodUnion<[
|
|
|
53
58
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
54
59
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
55
60
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
61
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
56
62
|
}, z.ZodAny, "strip">>, z.ZodObject<{
|
|
57
63
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
58
64
|
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">]>>;
|
|
@@ -75,6 +81,7 @@ export declare const dataMapSchema: z.ZodObject<{
|
|
|
75
81
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
76
82
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
77
83
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
84
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
78
85
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
79
86
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
80
87
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -84,6 +91,7 @@ export declare const dataMapSchema: z.ZodObject<{
|
|
|
84
91
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
85
92
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
86
93
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
94
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
87
95
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
88
96
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
89
97
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -93,6 +101,7 @@ export declare const dataMapSchema: z.ZodObject<{
|
|
|
93
101
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
94
102
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
95
103
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
104
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
96
105
|
}, z.ZodAny, "strip">>, z.ZodIntersection<z.ZodObject<{
|
|
97
106
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
98
107
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -102,6 +111,7 @@ export declare const dataMapSchema: z.ZodObject<{
|
|
|
102
111
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
103
112
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
104
113
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
114
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
105
115
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
106
116
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
107
117
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -111,6 +121,7 @@ export declare const dataMapSchema: z.ZodObject<{
|
|
|
111
121
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
112
122
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
113
123
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
124
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
114
125
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
115
126
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
116
127
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -120,6 +131,7 @@ export declare const dataMapSchema: z.ZodObject<{
|
|
|
120
131
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
121
132
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
122
133
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
134
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
123
135
|
}, z.ZodAny, "strip">>, z.ZodObject<{
|
|
124
136
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
125
137
|
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">]>>;
|
|
@@ -139,6 +151,7 @@ export declare const dataMapSchema: z.ZodObject<{
|
|
|
139
151
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
140
152
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
141
153
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
154
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
142
155
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
143
156
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
144
157
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -148,6 +161,7 @@ export declare const dataMapSchema: z.ZodObject<{
|
|
|
148
161
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
149
162
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
150
163
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
164
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
151
165
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
152
166
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
153
167
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -157,6 +171,7 @@ export declare const dataMapSchema: z.ZodObject<{
|
|
|
157
171
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
158
172
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
159
173
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
174
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
160
175
|
}, z.ZodAny, "strip">>;
|
|
161
176
|
certifications: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
162
177
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -169,6 +184,7 @@ export declare const dataMapSchema: z.ZodObject<{
|
|
|
169
184
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
170
185
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
171
186
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
187
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
172
188
|
}, z.ZodAny, "strip"> | ({
|
|
173
189
|
type?: "number" | "boolean" | "percentage" | undefined;
|
|
174
190
|
total?: number | undefined;
|
|
@@ -178,6 +194,7 @@ export declare const dataMapSchema: z.ZodObject<{
|
|
|
178
194
|
minimumValue?: number | undefined;
|
|
179
195
|
exclusiveMaximum?: number | undefined;
|
|
180
196
|
exclusiveMinimum?: number | undefined;
|
|
197
|
+
weight?: number | undefined;
|
|
181
198
|
} & {
|
|
182
199
|
[k: string]: any;
|
|
183
200
|
} & {
|
|
@@ -195,6 +212,7 @@ export declare const dataMapSchema: z.ZodObject<{
|
|
|
195
212
|
minimumValue?: number | undefined;
|
|
196
213
|
exclusiveMaximum?: number | undefined;
|
|
197
214
|
exclusiveMinimum?: number | undefined;
|
|
215
|
+
weight?: number | undefined;
|
|
198
216
|
} & {
|
|
199
217
|
[k: string]: any;
|
|
200
218
|
};
|
|
@@ -209,6 +227,7 @@ export declare const dataMapSchema: z.ZodObject<{
|
|
|
209
227
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
210
228
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
211
229
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
230
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
212
231
|
}, z.ZodAny, "strip"> | ({
|
|
213
232
|
type?: "number" | "boolean" | "percentage" | undefined;
|
|
214
233
|
total?: number | undefined;
|
|
@@ -218,6 +237,7 @@ export declare const dataMapSchema: z.ZodObject<{
|
|
|
218
237
|
minimumValue?: number | undefined;
|
|
219
238
|
exclusiveMaximum?: number | undefined;
|
|
220
239
|
exclusiveMinimum?: number | undefined;
|
|
240
|
+
weight?: number | undefined;
|
|
221
241
|
} & {
|
|
222
242
|
[k: string]: any;
|
|
223
243
|
} & {
|
|
@@ -235,6 +255,7 @@ export declare const dataMapSchema: z.ZodObject<{
|
|
|
235
255
|
minimumValue?: number | undefined;
|
|
236
256
|
exclusiveMaximum?: number | undefined;
|
|
237
257
|
exclusiveMinimum?: number | undefined;
|
|
258
|
+
weight?: number | undefined;
|
|
238
259
|
} & {
|
|
239
260
|
[k: string]: any;
|
|
240
261
|
};
|
|
@@ -20,6 +20,7 @@ export declare const metadataSchema: z.ZodObject<{
|
|
|
20
20
|
date: z.ZodDate;
|
|
21
21
|
name: z.ZodString;
|
|
22
22
|
shortName: z.ZodString;
|
|
23
|
+
group: z.ZodString;
|
|
23
24
|
description: z.ZodString;
|
|
24
25
|
documentation: z.ZodOptional<z.ZodString>;
|
|
25
26
|
locales: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -41,6 +42,7 @@ export declare const metadataSchema: z.ZodObject<{
|
|
|
41
42
|
name: string;
|
|
42
43
|
id: string;
|
|
43
44
|
description: string;
|
|
45
|
+
group: string;
|
|
44
46
|
date: Date;
|
|
45
47
|
version: string;
|
|
46
48
|
revision: string;
|
|
@@ -57,6 +59,7 @@ export declare const metadataSchema: z.ZodObject<{
|
|
|
57
59
|
name: string;
|
|
58
60
|
id: string;
|
|
59
61
|
description: string;
|
|
62
|
+
group: string;
|
|
60
63
|
date: Date;
|
|
61
64
|
version: string;
|
|
62
65
|
revision: string;
|
|
@@ -26,6 +26,7 @@ exports.metadataSchema = zod_1.z
|
|
|
26
26
|
date: zod_1.z.date().describe("The date when the criteria set was created"),
|
|
27
27
|
name: zod_1.z.string().describe("The name of the criteria set"),
|
|
28
28
|
shortName: zod_1.z.string().describe("A short version of the name of the criteria set"),
|
|
29
|
+
group: zod_1.z.string().describe("The arbitrary group identifier for the criteria set, used for grouping criteria sets in the UI"),
|
|
29
30
|
description: zod_1.z
|
|
30
31
|
.string()
|
|
31
32
|
.describe("A detailed description of the criteria set"),
|
|
@@ -6,6 +6,7 @@ export declare const criteriaSetsAndVersionsSchema: z.ZodRecord<z.ZodString, z.Z
|
|
|
6
6
|
date: z.ZodDate;
|
|
7
7
|
name: z.ZodString;
|
|
8
8
|
shortName: z.ZodString;
|
|
9
|
+
group: z.ZodString;
|
|
9
10
|
description: z.ZodString;
|
|
10
11
|
documentation: z.ZodOptional<z.ZodString>;
|
|
11
12
|
locales: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
@@ -27,6 +28,7 @@ export declare const criteriaSetsAndVersionsSchema: z.ZodRecord<z.ZodString, z.Z
|
|
|
27
28
|
name: string;
|
|
28
29
|
id: string;
|
|
29
30
|
description: string;
|
|
31
|
+
group: string;
|
|
30
32
|
date: Date;
|
|
31
33
|
version: string;
|
|
32
34
|
revision: string;
|
|
@@ -43,6 +45,7 @@ export declare const criteriaSetsAndVersionsSchema: z.ZodRecord<z.ZodString, z.Z
|
|
|
43
45
|
name: string;
|
|
44
46
|
id: string;
|
|
45
47
|
description: string;
|
|
48
|
+
group: string;
|
|
46
49
|
date: Date;
|
|
47
50
|
version: string;
|
|
48
51
|
revision: string;
|
|
@@ -59,6 +59,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
59
59
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
60
60
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
61
61
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
62
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
62
63
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
63
64
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
64
65
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -68,6 +69,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
68
69
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
69
70
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
70
71
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
72
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
71
73
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
72
74
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
73
75
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -77,6 +79,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
77
79
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
78
80
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
79
81
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
82
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
80
83
|
}, z.ZodAny, "strip">>>;
|
|
81
84
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
82
85
|
} & {
|
|
@@ -143,6 +146,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
143
146
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
144
147
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
145
148
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
149
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
146
150
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
147
151
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
148
152
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -152,6 +156,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
152
156
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
153
157
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
154
158
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
159
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
155
160
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
156
161
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
157
162
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -161,6 +166,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
161
166
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
162
167
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
163
168
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
169
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
164
170
|
}, z.ZodAny, "strip">>>;
|
|
165
171
|
sortOrder: z.ZodOptional<z.ZodNumber>;
|
|
166
172
|
} & {
|
|
@@ -227,6 +233,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
227
233
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
228
234
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
229
235
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
236
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
230
237
|
}, "strip", z.ZodAny, z.objectOutputType<{
|
|
231
238
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
232
239
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -236,6 +243,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
236
243
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
237
244
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
238
245
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
246
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
239
247
|
}, z.ZodAny, "strip">, z.objectInputType<{
|
|
240
248
|
type: z.ZodOptional<z.ZodEnum<["number", "percentage", "boolean"]>>;
|
|
241
249
|
value: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodBoolean]>>;
|
|
@@ -245,6 +253,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
245
253
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
246
254
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
247
255
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
256
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
248
257
|
}, z.ZodAny, "strip">>, z.ZodObject<{
|
|
249
258
|
readOnly: z.ZodOptional<z.ZodBoolean>;
|
|
250
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">]>>;
|
|
@@ -494,6 +503,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
494
503
|
minimumValue?: number | undefined;
|
|
495
504
|
exclusiveMaximum?: number | undefined;
|
|
496
505
|
exclusiveMinimum?: number | undefined;
|
|
506
|
+
weight?: number | undefined;
|
|
497
507
|
} & {
|
|
498
508
|
[k: string]: any;
|
|
499
509
|
} & {
|
|
@@ -579,6 +589,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
579
589
|
minimumValue?: number | undefined;
|
|
580
590
|
exclusiveMaximum?: number | undefined;
|
|
581
591
|
exclusiveMinimum?: number | undefined;
|
|
592
|
+
weight?: number | undefined;
|
|
582
593
|
} & {
|
|
583
594
|
[k: string]: any;
|
|
584
595
|
} & {
|
|
@@ -703,6 +714,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
703
714
|
minimumValue?: number | undefined;
|
|
704
715
|
exclusiveMaximum?: number | undefined;
|
|
705
716
|
exclusiveMinimum?: number | undefined;
|
|
717
|
+
weight?: number | undefined;
|
|
706
718
|
} & {
|
|
707
719
|
[k: string]: any;
|
|
708
720
|
} & {
|
|
@@ -738,6 +750,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
738
750
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
739
751
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
740
752
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
753
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
741
754
|
}, z.ZodAny, "strip"> | undefined;
|
|
742
755
|
description?: string | undefined;
|
|
743
756
|
tags?: string[] | undefined;
|
|
@@ -831,6 +844,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
831
844
|
minimumValue?: number | undefined;
|
|
832
845
|
exclusiveMaximum?: number | undefined;
|
|
833
846
|
exclusiveMinimum?: number | undefined;
|
|
847
|
+
weight?: number | undefined;
|
|
834
848
|
} & {
|
|
835
849
|
[k: string]: any;
|
|
836
850
|
} & {
|
|
@@ -866,6 +880,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
866
880
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
867
881
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
868
882
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
883
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
869
884
|
}, z.ZodAny, "strip"> | undefined;
|
|
870
885
|
description?: string | undefined;
|
|
871
886
|
tags?: string[] | undefined;
|
|
@@ -964,6 +979,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
964
979
|
minimumValue?: number | undefined;
|
|
965
980
|
exclusiveMaximum?: number | undefined;
|
|
966
981
|
exclusiveMinimum?: number | undefined;
|
|
982
|
+
weight?: number | undefined;
|
|
967
983
|
} & {
|
|
968
984
|
[k: string]: any;
|
|
969
985
|
} & {
|
|
@@ -999,6 +1015,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
999
1015
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1000
1016
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1001
1017
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1018
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1002
1019
|
}, z.ZodAny, "strip"> | undefined;
|
|
1003
1020
|
description?: string | undefined;
|
|
1004
1021
|
tags?: string[] | undefined;
|
|
@@ -1029,6 +1046,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
1029
1046
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1030
1047
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1031
1048
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1049
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1032
1050
|
}, z.ZodAny, "strip"> | undefined;
|
|
1033
1051
|
description?: string | undefined;
|
|
1034
1052
|
tags?: string[] | undefined;
|
|
@@ -1127,6 +1145,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
1127
1145
|
minimumValue?: number | undefined;
|
|
1128
1146
|
exclusiveMaximum?: number | undefined;
|
|
1129
1147
|
exclusiveMinimum?: number | undefined;
|
|
1148
|
+
weight?: number | undefined;
|
|
1130
1149
|
} & {
|
|
1131
1150
|
[k: string]: any;
|
|
1132
1151
|
} & {
|
|
@@ -1162,6 +1181,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
1162
1181
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1163
1182
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1164
1183
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1184
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1165
1185
|
}, z.ZodAny, "strip"> | undefined;
|
|
1166
1186
|
description?: string | undefined;
|
|
1167
1187
|
tags?: string[] | undefined;
|
|
@@ -1192,6 +1212,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
1192
1212
|
minimumValue: z.ZodOptional<z.ZodNumber>;
|
|
1193
1213
|
exclusiveMaximum: z.ZodOptional<z.ZodNumber>;
|
|
1194
1214
|
exclusiveMinimum: z.ZodOptional<z.ZodNumber>;
|
|
1215
|
+
weight: z.ZodOptional<z.ZodNumber>;
|
|
1195
1216
|
}, z.ZodAny, "strip"> | undefined;
|
|
1196
1217
|
description?: string | undefined;
|
|
1197
1218
|
tags?: string[] | undefined;
|