@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.
@@ -199,3 +199,7 @@ export interface IGetWorkflowTriggerStatsParams {
199
199
  workflowId: string;
200
200
  workflowTriggerId: string;
201
201
  }
202
+ export interface IGetWorkflowTriggerWithWorkflowParams {
203
+ projectId: string;
204
+ workflowTriggerId: string;
205
+ }
@@ -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",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abyss-project/console",
3
- "version": "1.0.69",
3
+ "version": "1.0.70",
4
4
  "description": "Core package to interact with AbyssConsole",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",