@openframe-org/criteria-set-protocol 1.0.35 → 1.0.37

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.
@@ -67,7 +67,7 @@ export type Criterion = BaseElement<'criterion'> & {
67
67
  items: TaskGroup[];
68
68
  };
69
69
  export type TaskGroup = BaseElement<'task-group'> & {
70
- category: string;
70
+ category?: string;
71
71
  items: Task[];
72
72
  };
73
73
  export type Task = BaseElement<'task'> & {
@@ -79,7 +79,6 @@ export type TaskItem<DefinitionType extends TaskItemDefinition = TaskItemDefinit
79
79
  annotation?: string;
80
80
  definition: DefinitionType;
81
81
  providedData?: Record<string, TaskItemValue>;
82
- calculatedData?: Record<string, any>;
83
82
  };
84
83
  export type SelectSingleType = {
85
84
  type: 'select-single';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openframe-org/criteria-set-protocol",
3
- "version": "1.0.35",
3
+ "version": "1.0.37",
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>",