@things-factory/operato-ecs 6.0.34 → 6.0.35

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.
@@ -1,4 +1,16 @@
1
1
  module.exports = {
2
2
  subdomain: 'system',
3
- accessTokenCookieKey: 'access_token.ecs'
3
+ accessTokenCookieKey: 'access_token.ecs',
4
+ scheduler: {
5
+ /* Name to be used for setting client's "application" properties when registering a schedule */
6
+ application: 'operato-ecs',
7
+ /* Base endpoint to be used for setting "callback" properties when registering a schedule */
8
+ callbackBase: 'http://localhost:3000',
9
+ /*
10
+ Scheduler service endpoint
11
+ caution) endpoint for "localhost" has some problem.
12
+ https://github.com/node-fetch/node-fetch/issues/1624
13
+ */
14
+ endpoint: 'http://127.0.0.1:9902'
15
+ }
4
16
  }
@@ -2,6 +2,18 @@ module.exports = {
2
2
  protocol: 'http',
3
3
  subdomain: 'system',
4
4
  accessTokenCookieKey: 'access_token.ecs',
5
+ scheduler: {
6
+ /* Name to be used for setting client's "application" properties when registering a schedule */
7
+ application: 'operato-ecs',
8
+ /* Base endpoint to be used for setting "callback" properties when registering a schedule */
9
+ callbackBase: 'http://localhost:3000',
10
+ /*
11
+ Scheduler service endpoint
12
+ caution) endpoint for "localhost" has some problem.
13
+ https://github.com/node-fetch/node-fetch/issues/1624
14
+ */
15
+ endpoint: 'http://127.0.0.1:9902'
16
+ },
5
17
  email: {
6
18
  host: 'smtp.office365.com', // your sender-email smtp host
7
19
  port: 587, // smtp server port
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-ecs",
3
- "version": "6.0.34",
3
+ "version": "6.0.35",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -79,5 +79,5 @@
79
79
  "devDependencies": {
80
80
  "@things-factory/builder": "^6.0.34"
81
81
  },
82
- "gitHead": "a460e5183f6e97e061be886d1efe9a114bd1316b"
82
+ "gitHead": "2f731189d998bc4a6fb99cd8f4851cc90ef7a748"
83
83
  }