@toa.io/norm 1.0.0-alpha.283 → 1.0.0-alpha.284

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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.0.0-alpha.284](https://github.com/toa-io/toa/compare/v1.0.0-alpha.283...v1.0.0-alpha.284) (2026-09-05)
7
+
8
+ ### Features
9
+
10
+ * an operation states what it is ([b5e2f66](https://github.com/toa-io/toa/commit/b5e2f66c8bf67924e2eaaaa11f283dfb4d810981))
11
+ * **cadence:** calls a component makes to itself, and calls it puts off ([8bbde5f](https://github.com/toa-io/toa/commit/8bbde5fc89e8e5549d5aa2bfcddb1beec0871565))
12
+
13
+
6
14
  # [1.0.0-alpha.283](https://github.com/toa-io/toa/compare/v1.0.0-alpha.282...v1.0.0-alpha.283) (2026-09-04)
7
15
 
8
16
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toa.io/norm",
3
- "version": "1.0.0-alpha.283",
3
+ "version": "1.0.0-alpha.284",
4
4
  "type": "module",
5
5
  "description": "Toa declarations normalization and validation",
6
6
  "author": "temich <tema.gurtovoy@gmail.com>",
@@ -21,11 +21,11 @@
21
21
  "test": "echo \"Error: run tests from root\" && exit 1"
22
22
  },
23
23
  "dependencies": {
24
- "@toa.io/core": "1.0.0-alpha.283",
24
+ "@toa.io/core": "1.0.0-alpha.284",
25
25
  "@toa.io/generic": "1.0.0-alpha.283",
26
26
  "@toa.io/schemas": "1.0.0-alpha.283",
27
27
  "fast-glob": "3.3.3",
28
28
  "js-yaml": "5.4.1"
29
29
  },
30
- "gitHead": "2f52b023bed0ccb2ecdb2b82fe59fbe38bf282e1"
30
+ "gitHead": "006755556879e91e8d68fa86753aa3b475bdf4bf"
31
31
  }
@@ -12,5 +12,6 @@ const SHORTCUTS = {
12
12
  state: '@toa.io/extensions.state',
13
13
  stash: '@toa.io/extensions.stash',
14
14
  storages: '@toa.io/extensions.storages',
15
+ cadence: '@toa.io/extensions.cadence',
15
16
  introspection: '@toa.io/extensions.introspection'
16
17
  }
@@ -148,6 +148,9 @@ properties:
148
148
  type: string
149
149
  bindings:
150
150
  $ref: "#/properties/bindings"
151
+ description:
152
+ # what the operation is, for whoever reads it: a generated type, an OPTIONS, a model
153
+ type: string
151
154
  input:
152
155
  $ref: https://json-schema.org/draft/2019-09/schema
153
156
  output:
package/src/shortcuts.js CHANGED
@@ -49,5 +49,6 @@ export const SHORTCUTS = {
49
49
  stash: '@toa.io/extensions.stash',
50
50
  storages: '@toa.io/extensions.storages',
51
51
  telemetry: '@toa.io/extensions.telemetry',
52
+ cadence: '@toa.io/extensions.cadence',
52
53
  introspection: '@toa.io/extensions.introspection'
53
54
  }
@@ -8,6 +8,7 @@ export type Operation = {
8
8
  type: operations.type
9
9
  scope?: operations.scope
10
10
  bindings?: string[]
11
+ description?: string
11
12
  input?: any
12
13
  output?: any
13
14
  error?: any