@openframe-org/criteria-set-protocol 1.0.44 → 1.0.45
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.
|
@@ -14,7 +14,6 @@ export type Metadata = {
|
|
|
14
14
|
defaultLocale?: string;
|
|
15
15
|
parameters?: Record<string, any>;
|
|
16
16
|
result?: Record<string, any>;
|
|
17
|
-
definitions?: Record<string, any>;
|
|
18
17
|
};
|
|
19
18
|
export type CriteriaSetMetadata = {
|
|
20
19
|
id: string;
|
|
@@ -75,7 +74,6 @@ export type Task = BaseElement<'task'> & {
|
|
|
75
74
|
items: TaskItem[];
|
|
76
75
|
};
|
|
77
76
|
export type TaskItem = Omit<BaseElement<'task-item'>, 'title'> & {
|
|
78
|
-
annotation?: string;
|
|
79
77
|
definitions: TaskItemDefinition[];
|
|
80
78
|
providedData?: Record<string, TaskItemValue>;
|
|
81
79
|
};
|
|
@@ -99,7 +97,6 @@ export type PointOption = {
|
|
|
99
97
|
id?: string;
|
|
100
98
|
label: string;
|
|
101
99
|
value: string | number | boolean | null;
|
|
102
|
-
annotation?: string;
|
|
103
100
|
};
|
|
104
101
|
export type TaskItemScalarValue = string | number | boolean | null;
|
|
105
102
|
export type TaskItemValue = TaskItemScalarValue | Array<TaskItemScalarValue>;
|
package/package.json
CHANGED