@toa.io/extensions.origins 0.9.2 → 0.10.0-dev.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/package.json +6 -6
  2. package/readme.md +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toa.io/extensions.origins",
3
- "version": "0.9.2",
3
+ "version": "0.10.0-dev.1",
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": "1.0.1",
23
- "@toa.io/generic": "0.10.0",
24
- "@toa.io/schemas": "0.8.3",
25
- "@toa.io/yaml": "0.7.5",
22
+ "@toa.io/core": "1.1.0-dev.1",
23
+ "@toa.io/generic": "0.11.0-dev.1",
24
+ "@toa.io/schemas": "0.8.4-dev.1",
25
+ "@toa.io/yaml": "0.7.6-dev.1",
26
26
  "comq": "0.7.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": "25fdf15b413338d49b16ddefe17807e4e746f37e"
32
+ "gitHead": "ef65d2f42f13aac397c14f8c47eb026a191cda66"
33
33
  }
package/readme.md CHANGED
@@ -118,13 +118,13 @@ Uses [ComQ](https://github.com/toa-io/comq), thus, provides interface of `comq.I
118
118
  to `emit` and `request` methods.
119
119
 
120
120
  AMQP origins can have credential secrets deployed. Secret's name must
121
- follow `toa-origins-{namespace}-{component}-{origin}` and it must have keys `username`
121
+ follow `origins-{namespace}-{component}-{origin}` and it must have keys `username`
122
122
  and `password`.
123
123
 
124
124
  ### Example
125
125
 
126
126
  ```shell
127
127
  # deploy credentials to the current kubectl context
128
- $ toa conceal toa-origins-dummies-dummiy-messages username developer
129
- $ toa conceal toa-origins-dummies-dummiy-messages password secret
128
+ $ toa conceal origins-dummies-dummiy-messages username developer
129
+ $ toa conceal origins-dummies-dummiy-messages password secret
130
130
  ```