@fmsim/fmsim 1.0.87 → 1.0.88

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": "1.0.87",
3
+ "version": "1.0.88",
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": "^1.0.87",
44
- "@fmsim/machine": "^1.0.87",
43
+ "@fmsim/layout-view": "^1.0.88",
44
+ "@fmsim/machine": "^1.0.88",
45
45
  "@operato/attachment": "^1.0.1",
46
46
  "@operato/font": "^1.0.1",
47
47
  "@operato/i18n": "^1.0.0",
@@ -77,5 +77,5 @@
77
77
  "resolutions": {
78
78
  "lit": "^3.0.0"
79
79
  },
80
- "gitHead": "7e31b28df73b15ade27ee6d8c97ba94d7dc4eff4"
80
+ "gitHead": "e4234cd84ceffcc7a843099ec2c36760fcdff566"
81
81
  }
package/schema.graphql CHANGED
@@ -3123,8 +3123,14 @@ type Query {
3123
3123
  """To fetch multiple AuthProviders"""
3124
3124
  authProviders(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): AuthProviderList!
3125
3125
 
3126
- """To fetch a board"""
3127
- board(id: String!): Board!
3126
+ """
3127
+ Finds a single board by its ID. If cachedUpdatedAt matches, model is omitted.
3128
+ """
3129
+ board(
3130
+ """Client cache timestamp — if matches, model field is omitted"""
3131
+ cachedUpdatedAt: String
3132
+ id: String!
3133
+ ): Board!
3128
3134
 
3129
3135
  """To fetch a Board Model by name"""
3130
3136
  boardByName(name: String!): Board