@fmsim/fmsim 2.0.0-beta.80 → 2.0.0-beta.82
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/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/service/playback/index.js +50 -0
- package/dist-server/service/playback/index.js.map +1 -1
- package/dist-server/service/playback/mock-data.js +127 -0
- package/dist-server/service/playback/mock-data.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/schema.graphql +24 -0
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.82",
|
|
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.82",
|
|
44
|
+
"@fmsim/machine": "^2.0.0-beta.82",
|
|
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": "3c774890bc55dd19594c17199337bdfe93b7ef5a"
|
|
82
82
|
}
|
package/schema.graphql
CHANGED
|
@@ -672,6 +672,11 @@ type Board {
|
|
|
672
672
|
"""A base64 encoded thumbnail image of the board."""
|
|
673
673
|
thumbnail: String
|
|
674
674
|
|
|
675
|
+
"""
|
|
676
|
+
Timestamp of the last thumbnail generation. Separate lifecycle from updatedAt; only changes when the thumbnail image itself is regenerated.
|
|
677
|
+
"""
|
|
678
|
+
thumbnailUpdatedAt: DateTimeISO
|
|
679
|
+
|
|
675
680
|
"""The type of the board, can be 'main', 'sub', or 'popup'."""
|
|
676
681
|
type: String
|
|
677
682
|
|
|
@@ -733,6 +738,11 @@ type BoardFavorite {
|
|
|
733
738
|
"""A base64 encoded thumbnail image of the board."""
|
|
734
739
|
thumbnail: String
|
|
735
740
|
|
|
741
|
+
"""
|
|
742
|
+
Timestamp of the last thumbnail generation. Separate lifecycle from updatedAt; only changes when the thumbnail image itself is regenerated.
|
|
743
|
+
"""
|
|
744
|
+
thumbnailUpdatedAt: DateTimeISO
|
|
745
|
+
|
|
736
746
|
"""The type of the board, can be 'main', 'sub', or 'popup'."""
|
|
737
747
|
type: String
|
|
738
748
|
|
|
@@ -916,6 +926,17 @@ input BoardTemplatePatch {
|
|
|
916
926
|
visibility: String
|
|
917
927
|
}
|
|
918
928
|
|
|
929
|
+
type CarrierLocation {
|
|
930
|
+
machineName: String!
|
|
931
|
+
time: String!
|
|
932
|
+
unitName: String!
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
type CarrierLocationHistoryResponse {
|
|
936
|
+
carrierLocHistory: [CarrierLocation!]!
|
|
937
|
+
errorMessage: String
|
|
938
|
+
}
|
|
939
|
+
|
|
919
940
|
"""Entity for CommonCode"""
|
|
920
941
|
type CommonCode {
|
|
921
942
|
createdAt: DateTimeISO
|
|
@@ -4973,6 +4994,9 @@ type Query {
|
|
|
4973
4994
|
"""
|
|
4974
4995
|
boardsUpdatedSince(since: DateTimeISO!): [Board!]!
|
|
4975
4996
|
|
|
4997
|
+
"""Carrier 위치 이력 조회 (목업). 영구추적 fallback 용."""
|
|
4998
|
+
carrierLocationHistory(carrierName: String!, endTime: String!, startTime: String!): CarrierLocationHistoryResponse!
|
|
4999
|
+
|
|
4976
5000
|
"""
|
|
4977
5001
|
Checks if the system is configured to provide a default password for new users.
|
|
4978
5002
|
"""
|