@things-factory/operato-ecs 6.1.90 → 6.1.91

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 +5 -5
  2. 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.90",
3
+ "version": "6.1.91",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -63,9 +63,9 @@
63
63
  "@things-factory/export-ui": "^6.1.90",
64
64
  "@things-factory/help": "^6.1.90",
65
65
  "@things-factory/i18n-base": "^6.1.90",
66
- "@things-factory/integration-melsec": "^6.1.90",
67
- "@things-factory/integration-modbus": "^6.1.90",
68
- "@things-factory/integration-ui": "^6.1.90",
66
+ "@things-factory/integration-melsec": "^6.1.91",
67
+ "@things-factory/integration-modbus": "^6.1.91",
68
+ "@things-factory/integration-ui": "^6.1.91",
69
69
  "@things-factory/lite-menu": "^6.1.90",
70
70
  "@things-factory/more-ui": "^6.1.90",
71
71
  "@things-factory/oauth2-client": "^6.1.90",
@@ -80,5 +80,5 @@
80
80
  "devDependencies": {
81
81
  "@things-factory/builder": "^6.1.90"
82
82
  },
83
- "gitHead": "5179fd723efa21331105f0c941a1e6062c201eb7"
83
+ "gitHead": "2d49434d317126980f37c8bd2a4f9cc777f12277"
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