@fmsim/fmsim 2.0.0-beta.34 → 2.0.0-beta.36

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fmsim/fmsim",
3
- "version": "2.0.0-beta.34",
3
+ "version": "2.0.0-beta.36",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -40,8 +40,8 @@
40
40
  "docker:push": "docker image push hatiolab/fmsim:latest && docker image push hatiolab/fmsim:$npm_package_version"
41
41
  },
42
42
  "dependencies": {
43
- "@fmsim/layout-view": "^2.0.0-beta.34",
44
- "@fmsim/machine": "^2.0.0-beta.33",
43
+ "@fmsim/layout-view": "^2.0.0-beta.36",
44
+ "@fmsim/machine": "^2.0.0-beta.36",
45
45
  "@operato/attachment": "^10.0.0-beta.1",
46
46
  "@operato/font": "^10.0.0-beta.1",
47
47
  "@operato/i18n": "^10.0.0-beta.1",
@@ -78,5 +78,5 @@
78
78
  "resolutions": {
79
79
  "lit": "^3.0.0"
80
80
  },
81
- "gitHead": "927695a219e0077066c86c6afa212381bccf431b"
81
+ "gitHead": "59cb4e5cccbfb7cd99cda6939791967c7a7d500d"
82
82
  }
package/schema.graphql CHANGED
@@ -2992,8 +2992,8 @@ type Mutation {
2992
2992
  releaseBoard(id: String!): Board!
2993
2993
  renewApplicationAccessToken(id: String!, scope: String!): AccessToken!
2994
2994
 
2995
- """Updates the sortOrder of a single board."""
2996
- reorderBoard(id: String!, sortOrder: Float!): Boolean!
2995
+ """Reorders a board between two adjacent boards by ID."""
2996
+ reorderBoard(id: String!, prevId: String, nextId: String): Boolean!
2997
2997
 
2998
2998
  """Sets the custom playback order for boards in a play group."""
2999
2999
  reorderPlayGroup(boardIds: [String!]!, id: String!): PlayGroup!