@things-factory/operato-ecs 7.0.1-beta.18 → 7.0.1-beta.20

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.graphql +15 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-ecs",
3
- "version": "7.0.1-beta.18",
3
+ "version": "7.0.1-beta.20",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -62,19 +62,19 @@
62
62
  "@things-factory/api": "^7.0.1-beta.18",
63
63
  "@things-factory/apptool-ui": "^7.0.1-beta.18",
64
64
  "@things-factory/auth-ui": "^7.0.1-beta.18",
65
- "@things-factory/board-service": "^7.0.1-beta.18",
65
+ "@things-factory/board-service": "^7.0.1-beta.19",
66
66
  "@things-factory/board-ui": "^7.0.1-beta.18",
67
67
  "@things-factory/context-ui": "^7.0.1-beta.18",
68
- "@things-factory/dashboard": "^7.0.1-beta.18",
68
+ "@things-factory/dashboard": "^7.0.1-beta.19",
69
69
  "@things-factory/export-ui": "^7.0.1-beta.18",
70
70
  "@things-factory/help": "^7.0.1-beta.18",
71
71
  "@things-factory/i18n-base": "^7.0.1-beta.18",
72
- "@things-factory/integration-influxdb": "^7.0.1-beta.18",
73
- "@things-factory/integration-melsec": "^7.0.1-beta.18",
74
- "@things-factory/integration-modbus": "^7.0.1-beta.18",
75
- "@things-factory/integration-opc": "^7.0.1-beta.18",
76
- "@things-factory/integration-ui": "^7.0.1-beta.18",
77
- "@things-factory/lite-menu": "^7.0.1-beta.18",
72
+ "@things-factory/integration-influxdb": "^7.0.1-beta.19",
73
+ "@things-factory/integration-melsec": "^7.0.1-beta.19",
74
+ "@things-factory/integration-modbus": "^7.0.1-beta.19",
75
+ "@things-factory/integration-opc": "^7.0.1-beta.19",
76
+ "@things-factory/integration-ui": "^7.0.1-beta.20",
77
+ "@things-factory/lite-menu": "^7.0.1-beta.19",
78
78
  "@things-factory/more-ui": "^7.0.1-beta.18",
79
79
  "@things-factory/notification": "^7.0.1-beta.18",
80
80
  "@things-factory/oauth2-client": "^7.0.1-beta.18",
@@ -88,5 +88,5 @@
88
88
  "devDependencies": {
89
89
  "@things-factory/builder": "^7.0.1-beta.18"
90
90
  },
91
- "gitHead": "44f0df6a133577bad8d184a529796c69249a8296"
91
+ "gitHead": "4e6a3ce7599519e8696fd1933a29ef5fc4238aa5"
92
92
  }
package/schema.graphql CHANGED
@@ -2074,7 +2074,7 @@ type Mutation {
2074
2074
  """
2075
2075
  To run new scenario instance and will return the result after the scenario stop.
2076
2076
  """
2077
- runScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstance!
2077
+ runScenario(instanceName: String, scenarioName: String!, variables: Object): ScenarioInstanceRunResult!
2078
2078
  sendInvitation(email: EmailAddress!, reference: String!, type: String!): Invitation!
2079
2079
  singleUpload(file: Upload!): Attachment!
2080
2080
 
@@ -2785,6 +2785,7 @@ input NewScenario {
2785
2785
  privilege: PrivilegeInput
2786
2786
  schedule: String
2787
2787
  timezone: String
2788
+ ttl: Float
2788
2789
  type: String
2789
2790
  }
2790
2791
 
@@ -3803,6 +3804,7 @@ type Scenario {
3803
3804
  state: String
3804
3805
  steps: [Step!]
3805
3806
  timezone: String
3807
+ ttl: Float
3806
3808
  type: String
3807
3809
  updatedAt: DateTimeISO
3808
3810
  updater: User
@@ -3835,6 +3837,17 @@ type ScenarioInstanceProgress {
3835
3837
  steps: Int!
3836
3838
  }
3837
3839
 
3840
+ type ScenarioInstanceRunResult {
3841
+ data: Object
3842
+ instanceName: String
3843
+ message: String
3844
+ result: Object
3845
+ scenarioName: String
3846
+ state: String
3847
+ timestamp: DateTimeISO
3848
+ variables: Object
3849
+ }
3850
+
3838
3851
  type ScenarioInstanceState {
3839
3852
  data: Object
3840
3853
  domain: Domain
@@ -3871,6 +3884,7 @@ input ScenarioPatch {
3871
3884
  schedule: String
3872
3885
  steps: [StepPatch!]
3873
3886
  timezone: String
3887
+ ttl: Float
3874
3888
  type: String
3875
3889
  }
3876
3890