@things-factory/operato-ecs 7.0.56 → 7.0.57
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 +3 -3
- package/schema.graphql +32 -2
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.57",
|
4
4
|
"main": "dist-server/index.js",
|
5
5
|
"browser": "dist-client/index.js",
|
6
6
|
"things-factory": true,
|
@@ -74,7 +74,7 @@
|
|
74
74
|
"@things-factory/help": "^7.0.55",
|
75
75
|
"@things-factory/i18n-base": "^7.0.55",
|
76
76
|
"@things-factory/integration-email": "^7.0.56",
|
77
|
-
"@things-factory/integration-headless": "^7.0.
|
77
|
+
"@things-factory/integration-headless": "^7.0.57",
|
78
78
|
"@things-factory/integration-influxdb": "^7.0.56",
|
79
79
|
"@things-factory/integration-melsec": "^7.0.56",
|
80
80
|
"@things-factory/integration-modbus": "^7.0.56",
|
@@ -94,5 +94,5 @@
|
|
94
94
|
"devDependencies": {
|
95
95
|
"@things-factory/builder": "^7.0.49"
|
96
96
|
},
|
97
|
-
"gitHead": "
|
97
|
+
"gitHead": "f20b3e2985f67d55add75ee951eb197b419754dd"
|
98
98
|
}
|
package/schema.graphql
CHANGED
@@ -794,9 +794,10 @@ type EmployeeList {
|
|
794
794
|
input EmployeePatch {
|
795
795
|
active: Boolean
|
796
796
|
alias: String
|
797
|
+
contact: ObjectRefForContact
|
797
798
|
controlNo: String
|
798
799
|
cuFlag: String
|
799
|
-
department:
|
800
|
+
department: ObjectRefForDepartment
|
800
801
|
hiredOn: String
|
801
802
|
id: ID
|
802
803
|
jobPosition: String
|
@@ -2438,8 +2439,9 @@ input NewDepartment {
|
|
2438
2439
|
input NewEmployee {
|
2439
2440
|
active: Boolean
|
2440
2441
|
alias: String
|
2442
|
+
contact: ObjectRefForContact
|
2441
2443
|
controlNo: String!
|
2442
|
-
department:
|
2444
|
+
department: ObjectRefForDepartment
|
2443
2445
|
extension: String
|
2444
2446
|
hiredOn: String
|
2445
2447
|
jobPosition: String
|
@@ -3034,6 +3036,34 @@ input ObjectRefApprovalLineOwnerType {
|
|
3034
3036
|
name: String
|
3035
3037
|
}
|
3036
3038
|
|
3039
|
+
input ObjectRefForContact {
|
3040
|
+
address: String
|
3041
|
+
|
3042
|
+
"""Field description"""
|
3043
|
+
description: String
|
3044
|
+
email: EmailAddress
|
3045
|
+
|
3046
|
+
"""Field id"""
|
3047
|
+
id: ID!
|
3048
|
+
|
3049
|
+
"""Field name"""
|
3050
|
+
name: String
|
3051
|
+
phone: String
|
3052
|
+
}
|
3053
|
+
|
3054
|
+
input ObjectRefForDepartment {
|
3055
|
+
controlNo: String
|
3056
|
+
|
3057
|
+
"""Field description"""
|
3058
|
+
description: String
|
3059
|
+
|
3060
|
+
"""Field id"""
|
3061
|
+
id: ID!
|
3062
|
+
|
3063
|
+
"""Field name"""
|
3064
|
+
name: String
|
3065
|
+
}
|
3066
|
+
|
3037
3067
|
input ObjectRefForEmployee {
|
3038
3068
|
active: Boolean
|
3039
3069
|
alias: String
|