@nuffieldtechnologies/rugged-schema-types 2.1.47 → 2.1.48
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/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.
|
|
13
|
-
export const TaskInput = TimeStamps._TimeStampsInput + Events._EventInput + Events._EventsInput + TemplateInfo._TemplateInfoInput + TaskSchemas.
|
|
12
|
+
export const Task = TimeStamps._TimeStamps + Events._Event + Events._Events + TemplateInfo._TemplateInfo + TaskSchemas._EntityHierarchyInfo + TaskSchemas._TaskInfo + TaskSchemas._WorkflowInfo + TaskSchemas._Task + TaskIdentifiers._TaskIdentifiers;
|
|
13
|
+
export const TaskInput = TimeStamps._TimeStampsInput + Events._EventInput + Events._EventsInput + TemplateInfo._TemplateInfoInput + TaskSchemas._EntityHierarchyInput + TaskSchemas._TaskInfoInput + TaskSchemas._WorkflowInfoInput + 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;
|