@openframe-org/criteria-set-protocol 1.0.28 → 1.0.30
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.
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
import { Stream } from 'stream';
|
|
3
|
-
import { CriteriaTree,
|
|
4
|
-
export type MetadataResponse
|
|
5
|
-
parameters: Parameters;
|
|
6
|
-
};
|
|
3
|
+
import { CriteriaTree, Metadata, TaskItemValue } from './criteria';
|
|
4
|
+
export type MetadataResponse = Metadata;
|
|
7
5
|
export type CriteriaTreeResponse = CriteriaTree;
|
|
8
6
|
export type StringParam<ParamName extends string> = Record<ParamName, string>;
|
|
9
7
|
export type TaskItemValueMap = Record<string, TaskItemValue>;
|
|
@@ -17,5 +15,5 @@ export type StreamMatrixResponse = {
|
|
|
17
15
|
contentType: string;
|
|
18
16
|
stream: Stream;
|
|
19
17
|
};
|
|
20
|
-
export type CriteriaSetsAndVersionsMap = Record<string,
|
|
18
|
+
export type CriteriaSetsAndVersionsMap = Record<string, Metadata[]>;
|
|
21
19
|
export type ParameterCombination = Record<string, any>;
|
package/package.json
CHANGED