@hatiolab/things-scene 3.4.14 → 3.4.16

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.14",
3
+ "version": "3.4.16",
4
4
  "description": "2D graphic library",
5
5
  "main": "src/index.js",
6
6
  "module": "things-scene.mjs",
package/schema.gql CHANGED
@@ -3256,6 +3256,9 @@ type Query {
3256
3256
  """To fetch a PlayGroup"""
3257
3257
  playGroup(id: String!): PlayGroup
3258
3258
 
3259
+ """To fetch a PlayGroup by name"""
3260
+ playGroupByName(name: String!): PlayGroup
3261
+
3259
3262
  """To fetch multiple PlayGroups"""
3260
3263
  playGroups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
3261
3264
 
@@ -3420,6 +3423,7 @@ type ScenarioInstance {
3420
3423
  scenarioName: String
3421
3424
  state: String
3422
3425
  timestamp: Timestamp
3426
+ user: User
3423
3427
  variables: Object
3424
3428
  }
3425
3429