@nuffieldtechnologies/rugged-schema-types 0.4.1 → 0.4.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.
- package/distribution/index.js +2 -2
- package/package.json +1 -1
package/distribution/index.js
CHANGED
|
@@ -24,7 +24,7 @@ const _TimeStampsInput = `
|
|
|
24
24
|
const _Event = `
|
|
25
25
|
type Event {
|
|
26
26
|
appVersion: String,
|
|
27
|
-
at:
|
|
27
|
+
at: Int,
|
|
28
28
|
atForHumans: String,
|
|
29
29
|
device: String,
|
|
30
30
|
deviceModel: String,
|
|
@@ -196,7 +196,7 @@ const _Form = `
|
|
|
196
196
|
const _AllFormFields = `{id, name, key, definition, status, updated, params {name, value}, resources, body}`;
|
|
197
197
|
const Task = _TimeStamps + _Event + _Events + _TemplateInfo + _Task;
|
|
198
198
|
exports.Task = Task;
|
|
199
|
-
const TaskInput = _TimeStampsInput + _EventInput +
|
|
199
|
+
const TaskInput = _TimeStampsInput + _EventInput + _EventsInput + _TemplateInfoInput + _TaskInput;
|
|
200
200
|
exports.TaskInput = TaskInput;
|
|
201
201
|
const TaskFilter = _TaskFilter;
|
|
202
202
|
exports.TaskFilter = TaskFilter;
|