@things-factory/operato-ecs 6.1.90 → 6.1.92
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 +24 -24
- package/schema.gql +92 -0
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@things-factory/operato-ecs",
|
3
|
-
"version": "6.1.
|
3
|
+
"version": "6.1.92",
|
4
4
|
"main": "dist-server/index.js",
|
5
5
|
"browser": "client/index.js",
|
6
6
|
"things-factory": true,
|
@@ -53,32 +53,32 @@
|
|
53
53
|
"@operato/scene-switch": "^1.0.0",
|
54
54
|
"@operato/scene-table": "^1.0.0",
|
55
55
|
"@operato/scene-timer": "^1.0.0",
|
56
|
-
"@things-factory/api": "^6.1.
|
57
|
-
"@things-factory/apptool-ui": "^6.1.
|
58
|
-
"@things-factory/auth-ui": "^6.1.
|
59
|
-
"@things-factory/board-service": "^6.1.
|
60
|
-
"@things-factory/board-ui": "^6.1.
|
61
|
-
"@things-factory/context-ui": "^6.1.
|
62
|
-
"@things-factory/dashboard": "^6.1.
|
63
|
-
"@things-factory/export-ui": "^6.1.
|
64
|
-
"@things-factory/help": "^6.1.
|
65
|
-
"@things-factory/i18n-base": "^6.1.
|
66
|
-
"@things-factory/integration-melsec": "^6.1.
|
67
|
-
"@things-factory/integration-modbus": "^6.1.
|
68
|
-
"@things-factory/integration-ui": "^6.1.
|
69
|
-
"@things-factory/lite-menu": "^6.1.
|
70
|
-
"@things-factory/more-ui": "^6.1.
|
71
|
-
"@things-factory/oauth2-client": "^6.1.
|
72
|
-
"@things-factory/print-ui": "^6.1.
|
73
|
-
"@things-factory/resource-ui": "^6.1.
|
74
|
-
"@things-factory/setting-base": "^6.1.
|
75
|
-
"@things-factory/setting-ui": "^6.1.
|
76
|
-
"@things-factory/shell": "^6.1.
|
77
|
-
"@things-factory/system-ui": "^6.1.
|
56
|
+
"@things-factory/api": "^6.1.92",
|
57
|
+
"@things-factory/apptool-ui": "^6.1.92",
|
58
|
+
"@things-factory/auth-ui": "^6.1.92",
|
59
|
+
"@things-factory/board-service": "^6.1.92",
|
60
|
+
"@things-factory/board-ui": "^6.1.92",
|
61
|
+
"@things-factory/context-ui": "^6.1.92",
|
62
|
+
"@things-factory/dashboard": "^6.1.92",
|
63
|
+
"@things-factory/export-ui": "^6.1.92",
|
64
|
+
"@things-factory/help": "^6.1.92",
|
65
|
+
"@things-factory/i18n-base": "^6.1.92",
|
66
|
+
"@things-factory/integration-melsec": "^6.1.92",
|
67
|
+
"@things-factory/integration-modbus": "^6.1.92",
|
68
|
+
"@things-factory/integration-ui": "^6.1.92",
|
69
|
+
"@things-factory/lite-menu": "^6.1.92",
|
70
|
+
"@things-factory/more-ui": "^6.1.92",
|
71
|
+
"@things-factory/oauth2-client": "^6.1.92",
|
72
|
+
"@things-factory/print-ui": "^6.1.92",
|
73
|
+
"@things-factory/resource-ui": "^6.1.92",
|
74
|
+
"@things-factory/setting-base": "^6.1.92",
|
75
|
+
"@things-factory/setting-ui": "^6.1.92",
|
76
|
+
"@things-factory/shell": "^6.1.92",
|
77
|
+
"@things-factory/system-ui": "^6.1.92",
|
78
78
|
"jsmodbus": "^4.0.2"
|
79
79
|
},
|
80
80
|
"devDependencies": {
|
81
81
|
"@things-factory/builder": "^6.1.90"
|
82
82
|
},
|
83
|
-
"gitHead": "
|
83
|
+
"gitHead": "f4e4f96d90693cfb0255aeeaeb24cdbda7fed921"
|
84
84
|
}
|
package/schema.gql
CHANGED
@@ -1226,6 +1226,9 @@ type Mutation {
|
|
1226
1226
|
"""To create new PlayGroup"""
|
1227
1227
|
createPlayGroup(playGroup: NewPlayGroup!): PlayGroup!
|
1228
1228
|
|
1229
|
+
"""To create new PrinterDevice"""
|
1230
|
+
createPrinterDevice(printerDevice: NewPrinterDevice!): PrinterDevice!
|
1231
|
+
|
1229
1232
|
"""To create new privilege"""
|
1230
1233
|
createPrivilege(privilege: NewPrivilege!): Privilege!
|
1231
1234
|
|
@@ -1370,6 +1373,12 @@ type Mutation {
|
|
1370
1373
|
"""To delete PlayGroup"""
|
1371
1374
|
deletePlayGroup(id: String!): Boolean!
|
1372
1375
|
|
1376
|
+
"""To delete PrinterDevice"""
|
1377
|
+
deletePrinterDevice(id: String!): Boolean!
|
1378
|
+
|
1379
|
+
"""To delete multiple printerDevices"""
|
1380
|
+
deletePrinterDevices(ids: [String!]!): Boolean!
|
1381
|
+
|
1373
1382
|
"""To delete privilege"""
|
1374
1383
|
deletePrivilege(category: String!, name: String!): Boolean!
|
1375
1384
|
|
@@ -1602,6 +1611,9 @@ type Mutation {
|
|
1602
1611
|
"""To modify multiple PayloadLogs' information"""
|
1603
1612
|
updateMultiplePayloadLog(patches: [PayloadLogPatch!]!): [PayloadLog!]!
|
1604
1613
|
|
1614
|
+
"""To modify multiple PrinterDevices' information"""
|
1615
|
+
updateMultiplePrinterDevice(patches: [PrinterDevicePatch!]!): [PrinterDevice!]!
|
1616
|
+
|
1605
1617
|
"""To modify multiple scenarios' information"""
|
1606
1618
|
updateMultipleScenario(patches: [ScenarioPatch!]!): [Scenario!]!
|
1607
1619
|
|
@@ -1629,6 +1641,9 @@ type Mutation {
|
|
1629
1641
|
"""To modify PlayGroup information"""
|
1630
1642
|
updatePlayGroup(id: String!, patch: PlayGroupPatch!): PlayGroup!
|
1631
1643
|
|
1644
|
+
"""To modify PrinterDevice information"""
|
1645
|
+
updatePrinterDevice(id: String!, patch: PrinterDevicePatch!): PrinterDevice!
|
1646
|
+
|
1632
1647
|
"""To modify privilege information"""
|
1633
1648
|
updatePrivilege(category: String!, name: String!, patch: PrivilegePatch!): Privilege!
|
1634
1649
|
|
@@ -1988,6 +2003,24 @@ input NewPlayGroup {
|
|
1988
2003
|
name: String!
|
1989
2004
|
}
|
1990
2005
|
|
2006
|
+
input NewPrinterDevice {
|
2007
|
+
activeFlag: Boolean
|
2008
|
+
defaultFlag: Boolean
|
2009
|
+
description: String!
|
2010
|
+
dpi: Int
|
2011
|
+
jobCategory: String
|
2012
|
+
jobClass: String
|
2013
|
+
jobType: String
|
2014
|
+
name: String!
|
2015
|
+
note: String
|
2016
|
+
printerDriver: String
|
2017
|
+
printerIp: String
|
2018
|
+
printerPort: Int
|
2019
|
+
serviceUrl: String
|
2020
|
+
status: String
|
2021
|
+
type: String
|
2022
|
+
}
|
2023
|
+
|
1991
2024
|
input NewPrivilege {
|
1992
2025
|
category: String!
|
1993
2026
|
description: String
|
@@ -2027,6 +2060,7 @@ input NewTerminology {
|
|
2027
2060
|
}
|
2028
2061
|
|
2029
2062
|
input NewTheme {
|
2063
|
+
active: Boolean
|
2030
2064
|
description: String
|
2031
2065
|
name: String!
|
2032
2066
|
type: String
|
@@ -2231,6 +2265,56 @@ input PlayGroupPatch {
|
|
2231
2265
|
name: String
|
2232
2266
|
}
|
2233
2267
|
|
2268
|
+
"""Entity for PrinterDevice"""
|
2269
|
+
type PrinterDevice {
|
2270
|
+
activeFlag: Boolean
|
2271
|
+
createdAt: Timestamp
|
2272
|
+
creator: User
|
2273
|
+
defaultFlag: Boolean
|
2274
|
+
description: String!
|
2275
|
+
domain: Domain!
|
2276
|
+
dpi: Int
|
2277
|
+
id: ID!
|
2278
|
+
jobCategory: String
|
2279
|
+
jobClass: String
|
2280
|
+
jobType: String
|
2281
|
+
name: String!
|
2282
|
+
note: String
|
2283
|
+
printerDriver: String
|
2284
|
+
printerIp: String
|
2285
|
+
printerPort: Int
|
2286
|
+
serviceUrl: String
|
2287
|
+
status: String
|
2288
|
+
type: String!
|
2289
|
+
updatedAt: Timestamp
|
2290
|
+
updater: User
|
2291
|
+
}
|
2292
|
+
|
2293
|
+
type PrinterDeviceList {
|
2294
|
+
items: [PrinterDevice!]!
|
2295
|
+
total: Int!
|
2296
|
+
}
|
2297
|
+
|
2298
|
+
input PrinterDevicePatch {
|
2299
|
+
activeFlag: Boolean
|
2300
|
+
cuFlag: String!
|
2301
|
+
defaultFlag: Boolean
|
2302
|
+
description: String
|
2303
|
+
dpi: Int
|
2304
|
+
id: ID
|
2305
|
+
jobCategory: String
|
2306
|
+
jobClass: String
|
2307
|
+
jobType: String
|
2308
|
+
name: String
|
2309
|
+
note: String
|
2310
|
+
printerDriver: String
|
2311
|
+
printerIp: String
|
2312
|
+
printerPort: Int
|
2313
|
+
serviceUrl: String
|
2314
|
+
status: String
|
2315
|
+
type: String
|
2316
|
+
}
|
2317
|
+
|
2234
2318
|
type Privilege {
|
2235
2319
|
category: String
|
2236
2320
|
createdAt: Timestamp
|
@@ -2478,6 +2562,12 @@ type Query {
|
|
2478
2562
|
"""To fetch multiple PlayGroups"""
|
2479
2563
|
playGroups(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PlayGroupList!
|
2480
2564
|
|
2565
|
+
"""To fetch a PrinterDevice"""
|
2566
|
+
printerDevice(id: String!): PrinterDevice!
|
2567
|
+
|
2568
|
+
"""To fetch multiple PrinterDevices"""
|
2569
|
+
printerDevices(filters: [Filter!], inherited: InheritedValueType, pagination: Pagination, sortings: [Sorting!]): PrinterDeviceList!
|
2570
|
+
|
2481
2571
|
"""To fetch privilege"""
|
2482
2572
|
privilege(category: String!, name: String!): Privilege!
|
2483
2573
|
|
@@ -2817,6 +2907,7 @@ input TerminologyPatch {
|
|
2817
2907
|
|
2818
2908
|
"""Entity for Theme"""
|
2819
2909
|
type Theme {
|
2910
|
+
active: Boolean
|
2820
2911
|
createdAt: Timestamp
|
2821
2912
|
creator: User
|
2822
2913
|
deletedAt: Timestamp
|
@@ -2836,6 +2927,7 @@ type ThemeList {
|
|
2836
2927
|
}
|
2837
2928
|
|
2838
2929
|
input ThemePatch {
|
2930
|
+
active: Boolean
|
2839
2931
|
cuFlag: String
|
2840
2932
|
description: String
|
2841
2933
|
id: ID
|