@things-factory/operato-ecs 7.0.9 → 7.0.11

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.
Files changed (2) hide show
  1. package/package.json +27 -27
  2. package/schema.graphql +19 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-ecs",
3
- "version": "7.0.9",
3
+ "version": "7.0.11",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "dist-client/index.js",
6
6
  "things-factory": true,
@@ -64,34 +64,34 @@
64
64
  "@operato/scene-switch": "^7.0.0",
65
65
  "@operato/scene-table": "^7.0.0",
66
66
  "@operato/scene-timer": "^7.0.0",
67
- "@things-factory/api": "^7.0.6",
68
- "@things-factory/apptool-ui": "^7.0.6",
69
- "@things-factory/auth-ui": "^7.0.8",
70
- "@things-factory/board-service": "^7.0.7",
71
- "@things-factory/board-ui": "^7.0.9",
72
- "@things-factory/context-ui": "^7.0.6",
73
- "@things-factory/dashboard": "^7.0.9",
74
- "@things-factory/export-ui": "^7.0.6",
75
- "@things-factory/help": "^7.0.6",
76
- "@things-factory/i18n-base": "^7.0.6",
77
- "@things-factory/integration-influxdb": "^7.0.7",
78
- "@things-factory/integration-melsec": "^7.0.7",
79
- "@things-factory/integration-modbus": "^7.0.7",
80
- "@things-factory/integration-opc": "^7.0.7",
81
- "@things-factory/integration-ui": "^7.0.7",
82
- "@things-factory/lite-menu": "^7.0.9",
83
- "@things-factory/more-ui": "^7.0.6",
84
- "@things-factory/notification": "^7.0.7",
85
- "@things-factory/oauth2-client": "^7.0.7",
86
- "@things-factory/print-ui": "^7.0.6",
87
- "@things-factory/resource-ui": "^7.0.8",
88
- "@things-factory/setting-base": "^7.0.6",
89
- "@things-factory/setting-ui": "^7.0.7",
90
- "@things-factory/shell": "^7.0.6",
91
- "@things-factory/system": "^7.0.6"
67
+ "@things-factory/api": "^7.0.10",
68
+ "@things-factory/apptool-ui": "^7.0.10",
69
+ "@things-factory/auth-ui": "^7.0.11",
70
+ "@things-factory/board-service": "^7.0.10",
71
+ "@things-factory/board-ui": "^7.0.10",
72
+ "@things-factory/context-ui": "^7.0.10",
73
+ "@things-factory/dashboard": "^7.0.10",
74
+ "@things-factory/export-ui": "^7.0.10",
75
+ "@things-factory/help": "^7.0.10",
76
+ "@things-factory/i18n-base": "^7.0.10",
77
+ "@things-factory/integration-influxdb": "^7.0.10",
78
+ "@things-factory/integration-melsec": "^7.0.10",
79
+ "@things-factory/integration-modbus": "^7.0.10",
80
+ "@things-factory/integration-opc": "^7.0.10",
81
+ "@things-factory/integration-ui": "^7.0.10",
82
+ "@things-factory/lite-menu": "^7.0.10",
83
+ "@things-factory/more-ui": "^7.0.10",
84
+ "@things-factory/notification": "^7.0.10",
85
+ "@things-factory/oauth2-client": "^7.0.10",
86
+ "@things-factory/print-ui": "^7.0.10",
87
+ "@things-factory/resource-ui": "^7.0.11",
88
+ "@things-factory/setting-base": "^7.0.10",
89
+ "@things-factory/setting-ui": "^7.0.10",
90
+ "@things-factory/shell": "^7.0.10",
91
+ "@things-factory/system": "^7.0.10"
92
92
  },
93
93
  "devDependencies": {
94
94
  "@things-factory/builder": "^7.0.5"
95
95
  },
96
- "gitHead": "80b1ddb016835cb6d12f6ea484bca7e2e2ae2aa1"
96
+ "gitHead": "84db2fc2d8fee9af0b85f20f34d0ddb58e10b03f"
97
97
  }
package/schema.graphql CHANGED
@@ -2798,11 +2798,16 @@ input NewSetting {
2798
2798
 
2799
2799
  input NewStateRegister {
2800
2800
  description: String
2801
+ group: String
2801
2802
  name: String!
2803
+
2804
+ """스테이트가 숫자형인 경우 자릿수 정보"""
2805
+ place: String
2802
2806
  refBy: String
2803
2807
  state: Object
2804
2808
  ttl: Int
2805
2809
  type: String
2810
+ unit: String
2806
2811
  }
2807
2812
 
2808
2813
  input NewTerminology {
@@ -3937,15 +3942,24 @@ type StateRegister {
3937
3942
  creator: User
3938
3943
  description: String
3939
3944
  domain: Domain!
3945
+ group: String
3940
3946
  id: ID!
3941
3947
  name: String
3948
+
3949
+ """스테이트가 숫자형인 경우 자릿수 정보"""
3950
+ place: String
3942
3951
  refBy: String
3952
+
3953
+ """현재 상태값"""
3943
3954
  state: Object
3944
3955
  ttl: Int
3945
3956
  type: String
3957
+ unit: String
3946
3958
  updatedAt: DateTimeISO
3947
3959
  updater: User
3948
3960
  writer: User
3961
+
3962
+ """스테이트가 기록된 시간"""
3949
3963
  wroteAt: DateTimeISO
3950
3964
  }
3951
3965
 
@@ -3957,12 +3971,17 @@ type StateRegisterList {
3957
3971
  input StateRegisterPatch {
3958
3972
  cuFlag: String
3959
3973
  description: String
3974
+ group: String
3960
3975
  id: ID
3961
3976
  name: String
3977
+
3978
+ """스테이트가 숫자형인 경우 자릿수 정보"""
3979
+ place: String
3962
3980
  refBy: String
3963
3981
  state: Object
3964
3982
  ttl: Int
3965
3983
  type: String
3984
+ unit: String
3966
3985
  }
3967
3986
 
3968
3987
  type Step {