@epilot/automation-client 1.1.0 → 1.2.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/definition.js +1 -1
- package/dist/openapi.d.ts +12 -2
- package/package.json +1 -1
- package/src/openapi.d.ts +12 -2
package/dist/openapi.d.ts
CHANGED
|
@@ -562,6 +562,16 @@ declare namespace Paths {
|
|
|
562
562
|
export type $200 = Components.Schemas.AutomationFlow;
|
|
563
563
|
}
|
|
564
564
|
}
|
|
565
|
+
namespace RetriggerAction {
|
|
566
|
+
namespace Parameters {
|
|
567
|
+
export type ActionId = Components.Schemas.AutomationActionId;
|
|
568
|
+
export type ExecutionId = Components.Schemas.AutomationExecutionId;
|
|
569
|
+
}
|
|
570
|
+
export interface PathParameters {
|
|
571
|
+
execution_id: Parameters.ExecutionId;
|
|
572
|
+
action_id: Parameters.ActionId;
|
|
573
|
+
}
|
|
574
|
+
}
|
|
565
575
|
namespace SearchFlows {
|
|
566
576
|
namespace Parameters {
|
|
567
577
|
export type From = number;
|
|
@@ -692,7 +702,7 @@ export interface OperationMethods {
|
|
|
692
702
|
* Retrigger a specific automation execution action
|
|
693
703
|
*/
|
|
694
704
|
'retriggerAction'(
|
|
695
|
-
parameters?: Parameters<
|
|
705
|
+
parameters?: Parameters<Paths.RetriggerAction.PathParameters> | null,
|
|
696
706
|
data?: any,
|
|
697
707
|
config?: AxiosRequestConfig
|
|
698
708
|
): OperationResponse<any>
|
|
@@ -804,7 +814,7 @@ export interface PathsDictionary {
|
|
|
804
814
|
* Retrigger a specific automation execution action
|
|
805
815
|
*/
|
|
806
816
|
'post'(
|
|
807
|
-
parameters?: Parameters<
|
|
817
|
+
parameters?: Parameters<Paths.RetriggerAction.PathParameters> | null,
|
|
808
818
|
data?: any,
|
|
809
819
|
config?: AxiosRequestConfig
|
|
810
820
|
): OperationResponse<any>
|
package/package.json
CHANGED
package/src/openapi.d.ts
CHANGED
|
@@ -562,6 +562,16 @@ declare namespace Paths {
|
|
|
562
562
|
export type $200 = Components.Schemas.AutomationFlow;
|
|
563
563
|
}
|
|
564
564
|
}
|
|
565
|
+
namespace RetriggerAction {
|
|
566
|
+
namespace Parameters {
|
|
567
|
+
export type ActionId = Components.Schemas.AutomationActionId;
|
|
568
|
+
export type ExecutionId = Components.Schemas.AutomationExecutionId;
|
|
569
|
+
}
|
|
570
|
+
export interface PathParameters {
|
|
571
|
+
execution_id: Parameters.ExecutionId;
|
|
572
|
+
action_id: Parameters.ActionId;
|
|
573
|
+
}
|
|
574
|
+
}
|
|
565
575
|
namespace SearchFlows {
|
|
566
576
|
namespace Parameters {
|
|
567
577
|
export type From = number;
|
|
@@ -692,7 +702,7 @@ export interface OperationMethods {
|
|
|
692
702
|
* Retrigger a specific automation execution action
|
|
693
703
|
*/
|
|
694
704
|
'retriggerAction'(
|
|
695
|
-
parameters?: Parameters<
|
|
705
|
+
parameters?: Parameters<Paths.RetriggerAction.PathParameters> | null,
|
|
696
706
|
data?: any,
|
|
697
707
|
config?: AxiosRequestConfig
|
|
698
708
|
): OperationResponse<any>
|
|
@@ -804,7 +814,7 @@ export interface PathsDictionary {
|
|
|
804
814
|
* Retrigger a specific automation execution action
|
|
805
815
|
*/
|
|
806
816
|
'post'(
|
|
807
|
-
parameters?: Parameters<
|
|
817
|
+
parameters?: Parameters<Paths.RetriggerAction.PathParameters> | null,
|
|
808
818
|
data?: any,
|
|
809
819
|
config?: AxiosRequestConfig
|
|
810
820
|
): OperationResponse<any>
|