@coast/core-api-types 1.2.355 → 1.2.356
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/workflow-entity/AggregateInverseRelatedCardCounts.d.ts +9 -0
- package/dist/models/workflow-entity/AggregateInverseRelatedCardCounts.js +3 -0
- package/dist/models/workflow-entity/AggregateInverseRelatedCardCounts.js.map +1 -0
- package/dist/models/workflow-entity/CardCount.d.ts +4 -0
- package/dist/models/workflow-entity/CardCount.js +3 -0
- package/dist/models/workflow-entity/CardCount.js.map +1 -0
- package/dist/models/workflow-entity/ListWorkflowEntitiesInput.d.ts +2 -0
- package/dist/models/workflow-entity/ListWorkflowEntitiesResult.d.ts +2 -0
- package/dist/models/workflow-entity/search/NestedTermCountsQuery.d.ts +5 -0
- package/dist/models/workflow-entity/search/NestedTermCountsQuery.js +3 -0
- package/dist/models/workflow-entity/search/NestedTermCountsQuery.js.map +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { UserId } from '@coast/core-types/user/UserId';
|
|
2
|
+
import { ComponentId } from '@coast/core-types/workflow-template/components/ComponentId';
|
|
3
|
+
import { WorkflowTemplateId } from '@coast/core-types/workflow-template/WorkflowTemplateId';
|
|
4
|
+
export interface AggregateInverseRelatedCardCounts {
|
|
5
|
+
workflowTemplateId: WorkflowTemplateId;
|
|
6
|
+
relatedCardComponentId: ComponentId;
|
|
7
|
+
workflowEntityIds: string[];
|
|
8
|
+
currentUserId?: UserId;
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AggregateInverseRelatedCardCounts.js","sourceRoot":"","sources":["../../../src/models/workflow-entity/AggregateInverseRelatedCardCounts.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CardCount.js","sourceRoot":"","sources":["../../../src/models/workflow-entity/CardCount.ts"],"names":[],"mappings":""}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { ViewTemplateId } from '@coast/core-types/view-template/ViewTemplateId';
|
|
2
|
+
import { ComponentId } from '@coast/core-types/workflow-template/components/ComponentId';
|
|
2
3
|
import { WorkflowTemplateId } from '@coast/core-types/workflow-template/WorkflowTemplateId';
|
|
3
4
|
import { AbstractListWorkflowEntities } from './AbstractListWorkflowEntities';
|
|
4
5
|
export interface ListWorkflowEntitiesInput extends AbstractListWorkflowEntities {
|
|
6
|
+
inverseRelatedCardCountsForComponentId?: ComponentId;
|
|
5
7
|
viewTemplateId?: ViewTemplateId;
|
|
6
8
|
workflowTemplateId: WorkflowTemplateId;
|
|
7
9
|
}
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { OffsetPaginatedResult } from '../pagination/OffsetPaginatedResult';
|
|
2
2
|
import { PlanLimit } from '../plan-limits/PlanLimit';
|
|
3
|
+
import { CardCount } from './CardCount';
|
|
3
4
|
import { EntityRefs } from './refs/EntityRefs';
|
|
4
5
|
import { WorkflowEntity } from './WorkflowEntity';
|
|
5
6
|
export interface ListWorkflowEntitiesResult extends OffsetPaginatedResult {
|
|
6
7
|
cursor?: string;
|
|
8
|
+
inverseRelatedCardCounts?: CardCount[];
|
|
7
9
|
entities: WorkflowEntity[];
|
|
8
10
|
planLimit?: PlanLimit;
|
|
9
11
|
refs?: EntityRefs;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NestedTermCountsQuery.js","sourceRoot":"","sources":["../../../../src/models/workflow-entity/search/NestedTermCountsQuery.ts"],"names":[],"mappings":""}
|