@epilot/automation-client 1.0.1 → 1.1.0

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/openapi.d.ts CHANGED
@@ -686,6 +686,16 @@ export interface OperationMethods {
686
686
  data?: any,
687
687
  config?: AxiosRequestConfig
688
688
  ): OperationResponse<Paths.CancelExecution.Responses.$200>
689
+ /**
690
+ * retriggerAction - retriggerAction
691
+ *
692
+ * Retrigger a specific automation execution action
693
+ */
694
+ 'retriggerAction'(
695
+ parameters?: Parameters<UnknownParamsObject> | null,
696
+ data?: any,
697
+ config?: AxiosRequestConfig
698
+ ): OperationResponse<any>
689
699
  }
690
700
 
691
701
  export interface PathsDictionary {
@@ -787,6 +797,18 @@ export interface PathsDictionary {
787
797
  config?: AxiosRequestConfig
788
798
  ): OperationResponse<Paths.CancelExecution.Responses.$200>
789
799
  }
800
+ ['/v1/automation/executions/{execution_id}/{action_id}/retrigger']: {
801
+ /**
802
+ * retriggerAction - retriggerAction
803
+ *
804
+ * Retrigger a specific automation execution action
805
+ */
806
+ 'post'(
807
+ parameters?: Parameters<UnknownParamsObject> | null,
808
+ data?: any,
809
+ config?: AxiosRequestConfig
810
+ ): OperationResponse<any>
811
+ }
790
812
  }
791
813
 
792
814
  export type Client = OpenAPIClient<OperationMethods, PathsDictionary>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/automation-client",
3
- "version": "1.0.1",
3
+ "version": "1.1.0",
4
4
  "description": "API Client for epilot automation API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/openapi.d.ts CHANGED
@@ -686,6 +686,16 @@ export interface OperationMethods {
686
686
  data?: any,
687
687
  config?: AxiosRequestConfig
688
688
  ): OperationResponse<Paths.CancelExecution.Responses.$200>
689
+ /**
690
+ * retriggerAction - retriggerAction
691
+ *
692
+ * Retrigger a specific automation execution action
693
+ */
694
+ 'retriggerAction'(
695
+ parameters?: Parameters<UnknownParamsObject> | null,
696
+ data?: any,
697
+ config?: AxiosRequestConfig
698
+ ): OperationResponse<any>
689
699
  }
690
700
 
691
701
  export interface PathsDictionary {
@@ -787,6 +797,18 @@ export interface PathsDictionary {
787
797
  config?: AxiosRequestConfig
788
798
  ): OperationResponse<Paths.CancelExecution.Responses.$200>
789
799
  }
800
+ ['/v1/automation/executions/{execution_id}/{action_id}/retrigger']: {
801
+ /**
802
+ * retriggerAction - retriggerAction
803
+ *
804
+ * Retrigger a specific automation execution action
805
+ */
806
+ 'post'(
807
+ parameters?: Parameters<UnknownParamsObject> | null,
808
+ data?: any,
809
+ config?: AxiosRequestConfig
810
+ ): OperationResponse<any>
811
+ }
790
812
  }
791
813
 
792
814
  export type Client = OpenAPIClient<OperationMethods, PathsDictionary>