@toa.io/boot 1.0.0-alpha.107 → 1.0.0-alpha.110

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/package.json +4 -4
  2. package/src/operation.js +11 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toa.io/boot",
3
- "version": "1.0.0-alpha.107",
3
+ "version": "1.0.0-alpha.110",
4
4
  "description": "Toa Boot",
5
5
  "author": "temich <tema.gurtovoy@gmail.com>",
6
6
  "homepage": "https://github.com/toa-io/toa#readme",
@@ -20,14 +20,14 @@
20
20
  "test": "echo \"Error: run tests from root\" && exit 1"
21
21
  },
22
22
  "dependencies": {
23
- "@toa.io/core": "1.0.0-alpha.107",
23
+ "@toa.io/core": "1.0.0-alpha.110",
24
24
  "@toa.io/filesystem": "1.0.0-alpha.93",
25
25
  "@toa.io/generic": "1.0.0-alpha.93",
26
- "@toa.io/norm": "1.0.0-alpha.107",
26
+ "@toa.io/norm": "1.0.0-alpha.110",
27
27
  "@toa.io/schemas": "1.0.0-alpha.93",
28
28
  "clone-deep": "4.0.1",
29
29
  "dotenv": "16.1.1",
30
30
  "openspan": "1.0.0-alpha.93"
31
31
  },
32
- "gitHead": "0c69afa09e2515ed76f88eaa9c9f5e5c97d8c5db"
32
+ "gitHead": "579e0243a9e783d9492c3616d6279f64862305c7"
33
33
  }
package/src/operation.js CHANGED
@@ -1,6 +1,14 @@
1
1
  'use strict'
2
2
 
3
- const { Transition, Observation, Assignment, Operation, Query, Effect } = require('@toa.io/core')
3
+ const {
4
+ Transition,
5
+ Observation,
6
+ Assignment,
7
+ Operation,
8
+ Query,
9
+ Effect,
10
+ Unmanaged
11
+ } = require('@toa.io/core')
4
12
 
5
13
  const boot = require('./index')
6
14
 
@@ -25,7 +33,8 @@ const TYPES = {
25
33
  observation: Observation,
26
34
  assignment: Assignment,
27
35
  computation: Operation,
28
- effect: Effect
36
+ effect: Effect,
37
+ unmanaged: Unmanaged
29
38
  }
30
39
 
31
40
  exports.operation = operation