@nuffieldtechnologies/rugged-schema-types 2.1.0 → 2.1.2

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.
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports._TaskOld = void 0;
4
4
  exports._TaskOld = `
5
- type Task {
5
+ type TaskOld {
6
6
  id: ID,
7
7
  name: String
8
8
  definition: String
@@ -11,11 +11,11 @@ exports._Task = `
11
11
  `;
12
12
  exports._TaskInfo = `
13
13
  type TaskInfo {
14
- status: string
15
- rootEntityId: string
16
- id: string
17
- refNo: number
18
- name: string
14
+ status: String
15
+ rootEntityId: String
16
+ id: String
17
+ refNo: Number
18
+ name: String
19
19
  events: Events
20
20
  identifiers: TaskIdentifiers
21
21
  template: TemplateInfo
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuffieldtechnologies/rugged-schema-types",
3
- "version": "2.1.0",
3
+ "version": "2.1.2",
4
4
  "description": "Graphql schema for rugged data",
5
5
  "main": "dist/index.js",
6
6
  "keywords": [
@@ -1,5 +1,5 @@
1
1
  export const _TaskOld = `
2
- type Task {
2
+ type TaskOld {
3
3
  id: ID,
4
4
  name: String
5
5
  definition: String
package/schemas/task.ts CHANGED
@@ -10,11 +10,11 @@ export const _Task = `
10
10
 
11
11
  export const _TaskInfo = `
12
12
  type TaskInfo {
13
- status: string
14
- rootEntityId: string
15
- id: string
16
- refNo: number
17
- name: string
13
+ status: String
14
+ rootEntityId: String
15
+ id: String
16
+ refNo: Number
17
+ name: String
18
18
  events: Events
19
19
  identifiers: TaskIdentifiers
20
20
  template: TemplateInfo