@openframe-org/criteria-set-protocol 2.5.2 → 2.6.0-beta.1
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 +1261 -44
- package/dist/v1/schemas/common.js +36 -16
- package/dist/v1/schemas/criteria-tree.d.ts +6317 -325
- package/dist/v1/schemas/criterion.d.ts +1115 -62
- package/dist/v1/schemas/data-map.d.ts +1853 -73
- package/dist/v1/schemas/task-group.d.ts +744 -47
- package/dist/v1/schemas/task-group.js +1 -0
- package/dist/v1/schemas/task-item.d.ts +743 -31
- package/dist/v1/schemas/task-item.js +0 -1
- package/dist/v1/schemas/task.d.ts +743 -31
- package/dist/v1/schemas/theme.d.ts +1486 -77
- package/package.json +1 -1
|
@@ -126,7 +126,6 @@ exports.taskItemSchema = common_1.abstractElementSchema
|
|
|
126
126
|
.literal("task-item")
|
|
127
127
|
.describe("Identifies the schema type as a task item"),
|
|
128
128
|
data: exports.taskItemDataSchema
|
|
129
|
-
.optional()
|
|
130
129
|
.describe("Additional data associated with the task item"),
|
|
131
130
|
definition: exports.taskItemDefinitionSchema.describe("The definition that specifies the type and behavior of the task item"),
|
|
132
131
|
description: zod_1.z
|