@fmsim/fmsim 2.0.0-beta.11 → 2.0.0-beta.13

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.11",
3
+ "version": "2.0.0-beta.13",
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.11",
44
- "@fmsim/machine": "^2.0.0-beta.10",
43
+ "@fmsim/layout-view": "^2.0.0-beta.13",
44
+ "@fmsim/machine": "^2.0.0-beta.12",
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",
@@ -71,12 +71,12 @@
71
71
  "pretendard": "^1.3.9"
72
72
  },
73
73
  "devDependencies": {
74
- "@fmsim/builder": "^2.0.0-beta.7",
74
+ "@fmsim/builder": "^2.0.0-beta.13",
75
75
  "copyfiles": "^2.4.1",
76
76
  "typescript": "^5.8.2"
77
77
  },
78
78
  "resolutions": {
79
79
  "lit": "^3.0.0"
80
80
  },
81
- "gitHead": "bac766182284faf3920bb00785a4a4c81f62cf40"
81
+ "gitHead": "05d5ee9272e2b8de51179c3470af381950f3b477"
82
82
  }
package/schema.graphql CHANGED
@@ -4798,8 +4798,14 @@ type Query {
4798
4798
  sortings: [Sorting!]
4799
4799
  ): AuthProviderList!
4800
4800
 
4801
- """Finds a single board by its ID."""
4802
- board(id: String!): Board!
4801
+ """
4802
+ Finds a single board by its ID. If cachedUpdatedAt matches, model is omitted.
4803
+ """
4804
+ board(
4805
+ """Client cache timestamp — if matches, model field is omitted"""
4806
+ cachedUpdatedAt: String
4807
+ id: String!
4808
+ ): Board!
4803
4809
 
4804
4810
  """Finds a single board by its name."""
4805
4811
  boardByName(name: String!): Board