@embedworkflow/sdk 1.0.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/README.md +45 -0
- package/dist/api/accounts-api.d.ts +172 -0
- package/dist/api/accounts-api.js +267 -0
- package/dist/api/action-types-api.d.ts +359 -0
- package/dist/api/action-types-api.js +571 -0
- package/dist/api/actions-api.d.ts +421 -0
- package/dist/api/actions-api.js +650 -0
- package/dist/api/app-connections-api.d.ts +295 -0
- package/dist/api/app-connections-api.js +461 -0
- package/dist/api/available-apps-api.d.ts +133 -0
- package/dist/api/available-apps-api.js +207 -0
- package/dist/api/data-fields-api.d.ts +173 -0
- package/dist/api/data-fields-api.js +267 -0
- package/dist/api/events-api.d.ts +100 -0
- package/dist/api/events-api.js +152 -0
- package/dist/api/executions-api.d.ts +196 -0
- package/dist/api/executions-api.js +303 -0
- package/dist/api/installed-apps-api.d.ts +219 -0
- package/dist/api/installed-apps-api.js +343 -0
- package/dist/api/payments-api.d.ts +100 -0
- package/dist/api/payments-api.js +152 -0
- package/dist/api/triggers-api.d.ts +232 -0
- package/dist/api/triggers-api.js +365 -0
- package/dist/api/users-api.d.ts +276 -0
- package/dist/api/users-api.js +433 -0
- package/dist/api/workflows-api.d.ts +605 -0
- package/dist/api/workflows-api.js +940 -0
- package/dist/api.d.ts +24 -0
- package/dist/api.js +42 -0
- package/dist/base.d.ts +66 -0
- package/dist/base.js +65 -0
- package/dist/common.d.ts +65 -0
- package/dist/common.js +161 -0
- package/dist/configuration.d.ts +91 -0
- package/dist/configuration.js +43 -0
- package/dist/esm/api/accounts-api.d.ts +172 -0
- package/dist/esm/api/accounts-api.js +260 -0
- package/dist/esm/api/action-types-api.d.ts +359 -0
- package/dist/esm/api/action-types-api.js +564 -0
- package/dist/esm/api/actions-api.d.ts +421 -0
- package/dist/esm/api/actions-api.js +643 -0
- package/dist/esm/api/app-connections-api.d.ts +295 -0
- package/dist/esm/api/app-connections-api.js +454 -0
- package/dist/esm/api/available-apps-api.d.ts +133 -0
- package/dist/esm/api/available-apps-api.js +200 -0
- package/dist/esm/api/data-fields-api.d.ts +173 -0
- package/dist/esm/api/data-fields-api.js +260 -0
- package/dist/esm/api/events-api.d.ts +100 -0
- package/dist/esm/api/events-api.js +145 -0
- package/dist/esm/api/executions-api.d.ts +196 -0
- package/dist/esm/api/executions-api.js +296 -0
- package/dist/esm/api/installed-apps-api.d.ts +219 -0
- package/dist/esm/api/installed-apps-api.js +336 -0
- package/dist/esm/api/payments-api.d.ts +100 -0
- package/dist/esm/api/payments-api.js +145 -0
- package/dist/esm/api/triggers-api.d.ts +232 -0
- package/dist/esm/api/triggers-api.js +358 -0
- package/dist/esm/api/users-api.d.ts +276 -0
- package/dist/esm/api/users-api.js +426 -0
- package/dist/esm/api/workflows-api.d.ts +605 -0
- package/dist/esm/api/workflows-api.js +933 -0
- package/dist/esm/api.d.ts +24 -0
- package/dist/esm/api.js +26 -0
- package/dist/esm/base.d.ts +66 -0
- package/dist/esm/base.js +60 -0
- package/dist/esm/common.d.ts +65 -0
- package/dist/esm/common.js +149 -0
- package/dist/esm/configuration.d.ts +91 -0
- package/dist/esm/configuration.js +39 -0
- package/dist/esm/index.d.ts +79 -0
- package/dist/esm/index.js +88 -0
- package/dist/esm/models/api-v1-action-types-post-request-form-draft-inner.d.ts +75 -0
- package/dist/esm/models/api-v1-action-types-post-request-form-draft-inner.js +25 -0
- package/dist/esm/models/api-v1-action-types-post-request-icon-draft.d.ts +36 -0
- package/dist/esm/models/api-v1-action-types-post-request-icon-draft.js +14 -0
- package/dist/esm/models/api-v1-action-types-post-request.d.ts +105 -0
- package/dist/esm/models/api-v1-action-types-post-request.js +14 -0
- package/dist/esm/models/api-v1-app-connections-post-request.d.ts +42 -0
- package/dist/esm/models/api-v1-app-connections-post-request.js +14 -0
- package/dist/esm/models/clone-workflow201-response.d.ts +183 -0
- package/dist/esm/models/clone-workflow201-response.js +17 -0
- package/dist/esm/models/create-user-token-request.d.ts +31 -0
- package/dist/esm/models/create-user-token-request.js +14 -0
- package/dist/esm/models/create-user-token200-response.d.ts +24 -0
- package/dist/esm/models/create-user-token200-response.js +14 -0
- package/dist/esm/models/create-workflow-request-template-draft-nodes-inner.d.ts +132 -0
- package/dist/esm/models/create-workflow-request-template-draft-nodes-inner.js +25 -0
- package/dist/esm/models/create-workflow-request-template-draft.d.ts +31 -0
- package/dist/esm/models/create-workflow-request-template-draft.js +14 -0
- package/dist/esm/models/create-workflow-request.d.ts +67 -0
- package/dist/esm/models/create-workflow-request.js +14 -0
- package/dist/esm/models/delete-workflow200-response-one-of.d.ts +24 -0
- package/dist/esm/models/delete-workflow200-response-one-of.js +14 -0
- package/dist/esm/models/delete-workflow200-response-one-of1.d.ts +24 -0
- package/dist/esm/models/delete-workflow200-response-one-of1.js +14 -0
- package/dist/esm/models/delete-workflow200-response.d.ts +19 -0
- package/dist/esm/models/delete-workflow200-response.js +14 -0
- package/dist/esm/models/discard-workflow-draft-request.d.ts +30 -0
- package/dist/esm/models/discard-workflow-draft-request.js +14 -0
- package/dist/esm/models/execute-workflow-request.d.ts +43 -0
- package/dist/esm/models/execute-workflow-request.js +17 -0
- package/dist/esm/models/execute-workflow201-response.d.ts +122 -0
- package/dist/esm/models/execute-workflow201-response.js +14 -0
- package/dist/esm/models/import-configuration-request-schema.d.ts +19 -0
- package/dist/esm/models/import-configuration-request-schema.js +14 -0
- package/dist/esm/models/import-configuration-request.d.ts +38 -0
- package/dist/esm/models/import-configuration-request.js +18 -0
- package/dist/esm/models/import-configuration201-response.d.ts +48 -0
- package/dist/esm/models/import-configuration201-response.js +14 -0
- package/dist/esm/models/index.d.ts +59 -0
- package/dist/esm/models/index.js +59 -0
- package/dist/esm/models/install-app-request.d.ts +30 -0
- package/dist/esm/models/install-app-request.js +14 -0
- package/dist/esm/models/list-action-types200-response-collection-inner.d.ts +260 -0
- package/dist/esm/models/list-action-types200-response-collection-inner.js +27 -0
- package/dist/esm/models/list-action-types200-response-meta.d.ts +36 -0
- package/dist/esm/models/list-action-types200-response-meta.js +14 -0
- package/dist/esm/models/list-action-types200-response.d.ts +32 -0
- package/dist/esm/models/list-action-types200-response.js +14 -0
- package/dist/esm/models/list-actions200-response-collection-inner.d.ts +144 -0
- package/dist/esm/models/list-actions200-response-collection-inner.js +14 -0
- package/dist/esm/models/list-actions200-response.d.ts +32 -0
- package/dist/esm/models/list-actions200-response.js +14 -0
- package/dist/esm/models/list-app-connections200-response-collection-inner.d.ts +66 -0
- package/dist/esm/models/list-app-connections200-response-collection-inner.js +14 -0
- package/dist/esm/models/list-app-connections200-response.d.ts +32 -0
- package/dist/esm/models/list-app-connections200-response.js +14 -0
- package/dist/esm/models/list-available-apps200-response-collection-inner.d.ts +66 -0
- package/dist/esm/models/list-available-apps200-response-collection-inner.js +14 -0
- package/dist/esm/models/list-available-apps200-response.d.ts +32 -0
- package/dist/esm/models/list-available-apps200-response.js +14 -0
- package/dist/esm/models/list-data-fields-type-parameter.d.ts +16 -0
- package/dist/esm/models/list-data-fields-type-parameter.js +14 -0
- package/dist/esm/models/list-data-fields200-response-collection-inner.d.ts +84 -0
- package/dist/esm/models/list-data-fields200-response-collection-inner.js +14 -0
- package/dist/esm/models/list-data-fields200-response.d.ts +32 -0
- package/dist/esm/models/list-data-fields200-response.js +14 -0
- package/dist/esm/models/list-events200-response-collection-inner.d.ts +78 -0
- package/dist/esm/models/list-events200-response-collection-inner.js +14 -0
- package/dist/esm/models/list-events200-response.d.ts +32 -0
- package/dist/esm/models/list-events200-response.js +14 -0
- package/dist/esm/models/list-installed-apps200-response-collection-inner.d.ts +114 -0
- package/dist/esm/models/list-installed-apps200-response-collection-inner.js +14 -0
- package/dist/esm/models/list-installed-apps200-response.d.ts +32 -0
- package/dist/esm/models/list-installed-apps200-response.js +14 -0
- package/dist/esm/models/list-triggers200-response-collection-inner.d.ts +102 -0
- package/dist/esm/models/list-triggers200-response-collection-inner.js +14 -0
- package/dist/esm/models/list-triggers200-response.d.ts +32 -0
- package/dist/esm/models/list-triggers200-response.js +14 -0
- package/dist/esm/models/list-users200-response-collection-inner.d.ts +84 -0
- package/dist/esm/models/list-users200-response-collection-inner.js +14 -0
- package/dist/esm/models/list-users200-response.d.ts +32 -0
- package/dist/esm/models/list-users200-response.js +14 -0
- package/dist/esm/models/list-workflow-executions200-response.d.ts +32 -0
- package/dist/esm/models/list-workflow-executions200-response.js +14 -0
- package/dist/esm/models/list-workflow-versions200-response-collection-inner.d.ts +60 -0
- package/dist/esm/models/list-workflow-versions200-response-collection-inner.js +14 -0
- package/dist/esm/models/list-workflow-versions200-response.d.ts +32 -0
- package/dist/esm/models/list-workflow-versions200-response.js +14 -0
- package/dist/esm/models/publish-workflow-request.d.ts +24 -0
- package/dist/esm/models/publish-workflow-request.js +14 -0
- package/dist/esm/models/retrieve-account200-response.d.ts +92 -0
- package/dist/esm/models/retrieve-account200-response.js +14 -0
- package/dist/esm/models/retrieve-action-type404-response.d.ts +36 -0
- package/dist/esm/models/retrieve-action-type404-response.js +14 -0
- package/dist/esm/models/retrieve-available-app200-response.d.ts +74 -0
- package/dist/esm/models/retrieve-available-app200-response.js +14 -0
- package/dist/esm/models/retrieve-execution200-response.d.ts +136 -0
- package/dist/esm/models/retrieve-execution200-response.js +14 -0
- package/dist/esm/models/retrieve-installed-app200-response.d.ts +122 -0
- package/dist/esm/models/retrieve-installed-app200-response.js +14 -0
- package/dist/esm/models/retrieve-workflow200-response.d.ts +215 -0
- package/dist/esm/models/retrieve-workflow200-response.js +17 -0
- package/dist/esm/models/retry-action-request.d.ts +31 -0
- package/dist/esm/models/retry-action-request.js +14 -0
- package/dist/esm/models/stop-executions-request.d.ts +31 -0
- package/dist/esm/models/stop-executions-request.js +14 -0
- package/dist/esm/models/trigger-workflow-request.d.ts +50 -0
- package/dist/esm/models/trigger-workflow-request.js +14 -0
- package/dist/esm/models/update-account-request-user-data-schema-inner.d.ts +48 -0
- package/dist/esm/models/update-account-request-user-data-schema-inner.js +14 -0
- package/dist/esm/models/update-account-request.d.ts +75 -0
- package/dist/esm/models/update-account-request.js +14 -0
- package/dist/esm/models/update-action-type-request.d.ts +30 -0
- package/dist/esm/models/update-action-type-request.js +14 -0
- package/dist/esm/models/update-installed-app-request.d.ts +24 -0
- package/dist/esm/models/update-installed-app-request.js +14 -0
- package/dist/esm/models/update-workflow-request.d.ts +79 -0
- package/dist/esm/models/update-workflow-request.js +14 -0
- package/dist/esm/models/upsert-user-request.d.ts +44 -0
- package/dist/esm/models/upsert-user-request.js +14 -0
- package/dist/index.d.ts +79 -0
- package/dist/index.js +106 -0
- package/dist/models/api-v1-action-types-post-request-form-draft-inner.d.ts +75 -0
- package/dist/models/api-v1-action-types-post-request-form-draft-inner.js +28 -0
- package/dist/models/api-v1-action-types-post-request-icon-draft.d.ts +36 -0
- package/dist/models/api-v1-action-types-post-request-icon-draft.js +15 -0
- package/dist/models/api-v1-action-types-post-request.d.ts +105 -0
- package/dist/models/api-v1-action-types-post-request.js +15 -0
- package/dist/models/api-v1-app-connections-post-request.d.ts +42 -0
- package/dist/models/api-v1-app-connections-post-request.js +15 -0
- package/dist/models/clone-workflow201-response.d.ts +183 -0
- package/dist/models/clone-workflow201-response.js +20 -0
- package/dist/models/create-user-token-request.d.ts +31 -0
- package/dist/models/create-user-token-request.js +15 -0
- package/dist/models/create-user-token200-response.d.ts +24 -0
- package/dist/models/create-user-token200-response.js +15 -0
- package/dist/models/create-workflow-request-template-draft-nodes-inner.d.ts +132 -0
- package/dist/models/create-workflow-request-template-draft-nodes-inner.js +28 -0
- package/dist/models/create-workflow-request-template-draft.d.ts +31 -0
- package/dist/models/create-workflow-request-template-draft.js +15 -0
- package/dist/models/create-workflow-request.d.ts +67 -0
- package/dist/models/create-workflow-request.js +15 -0
- package/dist/models/delete-workflow200-response-one-of.d.ts +24 -0
- package/dist/models/delete-workflow200-response-one-of.js +15 -0
- package/dist/models/delete-workflow200-response-one-of1.d.ts +24 -0
- package/dist/models/delete-workflow200-response-one-of1.js +15 -0
- package/dist/models/delete-workflow200-response.d.ts +19 -0
- package/dist/models/delete-workflow200-response.js +15 -0
- package/dist/models/discard-workflow-draft-request.d.ts +30 -0
- package/dist/models/discard-workflow-draft-request.js +15 -0
- package/dist/models/execute-workflow-request.d.ts +43 -0
- package/dist/models/execute-workflow-request.js +20 -0
- package/dist/models/execute-workflow201-response.d.ts +122 -0
- package/dist/models/execute-workflow201-response.js +15 -0
- package/dist/models/import-configuration-request-schema.d.ts +19 -0
- package/dist/models/import-configuration-request-schema.js +15 -0
- package/dist/models/import-configuration-request.d.ts +38 -0
- package/dist/models/import-configuration-request.js +21 -0
- package/dist/models/import-configuration201-response.d.ts +48 -0
- package/dist/models/import-configuration201-response.js +15 -0
- package/dist/models/index.d.ts +59 -0
- package/dist/models/index.js +75 -0
- package/dist/models/install-app-request.d.ts +30 -0
- package/dist/models/install-app-request.js +15 -0
- package/dist/models/list-action-types200-response-collection-inner.d.ts +260 -0
- package/dist/models/list-action-types200-response-collection-inner.js +30 -0
- package/dist/models/list-action-types200-response-meta.d.ts +36 -0
- package/dist/models/list-action-types200-response-meta.js +15 -0
- package/dist/models/list-action-types200-response.d.ts +32 -0
- package/dist/models/list-action-types200-response.js +15 -0
- package/dist/models/list-actions200-response-collection-inner.d.ts +144 -0
- package/dist/models/list-actions200-response-collection-inner.js +15 -0
- package/dist/models/list-actions200-response.d.ts +32 -0
- package/dist/models/list-actions200-response.js +15 -0
- package/dist/models/list-app-connections200-response-collection-inner.d.ts +66 -0
- package/dist/models/list-app-connections200-response-collection-inner.js +15 -0
- package/dist/models/list-app-connections200-response.d.ts +32 -0
- package/dist/models/list-app-connections200-response.js +15 -0
- package/dist/models/list-available-apps200-response-collection-inner.d.ts +66 -0
- package/dist/models/list-available-apps200-response-collection-inner.js +15 -0
- package/dist/models/list-available-apps200-response.d.ts +32 -0
- package/dist/models/list-available-apps200-response.js +15 -0
- package/dist/models/list-data-fields-type-parameter.d.ts +16 -0
- package/dist/models/list-data-fields-type-parameter.js +15 -0
- package/dist/models/list-data-fields200-response-collection-inner.d.ts +84 -0
- package/dist/models/list-data-fields200-response-collection-inner.js +15 -0
- package/dist/models/list-data-fields200-response.d.ts +32 -0
- package/dist/models/list-data-fields200-response.js +15 -0
- package/dist/models/list-events200-response-collection-inner.d.ts +78 -0
- package/dist/models/list-events200-response-collection-inner.js +15 -0
- package/dist/models/list-events200-response.d.ts +32 -0
- package/dist/models/list-events200-response.js +15 -0
- package/dist/models/list-installed-apps200-response-collection-inner.d.ts +114 -0
- package/dist/models/list-installed-apps200-response-collection-inner.js +15 -0
- package/dist/models/list-installed-apps200-response.d.ts +32 -0
- package/dist/models/list-installed-apps200-response.js +15 -0
- package/dist/models/list-triggers200-response-collection-inner.d.ts +102 -0
- package/dist/models/list-triggers200-response-collection-inner.js +15 -0
- package/dist/models/list-triggers200-response.d.ts +32 -0
- package/dist/models/list-triggers200-response.js +15 -0
- package/dist/models/list-users200-response-collection-inner.d.ts +84 -0
- package/dist/models/list-users200-response-collection-inner.js +15 -0
- package/dist/models/list-users200-response.d.ts +32 -0
- package/dist/models/list-users200-response.js +15 -0
- package/dist/models/list-workflow-executions200-response.d.ts +32 -0
- package/dist/models/list-workflow-executions200-response.js +15 -0
- package/dist/models/list-workflow-versions200-response-collection-inner.d.ts +60 -0
- package/dist/models/list-workflow-versions200-response-collection-inner.js +15 -0
- package/dist/models/list-workflow-versions200-response.d.ts +32 -0
- package/dist/models/list-workflow-versions200-response.js +15 -0
- package/dist/models/publish-workflow-request.d.ts +24 -0
- package/dist/models/publish-workflow-request.js +15 -0
- package/dist/models/retrieve-account200-response.d.ts +92 -0
- package/dist/models/retrieve-account200-response.js +15 -0
- package/dist/models/retrieve-action-type404-response.d.ts +36 -0
- package/dist/models/retrieve-action-type404-response.js +15 -0
- package/dist/models/retrieve-available-app200-response.d.ts +74 -0
- package/dist/models/retrieve-available-app200-response.js +15 -0
- package/dist/models/retrieve-execution200-response.d.ts +136 -0
- package/dist/models/retrieve-execution200-response.js +15 -0
- package/dist/models/retrieve-installed-app200-response.d.ts +122 -0
- package/dist/models/retrieve-installed-app200-response.js +15 -0
- package/dist/models/retrieve-workflow200-response.d.ts +215 -0
- package/dist/models/retrieve-workflow200-response.js +20 -0
- package/dist/models/retry-action-request.d.ts +31 -0
- package/dist/models/retry-action-request.js +15 -0
- package/dist/models/stop-executions-request.d.ts +31 -0
- package/dist/models/stop-executions-request.js +15 -0
- package/dist/models/trigger-workflow-request.d.ts +50 -0
- package/dist/models/trigger-workflow-request.js +15 -0
- package/dist/models/update-account-request-user-data-schema-inner.d.ts +48 -0
- package/dist/models/update-account-request-user-data-schema-inner.js +15 -0
- package/dist/models/update-account-request.d.ts +75 -0
- package/dist/models/update-account-request.js +15 -0
- package/dist/models/update-action-type-request.d.ts +30 -0
- package/dist/models/update-action-type-request.js +15 -0
- package/dist/models/update-installed-app-request.d.ts +24 -0
- package/dist/models/update-installed-app-request.js +15 -0
- package/dist/models/update-workflow-request.d.ts +79 -0
- package/dist/models/update-workflow-request.js +15 -0
- package/dist/models/upsert-user-request.d.ts +44 -0
- package/dist/models/upsert-user-request.js +15 -0
- package/package.json +38 -0
|
@@ -0,0 +1,421 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* API V1
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: v1
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { Configuration } from '../configuration';
|
|
13
|
+
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
|
+
import { RequestArgs, BaseAPI } from '../base';
|
|
15
|
+
import { ListActions200Response } from '../models';
|
|
16
|
+
import { RetryActionRequest } from '../models';
|
|
17
|
+
/**
|
|
18
|
+
* ActionsApi - axios parameter creator
|
|
19
|
+
* @export
|
|
20
|
+
*/
|
|
21
|
+
export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @summary List actions
|
|
25
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
26
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
27
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
28
|
+
* @param {string} [status] Filter results by status
|
|
29
|
+
* @param {string} [executionId] Filter results by execution id
|
|
30
|
+
* @param {string} [workflowId] Filter results by workflow id
|
|
31
|
+
* @param {*} [options] Override http request option.
|
|
32
|
+
* @throws {RequiredError}
|
|
33
|
+
*/
|
|
34
|
+
listActions: (startingAfter?: string, endingBefore?: string, limit?: number, status?: string, executionId?: string, workflowId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @summary List completed actions
|
|
38
|
+
* @param {string} status Filter results by status
|
|
39
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
40
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
41
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
42
|
+
* @param {string} [executionId] Filter results by execution id
|
|
43
|
+
* @param {string} [workflowId] Filter results by workflow id
|
|
44
|
+
* @param {*} [options] Override http request option.
|
|
45
|
+
* @throws {RequiredError}
|
|
46
|
+
*/
|
|
47
|
+
listCompletedActions: (status: string, startingAfter?: string, endingBefore?: string, limit?: number, executionId?: string, workflowId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @summary List failed actions
|
|
51
|
+
* @param {string} status Filter results by status
|
|
52
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
53
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
54
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
55
|
+
* @param {string} [executionId] Filter results by execution id
|
|
56
|
+
* @param {string} [workflowId] Filter results by workflow id
|
|
57
|
+
* @param {*} [options] Override http request option.
|
|
58
|
+
* @throws {RequiredError}
|
|
59
|
+
*/
|
|
60
|
+
listFailedActions: (status: string, startingAfter?: string, endingBefore?: string, limit?: number, executionId?: string, workflowId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @summary List scheduled actions
|
|
64
|
+
* @param {string} status Filter results by status
|
|
65
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
66
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
67
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
68
|
+
* @param {string} [executionId] Filter results by execution id
|
|
69
|
+
* @param {string} [workflowId] Filter results by workflow id
|
|
70
|
+
* @param {*} [options] Override http request option.
|
|
71
|
+
* @throws {RequiredError}
|
|
72
|
+
*/
|
|
73
|
+
listScheduledActions: (status: string, startingAfter?: string, endingBefore?: string, limit?: number, executionId?: string, workflowId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @summary List workflow actions
|
|
77
|
+
* @param {string} workflowId Filter results by workflow id
|
|
78
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
79
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
80
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
81
|
+
* @param {*} [options] Override http request option.
|
|
82
|
+
* @throws {RequiredError}
|
|
83
|
+
*/
|
|
84
|
+
listWorkflowActions: (workflowId: string, startingAfter?: string, endingBefore?: string, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
85
|
+
/**
|
|
86
|
+
*
|
|
87
|
+
* @summary Retry action
|
|
88
|
+
* @param {string} hashid Action\'s hashid
|
|
89
|
+
* @param {RetryActionRequest} [retryActionRequest]
|
|
90
|
+
* @param {*} [options] Override http request option.
|
|
91
|
+
* @throws {RequiredError}
|
|
92
|
+
*/
|
|
93
|
+
retryAction: (hashid: string, retryActionRequest?: RetryActionRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
94
|
+
};
|
|
95
|
+
/**
|
|
96
|
+
* ActionsApi - functional programming interface
|
|
97
|
+
* @export
|
|
98
|
+
*/
|
|
99
|
+
export declare const ActionsApiFp: (configuration?: Configuration) => {
|
|
100
|
+
/**
|
|
101
|
+
*
|
|
102
|
+
* @summary List actions
|
|
103
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
104
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
105
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
106
|
+
* @param {string} [status] Filter results by status
|
|
107
|
+
* @param {string} [executionId] Filter results by execution id
|
|
108
|
+
* @param {string} [workflowId] Filter results by workflow id
|
|
109
|
+
* @param {*} [options] Override http request option.
|
|
110
|
+
* @throws {RequiredError}
|
|
111
|
+
*/
|
|
112
|
+
listActions(startingAfter?: string, endingBefore?: string, limit?: number, status?: string, executionId?: string, workflowId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListActions200Response>>;
|
|
113
|
+
/**
|
|
114
|
+
*
|
|
115
|
+
* @summary List completed actions
|
|
116
|
+
* @param {string} status Filter results by status
|
|
117
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
118
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
119
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
120
|
+
* @param {string} [executionId] Filter results by execution id
|
|
121
|
+
* @param {string} [workflowId] Filter results by workflow id
|
|
122
|
+
* @param {*} [options] Override http request option.
|
|
123
|
+
* @throws {RequiredError}
|
|
124
|
+
*/
|
|
125
|
+
listCompletedActions(status: string, startingAfter?: string, endingBefore?: string, limit?: number, executionId?: string, workflowId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListActions200Response>>;
|
|
126
|
+
/**
|
|
127
|
+
*
|
|
128
|
+
* @summary List failed actions
|
|
129
|
+
* @param {string} status Filter results by status
|
|
130
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
131
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
132
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
133
|
+
* @param {string} [executionId] Filter results by execution id
|
|
134
|
+
* @param {string} [workflowId] Filter results by workflow id
|
|
135
|
+
* @param {*} [options] Override http request option.
|
|
136
|
+
* @throws {RequiredError}
|
|
137
|
+
*/
|
|
138
|
+
listFailedActions(status: string, startingAfter?: string, endingBefore?: string, limit?: number, executionId?: string, workflowId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListActions200Response>>;
|
|
139
|
+
/**
|
|
140
|
+
*
|
|
141
|
+
* @summary List scheduled actions
|
|
142
|
+
* @param {string} status Filter results by status
|
|
143
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
144
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
145
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
146
|
+
* @param {string} [executionId] Filter results by execution id
|
|
147
|
+
* @param {string} [workflowId] Filter results by workflow id
|
|
148
|
+
* @param {*} [options] Override http request option.
|
|
149
|
+
* @throws {RequiredError}
|
|
150
|
+
*/
|
|
151
|
+
listScheduledActions(status: string, startingAfter?: string, endingBefore?: string, limit?: number, executionId?: string, workflowId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListActions200Response>>;
|
|
152
|
+
/**
|
|
153
|
+
*
|
|
154
|
+
* @summary List workflow actions
|
|
155
|
+
* @param {string} workflowId Filter results by workflow id
|
|
156
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
157
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
158
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
159
|
+
* @param {*} [options] Override http request option.
|
|
160
|
+
* @throws {RequiredError}
|
|
161
|
+
*/
|
|
162
|
+
listWorkflowActions(workflowId: string, startingAfter?: string, endingBefore?: string, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListActions200Response>>;
|
|
163
|
+
/**
|
|
164
|
+
*
|
|
165
|
+
* @summary Retry action
|
|
166
|
+
* @param {string} hashid Action\'s hashid
|
|
167
|
+
* @param {RetryActionRequest} [retryActionRequest]
|
|
168
|
+
* @param {*} [options] Override http request option.
|
|
169
|
+
* @throws {RequiredError}
|
|
170
|
+
*/
|
|
171
|
+
retryAction(hashid: string, retryActionRequest?: RetryActionRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<object>>;
|
|
172
|
+
};
|
|
173
|
+
/**
|
|
174
|
+
* ActionsApi - factory interface
|
|
175
|
+
* @export
|
|
176
|
+
*/
|
|
177
|
+
export declare const ActionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
178
|
+
/**
|
|
179
|
+
*
|
|
180
|
+
* @summary List actions
|
|
181
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
182
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
183
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
184
|
+
* @param {string} [status] Filter results by status
|
|
185
|
+
* @param {string} [executionId] Filter results by execution id
|
|
186
|
+
* @param {string} [workflowId] Filter results by workflow id
|
|
187
|
+
* @param {*} [options] Override http request option.
|
|
188
|
+
* @throws {RequiredError}
|
|
189
|
+
*/
|
|
190
|
+
listActions(startingAfter?: string, endingBefore?: string, limit?: number, status?: string, executionId?: string, workflowId?: string, options?: any): AxiosPromise<ListActions200Response>;
|
|
191
|
+
/**
|
|
192
|
+
*
|
|
193
|
+
* @summary List completed actions
|
|
194
|
+
* @param {string} status Filter results by status
|
|
195
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
196
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
197
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
198
|
+
* @param {string} [executionId] Filter results by execution id
|
|
199
|
+
* @param {string} [workflowId] Filter results by workflow id
|
|
200
|
+
* @param {*} [options] Override http request option.
|
|
201
|
+
* @throws {RequiredError}
|
|
202
|
+
*/
|
|
203
|
+
listCompletedActions(status: string, startingAfter?: string, endingBefore?: string, limit?: number, executionId?: string, workflowId?: string, options?: any): AxiosPromise<ListActions200Response>;
|
|
204
|
+
/**
|
|
205
|
+
*
|
|
206
|
+
* @summary List failed actions
|
|
207
|
+
* @param {string} status Filter results by status
|
|
208
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
209
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
210
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
211
|
+
* @param {string} [executionId] Filter results by execution id
|
|
212
|
+
* @param {string} [workflowId] Filter results by workflow id
|
|
213
|
+
* @param {*} [options] Override http request option.
|
|
214
|
+
* @throws {RequiredError}
|
|
215
|
+
*/
|
|
216
|
+
listFailedActions(status: string, startingAfter?: string, endingBefore?: string, limit?: number, executionId?: string, workflowId?: string, options?: any): AxiosPromise<ListActions200Response>;
|
|
217
|
+
/**
|
|
218
|
+
*
|
|
219
|
+
* @summary List scheduled actions
|
|
220
|
+
* @param {string} status Filter results by status
|
|
221
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
222
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
223
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
224
|
+
* @param {string} [executionId] Filter results by execution id
|
|
225
|
+
* @param {string} [workflowId] Filter results by workflow id
|
|
226
|
+
* @param {*} [options] Override http request option.
|
|
227
|
+
* @throws {RequiredError}
|
|
228
|
+
*/
|
|
229
|
+
listScheduledActions(status: string, startingAfter?: string, endingBefore?: string, limit?: number, executionId?: string, workflowId?: string, options?: any): AxiosPromise<ListActions200Response>;
|
|
230
|
+
/**
|
|
231
|
+
*
|
|
232
|
+
* @summary List workflow actions
|
|
233
|
+
* @param {string} workflowId Filter results by workflow id
|
|
234
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
235
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
236
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
237
|
+
* @param {*} [options] Override http request option.
|
|
238
|
+
* @throws {RequiredError}
|
|
239
|
+
*/
|
|
240
|
+
listWorkflowActions(workflowId: string, startingAfter?: string, endingBefore?: string, limit?: number, options?: any): AxiosPromise<ListActions200Response>;
|
|
241
|
+
/**
|
|
242
|
+
*
|
|
243
|
+
* @summary Retry action
|
|
244
|
+
* @param {string} hashid Action\'s hashid
|
|
245
|
+
* @param {RetryActionRequest} [retryActionRequest]
|
|
246
|
+
* @param {*} [options] Override http request option.
|
|
247
|
+
* @throws {RequiredError}
|
|
248
|
+
*/
|
|
249
|
+
retryAction(hashid: string, retryActionRequest?: RetryActionRequest, options?: any): AxiosPromise<object>;
|
|
250
|
+
};
|
|
251
|
+
/**
|
|
252
|
+
* ActionsApi - interface
|
|
253
|
+
* @export
|
|
254
|
+
* @interface ActionsApi
|
|
255
|
+
*/
|
|
256
|
+
export interface ActionsApiInterface {
|
|
257
|
+
/**
|
|
258
|
+
*
|
|
259
|
+
* @summary List actions
|
|
260
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
261
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
262
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
263
|
+
* @param {string} [status] Filter results by status
|
|
264
|
+
* @param {string} [executionId] Filter results by execution id
|
|
265
|
+
* @param {string} [workflowId] Filter results by workflow id
|
|
266
|
+
* @param {*} [options] Override http request option.
|
|
267
|
+
* @throws {RequiredError}
|
|
268
|
+
* @memberof ActionsApiInterface
|
|
269
|
+
*/
|
|
270
|
+
listActions(startingAfter?: string, endingBefore?: string, limit?: number, status?: string, executionId?: string, workflowId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListActions200Response>;
|
|
271
|
+
/**
|
|
272
|
+
*
|
|
273
|
+
* @summary List completed actions
|
|
274
|
+
* @param {string} status Filter results by status
|
|
275
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
276
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
277
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
278
|
+
* @param {string} [executionId] Filter results by execution id
|
|
279
|
+
* @param {string} [workflowId] Filter results by workflow id
|
|
280
|
+
* @param {*} [options] Override http request option.
|
|
281
|
+
* @throws {RequiredError}
|
|
282
|
+
* @memberof ActionsApiInterface
|
|
283
|
+
*/
|
|
284
|
+
listCompletedActions(status: string, startingAfter?: string, endingBefore?: string, limit?: number, executionId?: string, workflowId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListActions200Response>;
|
|
285
|
+
/**
|
|
286
|
+
*
|
|
287
|
+
* @summary List failed actions
|
|
288
|
+
* @param {string} status Filter results by status
|
|
289
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
290
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
291
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
292
|
+
* @param {string} [executionId] Filter results by execution id
|
|
293
|
+
* @param {string} [workflowId] Filter results by workflow id
|
|
294
|
+
* @param {*} [options] Override http request option.
|
|
295
|
+
* @throws {RequiredError}
|
|
296
|
+
* @memberof ActionsApiInterface
|
|
297
|
+
*/
|
|
298
|
+
listFailedActions(status: string, startingAfter?: string, endingBefore?: string, limit?: number, executionId?: string, workflowId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListActions200Response>;
|
|
299
|
+
/**
|
|
300
|
+
*
|
|
301
|
+
* @summary List scheduled actions
|
|
302
|
+
* @param {string} status Filter results by status
|
|
303
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
304
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
305
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
306
|
+
* @param {string} [executionId] Filter results by execution id
|
|
307
|
+
* @param {string} [workflowId] Filter results by workflow id
|
|
308
|
+
* @param {*} [options] Override http request option.
|
|
309
|
+
* @throws {RequiredError}
|
|
310
|
+
* @memberof ActionsApiInterface
|
|
311
|
+
*/
|
|
312
|
+
listScheduledActions(status: string, startingAfter?: string, endingBefore?: string, limit?: number, executionId?: string, workflowId?: string, options?: RawAxiosRequestConfig): AxiosPromise<ListActions200Response>;
|
|
313
|
+
/**
|
|
314
|
+
*
|
|
315
|
+
* @summary List workflow actions
|
|
316
|
+
* @param {string} workflowId Filter results by workflow id
|
|
317
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
318
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
319
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
320
|
+
* @param {*} [options] Override http request option.
|
|
321
|
+
* @throws {RequiredError}
|
|
322
|
+
* @memberof ActionsApiInterface
|
|
323
|
+
*/
|
|
324
|
+
listWorkflowActions(workflowId: string, startingAfter?: string, endingBefore?: string, limit?: number, options?: RawAxiosRequestConfig): AxiosPromise<ListActions200Response>;
|
|
325
|
+
/**
|
|
326
|
+
*
|
|
327
|
+
* @summary Retry action
|
|
328
|
+
* @param {string} hashid Action\'s hashid
|
|
329
|
+
* @param {RetryActionRequest} [retryActionRequest]
|
|
330
|
+
* @param {*} [options] Override http request option.
|
|
331
|
+
* @throws {RequiredError}
|
|
332
|
+
* @memberof ActionsApiInterface
|
|
333
|
+
*/
|
|
334
|
+
retryAction(hashid: string, retryActionRequest?: RetryActionRequest, options?: RawAxiosRequestConfig): AxiosPromise<object>;
|
|
335
|
+
}
|
|
336
|
+
/**
|
|
337
|
+
* ActionsApi - object-oriented interface
|
|
338
|
+
* @export
|
|
339
|
+
* @class ActionsApi
|
|
340
|
+
* @extends {BaseAPI}
|
|
341
|
+
*/
|
|
342
|
+
export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
343
|
+
/**
|
|
344
|
+
*
|
|
345
|
+
* @summary List actions
|
|
346
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
347
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
348
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
349
|
+
* @param {string} [status] Filter results by status
|
|
350
|
+
* @param {string} [executionId] Filter results by execution id
|
|
351
|
+
* @param {string} [workflowId] Filter results by workflow id
|
|
352
|
+
* @param {*} [options] Override http request option.
|
|
353
|
+
* @throws {RequiredError}
|
|
354
|
+
* @memberof ActionsApi
|
|
355
|
+
*/
|
|
356
|
+
listActions(startingAfter?: string, endingBefore?: string, limit?: number, status?: string, executionId?: string, workflowId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListActions200Response, any>>;
|
|
357
|
+
/**
|
|
358
|
+
*
|
|
359
|
+
* @summary List completed actions
|
|
360
|
+
* @param {string} status Filter results by status
|
|
361
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
362
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
363
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
364
|
+
* @param {string} [executionId] Filter results by execution id
|
|
365
|
+
* @param {string} [workflowId] Filter results by workflow id
|
|
366
|
+
* @param {*} [options] Override http request option.
|
|
367
|
+
* @throws {RequiredError}
|
|
368
|
+
* @memberof ActionsApi
|
|
369
|
+
*/
|
|
370
|
+
listCompletedActions(status: string, startingAfter?: string, endingBefore?: string, limit?: number, executionId?: string, workflowId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListActions200Response, any>>;
|
|
371
|
+
/**
|
|
372
|
+
*
|
|
373
|
+
* @summary List failed actions
|
|
374
|
+
* @param {string} status Filter results by status
|
|
375
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
376
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
377
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
378
|
+
* @param {string} [executionId] Filter results by execution id
|
|
379
|
+
* @param {string} [workflowId] Filter results by workflow id
|
|
380
|
+
* @param {*} [options] Override http request option.
|
|
381
|
+
* @throws {RequiredError}
|
|
382
|
+
* @memberof ActionsApi
|
|
383
|
+
*/
|
|
384
|
+
listFailedActions(status: string, startingAfter?: string, endingBefore?: string, limit?: number, executionId?: string, workflowId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListActions200Response, any>>;
|
|
385
|
+
/**
|
|
386
|
+
*
|
|
387
|
+
* @summary List scheduled actions
|
|
388
|
+
* @param {string} status Filter results by status
|
|
389
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
390
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
391
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
392
|
+
* @param {string} [executionId] Filter results by execution id
|
|
393
|
+
* @param {string} [workflowId] Filter results by workflow id
|
|
394
|
+
* @param {*} [options] Override http request option.
|
|
395
|
+
* @throws {RequiredError}
|
|
396
|
+
* @memberof ActionsApi
|
|
397
|
+
*/
|
|
398
|
+
listScheduledActions(status: string, startingAfter?: string, endingBefore?: string, limit?: number, executionId?: string, workflowId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListActions200Response, any>>;
|
|
399
|
+
/**
|
|
400
|
+
*
|
|
401
|
+
* @summary List workflow actions
|
|
402
|
+
* @param {string} workflowId Filter results by workflow id
|
|
403
|
+
* @param {string} [startingAfter] Cursor for pagination - return results after this ID
|
|
404
|
+
* @param {string} [endingBefore] Cursor for pagination - return results before this ID
|
|
405
|
+
* @param {number} [limit] Number of items to return (max 100)
|
|
406
|
+
* @param {*} [options] Override http request option.
|
|
407
|
+
* @throws {RequiredError}
|
|
408
|
+
* @memberof ActionsApi
|
|
409
|
+
*/
|
|
410
|
+
listWorkflowActions(workflowId: string, startingAfter?: string, endingBefore?: string, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListActions200Response, any>>;
|
|
411
|
+
/**
|
|
412
|
+
*
|
|
413
|
+
* @summary Retry action
|
|
414
|
+
* @param {string} hashid Action\'s hashid
|
|
415
|
+
* @param {RetryActionRequest} [retryActionRequest]
|
|
416
|
+
* @param {*} [options] Override http request option.
|
|
417
|
+
* @throws {RequiredError}
|
|
418
|
+
* @memberof ActionsApi
|
|
419
|
+
*/
|
|
420
|
+
retryAction(hashid: string, retryActionRequest?: RetryActionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<object, any>>;
|
|
421
|
+
}
|