@abyss-project/console 1.0.69 → 1.0.70
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.
|
@@ -122,6 +122,11 @@ export interface IGetWorkflowTriggerStatsData {
|
|
|
122
122
|
}>;
|
|
123
123
|
}
|
|
124
124
|
export type IGetWorkflowTriggerStatsResponse = IResponse<IGetWorkflowTriggerStatsData>;
|
|
125
|
+
export interface IGetWorkflowTriggerWithWorkflowData {
|
|
126
|
+
workflowTrigger: IWorkflowTrigger;
|
|
127
|
+
workflow: IWorkflow;
|
|
128
|
+
}
|
|
129
|
+
export type IGetWorkflowTriggerWithWorkflowResponse = IResponse<IGetWorkflowTriggerWithWorkflowData>;
|
|
125
130
|
export declare enum WorkflowExecutionSSEEvent {
|
|
126
131
|
EXECUTION_STARTED = "EXECUTION_STARTED",
|
|
127
132
|
EXECUTION_RUNNING = "EXECUTION_RUNNING",
|