@things-factory/operato-ecs 6.0.69 → 6.0.70

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 +10 -10
  2. package/schema.gql +7 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-ecs",
3
- "version": "6.0.69",
3
+ "version": "6.0.70",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -54,24 +54,24 @@
54
54
  "@things-factory/api": "^6.0.67",
55
55
  "@things-factory/apptool-ui": "^6.0.67",
56
56
  "@things-factory/auth-ui": "^6.0.67",
57
- "@things-factory/board-service": "^6.0.69",
57
+ "@things-factory/board-service": "^6.0.70",
58
58
  "@things-factory/board-ui": "^6.0.67",
59
59
  "@things-factory/context-ui": "^6.0.67",
60
- "@things-factory/dashboard": "^6.0.69",
60
+ "@things-factory/dashboard": "^6.0.70",
61
61
  "@things-factory/export-ui": "^6.0.67",
62
62
  "@things-factory/grist-ui": "^6.0.67",
63
63
  "@things-factory/help": "^6.0.67",
64
64
  "@things-factory/i18n-base": "^6.0.67",
65
- "@things-factory/integration-melsec": "^6.0.69",
66
- "@things-factory/integration-modbus": "^6.0.69",
67
- "@things-factory/integration-ui": "^6.0.69",
68
- "@things-factory/lite-menu": "^6.0.69",
65
+ "@things-factory/integration-melsec": "^6.0.70",
66
+ "@things-factory/integration-modbus": "^6.0.70",
67
+ "@things-factory/integration-ui": "^6.0.70",
68
+ "@things-factory/lite-menu": "^6.0.70",
69
69
  "@things-factory/more-ui": "^6.0.67",
70
70
  "@things-factory/oauth2-client": "^6.0.67",
71
71
  "@things-factory/print-ui": "^6.0.67",
72
72
  "@things-factory/resource-ui": "^6.0.67",
73
- "@things-factory/setting-base": "^6.0.67",
74
- "@things-factory/setting-ui": "^6.0.67",
73
+ "@things-factory/setting-base": "^6.0.70",
74
+ "@things-factory/setting-ui": "^6.0.70",
75
75
  "@things-factory/shell": "^6.0.67",
76
76
  "@things-factory/system-ui": "^6.0.67",
77
77
  "jsmodbus": "^4.0.2"
@@ -79,5 +79,5 @@
79
79
  "devDependencies": {
80
80
  "@things-factory/builder": "^6.0.63"
81
81
  },
82
- "gitHead": "d0198bba193b275f29fffd8c3963f556db4dda92"
82
+ "gitHead": "b9c05eb9b7a0aed2bcf7b24bd5851eb047b54391"
83
83
  }
package/schema.gql CHANGED
@@ -1363,9 +1363,15 @@ type Mutation {
1363
1363
  """To start new scenario instance"""
1364
1364
  startScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstance!
1365
1365
 
1366
+ """To start posting scenario based on the schedule of the given scenario"""
1367
+ startScenarioSchedule(scenarioId: String!): Scenario!
1368
+
1366
1369
  """To start new scenario instance"""
1367
1370
  stopScenario(instanceName: String): ScenarioInstance
1368
1371
 
1372
+ """To stop posting scenario based on the schedule of the given scenario"""
1373
+ stopScenarioSchedule(scenarioId: String!): Scenario
1374
+
1369
1375
  """
1370
1376
  To synchronize privilege master from graphql directives. Only superuser is permitted.
1371
1377
  """
@@ -2394,6 +2400,7 @@ type Scenario {
2394
2400
  instances: [ScenarioInstance!]
2395
2401
  name: String!
2396
2402
  schedule: String
2403
+ scheduleId: String
2397
2404
  state: String
2398
2405
  steps: [Step!]
2399
2406
  timezone: String