@toa.io/extensions.origins 0.8.0-dev.2 → 0.8.0-dev.3
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/package.json +6 -6
- package/readme.md +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toa.io/extensions.origins",
|
|
3
|
-
"version": "0.8.0-dev.
|
|
3
|
+
"version": "0.8.0-dev.3",
|
|
4
4
|
"description": "Toa Origins",
|
|
5
5
|
"author": "temich <tema.gurtovoy@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/toa-io/toa#readme",
|
|
@@ -19,15 +19,15 @@
|
|
|
19
19
|
"test": "echo \"Error: run tests from root\" && exit 1"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@toa.io/core": "0.8.0-dev.
|
|
23
|
-
"@toa.io/generic": "0.8.0-dev.
|
|
24
|
-
"@toa.io/schemas": "0.8.0-dev.
|
|
25
|
-
"@toa.io/yaml": "0.7.2-dev.
|
|
22
|
+
"@toa.io/core": "0.8.0-dev.3",
|
|
23
|
+
"@toa.io/generic": "0.8.0-dev.3",
|
|
24
|
+
"@toa.io/schemas": "0.8.0-dev.3",
|
|
25
|
+
"@toa.io/yaml": "0.7.2-dev.4",
|
|
26
26
|
"comq": "0.6.0",
|
|
27
27
|
"node-fetch": "2.6.7"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/node-fetch": "2.6.2"
|
|
31
31
|
},
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "d72b4c2362e928dba56f4743cc956aa5486f82a4"
|
|
33
33
|
}
|
package/readme.md
CHANGED
|
@@ -36,7 +36,7 @@ origins:
|
|
|
36
36
|
|
|
37
37
|
## Manifest
|
|
38
38
|
|
|
39
|
-
`origins` manifest is an object
|
|
39
|
+
`origins` manifest is an object with origin names as keys an origin URLs as values.
|
|
40
40
|
Component's `origins` manifest can be overridden by the Context `origins` annotation.
|
|
41
41
|
|
|
42
42
|
### Sharded Connections
|
|
@@ -100,7 +100,7 @@ async function transition (input, object, context) {
|
|
|
100
100
|
}
|
|
101
101
|
```
|
|
102
102
|
|
|
103
|
-
#### `null`
|
|
103
|
+
#### `null` manifest
|
|
104
104
|
|
|
105
105
|
To enable the extension for a component that uses arbitrary URLs without any specific origins to
|
|
106
106
|
declare, the Origins manifest should be set to `null`.
|