@coast/core-api-types 1.2.273 → 1.2.276
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/channel/ListChannels.d.ts +2 -0
- package/dist/models/channel/ListChannelsOrder.d.ts +6 -0
- package/dist/models/channel/ListChannelsOrder.js +3 -0
- package/dist/models/channel/ListChannelsOrder.js.map +1 -0
- package/dist/models/channel/ListChannelsOrderBy.d.ts +5 -0
- package/dist/models/channel/ListChannelsOrderBy.js +10 -0
- package/dist/models/channel/ListChannelsOrderBy.js.map +1 -0
- package/dist/models/execution/ExecutionDirectives.d.ts +1 -0
- package/dist/models/workflow-app/WorkflowApp.d.ts +2 -0
- package/dist/models/workflow-template/components/registry/InputComponentDataValueMap.d.ts +0 -2
- package/package.json +2 -2
|
@@ -2,6 +2,7 @@ import { BusinessId } from '@coast/core-types/business/BusinessId';
|
|
|
2
2
|
import { ChannelType } from '@coast/core-types/channel/ChannelType';
|
|
3
3
|
import { UserId } from '@coast/core-types/user/UserId';
|
|
4
4
|
import { WorkflowTemplateId } from '@coast/core-types/workflow-template/WorkflowTemplateId';
|
|
5
|
+
import { ListChannelsOrder } from './ListChannelsOrder';
|
|
5
6
|
export interface ListChannels {
|
|
6
7
|
autoAddUsers?: boolean;
|
|
7
8
|
businessId?: BusinessId;
|
|
@@ -11,4 +12,5 @@ export interface ListChannels {
|
|
|
11
12
|
isDeleted?: boolean;
|
|
12
13
|
type?: ChannelType;
|
|
13
14
|
workflowTemplateId?: WorkflowTemplateId;
|
|
15
|
+
order?: ListChannelsOrder[];
|
|
14
16
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ListChannelsOrder.js","sourceRoot":"","sources":["../../../src/models/channel/ListChannelsOrder.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListChannelsOrderBy = void 0;
|
|
4
|
+
var ListChannelsOrderBy;
|
|
5
|
+
(function (ListChannelsOrderBy) {
|
|
6
|
+
ListChannelsOrderBy["createdAt"] = "createdAt";
|
|
7
|
+
ListChannelsOrderBy["deletedAt"] = "deletedAt";
|
|
8
|
+
ListChannelsOrderBy["name"] = "name";
|
|
9
|
+
})(ListChannelsOrderBy || (exports.ListChannelsOrderBy = ListChannelsOrderBy = {}));
|
|
10
|
+
//# sourceMappingURL=ListChannelsOrderBy.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ListChannelsOrderBy.js","sourceRoot":"","sources":["../../../src/models/channel/ListChannelsOrderBy.ts"],"names":[],"mappings":";;;AAEA,IAAY,mBAIX;AAJD,WAAY,mBAAmB;IAC3B,8CAAuB,CAAA;IACvB,8CAAuB,CAAA;IACvB,oCAAa,CAAA;AACjB,CAAC,EAJW,mBAAmB,mCAAnB,mBAAmB,QAI9B"}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { Channel } from '../channel/Channel';
|
|
2
2
|
import { WorkspaceSection } from '../workspace-section/WorkspaceSection';
|
|
3
|
+
import { AnyCompensation } from './compensations/AnyCompensation';
|
|
3
4
|
export interface WorkflowApp {
|
|
4
5
|
workflowListItemId: string;
|
|
5
6
|
workspaces?: Channel[];
|
|
6
7
|
workspaceSection?: WorkspaceSection;
|
|
8
|
+
compensations: AnyCompensation[];
|
|
7
9
|
}
|
|
@@ -4,7 +4,6 @@ import { AnyComponentDataValue } from '../AnyComponentDataValue';
|
|
|
4
4
|
import { AuditCheckboxComponentData } from '../audit-checkbox/AuditCheckboxComponentData';
|
|
5
5
|
import { AuditTagComponentData } from '../audit-tag/AuditTagComponentData';
|
|
6
6
|
import { AuditTextComponentData } from '../audit-text/AuditTextComponentData';
|
|
7
|
-
import { DateRangeComponentData } from '../date-range/DateRangeComponentData';
|
|
8
7
|
import { DateComponentData } from '../date/DateComponentData';
|
|
9
8
|
import { EmailComponentData } from '../email/EmailComponentData';
|
|
10
9
|
import { EntityBatchComponentData } from '../enitty-batch/EntityBatchComponentData';
|
|
@@ -28,7 +27,6 @@ export type InputComponentDataValueMap = Record<InputComponentType, AnyComponent
|
|
|
28
27
|
[ComponentType.AUDIT_TAG]: AuditTagComponentData['auditTagComponentDataValue'];
|
|
29
28
|
[ComponentType.AUDIT_TEXT]: AuditTextComponentData['auditTextComponentDataValue'];
|
|
30
29
|
[ComponentType.DATE]: DateComponentData['dateComponentDataValue'];
|
|
31
|
-
[ComponentType.DATE_RANGE]: DateRangeComponentData['startDate'];
|
|
32
30
|
[ComponentType.EMAIL]: EmailComponentData['emailComponentDataValue'];
|
|
33
31
|
[ComponentType.ENTITY_BATCH]: EntityBatchComponentData['entityBatchId'];
|
|
34
32
|
[ComponentType.FILE]: FileComponentData['fileComponentDataValue'];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coast/core-api-types",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.276",
|
|
4
4
|
"description": "Facilitates the generation of core-api-types npm package",
|
|
5
5
|
"exports": {
|
|
6
6
|
"./*": {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"author": "Coast Engineering",
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@coast/core-types": "0.0.
|
|
26
|
+
"@coast/core-types": "0.0.23",
|
|
27
27
|
"@coast/core-utils": "0.0.8",
|
|
28
28
|
"@coast/schemas": "^4.0.0",
|
|
29
29
|
"@coast/service-common": "^2.0.69",
|