@things-factory/operato-board 6.1.113 → 6.1.114
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/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-client/viewparts/board-info.js +8 -2
- package/dist-client/viewparts/board-info.js.map +1 -1
- package/dist-client/viewparts/group-info.js +1 -1
- package/dist-client/viewparts/group-info.js.map +1 -1
- package/dist-client/viewparts/play-group-info.js +1 -1
- package/dist-client/viewparts/play-group-info.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- 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-board",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.114",
|
|
4
4
|
"main": "dist-server/index.js",
|
|
5
5
|
"browser": "dist-client/index.js",
|
|
6
6
|
"things-factory": true,
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
"@operato/utils": "^1.0.1",
|
|
86
86
|
"@things-factory/apptool-ui": "^6.1.112",
|
|
87
87
|
"@things-factory/auth-ui": "^6.1.112",
|
|
88
|
-
"@things-factory/board-service": "^6.1.
|
|
88
|
+
"@things-factory/board-service": "^6.1.114",
|
|
89
89
|
"@things-factory/board-ui": "^6.1.112",
|
|
90
90
|
"@things-factory/context-ui": "^6.1.112",
|
|
91
91
|
"@things-factory/export-ui": "^6.1.112",
|
|
@@ -97,12 +97,12 @@
|
|
|
97
97
|
"@things-factory/import-ui": "^6.1.112",
|
|
98
98
|
"@things-factory/integration-base": "^6.1.112",
|
|
99
99
|
"@things-factory/integration-msgraph": "^6.1.112",
|
|
100
|
-
"@things-factory/integration-notification": "^6.1.
|
|
100
|
+
"@things-factory/integration-notification": "^6.1.114",
|
|
101
101
|
"@things-factory/integration-openai": "^6.1.112",
|
|
102
102
|
"@things-factory/integration-ui": "^6.1.112",
|
|
103
103
|
"@things-factory/layout-ui": "^6.1.112",
|
|
104
104
|
"@things-factory/more-ui": "^6.1.112",
|
|
105
|
-
"@things-factory/notification": "^6.1.
|
|
105
|
+
"@things-factory/notification": "^6.1.114",
|
|
106
106
|
"@things-factory/oauth2-client": "^6.1.112",
|
|
107
107
|
"@things-factory/offline-ui": "^6.1.112",
|
|
108
108
|
"@things-factory/operato-license-checker": "^3.1.0",
|
|
@@ -116,8 +116,8 @@
|
|
|
116
116
|
"@things-factory/system-ui": "^6.1.112"
|
|
117
117
|
},
|
|
118
118
|
"devDependencies": {
|
|
119
|
-
"@things-factory/board-test": "^6.1.
|
|
119
|
+
"@things-factory/board-test": "^6.1.114",
|
|
120
120
|
"@things-factory/builder": "^6.1.112"
|
|
121
121
|
},
|
|
122
|
-
"gitHead": "
|
|
122
|
+
"gitHead": "c2270baafd1ccbda6e5886916f4d5fd6479f8da5"
|
|
123
123
|
}
|
package/schema.gql
CHANGED
|
@@ -278,6 +278,7 @@ input AttributeSetPatch {
|
|
|
278
278
|
type Board {
|
|
279
279
|
createdAt: Timestamp
|
|
280
280
|
creator: User
|
|
281
|
+
deletedAt: Timestamp
|
|
281
282
|
description: String
|
|
282
283
|
domain: Domain
|
|
283
284
|
group: Group
|
|
@@ -288,11 +289,13 @@ type Board {
|
|
|
288
289
|
thumbnail: String
|
|
289
290
|
updatedAt: Timestamp
|
|
290
291
|
updater: User
|
|
292
|
+
version: Float
|
|
291
293
|
}
|
|
292
294
|
|
|
293
295
|
type BoardFavorite {
|
|
294
296
|
createdAt: Timestamp
|
|
295
297
|
creator: User
|
|
298
|
+
deletedAt: Timestamp
|
|
296
299
|
description: String
|
|
297
300
|
domain: Domain
|
|
298
301
|
favoriteId: String
|
|
@@ -304,6 +307,7 @@ type BoardFavorite {
|
|
|
304
307
|
thumbnail: String
|
|
305
308
|
updatedAt: Timestamp
|
|
306
309
|
updater: User
|
|
310
|
+
version: Float
|
|
307
311
|
}
|
|
308
312
|
|
|
309
313
|
type BoardFavoriteList {
|