@things-factory/operato-ecs 6.1.135 → 6.1.137
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/package.json +6 -6
- package/schema.gql +4 -0
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@things-factory/operato-ecs",
|
3
|
-
"version": "6.1.
|
3
|
+
"version": "6.1.137",
|
4
4
|
"main": "dist-server/index.js",
|
5
5
|
"browser": "client/index.js",
|
6
6
|
"things-factory": true,
|
@@ -56,18 +56,18 @@
|
|
56
56
|
"@things-factory/api": "^6.1.129",
|
57
57
|
"@things-factory/apptool-ui": "^6.1.129",
|
58
58
|
"@things-factory/auth-ui": "^6.1.129",
|
59
|
-
"@things-factory/board-service": "^6.1.
|
59
|
+
"@things-factory/board-service": "^6.1.137",
|
60
60
|
"@things-factory/board-ui": "^6.1.130",
|
61
61
|
"@things-factory/context-ui": "^6.1.129",
|
62
|
-
"@things-factory/dashboard": "^6.1.
|
62
|
+
"@things-factory/dashboard": "^6.1.137",
|
63
63
|
"@things-factory/export-ui": "^6.1.129",
|
64
64
|
"@things-factory/help": "^6.1.129",
|
65
65
|
"@things-factory/i18n-base": "^6.1.129",
|
66
66
|
"@things-factory/integration-melsec": "^6.1.129",
|
67
67
|
"@things-factory/integration-modbus": "^6.1.129",
|
68
|
-
"@things-factory/integration-opc": "^6.1.
|
68
|
+
"@things-factory/integration-opc": "^6.1.136",
|
69
69
|
"@things-factory/integration-ui": "^6.1.129",
|
70
|
-
"@things-factory/lite-menu": "^6.1.
|
70
|
+
"@things-factory/lite-menu": "^6.1.137",
|
71
71
|
"@things-factory/more-ui": "^6.1.129",
|
72
72
|
"@things-factory/oauth2-client": "^6.1.129",
|
73
73
|
"@things-factory/print-ui": "^6.1.129",
|
@@ -81,5 +81,5 @@
|
|
81
81
|
"devDependencies": {
|
82
82
|
"@things-factory/builder": "^6.1.129"
|
83
83
|
},
|
84
|
-
"gitHead": "
|
84
|
+
"gitHead": "129a4cb955b260131c4931fddb7f12a5f38e2007"
|
85
85
|
}
|
package/schema.gql
CHANGED
@@ -219,6 +219,7 @@ type Board {
|
|
219
219
|
model: String
|
220
220
|
name: String!
|
221
221
|
playGroups: [PlayGroup!]
|
222
|
+
state: String
|
222
223
|
thumbnail: String
|
223
224
|
updatedAt: Timestamp
|
224
225
|
updater: User
|
@@ -1501,6 +1502,9 @@ type Mutation {
|
|
1501
1502
|
|
1502
1503
|
"""To refresh oauth2 access token"""
|
1503
1504
|
refreshOauth2AccessToken(id: String!): Oauth2Client!
|
1505
|
+
|
1506
|
+
"""To release Board information"""
|
1507
|
+
releaseBoard(id: String!): Board!
|
1504
1508
|
renewApplicationAccessToken(id: String!, scope: String!): AccessToken!
|
1505
1509
|
|
1506
1510
|
"""To reset password to default"""
|