@openframe-org/criteria-set-protocol 2.7.2 → 2.7.4-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.
- package/dist/v1/schemas/common.d.ts +3 -3
- package/dist/v1/schemas/common.js +3 -3
- package/dist/v1/schemas/criteria-tree.d.ts +81 -81
- package/dist/v1/schemas/criterion.d.ts +16 -16
- package/dist/v1/schemas/task-group.d.ts +13 -13
- package/dist/v1/schemas/task-group.js +2 -2
- package/dist/v1/schemas/task-item.d.ts +4 -4
- package/dist/v1/schemas/task-item.js +1 -1
- package/dist/v1/schemas/task.d.ts +8 -8
- package/dist/v1/schemas/task.js +1 -1
- package/dist/v1/schemas/theme.d.ts +20 -20
- package/dist/v1/schemas/theme.js +1 -1
- package/package.json +2 -2
|
@@ -51,8 +51,8 @@ export declare const abstractElementSchema: z.ZodObject<{
|
|
|
51
51
|
title: z.ZodString;
|
|
52
52
|
longFormTitle: z.ZodString;
|
|
53
53
|
code: z.ZodString;
|
|
54
|
-
tags: z.
|
|
55
|
-
documentation: z.
|
|
54
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
55
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
56
56
|
label: z.ZodString;
|
|
57
57
|
text: z.ZodString;
|
|
58
58
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -67,7 +67,7 @@ export declare const abstractElementSchema: z.ZodObject<{
|
|
|
67
67
|
type: z.ZodLiteral<"link">;
|
|
68
68
|
url: z.ZodString;
|
|
69
69
|
}, z.core.$strip>], "type">>>;
|
|
70
|
-
sortOrder: z.
|
|
70
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
71
71
|
}, z.core.$strip>;
|
|
72
72
|
export declare const breadcrumbOptionsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
73
73
|
hideFromBreadcrumbs: z.ZodLiteral<true>;
|
|
@@ -86,15 +86,15 @@ exports.abstractElementSchema = zod_1.z
|
|
|
86
86
|
code: zod_1.z.string().describe("Unique identifier code"),
|
|
87
87
|
tags: zod_1.z
|
|
88
88
|
.array(zod_1.z.string())
|
|
89
|
-
.
|
|
89
|
+
.nullable()
|
|
90
90
|
.describe("List of classification tags"),
|
|
91
91
|
documentation: zod_1.z
|
|
92
92
|
.array(documentation_1.documentationItemSchema)
|
|
93
|
-
.
|
|
93
|
+
.nullable()
|
|
94
94
|
.describe("Associated documentation items"),
|
|
95
95
|
sortOrder: zod_1.z
|
|
96
96
|
.number()
|
|
97
|
-
.
|
|
97
|
+
.nullable()
|
|
98
98
|
.describe("Custom sorting position within parent")
|
|
99
99
|
})
|
|
100
100
|
.describe("AbstractElement - Base schema for all tree elements");
|
|
@@ -58,8 +58,8 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
58
58
|
title: z.ZodString;
|
|
59
59
|
longFormTitle: z.ZodString;
|
|
60
60
|
code: z.ZodString;
|
|
61
|
-
tags: z.
|
|
62
|
-
documentation: z.
|
|
61
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
62
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
63
63
|
label: z.ZodString;
|
|
64
64
|
text: z.ZodString;
|
|
65
65
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -74,9 +74,9 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
74
74
|
type: z.ZodLiteral<"link">;
|
|
75
75
|
url: z.ZodString;
|
|
76
76
|
}, z.core.$strip>], "type">>>;
|
|
77
|
-
sortOrder: z.
|
|
77
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
78
78
|
type: z.ZodLiteral<"theme">;
|
|
79
|
-
style: z.
|
|
79
|
+
style: z.ZodNullable<z.ZodObject<{
|
|
80
80
|
primaryColor: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
81
81
|
red: z.ZodNumber;
|
|
82
82
|
green: z.ZodNumber;
|
|
@@ -92,8 +92,8 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
92
92
|
title: z.ZodString;
|
|
93
93
|
longFormTitle: z.ZodString;
|
|
94
94
|
code: z.ZodString;
|
|
95
|
-
tags: z.
|
|
96
|
-
documentation: z.
|
|
95
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
96
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
97
97
|
label: z.ZodString;
|
|
98
98
|
text: z.ZodString;
|
|
99
99
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -108,14 +108,14 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
108
108
|
type: z.ZodLiteral<"link">;
|
|
109
109
|
url: z.ZodString;
|
|
110
110
|
}, z.core.$strip>], "type">>>;
|
|
111
|
-
sortOrder: z.
|
|
111
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
112
112
|
type: z.ZodLiteral<"criterion">;
|
|
113
113
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
114
114
|
title: z.ZodString;
|
|
115
115
|
longFormTitle: z.ZodString;
|
|
116
116
|
code: z.ZodString;
|
|
117
|
-
tags: z.
|
|
118
|
-
documentation: z.
|
|
117
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
118
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
119
119
|
label: z.ZodString;
|
|
120
120
|
text: z.ZodString;
|
|
121
121
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -130,16 +130,16 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
130
130
|
type: z.ZodLiteral<"link">;
|
|
131
131
|
url: z.ZodString;
|
|
132
132
|
}, z.core.$strip>], "type">>>;
|
|
133
|
-
sortOrder: z.
|
|
133
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
134
134
|
type: z.ZodLiteral<"task-group">;
|
|
135
|
-
description: z.
|
|
136
|
-
category: z.
|
|
135
|
+
description: z.ZodNullable<z.ZodString>;
|
|
136
|
+
category: z.ZodNullable<z.ZodString>;
|
|
137
137
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
138
138
|
title: z.ZodString;
|
|
139
139
|
longFormTitle: z.ZodString;
|
|
140
140
|
code: z.ZodString;
|
|
141
|
-
tags: z.
|
|
142
|
-
documentation: z.
|
|
141
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
142
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
143
143
|
label: z.ZodString;
|
|
144
144
|
text: z.ZodString;
|
|
145
145
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -154,13 +154,13 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
154
154
|
type: z.ZodLiteral<"link">;
|
|
155
155
|
url: z.ZodString;
|
|
156
156
|
}, z.core.$strip>], "type">>>;
|
|
157
|
-
sortOrder: z.
|
|
157
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
158
158
|
type: z.ZodLiteral<"task">;
|
|
159
|
-
description: z.
|
|
159
|
+
description: z.ZodNullable<z.ZodString>;
|
|
160
160
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
161
161
|
code: z.ZodString;
|
|
162
|
-
tags: z.
|
|
163
|
-
documentation: z.
|
|
162
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
163
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
164
164
|
label: z.ZodString;
|
|
165
165
|
text: z.ZodString;
|
|
166
166
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -175,7 +175,7 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
175
175
|
type: z.ZodLiteral<"link">;
|
|
176
176
|
url: z.ZodString;
|
|
177
177
|
}, z.core.$strip>], "type">>>;
|
|
178
|
-
sortOrder: z.
|
|
178
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
179
179
|
type: z.ZodLiteral<"task-item">;
|
|
180
180
|
definition: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
181
181
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -223,7 +223,7 @@ export declare const criteriaTreeSchema: z.ZodObject<{
|
|
|
223
223
|
}, z.core.$strip>>;
|
|
224
224
|
defaultValue: z.ZodOptional<z.ZodBoolean>;
|
|
225
225
|
}, z.core.$strip>], "type">;
|
|
226
|
-
description: z.
|
|
226
|
+
description: z.ZodNullable<z.ZodString>;
|
|
227
227
|
data: z.ZodIntersection<z.ZodType<{
|
|
228
228
|
text: string;
|
|
229
229
|
} & ({
|
|
@@ -513,8 +513,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
513
513
|
title: z.ZodString;
|
|
514
514
|
longFormTitle: z.ZodString;
|
|
515
515
|
code: z.ZodString;
|
|
516
|
-
tags: z.
|
|
517
|
-
documentation: z.
|
|
516
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
517
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
518
518
|
label: z.ZodString;
|
|
519
519
|
text: z.ZodString;
|
|
520
520
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -529,9 +529,9 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
529
529
|
type: z.ZodLiteral<"link">;
|
|
530
530
|
url: z.ZodString;
|
|
531
531
|
}, z.core.$strip>], "type">>>;
|
|
532
|
-
sortOrder: z.
|
|
532
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
533
533
|
type: z.ZodLiteral<"theme">;
|
|
534
|
-
style: z.
|
|
534
|
+
style: z.ZodNullable<z.ZodObject<{
|
|
535
535
|
primaryColor: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
536
536
|
red: z.ZodNumber;
|
|
537
537
|
green: z.ZodNumber;
|
|
@@ -547,8 +547,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
547
547
|
title: z.ZodString;
|
|
548
548
|
longFormTitle: z.ZodString;
|
|
549
549
|
code: z.ZodString;
|
|
550
|
-
tags: z.
|
|
551
|
-
documentation: z.
|
|
550
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
551
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
552
552
|
label: z.ZodString;
|
|
553
553
|
text: z.ZodString;
|
|
554
554
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -563,14 +563,14 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
563
563
|
type: z.ZodLiteral<"link">;
|
|
564
564
|
url: z.ZodString;
|
|
565
565
|
}, z.core.$strip>], "type">>>;
|
|
566
|
-
sortOrder: z.
|
|
566
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
567
567
|
type: z.ZodLiteral<"criterion">;
|
|
568
568
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
569
569
|
title: z.ZodString;
|
|
570
570
|
longFormTitle: z.ZodString;
|
|
571
571
|
code: z.ZodString;
|
|
572
|
-
tags: z.
|
|
573
|
-
documentation: z.
|
|
572
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
573
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
574
574
|
label: z.ZodString;
|
|
575
575
|
text: z.ZodString;
|
|
576
576
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -585,16 +585,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
585
585
|
type: z.ZodLiteral<"link">;
|
|
586
586
|
url: z.ZodString;
|
|
587
587
|
}, z.core.$strip>], "type">>>;
|
|
588
|
-
sortOrder: z.
|
|
588
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
589
589
|
type: z.ZodLiteral<"task-group">;
|
|
590
|
-
description: z.
|
|
591
|
-
category: z.
|
|
590
|
+
description: z.ZodNullable<z.ZodString>;
|
|
591
|
+
category: z.ZodNullable<z.ZodString>;
|
|
592
592
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
593
593
|
title: z.ZodString;
|
|
594
594
|
longFormTitle: z.ZodString;
|
|
595
595
|
code: z.ZodString;
|
|
596
|
-
tags: z.
|
|
597
|
-
documentation: z.
|
|
596
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
597
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
598
598
|
label: z.ZodString;
|
|
599
599
|
text: z.ZodString;
|
|
600
600
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -609,13 +609,13 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
609
609
|
type: z.ZodLiteral<"link">;
|
|
610
610
|
url: z.ZodString;
|
|
611
611
|
}, z.core.$strip>], "type">>>;
|
|
612
|
-
sortOrder: z.
|
|
612
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
613
613
|
type: z.ZodLiteral<"task">;
|
|
614
|
-
description: z.
|
|
614
|
+
description: z.ZodNullable<z.ZodString>;
|
|
615
615
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
616
616
|
code: z.ZodString;
|
|
617
|
-
tags: z.
|
|
618
|
-
documentation: z.
|
|
617
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
618
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
619
619
|
label: z.ZodString;
|
|
620
620
|
text: z.ZodString;
|
|
621
621
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -630,7 +630,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
630
630
|
type: z.ZodLiteral<"link">;
|
|
631
631
|
url: z.ZodString;
|
|
632
632
|
}, z.core.$strip>], "type">>>;
|
|
633
|
-
sortOrder: z.
|
|
633
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
634
634
|
type: z.ZodLiteral<"task-item">;
|
|
635
635
|
definition: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
636
636
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -678,7 +678,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
678
678
|
}, z.core.$strip>>;
|
|
679
679
|
defaultValue: z.ZodOptional<z.ZodBoolean>;
|
|
680
680
|
}, z.core.$strip>], "type">;
|
|
681
|
-
description: z.
|
|
681
|
+
description: z.ZodNullable<z.ZodString>;
|
|
682
682
|
data: z.ZodIntersection<z.ZodType<{
|
|
683
683
|
text: string;
|
|
684
684
|
} & ({
|
|
@@ -933,8 +933,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
933
933
|
title: z.ZodString;
|
|
934
934
|
longFormTitle: z.ZodString;
|
|
935
935
|
code: z.ZodString;
|
|
936
|
-
tags: z.
|
|
937
|
-
documentation: z.
|
|
936
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
937
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
938
938
|
label: z.ZodString;
|
|
939
939
|
text: z.ZodString;
|
|
940
940
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -949,14 +949,14 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
949
949
|
type: z.ZodLiteral<"link">;
|
|
950
950
|
url: z.ZodString;
|
|
951
951
|
}, z.core.$strip>], "type">>>;
|
|
952
|
-
sortOrder: z.
|
|
952
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
953
953
|
type: z.ZodLiteral<"criterion">;
|
|
954
954
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
955
955
|
title: z.ZodString;
|
|
956
956
|
longFormTitle: z.ZodString;
|
|
957
957
|
code: z.ZodString;
|
|
958
|
-
tags: z.
|
|
959
|
-
documentation: z.
|
|
958
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
959
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
960
960
|
label: z.ZodString;
|
|
961
961
|
text: z.ZodString;
|
|
962
962
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -971,16 +971,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
971
971
|
type: z.ZodLiteral<"link">;
|
|
972
972
|
url: z.ZodString;
|
|
973
973
|
}, z.core.$strip>], "type">>>;
|
|
974
|
-
sortOrder: z.
|
|
974
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
975
975
|
type: z.ZodLiteral<"task-group">;
|
|
976
|
-
description: z.
|
|
977
|
-
category: z.
|
|
976
|
+
description: z.ZodNullable<z.ZodString>;
|
|
977
|
+
category: z.ZodNullable<z.ZodString>;
|
|
978
978
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
979
979
|
title: z.ZodString;
|
|
980
980
|
longFormTitle: z.ZodString;
|
|
981
981
|
code: z.ZodString;
|
|
982
|
-
tags: z.
|
|
983
|
-
documentation: z.
|
|
982
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
983
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
984
984
|
label: z.ZodString;
|
|
985
985
|
text: z.ZodString;
|
|
986
986
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -995,13 +995,13 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
995
995
|
type: z.ZodLiteral<"link">;
|
|
996
996
|
url: z.ZodString;
|
|
997
997
|
}, z.core.$strip>], "type">>>;
|
|
998
|
-
sortOrder: z.
|
|
998
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
999
999
|
type: z.ZodLiteral<"task">;
|
|
1000
|
-
description: z.
|
|
1000
|
+
description: z.ZodNullable<z.ZodString>;
|
|
1001
1001
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
1002
1002
|
code: z.ZodString;
|
|
1003
|
-
tags: z.
|
|
1004
|
-
documentation: z.
|
|
1003
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
1004
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1005
1005
|
label: z.ZodString;
|
|
1006
1006
|
text: z.ZodString;
|
|
1007
1007
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -1016,7 +1016,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1016
1016
|
type: z.ZodLiteral<"link">;
|
|
1017
1017
|
url: z.ZodString;
|
|
1018
1018
|
}, z.core.$strip>], "type">>>;
|
|
1019
|
-
sortOrder: z.
|
|
1019
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
1020
1020
|
type: z.ZodLiteral<"task-item">;
|
|
1021
1021
|
definition: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1022
1022
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -1064,7 +1064,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1064
1064
|
}, z.core.$strip>>;
|
|
1065
1065
|
defaultValue: z.ZodOptional<z.ZodBoolean>;
|
|
1066
1066
|
}, z.core.$strip>], "type">;
|
|
1067
|
-
description: z.
|
|
1067
|
+
description: z.ZodNullable<z.ZodString>;
|
|
1068
1068
|
data: z.ZodIntersection<z.ZodType<{
|
|
1069
1069
|
text: string;
|
|
1070
1070
|
} & ({
|
|
@@ -1253,8 +1253,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1253
1253
|
title: z.ZodString;
|
|
1254
1254
|
longFormTitle: z.ZodString;
|
|
1255
1255
|
code: z.ZodString;
|
|
1256
|
-
tags: z.
|
|
1257
|
-
documentation: z.
|
|
1256
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
1257
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1258
1258
|
label: z.ZodString;
|
|
1259
1259
|
text: z.ZodString;
|
|
1260
1260
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -1269,16 +1269,16 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1269
1269
|
type: z.ZodLiteral<"link">;
|
|
1270
1270
|
url: z.ZodString;
|
|
1271
1271
|
}, z.core.$strip>], "type">>>;
|
|
1272
|
-
sortOrder: z.
|
|
1272
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
1273
1273
|
type: z.ZodLiteral<"task-group">;
|
|
1274
|
-
description: z.
|
|
1275
|
-
category: z.
|
|
1274
|
+
description: z.ZodNullable<z.ZodString>;
|
|
1275
|
+
category: z.ZodNullable<z.ZodString>;
|
|
1276
1276
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
1277
1277
|
title: z.ZodString;
|
|
1278
1278
|
longFormTitle: z.ZodString;
|
|
1279
1279
|
code: z.ZodString;
|
|
1280
|
-
tags: z.
|
|
1281
|
-
documentation: z.
|
|
1280
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
1281
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1282
1282
|
label: z.ZodString;
|
|
1283
1283
|
text: z.ZodString;
|
|
1284
1284
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -1293,13 +1293,13 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1293
1293
|
type: z.ZodLiteral<"link">;
|
|
1294
1294
|
url: z.ZodString;
|
|
1295
1295
|
}, z.core.$strip>], "type">>>;
|
|
1296
|
-
sortOrder: z.
|
|
1296
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
1297
1297
|
type: z.ZodLiteral<"task">;
|
|
1298
|
-
description: z.
|
|
1298
|
+
description: z.ZodNullable<z.ZodString>;
|
|
1299
1299
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
1300
1300
|
code: z.ZodString;
|
|
1301
|
-
tags: z.
|
|
1302
|
-
documentation: z.
|
|
1301
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
1302
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1303
1303
|
label: z.ZodString;
|
|
1304
1304
|
text: z.ZodString;
|
|
1305
1305
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -1314,7 +1314,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1314
1314
|
type: z.ZodLiteral<"link">;
|
|
1315
1315
|
url: z.ZodString;
|
|
1316
1316
|
}, z.core.$strip>], "type">>>;
|
|
1317
|
-
sortOrder: z.
|
|
1317
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
1318
1318
|
type: z.ZodLiteral<"task-item">;
|
|
1319
1319
|
definition: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1320
1320
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -1362,7 +1362,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1362
1362
|
}, z.core.$strip>>;
|
|
1363
1363
|
defaultValue: z.ZodOptional<z.ZodBoolean>;
|
|
1364
1364
|
}, z.core.$strip>], "type">;
|
|
1365
|
-
description: z.
|
|
1365
|
+
description: z.ZodNullable<z.ZodString>;
|
|
1366
1366
|
data: z.ZodIntersection<z.ZodType<{
|
|
1367
1367
|
text: string;
|
|
1368
1368
|
} & ({
|
|
@@ -1484,8 +1484,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1484
1484
|
title: z.ZodString;
|
|
1485
1485
|
longFormTitle: z.ZodString;
|
|
1486
1486
|
code: z.ZodString;
|
|
1487
|
-
tags: z.
|
|
1488
|
-
documentation: z.
|
|
1487
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
1488
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1489
1489
|
label: z.ZodString;
|
|
1490
1490
|
text: z.ZodString;
|
|
1491
1491
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -1500,13 +1500,13 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1500
1500
|
type: z.ZodLiteral<"link">;
|
|
1501
1501
|
url: z.ZodString;
|
|
1502
1502
|
}, z.core.$strip>], "type">>>;
|
|
1503
|
-
sortOrder: z.
|
|
1503
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
1504
1504
|
type: z.ZodLiteral<"task">;
|
|
1505
|
-
description: z.
|
|
1505
|
+
description: z.ZodNullable<z.ZodString>;
|
|
1506
1506
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
1507
1507
|
code: z.ZodString;
|
|
1508
|
-
tags: z.
|
|
1509
|
-
documentation: z.
|
|
1508
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
1509
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1510
1510
|
label: z.ZodString;
|
|
1511
1511
|
text: z.ZodString;
|
|
1512
1512
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -1521,7 +1521,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1521
1521
|
type: z.ZodLiteral<"link">;
|
|
1522
1522
|
url: z.ZodString;
|
|
1523
1523
|
}, z.core.$strip>], "type">>>;
|
|
1524
|
-
sortOrder: z.
|
|
1524
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
1525
1525
|
type: z.ZodLiteral<"task-item">;
|
|
1526
1526
|
definition: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1527
1527
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -1569,7 +1569,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1569
1569
|
}, z.core.$strip>>;
|
|
1570
1570
|
defaultValue: z.ZodOptional<z.ZodBoolean>;
|
|
1571
1571
|
}, z.core.$strip>], "type">;
|
|
1572
|
-
description: z.
|
|
1572
|
+
description: z.ZodNullable<z.ZodString>;
|
|
1573
1573
|
data: z.ZodIntersection<z.ZodType<{
|
|
1574
1574
|
text: string;
|
|
1575
1575
|
} & ({
|
|
@@ -1688,8 +1688,8 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1688
1688
|
}, z.core.$strip>;
|
|
1689
1689
|
}, z.core.$strip>, z.ZodObject<{
|
|
1690
1690
|
code: z.ZodString;
|
|
1691
|
-
tags: z.
|
|
1692
|
-
documentation: z.
|
|
1691
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
1692
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1693
1693
|
label: z.ZodString;
|
|
1694
1694
|
text: z.ZodString;
|
|
1695
1695
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -1704,7 +1704,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1704
1704
|
type: z.ZodLiteral<"link">;
|
|
1705
1705
|
url: z.ZodString;
|
|
1706
1706
|
}, z.core.$strip>], "type">>>;
|
|
1707
|
-
sortOrder: z.
|
|
1707
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
1708
1708
|
type: z.ZodLiteral<"task-item">;
|
|
1709
1709
|
definition: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
1710
1710
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -1752,7 +1752,7 @@ export declare const criteriaTreeElementSchema: z.ZodDiscriminatedUnion<[z.ZodOb
|
|
|
1752
1752
|
}, z.core.$strip>>;
|
|
1753
1753
|
defaultValue: z.ZodOptional<z.ZodBoolean>;
|
|
1754
1754
|
}, z.core.$strip>], "type">;
|
|
1755
|
-
description: z.
|
|
1755
|
+
description: z.ZodNullable<z.ZodString>;
|
|
1756
1756
|
data: z.ZodIntersection<z.ZodType<{
|
|
1757
1757
|
text: string;
|
|
1758
1758
|
} & ({
|
|
@@ -18,8 +18,8 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
18
18
|
title: z.ZodString;
|
|
19
19
|
longFormTitle: z.ZodString;
|
|
20
20
|
code: z.ZodString;
|
|
21
|
-
tags: z.
|
|
22
|
-
documentation: z.
|
|
21
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
22
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
23
23
|
label: z.ZodString;
|
|
24
24
|
text: z.ZodString;
|
|
25
25
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -34,14 +34,14 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
34
34
|
type: z.ZodLiteral<"link">;
|
|
35
35
|
url: z.ZodString;
|
|
36
36
|
}, z.core.$strip>], "type">>>;
|
|
37
|
-
sortOrder: z.
|
|
37
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
38
38
|
type: z.ZodLiteral<"criterion">;
|
|
39
39
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
40
40
|
title: z.ZodString;
|
|
41
41
|
longFormTitle: z.ZodString;
|
|
42
42
|
code: z.ZodString;
|
|
43
|
-
tags: z.
|
|
44
|
-
documentation: z.
|
|
43
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
44
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
45
45
|
label: z.ZodString;
|
|
46
46
|
text: z.ZodString;
|
|
47
47
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -56,16 +56,16 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
56
56
|
type: z.ZodLiteral<"link">;
|
|
57
57
|
url: z.ZodString;
|
|
58
58
|
}, z.core.$strip>], "type">>>;
|
|
59
|
-
sortOrder: z.
|
|
59
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
60
60
|
type: z.ZodLiteral<"task-group">;
|
|
61
|
-
description: z.
|
|
62
|
-
category: z.
|
|
61
|
+
description: z.ZodNullable<z.ZodString>;
|
|
62
|
+
category: z.ZodNullable<z.ZodString>;
|
|
63
63
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
64
64
|
title: z.ZodString;
|
|
65
65
|
longFormTitle: z.ZodString;
|
|
66
66
|
code: z.ZodString;
|
|
67
|
-
tags: z.
|
|
68
|
-
documentation: z.
|
|
67
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
68
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
69
69
|
label: z.ZodString;
|
|
70
70
|
text: z.ZodString;
|
|
71
71
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -80,13 +80,13 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
80
80
|
type: z.ZodLiteral<"link">;
|
|
81
81
|
url: z.ZodString;
|
|
82
82
|
}, z.core.$strip>], "type">>>;
|
|
83
|
-
sortOrder: z.
|
|
83
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
84
84
|
type: z.ZodLiteral<"task">;
|
|
85
|
-
description: z.
|
|
85
|
+
description: z.ZodNullable<z.ZodString>;
|
|
86
86
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
87
87
|
code: z.ZodString;
|
|
88
|
-
tags: z.
|
|
89
|
-
documentation: z.
|
|
88
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
89
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
90
90
|
label: z.ZodString;
|
|
91
91
|
text: z.ZodString;
|
|
92
92
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -101,7 +101,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
101
101
|
type: z.ZodLiteral<"link">;
|
|
102
102
|
url: z.ZodString;
|
|
103
103
|
}, z.core.$strip>], "type">>>;
|
|
104
|
-
sortOrder: z.
|
|
104
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
105
105
|
type: z.ZodLiteral<"task-item">;
|
|
106
106
|
definition: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
107
107
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -149,7 +149,7 @@ export declare const criterionSchema: z.ZodObject<{
|
|
|
149
149
|
}, z.core.$strip>>;
|
|
150
150
|
defaultValue: z.ZodOptional<z.ZodBoolean>;
|
|
151
151
|
}, z.core.$strip>], "type">;
|
|
152
|
-
description: z.
|
|
152
|
+
description: z.ZodNullable<z.ZodString>;
|
|
153
153
|
data: z.ZodIntersection<z.ZodType<{
|
|
154
154
|
text: string;
|
|
155
155
|
} & ({
|
|
@@ -3,8 +3,8 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
3
3
|
title: z.ZodString;
|
|
4
4
|
longFormTitle: z.ZodString;
|
|
5
5
|
code: z.ZodString;
|
|
6
|
-
tags: z.
|
|
7
|
-
documentation: z.
|
|
6
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
7
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
8
8
|
label: z.ZodString;
|
|
9
9
|
text: z.ZodString;
|
|
10
10
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -19,16 +19,16 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
19
19
|
type: z.ZodLiteral<"link">;
|
|
20
20
|
url: z.ZodString;
|
|
21
21
|
}, z.core.$strip>], "type">>>;
|
|
22
|
-
sortOrder: z.
|
|
22
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
23
23
|
type: z.ZodLiteral<"task-group">;
|
|
24
|
-
description: z.
|
|
25
|
-
category: z.
|
|
24
|
+
description: z.ZodNullable<z.ZodString>;
|
|
25
|
+
category: z.ZodNullable<z.ZodString>;
|
|
26
26
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
27
27
|
title: z.ZodString;
|
|
28
28
|
longFormTitle: z.ZodString;
|
|
29
29
|
code: z.ZodString;
|
|
30
|
-
tags: z.
|
|
31
|
-
documentation: z.
|
|
30
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
31
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
32
32
|
label: z.ZodString;
|
|
33
33
|
text: z.ZodString;
|
|
34
34
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -43,13 +43,13 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
43
43
|
type: z.ZodLiteral<"link">;
|
|
44
44
|
url: z.ZodString;
|
|
45
45
|
}, z.core.$strip>], "type">>>;
|
|
46
|
-
sortOrder: z.
|
|
46
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
47
47
|
type: z.ZodLiteral<"task">;
|
|
48
|
-
description: z.
|
|
48
|
+
description: z.ZodNullable<z.ZodString>;
|
|
49
49
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
50
50
|
code: z.ZodString;
|
|
51
|
-
tags: z.
|
|
52
|
-
documentation: z.
|
|
51
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
52
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
53
53
|
label: z.ZodString;
|
|
54
54
|
text: z.ZodString;
|
|
55
55
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -64,7 +64,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
64
64
|
type: z.ZodLiteral<"link">;
|
|
65
65
|
url: z.ZodString;
|
|
66
66
|
}, z.core.$strip>], "type">>>;
|
|
67
|
-
sortOrder: z.
|
|
67
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
68
68
|
type: z.ZodLiteral<"task-item">;
|
|
69
69
|
definition: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
70
70
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -112,7 +112,7 @@ export declare const taskGroupSchema: z.ZodObject<{
|
|
|
112
112
|
}, z.core.$strip>>;
|
|
113
113
|
defaultValue: z.ZodOptional<z.ZodBoolean>;
|
|
114
114
|
}, z.core.$strip>], "type">;
|
|
115
|
-
description: z.
|
|
115
|
+
description: z.ZodNullable<z.ZodString>;
|
|
116
116
|
data: z.ZodIntersection<z.ZodType<{
|
|
117
117
|
text: string;
|
|
118
118
|
} & ({
|
|
@@ -11,11 +11,11 @@ exports.taskGroupSchema = common_1.abstractElementSchema
|
|
|
11
11
|
.describe("Identifies the schema type as a task group"),
|
|
12
12
|
description: zod_1.z
|
|
13
13
|
.string()
|
|
14
|
-
.
|
|
14
|
+
.nullable()
|
|
15
15
|
.describe("Additional detailed description of the task group"),
|
|
16
16
|
category: zod_1.z
|
|
17
17
|
.string()
|
|
18
|
-
.
|
|
18
|
+
.nullable()
|
|
19
19
|
.describe("Category classification for the task group"),
|
|
20
20
|
items: zod_1.z
|
|
21
21
|
.array(zod_1.z.lazy(() => task_1.taskSchema))
|
|
@@ -161,8 +161,8 @@ export declare const taskItemOptionsSchema: z.ZodObject<{
|
|
|
161
161
|
}, z.core.$strip>;
|
|
162
162
|
export declare const taskItemSchema: z.ZodObject<{
|
|
163
163
|
code: z.ZodString;
|
|
164
|
-
tags: z.
|
|
165
|
-
documentation: z.
|
|
164
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
165
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
166
166
|
label: z.ZodString;
|
|
167
167
|
text: z.ZodString;
|
|
168
168
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -177,7 +177,7 @@ export declare const taskItemSchema: z.ZodObject<{
|
|
|
177
177
|
type: z.ZodLiteral<"link">;
|
|
178
178
|
url: z.ZodString;
|
|
179
179
|
}, z.core.$strip>], "type">>>;
|
|
180
|
-
sortOrder: z.
|
|
180
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
181
181
|
type: z.ZodLiteral<"task-item">;
|
|
182
182
|
definition: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
183
183
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -225,7 +225,7 @@ export declare const taskItemSchema: z.ZodObject<{
|
|
|
225
225
|
}, z.core.$strip>>;
|
|
226
226
|
defaultValue: z.ZodOptional<z.ZodBoolean>;
|
|
227
227
|
}, z.core.$strip>], "type">;
|
|
228
|
-
description: z.
|
|
228
|
+
description: z.ZodNullable<z.ZodString>;
|
|
229
229
|
data: z.ZodIntersection<z.ZodType<{
|
|
230
230
|
text: string;
|
|
231
231
|
} & ({
|
|
@@ -126,7 +126,7 @@ exports.taskItemSchema = common_1.abstractElementSchema
|
|
|
126
126
|
definition: exports.taskItemDefinitionSchema.describe("The definition that specifies the type and behavior of the task item"),
|
|
127
127
|
description: zod_1.z
|
|
128
128
|
.string()
|
|
129
|
-
.
|
|
129
|
+
.nullable()
|
|
130
130
|
.describe("Additional detailed description of the task item"),
|
|
131
131
|
data: exports.taskItemDataSchema
|
|
132
132
|
.describe("Data associated with the task item"),
|
|
@@ -10,8 +10,8 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
10
10
|
title: z.ZodString;
|
|
11
11
|
longFormTitle: z.ZodString;
|
|
12
12
|
code: z.ZodString;
|
|
13
|
-
tags: z.
|
|
14
|
-
documentation: z.
|
|
13
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
14
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
15
15
|
label: z.ZodString;
|
|
16
16
|
text: z.ZodString;
|
|
17
17
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -26,13 +26,13 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
26
26
|
type: z.ZodLiteral<"link">;
|
|
27
27
|
url: z.ZodString;
|
|
28
28
|
}, z.core.$strip>], "type">>>;
|
|
29
|
-
sortOrder: z.
|
|
29
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
30
30
|
type: z.ZodLiteral<"task">;
|
|
31
|
-
description: z.
|
|
31
|
+
description: z.ZodNullable<z.ZodString>;
|
|
32
32
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
33
33
|
code: z.ZodString;
|
|
34
|
-
tags: z.
|
|
35
|
-
documentation: z.
|
|
34
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
35
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
36
36
|
label: z.ZodString;
|
|
37
37
|
text: z.ZodString;
|
|
38
38
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -47,7 +47,7 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
47
47
|
type: z.ZodLiteral<"link">;
|
|
48
48
|
url: z.ZodString;
|
|
49
49
|
}, z.core.$strip>], "type">>>;
|
|
50
|
-
sortOrder: z.
|
|
50
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
51
51
|
type: z.ZodLiteral<"task-item">;
|
|
52
52
|
definition: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
53
53
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -95,7 +95,7 @@ export declare const taskSchema: z.ZodObject<{
|
|
|
95
95
|
}, z.core.$strip>>;
|
|
96
96
|
defaultValue: z.ZodOptional<z.ZodBoolean>;
|
|
97
97
|
}, z.core.$strip>], "type">;
|
|
98
|
-
description: z.
|
|
98
|
+
description: z.ZodNullable<z.ZodString>;
|
|
99
99
|
data: z.ZodIntersection<z.ZodType<{
|
|
100
100
|
text: string;
|
|
101
101
|
} & ({
|
package/dist/v1/schemas/task.js
CHANGED
|
@@ -25,7 +25,7 @@ exports.taskSchema = common_1.abstractElementSchema.extend({
|
|
|
25
25
|
type: zod_1.z.literal("task").describe("Identifies the schema type as a task"),
|
|
26
26
|
description: zod_1.z
|
|
27
27
|
.string()
|
|
28
|
-
.
|
|
28
|
+
.nullable()
|
|
29
29
|
.describe("Additional detailed description of the task"),
|
|
30
30
|
items: zod_1.z
|
|
31
31
|
.array(zod_1.z.lazy(() => task_item_1.taskItemSchema))
|
|
@@ -29,8 +29,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
29
29
|
title: z.ZodString;
|
|
30
30
|
longFormTitle: z.ZodString;
|
|
31
31
|
code: z.ZodString;
|
|
32
|
-
tags: z.
|
|
33
|
-
documentation: z.
|
|
32
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
33
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
34
34
|
label: z.ZodString;
|
|
35
35
|
text: z.ZodString;
|
|
36
36
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -45,9 +45,9 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
45
45
|
type: z.ZodLiteral<"link">;
|
|
46
46
|
url: z.ZodString;
|
|
47
47
|
}, z.core.$strip>], "type">>>;
|
|
48
|
-
sortOrder: z.
|
|
48
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
49
49
|
type: z.ZodLiteral<"theme">;
|
|
50
|
-
style: z.
|
|
50
|
+
style: z.ZodNullable<z.ZodObject<{
|
|
51
51
|
primaryColor: z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
52
52
|
red: z.ZodNumber;
|
|
53
53
|
green: z.ZodNumber;
|
|
@@ -63,8 +63,8 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
63
63
|
title: z.ZodString;
|
|
64
64
|
longFormTitle: z.ZodString;
|
|
65
65
|
code: z.ZodString;
|
|
66
|
-
tags: z.
|
|
67
|
-
documentation: z.
|
|
66
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
67
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
68
68
|
label: z.ZodString;
|
|
69
69
|
text: z.ZodString;
|
|
70
70
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -79,14 +79,14 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
79
79
|
type: z.ZodLiteral<"link">;
|
|
80
80
|
url: z.ZodString;
|
|
81
81
|
}, z.core.$strip>], "type">>>;
|
|
82
|
-
sortOrder: z.
|
|
82
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
83
83
|
type: z.ZodLiteral<"criterion">;
|
|
84
84
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
85
85
|
title: z.ZodString;
|
|
86
86
|
longFormTitle: z.ZodString;
|
|
87
87
|
code: z.ZodString;
|
|
88
|
-
tags: z.
|
|
89
|
-
documentation: z.
|
|
88
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
89
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
90
90
|
label: z.ZodString;
|
|
91
91
|
text: z.ZodString;
|
|
92
92
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -101,16 +101,16 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
101
101
|
type: z.ZodLiteral<"link">;
|
|
102
102
|
url: z.ZodString;
|
|
103
103
|
}, z.core.$strip>], "type">>>;
|
|
104
|
-
sortOrder: z.
|
|
104
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
105
105
|
type: z.ZodLiteral<"task-group">;
|
|
106
|
-
description: z.
|
|
107
|
-
category: z.
|
|
106
|
+
description: z.ZodNullable<z.ZodString>;
|
|
107
|
+
category: z.ZodNullable<z.ZodString>;
|
|
108
108
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
109
109
|
title: z.ZodString;
|
|
110
110
|
longFormTitle: z.ZodString;
|
|
111
111
|
code: z.ZodString;
|
|
112
|
-
tags: z.
|
|
113
|
-
documentation: z.
|
|
112
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
113
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
114
114
|
label: z.ZodString;
|
|
115
115
|
text: z.ZodString;
|
|
116
116
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -125,13 +125,13 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
125
125
|
type: z.ZodLiteral<"link">;
|
|
126
126
|
url: z.ZodString;
|
|
127
127
|
}, z.core.$strip>], "type">>>;
|
|
128
|
-
sortOrder: z.
|
|
128
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
129
129
|
type: z.ZodLiteral<"task">;
|
|
130
|
-
description: z.
|
|
130
|
+
description: z.ZodNullable<z.ZodString>;
|
|
131
131
|
items: z.ZodArray<z.ZodLazy<z.ZodObject<{
|
|
132
132
|
code: z.ZodString;
|
|
133
|
-
tags: z.
|
|
134
|
-
documentation: z.
|
|
133
|
+
tags: z.ZodNullable<z.ZodArray<z.ZodString>>;
|
|
134
|
+
documentation: z.ZodNullable<z.ZodArray<z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
135
135
|
label: z.ZodString;
|
|
136
136
|
text: z.ZodString;
|
|
137
137
|
type: z.ZodLiteral<"pdf">;
|
|
@@ -146,7 +146,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
146
146
|
type: z.ZodLiteral<"link">;
|
|
147
147
|
url: z.ZodString;
|
|
148
148
|
}, z.core.$strip>], "type">>>;
|
|
149
|
-
sortOrder: z.
|
|
149
|
+
sortOrder: z.ZodNullable<z.ZodNumber>;
|
|
150
150
|
type: z.ZodLiteral<"task-item">;
|
|
151
151
|
definition: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
152
152
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -194,7 +194,7 @@ export declare const themeSchema: z.ZodObject<{
|
|
|
194
194
|
}, z.core.$strip>>;
|
|
195
195
|
defaultValue: z.ZodOptional<z.ZodBoolean>;
|
|
196
196
|
}, z.core.$strip>], "type">;
|
|
197
|
-
description: z.
|
|
197
|
+
description: z.ZodNullable<z.ZodString>;
|
|
198
198
|
data: z.ZodIntersection<z.ZodType<{
|
|
199
199
|
text: string;
|
|
200
200
|
} & ({
|
package/dist/v1/schemas/theme.js
CHANGED
|
@@ -26,7 +26,7 @@ exports.themeSchema = common_1.abstractElementSchema
|
|
|
26
26
|
.extend({
|
|
27
27
|
type: zod_1.z.literal("theme").describe("Identifies the schema type as a theme"),
|
|
28
28
|
style: exports.themeStyleSchema
|
|
29
|
-
.
|
|
29
|
+
.nullable()
|
|
30
30
|
.describe("Visual styling configuration for the theme"),
|
|
31
31
|
items: zod_1.z.array(criterion_1.criterionSchema).describe("The criteria in this theme"),
|
|
32
32
|
data: common_1.elementDataSchema.describe("Data associated with the theme"),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openframe-org/criteria-set-protocol",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.4-alpha.0",
|
|
4
4
|
"description": "A protocol and tools for defining and working with criteria sets",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Andrés Angulo <aa@openframe.org>",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"dist/**/*"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@types/node": "^24.9
|
|
25
|
+
"@types/node": "^24.10.9",
|
|
26
26
|
"zod": "^4.1.12"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|