@coast/core-api-types 1.2.358 → 1.2.360
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/automations/condition/Condition.d.ts +1 -1
- package/dist/models/workflow-entity/filters/FilterOneOf.d.ts +2 -0
- package/dist/models/workflow-entity/filters/MatchesRelatedEntity.d.ts +6 -0
- package/dist/models/workflow-entity/{search/NestedTermCountsQuery.js → filters/MatchesRelatedEntity.js} +1 -1
- package/dist/models/workflow-entity/filters/MatchesRelatedEntity.js.map +1 -0
- package/dist/models/workflow-entity/filters/registry/AnyFilter.d.ts +2 -1
- package/dist/models/workflow-entity/search/TermCountsQuery.d.ts +4 -0
- package/dist/models/workflow-entity/search/TermCountsQuery.js +3 -0
- package/dist/models/workflow-entity/search/TermCountsQuery.js.map +1 -0
- package/package.json +3 -3
- package/dist/models/workflow-entity/search/NestedTermCountsQuery.d.ts +0 -5
- package/dist/models/workflow-entity/search/NestedTermCountsQuery.js.map +0 -1
|
@@ -5,6 +5,7 @@ import { DateIs } from './DateIs';
|
|
|
5
5
|
import { DateRange } from './DateRange';
|
|
6
6
|
import { DateTokenIs } from './DateTokenIs';
|
|
7
7
|
import { IsEmpty } from './IsEmpty';
|
|
8
|
+
import { MatchesRelatedEntity } from './MatchesRelatedEntity';
|
|
8
9
|
import { NumberIs } from './NumberIs';
|
|
9
10
|
import { StringWildcard } from './StringWildcard';
|
|
10
11
|
export interface FilterOneOf {
|
|
@@ -15,6 +16,7 @@ export interface FilterOneOf {
|
|
|
15
16
|
dateRange?: DateRange;
|
|
16
17
|
dateTokenIs?: DateTokenIs;
|
|
17
18
|
isEmpty?: IsEmpty;
|
|
19
|
+
matchesRelatedEntity?: MatchesRelatedEntity;
|
|
18
20
|
numberIs?: NumberIs;
|
|
19
21
|
stringWildcard?: StringWildcard;
|
|
20
22
|
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { FilterType } from '@coast/core-types/workflow-entity/filters/FilterType';
|
|
2
|
+
import { FilterOneOfByComponent } from './FilterOneOfByComponent';
|
|
3
|
+
export interface MatchesRelatedEntity {
|
|
4
|
+
filterByComponent: FilterOneOfByComponent;
|
|
5
|
+
type: FilterType.MATCHES_RELATED_ENTITY;
|
|
6
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MatchesRelatedEntity.js","sourceRoot":"","sources":["../../../../src/models/workflow-entity/filters/MatchesRelatedEntity.ts"],"names":[],"mappings":""}
|
|
@@ -5,6 +5,7 @@ import { DateIs } from '../DateIs';
|
|
|
5
5
|
import { DateRange } from '../DateRange';
|
|
6
6
|
import { DateTokenIs } from '../DateTokenIs';
|
|
7
7
|
import { IsEmpty } from '../IsEmpty';
|
|
8
|
+
import { MatchesRelatedEntity } from '../MatchesRelatedEntity';
|
|
8
9
|
import { NumberIs } from '../NumberIs';
|
|
9
10
|
import { StringWildcard } from '../StringWildcard';
|
|
10
|
-
export type AnyFilter = ContainsCurrentUser | ContainsNumber | ContainsString | DateIs | DateRange | DateTokenIs | IsEmpty | NumberIs | StringWildcard;
|
|
11
|
+
export type AnyFilter = ContainsCurrentUser | ContainsNumber | ContainsString | DateIs | DateRange | DateTokenIs | IsEmpty | MatchesRelatedEntity | NumberIs | StringWildcard;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TermCountsQuery.js","sourceRoot":"","sources":["../../../../src/models/workflow-entity/search/TermCountsQuery.ts"],"names":[],"mappings":""}
|
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.360",
|
|
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.76",
|
|
27
27
|
"@coast/core-utils": "0.0.24",
|
|
28
28
|
"@coast/schemas": "^4.0.2",
|
|
29
29
|
"@coast/service-common": "^2.0.79",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@coast/service-common-scripts": "^1.0.50",
|
|
38
38
|
"@typescript/native-preview": "^7.0.0-dev.20260327.2",
|
|
39
|
-
"glob": "^10.
|
|
39
|
+
"glob": "^10.5.0",
|
|
40
40
|
"ts-morph": "^24.0.0",
|
|
41
41
|
"ts-node": "^10.9.2",
|
|
42
42
|
"tsx": "^4.19.4",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"NestedTermCountsQuery.js","sourceRoot":"","sources":["../../../../src/models/workflow-entity/search/NestedTermCountsQuery.ts"],"names":[],"mappings":""}
|