@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.
@@ -6,6 +6,6 @@ export interface Condition {
6
6
  comparisonOperator: ComparisonOperator;
7
7
  id: string;
8
8
  leftOperand: AnyDataOperand;
9
- logicalOperator?: LogicalOperator;
9
+ logicalOperator: LogicalOperator;
10
10
  rightOperand: AnyOperand;
11
11
  }
@@ -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
+ }
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=NestedTermCountsQuery.js.map
3
+ //# sourceMappingURL=MatchesRelatedEntity.js.map
@@ -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,4 @@
1
+ export interface TermCountsQuery {
2
+ attributeKey: string;
3
+ attributeValues: string[];
4
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=TermCountsQuery.js.map
@@ -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.358",
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.74",
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.4.5",
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,5 +0,0 @@
1
- export interface NestedTermCountsQuery {
2
- nestedAttributeKey: string;
3
- filterAttributeKey: string;
4
- filterAttributeValues: string[];
5
- }
@@ -1 +0,0 @@
1
- {"version":3,"file":"NestedTermCountsQuery.js","sourceRoot":"","sources":["../../../../src/models/workflow-entity/search/NestedTermCountsQuery.ts"],"names":[],"mappings":""}