@things-factory/operato-ecs 7.0.11 → 7.0.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 +11 -11
- package/schema.graphql +85 -5
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@things-factory/operato-ecs",
|
3
|
-
"version": "7.0.
|
3
|
+
"version": "7.0.13",
|
4
4
|
"main": "dist-server/index.js",
|
5
5
|
"browser": "dist-client/index.js",
|
6
6
|
"things-factory": true,
|
@@ -67,21 +67,21 @@
|
|
67
67
|
"@things-factory/api": "^7.0.10",
|
68
68
|
"@things-factory/apptool-ui": "^7.0.10",
|
69
69
|
"@things-factory/auth-ui": "^7.0.11",
|
70
|
-
"@things-factory/board-service": "^7.0.
|
70
|
+
"@things-factory/board-service": "^7.0.13",
|
71
71
|
"@things-factory/board-ui": "^7.0.10",
|
72
72
|
"@things-factory/context-ui": "^7.0.10",
|
73
|
-
"@things-factory/dashboard": "^7.0.
|
73
|
+
"@things-factory/dashboard": "^7.0.13",
|
74
74
|
"@things-factory/export-ui": "^7.0.10",
|
75
75
|
"@things-factory/help": "^7.0.10",
|
76
76
|
"@things-factory/i18n-base": "^7.0.10",
|
77
|
-
"@things-factory/integration-influxdb": "^7.0.
|
78
|
-
"@things-factory/integration-melsec": "^7.0.
|
79
|
-
"@things-factory/integration-modbus": "^7.0.
|
80
|
-
"@things-factory/integration-opc": "^7.0.
|
81
|
-
"@things-factory/integration-ui": "^7.0.
|
82
|
-
"@things-factory/lite-menu": "^7.0.
|
77
|
+
"@things-factory/integration-influxdb": "^7.0.13",
|
78
|
+
"@things-factory/integration-melsec": "^7.0.13",
|
79
|
+
"@things-factory/integration-modbus": "^7.0.13",
|
80
|
+
"@things-factory/integration-opc": "^7.0.13",
|
81
|
+
"@things-factory/integration-ui": "^7.0.13",
|
82
|
+
"@things-factory/lite-menu": "^7.0.13",
|
83
83
|
"@things-factory/more-ui": "^7.0.10",
|
84
|
-
"@things-factory/notification": "^7.0.
|
84
|
+
"@things-factory/notification": "^7.0.13",
|
85
85
|
"@things-factory/oauth2-client": "^7.0.10",
|
86
86
|
"@things-factory/print-ui": "^7.0.10",
|
87
87
|
"@things-factory/resource-ui": "^7.0.11",
|
@@ -93,5 +93,5 @@
|
|
93
93
|
"devDependencies": {
|
94
94
|
"@things-factory/builder": "^7.0.5"
|
95
95
|
},
|
96
|
-
"gitHead": "
|
96
|
+
"gitHead": "2bcab979adf08e9561cb6ba2506afa4770b90bbc"
|
97
97
|
}
|
package/schema.graphql
CHANGED
@@ -2797,16 +2797,33 @@ input NewSetting {
|
|
2797
2797
|
}
|
2798
2798
|
|
2799
2799
|
input NewStateRegister {
|
2800
|
+
"""Description of the state register"""
|
2800
2801
|
description: String
|
2802
|
+
|
2803
|
+
"""Group name for the state register"""
|
2801
2804
|
group: String
|
2805
|
+
|
2806
|
+
"""Name of the state register"""
|
2802
2807
|
name: String!
|
2803
2808
|
|
2804
|
-
"""
|
2809
|
+
"""Number of decimal places if the state is a number type"""
|
2805
2810
|
place: String
|
2811
|
+
|
2812
|
+
"""
|
2813
|
+
Reference to an external entity or data, used as a flexible foreign key
|
2814
|
+
"""
|
2806
2815
|
refBy: String
|
2816
|
+
|
2817
|
+
"""Current state value"""
|
2807
2818
|
state: Object
|
2819
|
+
|
2820
|
+
"""Time to live for the state value in seconds"""
|
2808
2821
|
ttl: Int
|
2822
|
+
|
2823
|
+
"""Type of the state"""
|
2809
2824
|
type: String
|
2825
|
+
|
2826
|
+
"""Unit of the state value"""
|
2810
2827
|
unit: String
|
2811
2828
|
}
|
2812
2829
|
|
@@ -3938,49 +3955,112 @@ input Sorting {
|
|
3938
3955
|
|
3939
3956
|
"""Entity for StateRegister"""
|
3940
3957
|
type StateRegister {
|
3958
|
+
"""Creation time of the state register"""
|
3941
3959
|
createdAt: DateTimeISO
|
3960
|
+
|
3961
|
+
"""User who created the state register"""
|
3942
3962
|
creator: User
|
3963
|
+
|
3964
|
+
"""ID of the user who created the state register"""
|
3965
|
+
creatorId: String
|
3966
|
+
|
3967
|
+
"""Description of the state register"""
|
3943
3968
|
description: String
|
3969
|
+
|
3970
|
+
"""Associated domain for the state register"""
|
3944
3971
|
domain: Domain!
|
3972
|
+
|
3973
|
+
"""ID of the associated domain"""
|
3974
|
+
domainId: String!
|
3975
|
+
|
3976
|
+
"""Group name for the state register"""
|
3945
3977
|
group: String
|
3946
3978
|
id: ID!
|
3979
|
+
|
3980
|
+
"""Name of the state register"""
|
3947
3981
|
name: String
|
3948
3982
|
|
3949
|
-
"""
|
3983
|
+
"""Number of decimal places if the state is a number type"""
|
3950
3984
|
place: String
|
3985
|
+
|
3986
|
+
"""
|
3987
|
+
Reference to an external entity or data, used as a flexible foreign key
|
3988
|
+
"""
|
3951
3989
|
refBy: String
|
3952
3990
|
|
3953
|
-
"""
|
3991
|
+
"""Current state value"""
|
3954
3992
|
state: Object
|
3993
|
+
|
3994
|
+
"""Time to live for the state value in seconds"""
|
3955
3995
|
ttl: Int
|
3996
|
+
|
3997
|
+
"""Type of the state"""
|
3956
3998
|
type: String
|
3999
|
+
|
4000
|
+
"""Unit of the state value"""
|
3957
4001
|
unit: String
|
4002
|
+
|
4003
|
+
"""Last update time of the state register"""
|
3958
4004
|
updatedAt: DateTimeISO
|
4005
|
+
|
4006
|
+
"""User who last updated the state register"""
|
3959
4007
|
updater: User
|
4008
|
+
|
4009
|
+
"""ID of the user who last updated the state register"""
|
4010
|
+
updaterId: String
|
4011
|
+
|
4012
|
+
"""User who wrote the state"""
|
3960
4013
|
writer: User
|
3961
4014
|
|
3962
|
-
"""
|
4015
|
+
"""ID of the user who wrote the state"""
|
4016
|
+
writerId: String
|
4017
|
+
|
4018
|
+
"""Time when the state was recorded"""
|
3963
4019
|
wroteAt: DateTimeISO
|
3964
4020
|
}
|
3965
4021
|
|
3966
4022
|
type StateRegisterList {
|
4023
|
+
"""List of state registers"""
|
3967
4024
|
items: [StateRegister!]!
|
4025
|
+
|
4026
|
+
"""Total number of state registers"""
|
3968
4027
|
total: Int!
|
3969
4028
|
}
|
3970
4029
|
|
3971
4030
|
input StateRegisterPatch {
|
4031
|
+
"""Flag indicating create/update operations"""
|
3972
4032
|
cuFlag: String
|
4033
|
+
|
4034
|
+
"""Description of the state register"""
|
3973
4035
|
description: String
|
4036
|
+
|
4037
|
+
"""Group name for the state register"""
|
3974
4038
|
group: String
|
4039
|
+
|
4040
|
+
"""ID of the state register"""
|
3975
4041
|
id: ID
|
4042
|
+
|
4043
|
+
"""Name of the state register"""
|
3976
4044
|
name: String
|
3977
4045
|
|
3978
|
-
"""
|
4046
|
+
"""Number of decimal places if the state is a number type"""
|
3979
4047
|
place: String
|
4048
|
+
|
4049
|
+
"""
|
4050
|
+
Reference to an external entity or data, used as a flexible foreign key
|
4051
|
+
"""
|
3980
4052
|
refBy: String
|
4053
|
+
|
4054
|
+
"""Current state value"""
|
3981
4055
|
state: Object
|
4056
|
+
|
4057
|
+
"""Time to live for the state value in seconds"""
|
3982
4058
|
ttl: Int
|
4059
|
+
|
4060
|
+
"""Type of the state"""
|
3983
4061
|
type: String
|
4062
|
+
|
4063
|
+
"""Unit of the state value"""
|
3984
4064
|
unit: String
|
3985
4065
|
}
|
3986
4066
|
|