@openframe-org/criteria-set-protocol 1.3.0 → 1.3.2
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.
|
@@ -91,7 +91,12 @@ export type NumberType = AbstractDefinition<'number'> & {
|
|
|
91
91
|
maximum?: number;
|
|
92
92
|
step?: number;
|
|
93
93
|
};
|
|
94
|
-
export type BooleanType = AbstractDefinition<'boolean'
|
|
94
|
+
export type BooleanType = AbstractDefinition<'boolean'> & {
|
|
95
|
+
labels?: {
|
|
96
|
+
true?: string;
|
|
97
|
+
false?: string;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
95
100
|
export type PointOption = {
|
|
96
101
|
id?: string;
|
|
97
102
|
text: string;
|
|
@@ -6,10 +6,12 @@ export type CriteriaTreeResponse = CriteriaTree;
|
|
|
6
6
|
export type DataMapResponse = DataMap;
|
|
7
7
|
export type StringParam<ParamName extends string> = Record<ParamName, string>;
|
|
8
8
|
export type TaskItemValueMap = Record<string, TaskItemValue>;
|
|
9
|
-
export type
|
|
9
|
+
export type TreeAndDataRequestBody = {
|
|
10
10
|
locale?: string;
|
|
11
11
|
parameters?: ParameterCombination;
|
|
12
12
|
values?: TaskItemValueMap;
|
|
13
|
+
};
|
|
14
|
+
export type MatrixRequestBody = TreeAndDataRequestBody & {
|
|
13
15
|
additional?: any;
|
|
14
16
|
};
|
|
15
17
|
export type StreamMatrixResponse = {
|
package/package.json
CHANGED