@coast/core-api-types 1.2.17 → 1.2.19
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/models/common/EventKey.d.ts +1 -0
- package/dist/models/common/EventKey.js +1 -0
- package/dist/models/workflow-entity/entity-mapping/ViewTemplateSearchKey.d.ts +7 -0
- package/dist/models/workflow-entity/entity-mapping/ViewTemplateSearchKey.js +2 -0
- package/dist/models/workflow-template/entities/ListWorkflowEntitiesContext.d.ts +1 -0
- package/dist/models/workflow-template/entities/search/SearchSort.d.ts +2 -0
- package/dist/models/workflow-template/view-template/CreateViewTemplate.d.ts +2 -1
- package/dist/models/workflow-template/view-template/UpdateViewTemplate.d.ts +2 -1
- package/dist/models/workflow-template/view-template/ViewTemplate.d.ts +1 -0
- package/package.json +1 -1
- /package/dist/models/{workflow-template/entities → workflow-entity/entity-mapping}/EntityMapping.d.ts +0 -0
- /package/dist/models/{workflow-template/entities → workflow-entity/entity-mapping}/EntityMapping.js +0 -0
|
@@ -28,6 +28,7 @@ export declare enum EventKey {
|
|
|
28
28
|
THREAD_MESSAGE_CREATED = "afterInsert_ThreadMessage",
|
|
29
29
|
THREAD_MESSAGE_SOFT_REMOVED = "afterSoftRemove_ThreadMessage",
|
|
30
30
|
THREAD_MESSAGE_UPDATED = "afterUpdate_ThreadMessage",
|
|
31
|
+
VIEW_TEMPLATE_CREATED = "afterInsert_ViewTemplate",
|
|
31
32
|
VIEW_TEMPLATE_SOFT_REMOVED = "afterSoftRemove_ViewTemplate",
|
|
32
33
|
WORKFLOW_TEMPLATE_AUTOMATION_ASSOCIATION_REMOVED = "afterRemove_WorkflowTemplateAutomationAssociation",
|
|
33
34
|
WORKFLOW_TEMPLATE_CREATED = "afterInsert_WorkflowTemplate",
|
|
@@ -32,6 +32,7 @@ var EventKey;
|
|
|
32
32
|
EventKey["THREAD_MESSAGE_CREATED"] = "afterInsert_ThreadMessage";
|
|
33
33
|
EventKey["THREAD_MESSAGE_SOFT_REMOVED"] = "afterSoftRemove_ThreadMessage";
|
|
34
34
|
EventKey["THREAD_MESSAGE_UPDATED"] = "afterUpdate_ThreadMessage";
|
|
35
|
+
EventKey["VIEW_TEMPLATE_CREATED"] = "afterInsert_ViewTemplate";
|
|
35
36
|
EventKey["VIEW_TEMPLATE_SOFT_REMOVED"] = "afterSoftRemove_ViewTemplate";
|
|
36
37
|
EventKey["WORKFLOW_TEMPLATE_AUTOMATION_ASSOCIATION_REMOVED"] = "afterRemove_WorkflowTemplateAutomationAssociation";
|
|
37
38
|
EventKey["WORKFLOW_TEMPLATE_CREATED"] = "afterInsert_WorkflowTemplate";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { WorkflowTemplateId } from '../../workflow-template/WorkflowTemplateId';
|
|
2
|
+
import { ViewTemplateId } from '../../workflow-template/view-template/ViewTemplateId';
|
|
3
|
+
export interface ViewTemplateSearchKey {
|
|
4
|
+
workflowTemplateId: WorkflowTemplateId;
|
|
5
|
+
viewTemplateId: ViewTemplateId;
|
|
6
|
+
viewTemplateIndex: number;
|
|
7
|
+
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { CreateComponentViewOptions } from '../components/CreateComponentViewOptions';
|
|
2
2
|
import { ViewTemplate } from './ViewTemplate';
|
|
3
|
-
export interface CreateViewTemplate extends Omit<ViewTemplate, 'id' | 'componentsViewOptions' | 'createdAt' | 'updatedAt'> {
|
|
3
|
+
export interface CreateViewTemplate extends Omit<ViewTemplate, 'id' | 'componentsViewOptions' | 'createdAt' | 'updatedAt' | 'customSortingEnabled'> {
|
|
4
4
|
componentsViewOptions?: CreateComponentViewOptions[];
|
|
5
|
+
customSortingEnabled?: boolean;
|
|
5
6
|
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { CreateComponentViewOptions } from '../components/CreateComponentViewOptions';
|
|
2
2
|
import { ViewTemplate } from './ViewTemplate';
|
|
3
3
|
import { ViewTemplateId } from './ViewTemplateId';
|
|
4
|
-
export interface UpdateViewTemplate extends Partial<Omit<ViewTemplate, 'id' | 'workflowTemplateId' | 'componentsViewOptions' | 'createdAt' | 'updatedAt'>> {
|
|
4
|
+
export interface UpdateViewTemplate extends Partial<Omit<ViewTemplate, 'id' | 'workflowTemplateId' | 'componentsViewOptions' | 'createdAt' | 'updatedAt' | 'customSortingEnabled'>> {
|
|
5
5
|
id: ViewTemplateId;
|
|
6
6
|
workflowTemplateId: string;
|
|
7
7
|
componentsViewOptions?: CreateComponentViewOptions[];
|
|
8
|
+
customSortingEnabled?: boolean;
|
|
8
9
|
}
|
package/package.json
CHANGED
|
File without changes
|
/package/dist/models/{workflow-template/entities → workflow-entity/entity-mapping}/EntityMapping.js
RENAMED
|
File without changes
|