@openframe-org/criteria-set-protocol 1.0.28 → 1.0.29

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
3
  import { CriteriaTree, CriteriaSetMetadata, TaskItemValue, Metadata } from './criteria';
4
- export type MetadataResponse<Parameters extends ParameterCombination = ParameterCombination> = Omit<Metadata, 'parameters'> & {
5
- parameters: Parameters;
6
- };
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>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openframe-org/criteria-set-protocol",
3
- "version": "1.0.28",
3
+ "version": "1.0.29",
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>",