@openframe-org/criteria-set-protocol 2.7.0 → 2.7.1

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.
Files changed (2) hide show
  1. package/README.md +26 -26
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -23,32 +23,32 @@ The library contains the types defined in the protocol v1 specification, and a s
23
23
 
24
24
  ##### Types
25
25
 
26
- | Type | Remarks |
27
- | -------------------------- | --------------------------------------------------- |
28
- | **Metadata types** | |
29
- | `Metadata` | |
30
- | `Theme` | |
31
- | `ThemeStyle` | |
32
- | `Color` | |
33
- | **Task tree types** | |
34
- | `CriteriaTree` | |
35
- | `Theme` | |
36
- | `Criterion` | |
37
- | `TaskGroup` | |
38
- | `Task` | |
39
- | `TaskItem` | |
40
- | **TaskItem value types** | |
41
- | `SelectSingleType` | |
42
- | `SelectMultipleType` | |
43
- | `NumberType` | |
44
- | `BooleanType` | |
45
- | `PointOption` | Used by `SelectSingleType` and `SelectMultipleType` |
46
- | `TaskItemValue` | The raw value of a TaskItem, which can be an array |
47
- | `TaskItemScalarValue` | The raw value of a TaskItem |
48
- | **Express types** | |
49
- | `MetadataResponse` | Metadata endpoint response body |
50
- | `TreeAndMatrixRequestBody` | Request body for the matrix streaming endpoints |
51
- | `StreamMatrixResponse` | Matrix streaming endpoints response body |
26
+ | Type | Remarks |
27
+ |-----------------------------|-----------------------------------------------------|
28
+ | **Metadata types** | |
29
+ | `Metadata` | |
30
+ | `Theme` | |
31
+ | `ThemeStyle` | |
32
+ | `Color` | |
33
+ | **Task tree types** | |
34
+ | `CriteriaTree` | |
35
+ | `Theme` | |
36
+ | `Criterion` | |
37
+ | `TaskGroup` | |
38
+ | `Task` | |
39
+ | `TaskItem` | |
40
+ | **TaskItem value types** | |
41
+ | `SelectSingleType` | |
42
+ | `SelectMultipleType` | |
43
+ | `NumberType` | |
44
+ | `BooleanType` | |
45
+ | `PointOption` | Used by `SelectSingleType` and `SelectMultipleType` |
46
+ | `TaskItemValueReference` | The raw value reference of a TaskItem |
47
+ | `TaskItemValueReferenceMap` | A map of task item value references |
48
+ | **Express types** | |
49
+ | `MetadataResponse` | Metadata endpoint response body |
50
+ | `TreeAndMatrixRequestBody` | Request body for the matrix streaming endpoints |
51
+ | `StreamMatrixResponse` | Matrix streaming endpoints response body |
52
52
 
53
53
  ##### Schemas
54
54
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openframe-org/criteria-set-protocol",
3
- "version": "2.7.0",
3
+ "version": "2.7.1",
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>",
@@ -15,14 +15,14 @@
15
15
  "dependency-test": "madge --circular --extensions ts ./"
16
16
  },
17
17
  "engines": {
18
- "node": ">=22",
18
+ "node": ">=24",
19
19
  "npm": ">=10"
20
20
  },
21
21
  "files": [
22
22
  "dist/**/*"
23
23
  ],
24
24
  "dependencies": {
25
- "@types/node": "^22.15.21",
25
+ "@types/node": "^24.1.0",
26
26
  "zod": "^4.1.12"
27
27
  },
28
28
  "devDependencies": {