@abyss-project/console 1.0.17 → 1.0.18
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.
|
@@ -27,11 +27,11 @@ export interface ISwitchCondition {
|
|
|
27
27
|
field: string;
|
|
28
28
|
operator: SwitchConditionOperator;
|
|
29
29
|
value: any;
|
|
30
|
-
|
|
30
|
+
branchId: string;
|
|
31
31
|
}
|
|
32
32
|
export interface ISwitchStepConfig {
|
|
33
33
|
conditions: ISwitchCondition[];
|
|
34
|
-
|
|
34
|
+
defaultBranchId: string | null;
|
|
35
35
|
}
|
|
36
36
|
export interface ICallWebhookActionConfig {
|
|
37
37
|
actionType: WorkflowActionType.CALL_WEBHOOK;
|
|
@@ -54,7 +54,6 @@ export interface ICreateWorkflowStepBody {
|
|
|
54
54
|
description?: string | null;
|
|
55
55
|
config: StepConfig;
|
|
56
56
|
parentWorkflowStepId?: string | null;
|
|
57
|
-
nextWorkflowStepId?: string | null;
|
|
58
57
|
isEnabled?: boolean;
|
|
59
58
|
}
|
|
60
59
|
export interface IListWorkflowStepsParams {
|
|
@@ -72,7 +71,6 @@ export interface IUpdateWorkflowStepBody {
|
|
|
72
71
|
description?: string | null;
|
|
73
72
|
config?: StepConfig;
|
|
74
73
|
parentWorkflowStepId?: string | null;
|
|
75
|
-
nextWorkflowStepId?: string | null;
|
|
76
74
|
isEnabled?: boolean;
|
|
77
75
|
}
|
|
78
76
|
export interface IDeleteWorkflowStepParams {
|