@coast/core-api-types 1.2.318 → 1.2.320
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/operands/DataOperandOneOf.d.ts +2 -0
- package/dist/models/automations/condition/operands/SubformComponentRefOperand.d.ts +9 -0
- package/dist/models/automations/condition/operands/SubformComponentRefOperand.js +3 -0
- package/dist/models/automations/condition/operands/SubformComponentRefOperand.js.map +1 -0
- package/dist/models/automations/condition/operands/WorkflowTemplateComponentCase.d.ts +6 -0
- package/dist/models/automations/condition/operands/WorkflowTemplateComponentCase.js +3 -0
- package/dist/models/automations/condition/operands/WorkflowTemplateComponentCase.js.map +1 -0
- package/dist/models/automations/condition/operands/registry/AnyNumberOperand.d.ts +2 -1
- package/dist/models/channel/Channel.d.ts +1 -1
- package/package.json +2 -2
|
@@ -7,6 +7,7 @@ import { NumberOperand } from './NumberOperand';
|
|
|
7
7
|
import { PreviousComponentOperand } from './PreviousComponentOperand';
|
|
8
8
|
import { StringArrayOperand } from './StringArrayOperand';
|
|
9
9
|
import { StringOperand } from './StringOperand';
|
|
10
|
+
import { SubformComponentRefOperand } from './SubformComponentRefOperand';
|
|
10
11
|
import { WorkflowEntityRefComponentOperand } from './WorkflowEntityRefComponentOperand';
|
|
11
12
|
export interface DataOperandOneOf {
|
|
12
13
|
actionResultNumberOperand?: ActionResultNumberOperand;
|
|
@@ -18,5 +19,6 @@ export interface DataOperandOneOf {
|
|
|
18
19
|
previousComponentOperand?: PreviousComponentOperand;
|
|
19
20
|
stringArrayOperand?: StringArrayOperand;
|
|
20
21
|
stringOperand?: StringOperand;
|
|
22
|
+
subformComponentRefOperand?: SubformComponentRefOperand;
|
|
21
23
|
workflowEntityRefComponentOperand?: WorkflowEntityRefComponentOperand;
|
|
22
24
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ComponentId } from '@coast/core-types/workflow-template/components/ComponentId';
|
|
2
|
+
import { ComponentType } from '@coast/core-types/workflow-template/components/ComponentType';
|
|
3
|
+
import { Operand } from './Operand';
|
|
4
|
+
import { WorkflowTemplateComponentCase } from './WorkflowTemplateComponentCase';
|
|
5
|
+
export interface SubformComponentRefOperand extends Operand {
|
|
6
|
+
subformComponentId: ComponentId;
|
|
7
|
+
refComponentType: ComponentType;
|
|
8
|
+
cases: WorkflowTemplateComponentCase[];
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SubformComponentRefOperand.js","sourceRoot":"","sources":["../../../../../src/models/automations/condition/operands/SubformComponentRefOperand.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ComponentId } from '@coast/core-types/workflow-template/components/ComponentId';
|
|
2
|
+
import { WorkflowTemplateId } from '@coast/core-types/workflow-template/WorkflowTemplateId';
|
|
3
|
+
export interface WorkflowTemplateComponentCase {
|
|
4
|
+
workflowTemplateId: WorkflowTemplateId;
|
|
5
|
+
componentId: ComponentId;
|
|
6
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"WorkflowTemplateComponentCase.js","sourceRoot":"","sources":["../../../../../src/models/automations/condition/operands/WorkflowTemplateComponentCase.ts"],"names":[],"mappings":""}
|
|
@@ -3,5 +3,6 @@ import { ComponentOperand } from '../ComponentOperand';
|
|
|
3
3
|
import { EmptyOperand } from '../EmptyOperand';
|
|
4
4
|
import { NumberOperand } from '../NumberOperand';
|
|
5
5
|
import { PreviousComponentOperand } from '../PreviousComponentOperand';
|
|
6
|
+
import { SubformComponentRefOperand } from '../SubformComponentRefOperand';
|
|
6
7
|
import { WorkflowEntityRefComponentOperand } from '../WorkflowEntityRefComponentOperand';
|
|
7
|
-
export type AnyNumberOperand = ActionResultNumberOperand | ComponentOperand | EmptyOperand | NumberOperand | PreviousComponentOperand | WorkflowEntityRefComponentOperand;
|
|
8
|
+
export type AnyNumberOperand = ActionResultNumberOperand | ComponentOperand | EmptyOperand | NumberOperand | PreviousComponentOperand | SubformComponentRefOperand | WorkflowEntityRefComponentOperand;
|
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.320",
|
|
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.45",
|
|
27
27
|
"@coast/core-utils": "0.0.16",
|
|
28
28
|
"@coast/schemas": "^4.0.2",
|
|
29
29
|
"@coast/service-common": "^2.0.70",
|