@fmsim/fmsim 2.0.0-beta.27 → 2.0.0-beta.28
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/package.json +4 -4
- package/schema.graphql +39 -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.28",
|
|
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.28",
|
|
44
|
+
"@fmsim/machine": "^2.0.0-beta.28",
|
|
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": "d707acf52f4d81773f7594b83dddfc6ea465214f"
|
|
82
82
|
}
|
package/schema.graphql
CHANGED
|
@@ -2364,6 +2364,18 @@ input MenuPatch {
|
|
|
2364
2364
|
totalProp: String
|
|
2365
2365
|
}
|
|
2366
2366
|
|
|
2367
|
+
type MockEntities {
|
|
2368
|
+
ports: [String!]!
|
|
2369
|
+
stockers: [String!]!
|
|
2370
|
+
vehicles: MockVehicles!
|
|
2371
|
+
zones: [String!]!
|
|
2372
|
+
}
|
|
2373
|
+
|
|
2374
|
+
type MockVehicles {
|
|
2375
|
+
agvs: [String!]!
|
|
2376
|
+
ohts: [String!]!
|
|
2377
|
+
}
|
|
2378
|
+
|
|
2367
2379
|
type Mutation {
|
|
2368
2380
|
"""
|
|
2369
2381
|
Activates a user account in the current domain. Use this mutation to enable a user who was previously inactive.
|
|
@@ -4548,6 +4560,27 @@ input PlayGroupPatch {
|
|
|
4548
4560
|
name: String
|
|
4549
4561
|
}
|
|
4550
4562
|
|
|
4563
|
+
type PlaybackRecord {
|
|
4564
|
+
data: String!
|
|
4565
|
+
time: String!
|
|
4566
|
+
type: String!
|
|
4567
|
+
}
|
|
4568
|
+
|
|
4569
|
+
type PlaybackResponse {
|
|
4570
|
+
errorMessage: String
|
|
4571
|
+
playback: PlaybackResult
|
|
4572
|
+
status: Boolean!
|
|
4573
|
+
}
|
|
4574
|
+
|
|
4575
|
+
type PlaybackResult {
|
|
4576
|
+
scenarios: [PlaybackScenarioType!]!
|
|
4577
|
+
}
|
|
4578
|
+
|
|
4579
|
+
type PlaybackScenarioType {
|
|
4580
|
+
scenarioName: String!
|
|
4581
|
+
snapshots: [PlaybackRecord!]!
|
|
4582
|
+
}
|
|
4583
|
+
|
|
4551
4584
|
"""
|
|
4552
4585
|
A privilege that can be granted to roles to control access to resources.
|
|
4553
4586
|
"""
|
|
@@ -5613,6 +5646,12 @@ type Query {
|
|
|
5613
5646
|
sortings: [Sorting!]
|
|
5614
5647
|
): PlayGroupList!
|
|
5615
5648
|
|
|
5649
|
+
"""Playback 데이터 조회 (목업)"""
|
|
5650
|
+
playback(count: Int, endTime: String, includeSnapshot: Boolean = true, startTime: String!): PlaybackResponse!
|
|
5651
|
+
|
|
5652
|
+
"""목업 엔티티 목록 (보드 작화용)"""
|
|
5653
|
+
playbackEntities: MockEntities!
|
|
5654
|
+
|
|
5616
5655
|
"""To fetch a UserPreference"""
|
|
5617
5656
|
preference(id: String!): UserPreference
|
|
5618
5657
|
|