@fmsim/fmsim 2.0.0-beta.10 → 2.0.0-beta.12
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.
|
|
3
|
+
"version": "2.0.0-beta.12",
|
|
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.
|
|
44
|
-
"@fmsim/machine": "^2.0.0-beta.
|
|
43
|
+
"@fmsim/layout-view": "^2.0.0-beta.12",
|
|
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",
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
"resolutions": {
|
|
79
79
|
"lit": "^3.0.0"
|
|
80
80
|
},
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "1471d2752e75cace730894967d7f50717682c51c"
|
|
82
82
|
}
|
package/schema.graphql
CHANGED
|
@@ -4798,8 +4798,14 @@ type Query {
|
|
|
4798
4798
|
sortings: [Sorting!]
|
|
4799
4799
|
): AuthProviderList!
|
|
4800
4800
|
|
|
4801
|
-
"""
|
|
4802
|
-
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
|
|
@@ -4873,6 +4879,11 @@ type Query {
|
|
|
4873
4879
|
sortings: [Sorting!]
|
|
4874
4880
|
): BoardList!
|
|
4875
4881
|
|
|
4882
|
+
"""
|
|
4883
|
+
Retrieves boards that have been updated or soft-deleted since the given timestamp.
|
|
4884
|
+
"""
|
|
4885
|
+
boardsUpdatedSince(since: DateTimeISO!): [Board!]!
|
|
4886
|
+
|
|
4876
4887
|
"""
|
|
4877
4888
|
Checks if the system is configured to provide a default password for new users.
|
|
4878
4889
|
"""
|