@things-factory/operato-board 4.3.1 → 4.4.0-alpha.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.
- package/config.development.js +12 -0
- package/config.production.js +5 -0
- package/dist-server/errors/index.js +5 -1
- package/dist-server/errors/index.js.map +1 -1
- package/dist-server/errors/license-error.js +5 -1
- package/dist-server/errors/license-error.js.map +1 -1
- package/dist-server/index.js +5 -1
- package/dist-server/index.js.map +1 -1
- package/dist-server/service/index.js +5 -1
- package/dist-server/service/index.js.map +1 -1
- package/package.json +65 -65
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
var licenseKey = require('./config/license').Key
|
|
2
|
+
module.exports = {
|
|
3
|
+
accessTokenCookieKey: 'access_token.board',
|
|
4
|
+
licenseKey: licenseKey,
|
|
5
|
+
storage: {
|
|
6
|
+
type: 's3',
|
|
7
|
+
accessKeyId: 'AKIAQAYF6R4N7RSOCEMD',
|
|
8
|
+
secretAccessKey: 'n14c8n42prH68oizEIrLbf50I5Edx3RZtU73jkrN',
|
|
9
|
+
bucketName: 'aidoop-r',
|
|
10
|
+
region: 'ap-northeast-2'
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../server/errors/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../server/errors/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,kDAA+B"}
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"license-error.js","sourceRoot":"","sources":["../../server/errors/license-error.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"license-error.js","sourceRoot":"","sources":["../../server/errors/license-error.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,qEAAsD;AAMtD,MAAa,YAAa,SAAQ,KAAK;IAQrC,YAAY,EAAE,SAAS,EAAE,MAAM,EAAwB;QACrD,KAAK,CAAC,SAAS,CAAC,CAAA;QAChB,IAAI,CAAC,IAAI,GAAG,eAAe,CAAA;QAC3B,IAAI,CAAC,SAAS,GAAG,SAAS,CAAA;QAC1B,IAAI,CAAC,MAAM,GAAG,MAAM,CAAA;IACtB,CAAC;IAZD,MAAM,KAAK,WAAW;QACpB,yBACK,WAAW,EACf;IACH,CAAC;CASF;AAdD,oCAcC"}
|
package/dist-server/index.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
package/dist-server/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../server/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../server/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uEAAoF;AAEpF,+CAA4B;AAC5B,gDAA6B;AAC7B,gDAA6B;AAC7B,4CAAyB;AAEzB,oBAAiB;AAEjB,OAAO,CAAC,EAAE,CAAC,wBAA+B,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,MAAM,EAAE,MAAM,EAAO,EAAE,EAAE;IACjF,OAAO,CAAC,GAAG,CAAC,2DAA2D,CAAC,CAAA;IACxE,IAAI;QACF,MAAM,oCAAiB,CAAC,KAAK,EAAE,CAAA;QAC/B,MAAM,iCAAc,CAAC,OAAO,EAAE,CAAA;KAC/B;IAAC,OAAO,EAAE,EAAE;QACX,oCAAiB,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,CAAC,CAAA;KACnC;IACD,OAAO,CAAC,GAAG,CAAC,yDAAyD,CAAC,CAAA;AACxE,CAAC,CAAC,CAAA"}
|
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../server/service/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../server/service/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,yBAAyB;AACzB,gEAA6C;AAC7C,8DAA2C;AAE3C,mCAAmC;AACnC,qDAAyG;AACzG,mDAAgG;AAChG,iDAA6F;AAEhF,QAAA,QAAQ,GAAG;IACtB,cAAc;IACd,GAAG,yBAAqB;IACxB,GAAG,wBAAoB;IACvB,GAAG,uBAAmB;CACvB,CAAA;AAEY,QAAA,MAAM,GAAG;IACpB,eAAe,EAAE;QACf,sBAAsB;QACtB,GAAG,0BAAsB;QACzB,GAAG,yBAAe;QAClB,GAAG,wBAAc;KAClB;CACF,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@things-factory/operato-board",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.4.0-alpha.1",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -42,73 +42,73 @@
|
|
|
42
42
|
"docker:push:cn": "docker image push hatiolab/operato-board:latest-cn && docker image push hatiolab/operato-board:$npm_package_version-cn"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@operato/attachment": "^0.4.
|
|
46
|
-
"@operato/help": "^0.4.
|
|
47
|
-
"@operato/scene-chartjs": "^0.1.
|
|
48
|
-
"@operato/scene-clock": "^0.1.
|
|
49
|
-
"@operato/scene-clone": "^0.1.
|
|
50
|
-
"@operato/scene-compass": "^0.1.
|
|
51
|
-
"@operato/scene-gauge": "^0.1.
|
|
52
|
-
"@operato/scene-grist": "^0.1.
|
|
53
|
-
"@operato/scene-half-roundrect": "^0.1.
|
|
54
|
-
"@operato/scene-i18n": "^0.1.
|
|
55
|
-
"@operato/scene-indoor-map": "^0.1.
|
|
56
|
-
"@operato/scene-integration": "^0.1.
|
|
57
|
-
"@operato/scene-legend": "^0.1.
|
|
58
|
-
"@operato/scene-news-ticker": "^0.1.
|
|
59
|
-
"@operato/scene-progressbar": "^0.1.
|
|
60
|
-
"@operato/scene-random": "^0.1.
|
|
61
|
-
"@operato/scene-switch": "^0.1.
|
|
62
|
-
"@operato/scene-tab": "^0.1.
|
|
63
|
-
"@operato/scene-table": "^0.1.
|
|
64
|
-
"@operato/scene-timer": "^0.1.
|
|
65
|
-
"@operato/scene-wheel-sorter": "^0.1.
|
|
66
|
-
"@things-factory/apptool-ui": "^4.
|
|
67
|
-
"@things-factory/attachment-ui": "^4.
|
|
68
|
-
"@things-factory/auth-ui": "^4.
|
|
69
|
-
"@things-factory/board-service": "^4.
|
|
70
|
-
"@things-factory/board-ui": "^4.
|
|
71
|
-
"@things-factory/context-ui": "^4.
|
|
72
|
-
"@things-factory/export-ui": "^4.
|
|
73
|
-
"@things-factory/fav-base": "^4.
|
|
74
|
-
"@things-factory/font-base": "^4.
|
|
75
|
-
"@things-factory/form-ui": "^4.
|
|
76
|
-
"@things-factory/help": "^4.
|
|
77
|
-
"@things-factory/i18n-base": "^4.
|
|
78
|
-
"@things-factory/import-ui": "^4.
|
|
79
|
-
"@things-factory/integration-notification": "^4.
|
|
80
|
-
"@things-factory/integration-ui": "^4.
|
|
81
|
-
"@things-factory/layout-ui": "^4.
|
|
82
|
-
"@things-factory/more-ui": "^4.
|
|
83
|
-
"@things-factory/notification": "^4.
|
|
84
|
-
"@things-factory/oauth2-client": "^4.
|
|
85
|
-
"@things-factory/offline-ui": "^4.
|
|
45
|
+
"@operato/attachment": "^0.4.6",
|
|
46
|
+
"@operato/help": "^0.4.6",
|
|
47
|
+
"@operato/scene-chartjs": "^0.1.6",
|
|
48
|
+
"@operato/scene-clock": "^0.1.6",
|
|
49
|
+
"@operato/scene-clone": "^0.1.6",
|
|
50
|
+
"@operato/scene-compass": "^0.1.6",
|
|
51
|
+
"@operato/scene-gauge": "^0.1.6",
|
|
52
|
+
"@operato/scene-grist": "^0.1.6",
|
|
53
|
+
"@operato/scene-half-roundrect": "^0.1.6",
|
|
54
|
+
"@operato/scene-i18n": "^0.1.6",
|
|
55
|
+
"@operato/scene-indoor-map": "^0.1.6",
|
|
56
|
+
"@operato/scene-integration": "^0.1.6",
|
|
57
|
+
"@operato/scene-legend": "^0.1.6",
|
|
58
|
+
"@operato/scene-news-ticker": "^0.1.6",
|
|
59
|
+
"@operato/scene-progressbar": "^0.1.6",
|
|
60
|
+
"@operato/scene-random": "^0.1.6",
|
|
61
|
+
"@operato/scene-switch": "^0.1.6",
|
|
62
|
+
"@operato/scene-tab": "^0.1.6",
|
|
63
|
+
"@operato/scene-table": "^0.1.6",
|
|
64
|
+
"@operato/scene-timer": "^0.1.6",
|
|
65
|
+
"@operato/scene-wheel-sorter": "^0.1.6",
|
|
66
|
+
"@things-factory/apptool-ui": "^4.4.0-alpha.1",
|
|
67
|
+
"@things-factory/attachment-ui": "^4.4.0-alpha.1",
|
|
68
|
+
"@things-factory/auth-ui": "^4.4.0-alpha.1",
|
|
69
|
+
"@things-factory/board-service": "^4.4.0-alpha.1",
|
|
70
|
+
"@things-factory/board-ui": "^4.4.0-alpha.1",
|
|
71
|
+
"@things-factory/context-ui": "^4.4.0-alpha.1",
|
|
72
|
+
"@things-factory/export-ui": "^4.4.0-alpha.1",
|
|
73
|
+
"@things-factory/fav-base": "^4.4.0-alpha.1",
|
|
74
|
+
"@things-factory/font-base": "^4.4.0-alpha.1",
|
|
75
|
+
"@things-factory/form-ui": "^4.4.0-alpha.1",
|
|
76
|
+
"@things-factory/help": "^4.4.0-alpha.1",
|
|
77
|
+
"@things-factory/i18n-base": "^4.4.0-alpha.1",
|
|
78
|
+
"@things-factory/import-ui": "^4.4.0-alpha.1",
|
|
79
|
+
"@things-factory/integration-notification": "^4.4.0-alpha.1",
|
|
80
|
+
"@things-factory/integration-ui": "^4.4.0-alpha.1",
|
|
81
|
+
"@things-factory/layout-ui": "^4.4.0-alpha.1",
|
|
82
|
+
"@things-factory/more-ui": "^4.4.0-alpha.1",
|
|
83
|
+
"@things-factory/notification": "^4.4.0-alpha.1",
|
|
84
|
+
"@things-factory/oauth2-client": "^4.4.0-alpha.1",
|
|
85
|
+
"@things-factory/offline-ui": "^4.4.0-alpha.1",
|
|
86
86
|
"@things-factory/operato-license-checker": "^3.0.4",
|
|
87
|
-
"@things-factory/pdf": "^4.
|
|
88
|
-
"@things-factory/print-service": "^4.
|
|
89
|
-
"@things-factory/print-ui": "^4.
|
|
90
|
-
"@things-factory/resource-ui": "^4.
|
|
91
|
-
"@things-factory/scene-baidu-map": "^4.
|
|
92
|
-
"@things-factory/scene-data-transform": "^4.
|
|
93
|
-
"@things-factory/scene-excel": "^4.
|
|
94
|
-
"@things-factory/scene-firebase": "^4.
|
|
95
|
-
"@things-factory/scene-form": "^4.
|
|
96
|
-
"@things-factory/scene-google-map": "^4.
|
|
97
|
-
"@things-factory/scene-graphql": "^4.
|
|
98
|
-
"@things-factory/scene-label": "^4.
|
|
99
|
-
"@things-factory/scene-marker": "^4.
|
|
100
|
-
"@things-factory/scene-mqtt": "^4.
|
|
101
|
-
"@things-factory/scene-restful": "^4.
|
|
102
|
-
"@things-factory/scene-urdf": "^4.
|
|
103
|
-
"@things-factory/scene-visualizer": "^4.
|
|
104
|
-
"@things-factory/screencast-ui": "^4.
|
|
105
|
-
"@things-factory/setting-ui": "^4.
|
|
106
|
-
"@things-factory/system-ui": "^4.
|
|
87
|
+
"@things-factory/pdf": "^4.4.0-alpha.1",
|
|
88
|
+
"@things-factory/print-service": "^4.4.0-alpha.1",
|
|
89
|
+
"@things-factory/print-ui": "^4.4.0-alpha.1",
|
|
90
|
+
"@things-factory/resource-ui": "^4.4.0-alpha.1",
|
|
91
|
+
"@things-factory/scene-baidu-map": "^4.4.0-alpha.1",
|
|
92
|
+
"@things-factory/scene-data-transform": "^4.4.0-alpha.1",
|
|
93
|
+
"@things-factory/scene-excel": "^4.4.0-alpha.1",
|
|
94
|
+
"@things-factory/scene-firebase": "^4.4.0-alpha.1",
|
|
95
|
+
"@things-factory/scene-form": "^4.4.0-alpha.1",
|
|
96
|
+
"@things-factory/scene-google-map": "^4.4.0-alpha.1",
|
|
97
|
+
"@things-factory/scene-graphql": "^4.4.0-alpha.1",
|
|
98
|
+
"@things-factory/scene-label": "^4.4.0-alpha.1",
|
|
99
|
+
"@things-factory/scene-marker": "^4.4.0-alpha.1",
|
|
100
|
+
"@things-factory/scene-mqtt": "^4.4.0-alpha.1",
|
|
101
|
+
"@things-factory/scene-restful": "^4.4.0-alpha.1",
|
|
102
|
+
"@things-factory/scene-urdf": "^4.4.0-alpha.1",
|
|
103
|
+
"@things-factory/scene-visualizer": "^4.4.0-alpha.1",
|
|
104
|
+
"@things-factory/screencast-ui": "^4.4.0-alpha.1",
|
|
105
|
+
"@things-factory/setting-ui": "^4.4.0-alpha.1",
|
|
106
|
+
"@things-factory/system-ui": "^4.4.0-alpha.1"
|
|
107
107
|
},
|
|
108
108
|
"devDependencies": {
|
|
109
|
-
"@things-factory/board-test": "^4.
|
|
110
|
-
"@things-factory/builder": "^4.
|
|
109
|
+
"@things-factory/board-test": "^4.4.0-alpha.1",
|
|
110
|
+
"@things-factory/builder": "^4.4.0-alpha.1"
|
|
111
111
|
},
|
|
112
112
|
"resolutions": {},
|
|
113
|
-
"gitHead": "
|
|
113
|
+
"gitHead": "f54ea8e94de1e8d2f7fa722d1fd7b2bc6f96ec75"
|
|
114
114
|
}
|