@coast/core-api-types 1.2.283 → 1.2.285

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.
@@ -0,0 +1,4 @@
1
+ import { DynamicComponentDataType } from '@coast/core-types/automations/action/component-data/DynamicComponentDataType';
2
+ import { DynamicComponentData } from './DynamicComponentData';
3
+ export interface ClearValue extends DynamicComponentData<DynamicComponentDataType.CLEAR_VALUE> {
4
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=ClearValue.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ClearValue.js","sourceRoot":"","sources":["../../../../../src/models/automations/action/component-data/ClearValue.ts"],"names":[],"mappings":""}
@@ -1,6 +1,7 @@
1
1
  import { DynamicComponentDataType } from '@coast/core-types/automations/action/component-data/DynamicComponentDataType';
2
2
  import { CamelCase } from '@coast/core-utils/CamelCase';
3
3
  import { ActionResultNumber } from './ActionResultNumber';
4
+ import { ClearValue } from './ClearValue';
4
5
  import { CurrentWorkflowEntity } from './CurrentWorkflowEntity';
5
6
  import { CurrentWorkflowEntityComponent } from './CurrentWorkflowEntityComponent';
6
7
  import { DynamicComponentData } from './DynamicComponentData';
@@ -13,6 +14,7 @@ type DynamicComponentDataOneOfs = {
13
14
  };
14
15
  export interface DynamicComponentDataOneOf extends DynamicComponentDataOneOfs {
15
16
  actionResultNumber: ActionResultNumber | undefined;
17
+ clearValue: ClearValue | undefined;
16
18
  currentWorkflowEntity: CurrentWorkflowEntity | undefined;
17
19
  currentWorkflowEntityComponent: CurrentWorkflowEntityComponent | undefined;
18
20
  relatedWorkflowEntityComponent: RelatedWorkflowEntityComponent | undefined;
@@ -0,0 +1,6 @@
1
+ import { OffsetPaginatedRequest } from '../pagination/OffsetPaginatedRequest';
2
+ import { ListBusinessesOrder } from './ListBusinessesOrder';
3
+ export interface ListBusinesses extends OffsetPaginatedRequest {
4
+ name?: string;
5
+ orderBys?: ListBusinessesOrder[];
6
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=ListBusinesses.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ListBusinesses.js","sourceRoot":"","sources":["../../../src/models/business/ListBusinesses.ts"],"names":[],"mappings":""}
@@ -0,0 +1,6 @@
1
+ import { ListBusinessesOrderBy } from '@coast/core-types/business/ListBusinessesOrderBy';
2
+ import { SortDirection } from '@coast/core-types/common/SortDirection';
3
+ export interface ListBusinessesOrder {
4
+ orderBy: ListBusinessesOrderBy;
5
+ direction: SortDirection;
6
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=ListBusinessesOrder.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ListBusinessesOrder.js","sourceRoot":"","sources":["../../../src/models/business/ListBusinessesOrder.ts"],"names":[],"mappings":""}
@@ -0,0 +1,5 @@
1
+ import { OffsetPaginatedResult } from '../pagination/OffsetPaginatedResult';
2
+ import { Business } from './Business';
3
+ export interface ListBusinessesResult extends OffsetPaginatedResult {
4
+ businesses: Business[];
5
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=ListBusinessesResult.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ListBusinessesResult.js","sourceRoot":"","sources":["../../../src/models/business/ListBusinessesResult.ts"],"names":[],"mappings":""}
@@ -1,3 +1,3 @@
1
1
  import { AnyComponentDataValue } from '../workflow-template/components/AnyComponentDataValue';
2
2
  import { Component } from '../workflow-template/components/Component';
3
- export type EntityFields = Record<Component['id'], AnyComponentDataValue>;
3
+ export type EntityFields = Record<Component['id'], AnyComponentDataValue | null>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coast/core-api-types",
3
- "version": "1.2.283",
3
+ "version": "1.2.285",
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.28",
26
+ "@coast/core-types": "0.0.30",
27
27
  "@coast/core-utils": "0.0.12",
28
28
  "@coast/schemas": "^4.0.0",
29
29
  "@coast/service-common": "^2.0.69",