@hatiolab/things-scene 3.4.6 → 3.4.8

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/db.sqlite CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hatiolab/things-scene",
3
- "version": "3.4.6",
3
+ "version": "3.4.8",
4
4
  "description": "2D graphic library",
5
5
  "main": "src/index.js",
6
6
  "module": "things-scene.mjs",
package/schema.gql CHANGED
@@ -286,6 +286,7 @@ type Board {
286
286
  model: String
287
287
  name: String!
288
288
  playGroups: [PlayGroup!]
289
+ state: String
289
290
  thumbnail: String
290
291
  updatedAt: Timestamp
291
292
  updater: User
@@ -304,6 +305,7 @@ type BoardFavorite {
304
305
  model: String
305
306
  name: String!
306
307
  playGroups: [PlayGroup!]
308
+ state: String
307
309
  thumbnail: String
308
310
  updatedAt: Timestamp
309
311
  updater: User
@@ -1843,6 +1845,9 @@ type Mutation {
1843
1845
 
1844
1846
  """To refresh oauth2 access token"""
1845
1847
  refreshOauth2AccessToken(id: String!): Oauth2Client!
1848
+
1849
+ """To release Board information"""
1850
+ releaseBoard(id: String!): Board!
1846
1851
  renewApplicationAccessToken(id: String!, scope: String!): AccessToken!
1847
1852
 
1848
1853
  """To reset password to default"""