@nuffieldtechnologies/rugged-schema-types 0.1.4 → 0.1.5
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/distribution/index.js +4 -1
- package/package.json +1 -1
package/distribution/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports.default = exports.All = exports.Tasks = exports.TaskFilter = exports.TaskInput = exports.Task = void 0;
|
|
6
|
+
exports.default = exports.All = exports.Tasks = exports.AllTaskFields = exports.TaskFilter = exports.TaskInput = exports.Task = void 0;
|
|
7
7
|
const _TimeStamps = `
|
|
8
8
|
type TimeStamps {
|
|
9
9
|
updated: String,
|
|
@@ -37,6 +37,7 @@ const _Task = `
|
|
|
37
37
|
data: String
|
|
38
38
|
}
|
|
39
39
|
`;
|
|
40
|
+
const _AllTaskFields = `{id, name, definition, user, userEmail, form, key, organisation, timestamps, status, fails, reportUrl, data`;
|
|
40
41
|
const _TaskInput = `
|
|
41
42
|
input TaskInput {
|
|
42
43
|
id : String,
|
|
@@ -81,6 +82,8 @@ const TaskInput = _TimeStampsInput + _TaskInput;
|
|
|
81
82
|
exports.TaskInput = TaskInput;
|
|
82
83
|
const TaskFilter = _TaskFilter;
|
|
83
84
|
exports.TaskFilter = TaskFilter;
|
|
85
|
+
const AllTaskFields = _AllTaskFields;
|
|
86
|
+
exports.AllTaskFields = AllTaskFields;
|
|
84
87
|
const Tasks = Task + TaskInput + TaskFilter;
|
|
85
88
|
exports.Tasks = Tasks;
|
|
86
89
|
const All = Tasks;
|