@nuffieldtechnologies/rugged-schema-types 2.1.1 → 2.1.3

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.
@@ -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
@@ -33,11 +33,11 @@ exports._TaskInput = `
33
33
  `;
34
34
  exports._TaskInfoInput = `
35
35
  input TaskInfoInput {
36
- status: string
37
- rootEntityId: string
38
- id: string
39
- refNo: number
40
- name: string
36
+ status: String
37
+ rootEntityId: String
38
+ id: String
39
+ refNo: Number
40
+ name: String
41
41
  events: EventInput
42
42
  identifiers: TaskIdentifiersInput
43
43
  template: TemplateInfoInput
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nuffieldtechnologies/rugged-schema-types",
3
- "version": "2.1.1",
3
+ "version": "2.1.3",
4
4
  "description": "Graphql schema for rugged data",
5
5
  "main": "dist/index.js",
6
6
  "keywords": [
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
@@ -34,11 +34,11 @@ export const _TaskInput = `
34
34
 
35
35
  export const _TaskInfoInput = `
36
36
  input TaskInfoInput {
37
- status: string
38
- rootEntityId: string
39
- id: string
40
- refNo: number
41
- name: string
37
+ status: String
38
+ rootEntityId: String
39
+ id: String
40
+ refNo: Number
41
+ name: String
42
42
  events: EventInput
43
43
  identifiers: TaskIdentifiersInput
44
44
  template: TemplateInfoInput