@nuffieldtechnologies/rugged-schema-types 2.1.34 → 2.1.35

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.
@@ -37,7 +37,7 @@ exports._WorkflowInfo = `
37
37
  type WorkflowInfo {
38
38
  slug: String
39
39
  step: String
40
- history: String
40
+ history: any
41
41
  }
42
42
  `;
43
43
  exports._TaskInput = `
@@ -74,7 +74,7 @@ exports._WorkflowInfoInput = `
74
74
  input WorkflowInfoInput {
75
75
  slug: String
76
76
  step: String
77
- history: String
77
+ history: any
78
78
  }
79
79
  `;
80
80
  exports._TaskFilter = `
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuffieldtechnologies/rugged-schema-types",
3
- "version": "2.1.34",
3
+ "version": "2.1.35",
4
4
  "description": "Graphql schema for rugged data",
5
5
  "main": "dist/index.js",
6
6
  "keywords": [
package/schemas/task.ts CHANGED
@@ -36,7 +36,7 @@ export const _WorkflowInfo = `
36
36
  type WorkflowInfo {
37
37
  slug: String
38
38
  step: String
39
- history: String
39
+ history: any
40
40
  }
41
41
  `;
42
42
 
@@ -76,7 +76,7 @@ export const _WorkflowInfoInput = `
76
76
  input WorkflowInfoInput {
77
77
  slug: String
78
78
  step: String
79
- history: String
79
+ history: any
80
80
  }
81
81
  `;
82
82