@things-factory/operato-board 6.0.91 → 6.0.92

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.
@@ -0,0 +1,17 @@
1
+ var licenseKey = require('./config/license').Key
2
+ module.exports = {
3
+ accessTokenCookieKey: 'access_token.board',
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
+ }
17
+ }
@@ -0,0 +1,33 @@
1
+ var licenseKey = require('./config/license').Key
2
+
3
+ module.exports = {
4
+ licenseKey: licenseKey,
5
+ protocol: 'https',
6
+ accessTokenCookieKey: 'access_token.board',
7
+ email: {
8
+ host: 'smtp.office365.com', // your sender-email smtp host
9
+ port: 587, // smtp server port
10
+ secure: false, // true for 465, false for other ports
11
+ auth: {
12
+ user: 'your sender-email',
13
+ pass: 'your sender-email password' // generated ethereal password
14
+ },
15
+ secureConnection: false,
16
+ tls: {
17
+ ciphers: 'SSLv3'
18
+ }
19
+ },
20
+ logger: {
21
+ file: {
22
+ filename: 'logs/application-%DATE%.log',
23
+ datePattern: 'YYYY-MM-DD-HH',
24
+ zippedArchive: false,
25
+ maxSize: '20m',
26
+ maxFiles: '2d',
27
+ level: 'info'
28
+ },
29
+ console: {
30
+ level: 'silly'
31
+ }
32
+ }
33
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-board",
3
- "version": "6.0.91",
3
+ "version": "6.0.92",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -80,7 +80,7 @@
80
80
  "@operato/styles": "^1.0.0",
81
81
  "@operato/utils": "^1.0.1",
82
82
  "@things-factory/apptool-ui": "^6.0.91",
83
- "@things-factory/auth-ui": "^6.0.91",
83
+ "@things-factory/auth-ui": "^6.0.92",
84
84
  "@things-factory/board-service": "^6.0.91",
85
85
  "@things-factory/board-ui": "^6.0.91",
86
86
  "@things-factory/context-ui": "^6.0.91",
@@ -105,7 +105,7 @@
105
105
  "@things-factory/pdf": "^6.0.91",
106
106
  "@things-factory/print-service": "^6.0.91",
107
107
  "@things-factory/print-ui": "^6.0.91",
108
- "@things-factory/resource-ui": "^6.0.91",
108
+ "@things-factory/resource-ui": "^6.0.92",
109
109
  "@things-factory/scene-google-map": "^6.0.91",
110
110
  "@things-factory/setting-ui": "^6.0.91",
111
111
  "@things-factory/system-ui": "^6.0.91"
@@ -114,5 +114,5 @@
114
114
  "@things-factory/board-test": "^6.0.91",
115
115
  "@things-factory/builder": "^6.0.91"
116
116
  },
117
- "gitHead": "26a056b2169e65b870a179a615fefb444063eef9"
117
+ "gitHead": "6b20d32f29809cd6c99fd22296f809816a6c954d"
118
118
  }