@openframe-org/criteria-set-protocol 2.5.0 → 3.0.0-alpha.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/v1/schemas/certification.d.ts +86 -44
- package/dist/v1/schemas/certification.js +29 -9
- package/dist/v1/schemas/common.d.ts +66 -51
- package/dist/v1/schemas/common.js +38 -35
- package/dist/v1/schemas/criteria-tree.d.ts +12413 -624
- package/dist/v1/schemas/criteria-tree.js +1 -1
- package/dist/v1/schemas/criterion.d.ts +2083 -116
- package/dist/v1/schemas/criterion.js +1 -1
- package/dist/v1/schemas/data-map.d.ts +3982 -75
- package/dist/v1/schemas/data-map.js +1 -1
- package/dist/v1/schemas/metadata.d.ts +6 -10
- package/dist/v1/schemas/metadata.js +4 -15
- package/dist/v1/schemas/request/matrix-request-body-schema.d.ts +5 -5
- package/dist/v1/schemas/request/matrix-request-body-schema.js +5 -5
- package/dist/v1/schemas/request/tree-and-data-request-body-schema.d.ts +4 -4
- package/dist/v1/schemas/request/tree-and-data-request-body-schema.js +4 -4
- package/dist/v1/schemas/response.d.ts +4 -7
- package/dist/v1/schemas/task-group.d.ts +2050 -90
- package/dist/v1/schemas/task-group.js +2 -2
- package/dist/v1/schemas/task-item.d.ts +4016 -124
- package/dist/v1/schemas/task-item.js +33 -35
- package/dist/v1/schemas/task.d.ts +2025 -72
- package/dist/v1/schemas/task.js +2 -2
- package/dist/v1/schemas/theme.d.ts +2113 -139
- package/dist/v1/schemas/theme.js +2 -2
- package/dist/v1/utils.js +4 -7
- package/package.json +1 -1
|
@@ -23,7 +23,7 @@ exports.criteriaTreeSchema = data_map_1.dataMapSchema
|
|
|
23
23
|
.describe("Themes, the top-level layer of the tree"),
|
|
24
24
|
certificationDefinitions: zod_1.z
|
|
25
25
|
.array(certification_1.certificationDefinitionSchema)
|
|
26
|
-
.
|
|
26
|
+
.nullable()
|
|
27
27
|
.describe("Definitions of the attainable certifications"),
|
|
28
28
|
options: criteria_set_1.criteriaSetOptionsSchema.describe("Configuration options for the criteria set display and behavior"),
|
|
29
29
|
});
|