@hatiolab/things-scene 3.3.38 → 3.3.40

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.3.38",
3
+ "version": "3.3.40",
4
4
  "description": "2D graphic library",
5
5
  "main": "src/index.js",
6
6
  "module": "things-scene.mjs",
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 {
@@ -1413,6 +1417,9 @@ type Mutation {
1413
1417
  attachContact(contactId: String!, id: String!): Employee!
1414
1418
  cancelInvitation(email: String!, reference: String!, type: String!): Boolean!
1415
1419
 
1420
+ """To clone a Board from existing Board"""
1421
+ cloneBoard(id: String!, patch: BoardPatch!): Board!
1422
+
1416
1423
  """To connect a connection"""
1417
1424
  connectConnection(name: String!): Connection!
1418
1425