@coast/core-api-types 1.2.345 → 1.2.346
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/ActionResultNumberOperand.d.ts +2 -1
- package/dist/models/automations/condition/operands/ComponentOperand.d.ts +2 -1
- package/dist/models/automations/condition/operands/DateOperand.d.ts +2 -1
- package/dist/models/automations/condition/operands/DateTokenOperand.d.ts +2 -1
- package/dist/models/automations/condition/operands/EmptyOperand.d.ts +2 -1
- package/dist/models/automations/condition/operands/NumberArrayOperand.d.ts +2 -1
- package/dist/models/automations/condition/operands/NumberOperand.d.ts +2 -1
- package/dist/models/automations/condition/operands/Operand.d.ts +2 -2
- package/dist/models/automations/condition/operands/PreviousComponentOperand.d.ts +2 -1
- package/dist/models/automations/condition/operands/StringArrayOperand.d.ts +2 -1
- package/dist/models/automations/condition/operands/StringOperand.d.ts +2 -1
- package/dist/models/automations/condition/operands/SubformComponentRefOperand.d.ts +2 -1
- package/dist/models/automations/condition/operands/WorkflowEntityRefComponentOperand.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
|
+
import { OperandType } from '@coast/core-types/automations/condition/operands/OperandType';
|
|
1
2
|
import { Operand } from './Operand';
|
|
2
|
-
export interface ActionResultNumberOperand extends Operand {
|
|
3
|
+
export interface ActionResultNumberOperand extends Operand<OperandType.ACTION_RESULT_NUMBER> {
|
|
3
4
|
actionId: string;
|
|
4
5
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { OperandType } from '@coast/core-types/automations/condition/operands/OperandType';
|
|
1
2
|
import { ScalarKey } from '@coast/core-types/workflow-template/components/scalar/ScalarKey';
|
|
2
3
|
import { Operand } from './Operand';
|
|
3
|
-
export interface ComponentOperand extends Operand {
|
|
4
|
+
export interface ComponentOperand extends Operand<OperandType.COMPONENT> {
|
|
4
5
|
componentId: string;
|
|
5
6
|
scalarKey?: ScalarKey;
|
|
6
7
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AutomationDateToken } from '@coast/core-types/automations/AutomationDateToken';
|
|
2
|
+
import { OperandType } from '@coast/core-types/automations/condition/operands/OperandType';
|
|
2
3
|
import { Operand } from './Operand';
|
|
3
|
-
export interface DateTokenOperand extends Operand {
|
|
4
|
+
export interface DateTokenOperand extends Operand<OperandType.DATE_TOKEN> {
|
|
4
5
|
dateToken: AutomationDateToken;
|
|
5
6
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
+
import { OperandType } from '@coast/core-types/automations/condition/operands/OperandType';
|
|
1
2
|
import { Operand } from './Operand';
|
|
2
|
-
export interface NumberArrayOperand extends Operand {
|
|
3
|
+
export interface NumberArrayOperand extends Operand<OperandType.NUMBER_ARRAY> {
|
|
3
4
|
numberValues: number[];
|
|
4
5
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
+
import { OperandType } from '@coast/core-types/automations/condition/operands/OperandType';
|
|
1
2
|
import { Operand } from './Operand';
|
|
2
|
-
export interface NumberOperand extends Operand {
|
|
3
|
+
export interface NumberOperand extends Operand<OperandType.NUMBER> {
|
|
3
4
|
numberValue: number;
|
|
4
5
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
+
import { OperandType } from '@coast/core-types/automations/condition/operands/OperandType';
|
|
1
2
|
import { Operand } from './Operand';
|
|
2
|
-
export interface PreviousComponentOperand extends Operand {
|
|
3
|
+
export interface PreviousComponentOperand extends Operand<OperandType.PREVIOUS_COMPONENT> {
|
|
3
4
|
componentId: string;
|
|
4
5
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
+
import { OperandType } from '@coast/core-types/automations/condition/operands/OperandType';
|
|
1
2
|
import { Operand } from './Operand';
|
|
2
|
-
export interface StringArrayOperand extends Operand {
|
|
3
|
+
export interface StringArrayOperand extends Operand<OperandType.STRING_ARRAY> {
|
|
3
4
|
stringValues: string[];
|
|
4
5
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
+
import { OperandType } from '@coast/core-types/automations/condition/operands/OperandType';
|
|
1
2
|
import { Operand } from './Operand';
|
|
2
|
-
export interface StringOperand extends Operand {
|
|
3
|
+
export interface StringOperand extends Operand<OperandType.STRING> {
|
|
3
4
|
stringValue: string;
|
|
4
5
|
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { OperandType } from '@coast/core-types/automations/condition/operands/OperandType';
|
|
1
2
|
import { ComponentId } from '@coast/core-types/workflow-template/components/ComponentId';
|
|
2
3
|
import { ComponentType } from '@coast/core-types/workflow-template/components/ComponentType';
|
|
3
4
|
import { Operand } from './Operand';
|
|
4
5
|
import { WorkflowTemplateComponentCase } from './WorkflowTemplateComponentCase';
|
|
5
|
-
export interface SubformComponentRefOperand extends Operand {
|
|
6
|
+
export interface SubformComponentRefOperand extends Operand<OperandType.SUBFORM_COMPONENT_REF> {
|
|
6
7
|
subformComponentId: ComponentId;
|
|
7
8
|
refComponentType: ComponentType;
|
|
8
9
|
cases: WorkflowTemplateComponentCase[];
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { OperandType } from '@coast/core-types/automations/condition/operands/OperandType';
|
|
1
2
|
import { WorkflowTemplateId } from '@coast/core-types/workflow-template/WorkflowTemplateId';
|
|
2
3
|
import { Operand } from './Operand';
|
|
3
|
-
export interface WorkflowEntityRefComponentOperand extends Operand {
|
|
4
|
+
export interface WorkflowEntityRefComponentOperand extends Operand<OperandType.WORKFLOW_ENTITY_REF_COMPONENT> {
|
|
4
5
|
componentId: string;
|
|
5
6
|
refComponentId: string;
|
|
6
7
|
refWorkflowTemplateId?: WorkflowTemplateId;
|