@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 +0 -0
- package/package.json +1 -1
- package/schema.gql +4 -0
- package/things-scene-ie.js +1 -1
- package/things-scene-min.js +1 -1
- package/things-scene.mjs +1 -1
package/db.sqlite
CHANGED
|
Binary file
|
package/package.json
CHANGED
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
|
|