@things-factory/operato-board 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,5 +1,17 @@
1
1
  var licenseKey = require('./license').Key
2
2
  module.exports = {
3
3
  accessTokenCookieKey: 'access_token.board',
4
- licenseKey: licenseKey
4
+ licenseKey: licenseKey,
5
+ scheduler: {
6
+ /* Name to be used for setting client's "application" properties when registering a schedule */
7
+ application: 'operato-board',
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
  }
@@ -1,6 +1,18 @@
1
1
  module.exports = {
2
2
  protocol: 'https',
3
3
  accessTokenCookieKey: 'access_token.board',
4
+ scheduler: {
5
+ /* Name to be used for setting client's "application" properties when registering a schedule */
6
+ application: 'operato-board',
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
  email: {
5
17
  host: 'smtp.office365.com', // your sender-email smtp host
6
18
  port: 587, // smtp server port
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-board",
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,
@@ -111,5 +111,5 @@
111
111
  "@things-factory/board-test": "^6.0.34",
112
112
  "@things-factory/builder": "^6.0.34"
113
113
  },
114
- "gitHead": "a460e5183f6e97e061be886d1efe9a114bd1316b"
114
+ "gitHead": "2f731189d998bc4a6fb99cd8f4851cc90ef7a748"
115
115
  }