@nuffieldtechnologies/rugged-schema-types 2.1.46 → 2.1.47
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/index.ts +2 -2
- package/package.json +1 -1
- package/schemas/task.ts +3 -3
package/index.ts
CHANGED
|
@@ -9,8 +9,8 @@ import * as TaskIdentifiers from './schemas/task-identifiers'
|
|
|
9
9
|
import * as TaskOldSchemas from './schemas/task-old'
|
|
10
10
|
import * as TaskSchemas from './schemas/task'
|
|
11
11
|
|
|
12
|
-
export const Task = TimeStamps._TimeStamps + Events._Event + Events._Events + TemplateInfo._TemplateInfo + TaskSchemas._TaskInfo + TaskSchemas._WorkflowInfo + TaskSchemas._Task + TaskIdentifiers._TaskIdentifiers;
|
|
13
|
-
export const TaskInput = TimeStamps._TimeStampsInput + Events._EventInput + Events._EventsInput + TemplateInfo._TemplateInfoInput + TaskSchemas._TaskInfoInput + TaskSchemas._WorkflowInfoInput + TaskSchemas._TaskInput + TaskIdentifiers._TaskIdentifiersInput;
|
|
12
|
+
export const Task = TimeStamps._TimeStamps + Events._Event + Events._Events + TemplateInfo._TemplateInfo + TaskSchemas._TaskInfo + TaskSchemas._WorkflowInfo + TaskSchemas._EntityHierarchyInfo + TaskSchemas._Task + TaskIdentifiers._TaskIdentifiers;
|
|
13
|
+
export const TaskInput = TimeStamps._TimeStampsInput + Events._EventInput + Events._EventsInput + TemplateInfo._TemplateInfoInput + TaskSchemas._TaskInfoInput + TaskSchemas._WorkflowInfoInput + TaskSchemas._EntityHierarchyInput + TaskSchemas._TaskInput + TaskIdentifiers._TaskIdentifiersInput;
|
|
14
14
|
export const TaskFilter = TaskSchemas._TaskFilter;
|
|
15
15
|
export const Tasks = Task + TaskInput + TaskFilter + TaskOldSchemas._TaskOld;
|
|
16
16
|
export const AllTaskFields = TaskSchemas._AllTaskFields;
|
package/package.json
CHANGED
package/schemas/task.ts
CHANGED
|
@@ -10,7 +10,7 @@ export const _Task = `
|
|
|
10
10
|
}
|
|
11
11
|
`;
|
|
12
12
|
|
|
13
|
-
export const _TaskInfo =
|
|
13
|
+
export const _TaskInfo = `#graphql
|
|
14
14
|
type TaskInfo {
|
|
15
15
|
status: String
|
|
16
16
|
statusBeforeEdit: String
|
|
@@ -42,7 +42,7 @@ export const _WorkflowInfo = `
|
|
|
42
42
|
}
|
|
43
43
|
`;
|
|
44
44
|
|
|
45
|
-
export const _EntityHierarchyInfo =
|
|
45
|
+
export const _EntityHierarchyInfo = `#graphql
|
|
46
46
|
type EntityHierarchyInfo {
|
|
47
47
|
category: String
|
|
48
48
|
entity: String
|
|
@@ -92,7 +92,7 @@ export const _WorkflowInfoInput = `
|
|
|
92
92
|
`;
|
|
93
93
|
|
|
94
94
|
export const _EntityHierarchyInput = `
|
|
95
|
-
|
|
95
|
+
input EntityHierarchyInput {
|
|
96
96
|
category: String
|
|
97
97
|
entity: String
|
|
98
98
|
}
|