@things-factory/operato-board 6.1.48 → 6.1.50

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 +7 -7
  2. package/schema.gql +7 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/operato-board",
3
- "version": "6.1.48",
3
+ "version": "6.1.50",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -92,11 +92,11 @@
92
92
  "@things-factory/help": "^6.1.48",
93
93
  "@things-factory/i18n-base": "^6.1.48",
94
94
  "@things-factory/import-ui": "^6.1.48",
95
- "@things-factory/integration-base": "^6.1.48",
96
- "@things-factory/integration-msgraph": "^6.1.48",
97
- "@things-factory/integration-notification": "^6.1.48",
98
- "@things-factory/integration-openai": "^6.1.48",
99
- "@things-factory/integration-ui": "^6.1.48",
95
+ "@things-factory/integration-base": "^6.1.50",
96
+ "@things-factory/integration-msgraph": "^6.1.50",
97
+ "@things-factory/integration-notification": "^6.1.50",
98
+ "@things-factory/integration-openai": "^6.1.50",
99
+ "@things-factory/integration-ui": "^6.1.50",
100
100
  "@things-factory/layout-ui": "^6.1.48",
101
101
  "@things-factory/more-ui": "^6.1.48",
102
102
  "@things-factory/notification": "^6.1.48",
@@ -116,5 +116,5 @@
116
116
  "@things-factory/board-test": "^6.1.48",
117
117
  "@things-factory/builder": "^6.1.48"
118
118
  },
119
- "gitHead": "eb4f1fb780cddd2168562ae5678f44254ee6423b"
119
+ "gitHead": "9933349bf84cd7394069f3994db659383f1485d9"
120
120
  }
package/schema.gql CHANGED
@@ -3218,6 +3218,7 @@ type ScenarioInstance {
3218
3218
  instanceName: String
3219
3219
  message: String
3220
3220
  progress: ScenarioInstanceProgress
3221
+ result: Object
3221
3222
  root: ScenarioInstance
3222
3223
  scenarioName: String
3223
3224
  state: String
@@ -3328,6 +3329,11 @@ type Step {
3328
3329
  log: Boolean
3329
3330
  name: String!
3330
3331
  params: String
3332
+
3333
+ """
3334
+ a boolean attribute indicating the inclusion status of an element in the result
3335
+ """
3336
+ result: Boolean
3331
3337
  scenario: Scenario
3332
3338
  sequence: Float
3333
3339
  skip: Boolean
@@ -3349,6 +3355,7 @@ input StepPatch {
3349
3355
  log: Boolean
3350
3356
  name: String
3351
3357
  params: String
3358
+ result: Boolean
3352
3359
  sequence: Int
3353
3360
  skip: Boolean
3354
3361
  task: String