@nuffieldtechnologies/rugged-schema-types 2.1.17 → 2.1.18
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.
- package/dist/schemas/task.js +5 -1
- package/dist/schemas/task.js.map +1 -1
- package/package.json +1 -1
- package/schemas/task.ts +5 -1
package/dist/schemas/task.js
CHANGED
|
@@ -19,6 +19,8 @@ exports._TaskInfo = `
|
|
|
19
19
|
rootEntityAncestry: String
|
|
20
20
|
id: String
|
|
21
21
|
refNo: String
|
|
22
|
+
workflowStep: String
|
|
23
|
+
workflow: String
|
|
22
24
|
name: String
|
|
23
25
|
events: Events
|
|
24
26
|
identifiers: TaskIdentifiers
|
|
@@ -44,6 +46,8 @@ exports._TaskInfoInput = `
|
|
|
44
46
|
rootEntityAncestry: String
|
|
45
47
|
id: String
|
|
46
48
|
refNo: String
|
|
49
|
+
workflowStep: String
|
|
50
|
+
workflow: String
|
|
47
51
|
name: String
|
|
48
52
|
events: EventsInput
|
|
49
53
|
identifiers: TaskIdentifiersInput
|
|
@@ -64,5 +68,5 @@ exports._TaskFilter = `
|
|
|
64
68
|
before: String
|
|
65
69
|
}
|
|
66
70
|
`;
|
|
67
|
-
exports._AllTaskFields = `{collections, fields, info {status, id, rootEntityId, rootEntityName, rootEntityAncestry, name, refNo, userIds, users, timestamps {started, updated, submitted, processed, upgraded, discarded}, events {started ${Events._AllEventFields}, updated ${Events._AllEventFields}, submitted ${Events._AllEventFields}, discarded ${Events._AllEventFields}, processed ${Events._AllEventFields}, upgraded ${Events._AllEventFields}}, template { name, shortName, type, id, version}, identifiers { primary, secondary}}, sections}`;
|
|
71
|
+
exports._AllTaskFields = `{collections, fields, info {status, id, rootEntityId, rootEntityName, rootEntityAncestry, name, refNo, workflowStep, workflow, userIds, users, timestamps {started, updated, submitted, processed, upgraded, discarded}, events {started ${Events._AllEventFields}, updated ${Events._AllEventFields}, submitted ${Events._AllEventFields}, discarded ${Events._AllEventFields}, processed ${Events._AllEventFields}, upgraded ${Events._AllEventFields}}, template { name, shortName, type, id, version}, identifiers { primary, secondary}}, sections}`;
|
|
68
72
|
//# sourceMappingURL=task.js.map
|
package/dist/schemas/task.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"task.js","sourceRoot":"","sources":["../../schemas/task.ts"],"names":[],"mappings":";;;AAAA,mCAAkC;AAErB,QAAA,KAAK,GAAG;;;;;;;CAOpB,CAAC;AAEW,QAAA,SAAS,GAAG
|
|
1
|
+
{"version":3,"file":"task.js","sourceRoot":"","sources":["../../schemas/task.ts"],"names":[],"mappings":";;;AAAA,mCAAkC;AAErB,QAAA,KAAK,GAAG;;;;;;;CAOpB,CAAC;AAEW,QAAA,SAAS,GAAG;;;;;;;;;;;;;;;;;;;CAmBxB,CAAC;AAEW,QAAA,UAAU,GAAG;;;;;;;CAOzB,CAAC;AAEW,QAAA,cAAc,GAAG;;;;;;;;;;;;;;;;;;CAkB7B,CAAC;AAEW,QAAA,WAAW,GAAG;;;;;;;;;;CAU1B,CAAC;AAEW,QAAA,cAAc,GAAG,4OAA4O,MAAM,CAAC,eAAe,aAAa,MAAM,CAAC,eAAe,eAAe,MAAM,CAAC,eAAe,eAAe,MAAM,CAAC,eAAe,eAAe,MAAM,CAAC,eAAe,cAAc,MAAM,CAAC,eAAe,kGAAkG,CAAC"}
|
package/package.json
CHANGED
package/schemas/task.ts
CHANGED
|
@@ -18,6 +18,8 @@ export const _TaskInfo = `
|
|
|
18
18
|
rootEntityAncestry: String
|
|
19
19
|
id: String
|
|
20
20
|
refNo: String
|
|
21
|
+
workflowStep: String
|
|
22
|
+
workflow: String
|
|
21
23
|
name: String
|
|
22
24
|
events: Events
|
|
23
25
|
identifiers: TaskIdentifiers
|
|
@@ -45,6 +47,8 @@ export const _TaskInfoInput = `
|
|
|
45
47
|
rootEntityAncestry: String
|
|
46
48
|
id: String
|
|
47
49
|
refNo: String
|
|
50
|
+
workflowStep: String
|
|
51
|
+
workflow: String
|
|
48
52
|
name: String
|
|
49
53
|
events: EventsInput
|
|
50
54
|
identifiers: TaskIdentifiersInput
|
|
@@ -67,4 +71,4 @@ export const _TaskFilter = `
|
|
|
67
71
|
}
|
|
68
72
|
`;
|
|
69
73
|
|
|
70
|
-
export const _AllTaskFields = `{collections, fields, info {status, id, rootEntityId, rootEntityName, rootEntityAncestry, name, refNo, userIds, users, timestamps {started, updated, submitted, processed, upgraded, discarded}, events {started ${Events._AllEventFields}, updated ${Events._AllEventFields}, submitted ${Events._AllEventFields}, discarded ${Events._AllEventFields}, processed ${Events._AllEventFields}, upgraded ${Events._AllEventFields}}, template { name, shortName, type, id, version}, identifiers { primary, secondary}}, sections}`;
|
|
74
|
+
export const _AllTaskFields = `{collections, fields, info {status, id, rootEntityId, rootEntityName, rootEntityAncestry, name, refNo, workflowStep, workflow, userIds, users, timestamps {started, updated, submitted, processed, upgraded, discarded}, events {started ${Events._AllEventFields}, updated ${Events._AllEventFields}, submitted ${Events._AllEventFields}, discarded ${Events._AllEventFields}, processed ${Events._AllEventFields}, upgraded ${Events._AllEventFields}}, template { name, shortName, type, id, version}, identifiers { primary, secondary}}, sections}`;
|