@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.
- package/dist/models/automations/action/component-data/ClearValue.d.ts +4 -0
- package/dist/models/automations/action/component-data/ClearValue.js +3 -0
- package/dist/models/automations/action/component-data/ClearValue.js.map +1 -0
- package/dist/models/automations/action/component-data/DynamicComponentDataOneOf.d.ts +2 -0
- package/dist/models/business/ListBusinesses.d.ts +6 -0
- package/dist/models/business/ListBusinesses.js +3 -0
- package/dist/models/business/ListBusinesses.js.map +1 -0
- package/dist/models/business/ListBusinessesOrder.d.ts +6 -0
- package/dist/models/business/ListBusinessesOrder.js +3 -0
- package/dist/models/business/ListBusinessesOrder.js.map +1 -0
- package/dist/models/business/ListBusinessesResult.d.ts +5 -0
- package/dist/models/business/ListBusinessesResult.js +3 -0
- package/dist/models/business/ListBusinessesResult.js.map +1 -0
- package/dist/models/workflow-entity/EntityFields.d.ts +1 -1
- package/package.json +2 -2
|
@@ -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 @@
|
|
|
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 @@
|
|
|
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 @@
|
|
|
1
|
+
{"version":3,"file":"ListBusinessesOrder.js","sourceRoot":"","sources":["../../../src/models/business/ListBusinessesOrder.ts"],"names":[],"mappings":""}
|
|
@@ -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.
|
|
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.
|
|
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",
|