@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,260 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ListActionTypes200ResponseCollectionInner
|
|
16
|
+
*/
|
|
17
|
+
export interface ListActionTypes200ResponseCollectionInner {
|
|
18
|
+
/**
|
|
19
|
+
* System-generated unique identifier
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
22
|
+
*/
|
|
23
|
+
'id'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Code content for the action type
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
28
|
+
*/
|
|
29
|
+
'code'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
* Draft code content for the action type
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
34
|
+
*/
|
|
35
|
+
'code_draft'?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
* Created at in specified timezone
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
40
|
+
*/
|
|
41
|
+
'created_at'?: string | null;
|
|
42
|
+
/**
|
|
43
|
+
* Created at formatted as human-readable string
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
46
|
+
*/
|
|
47
|
+
'created_at_string'?: string | null;
|
|
48
|
+
/**
|
|
49
|
+
* Created at in UTC
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
52
|
+
*/
|
|
53
|
+
'created_at_utc'?: string | null;
|
|
54
|
+
/**
|
|
55
|
+
* Description of the action type
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
58
|
+
*/
|
|
59
|
+
'description'?: string | null;
|
|
60
|
+
/**
|
|
61
|
+
* Permission groups for this action type
|
|
62
|
+
* @type {Array<string>}
|
|
63
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
64
|
+
*/
|
|
65
|
+
'groups'?: Array<string>;
|
|
66
|
+
/**
|
|
67
|
+
* Whether the action type has unsaved draft changes
|
|
68
|
+
* @type {boolean}
|
|
69
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
70
|
+
*/
|
|
71
|
+
'has_draft'?: boolean;
|
|
72
|
+
/**
|
|
73
|
+
* Headers configuration for the action type
|
|
74
|
+
* @type {{ [key: string]: any; }}
|
|
75
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
76
|
+
*/
|
|
77
|
+
'headers'?: {
|
|
78
|
+
[key: string]: any;
|
|
79
|
+
} | null;
|
|
80
|
+
/**
|
|
81
|
+
* Draft headers configuration for the action type
|
|
82
|
+
* @type {{ [key: string]: any; }}
|
|
83
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
84
|
+
*/
|
|
85
|
+
'headers_draft'?: {
|
|
86
|
+
[key: string]: any;
|
|
87
|
+
} | null;
|
|
88
|
+
/**
|
|
89
|
+
* HTTP method for the action type
|
|
90
|
+
* @type {string}
|
|
91
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
92
|
+
*/
|
|
93
|
+
'http_method'?: ListActionTypes200ResponseCollectionInnerHttpMethodEnum | null;
|
|
94
|
+
/**
|
|
95
|
+
* Draft HTTP method for the action type
|
|
96
|
+
* @type {string}
|
|
97
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
98
|
+
*/
|
|
99
|
+
'http_method_draft'?: ListActionTypes200ResponseCollectionInnerHttpMethodDraftEnum | null;
|
|
100
|
+
/**
|
|
101
|
+
* Icon configuration for the action type
|
|
102
|
+
* @type {object}
|
|
103
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
104
|
+
*/
|
|
105
|
+
'icon'?: object | null;
|
|
106
|
+
/**
|
|
107
|
+
* Draft icon configuration for the action type
|
|
108
|
+
* @type {object}
|
|
109
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
110
|
+
*/
|
|
111
|
+
'icon_draft'?: object | null;
|
|
112
|
+
/**
|
|
113
|
+
* Last published at in specified timezone
|
|
114
|
+
* @type {string}
|
|
115
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
116
|
+
*/
|
|
117
|
+
'last_published_at'?: string | null;
|
|
118
|
+
/**
|
|
119
|
+
* Last published at formatted as human-readable string
|
|
120
|
+
* @type {string}
|
|
121
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
122
|
+
*/
|
|
123
|
+
'last_published_at_string'?: string | null;
|
|
124
|
+
/**
|
|
125
|
+
* Last published at in UTC
|
|
126
|
+
* @type {string}
|
|
127
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
128
|
+
*/
|
|
129
|
+
'last_published_at_utc'?: string | null;
|
|
130
|
+
/**
|
|
131
|
+
* Name of the action type
|
|
132
|
+
* @type {string}
|
|
133
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
134
|
+
*/
|
|
135
|
+
'name'?: string;
|
|
136
|
+
/**
|
|
137
|
+
* Object type identifier
|
|
138
|
+
* @type {string}
|
|
139
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
140
|
+
*/
|
|
141
|
+
'object'?: string;
|
|
142
|
+
/**
|
|
143
|
+
* Whether the action type is enabled
|
|
144
|
+
* @type {boolean}
|
|
145
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
146
|
+
*/
|
|
147
|
+
'on'?: boolean;
|
|
148
|
+
/**
|
|
149
|
+
* Parameters configuration for the action type
|
|
150
|
+
* @type {string}
|
|
151
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
152
|
+
*/
|
|
153
|
+
'params'?: string | null;
|
|
154
|
+
/**
|
|
155
|
+
* Draft parameters configuration for the action type
|
|
156
|
+
* @type {string}
|
|
157
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
158
|
+
*/
|
|
159
|
+
'params_draft'?: string | null;
|
|
160
|
+
/**
|
|
161
|
+
* Primary category classification
|
|
162
|
+
* @type {string}
|
|
163
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
164
|
+
*/
|
|
165
|
+
'primary_category'?: string | null;
|
|
166
|
+
/**
|
|
167
|
+
* The required app connection for this action type
|
|
168
|
+
* @type {string}
|
|
169
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
170
|
+
*/
|
|
171
|
+
'required_app_connection'?: string | null;
|
|
172
|
+
/**
|
|
173
|
+
* Secondary category classification
|
|
174
|
+
* @type {string}
|
|
175
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
176
|
+
*/
|
|
177
|
+
'secondary_category'?: string | null;
|
|
178
|
+
/**
|
|
179
|
+
* Source identifier for the action type
|
|
180
|
+
* @type {string}
|
|
181
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
182
|
+
*/
|
|
183
|
+
'source'?: string | null;
|
|
184
|
+
/**
|
|
185
|
+
* Type classification of the action
|
|
186
|
+
* @type {string}
|
|
187
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
188
|
+
*/
|
|
189
|
+
'type'?: string;
|
|
190
|
+
/**
|
|
191
|
+
* Updated at in specified timezone
|
|
192
|
+
* @type {string}
|
|
193
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
194
|
+
*/
|
|
195
|
+
'updated_at'?: string | null;
|
|
196
|
+
/**
|
|
197
|
+
* Updated at formatted as human-readable string
|
|
198
|
+
* @type {string}
|
|
199
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
200
|
+
*/
|
|
201
|
+
'updated_at_string'?: string | null;
|
|
202
|
+
/**
|
|
203
|
+
* Updated at in UTC
|
|
204
|
+
* @type {string}
|
|
205
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
206
|
+
*/
|
|
207
|
+
'updated_at_utc'?: string | null;
|
|
208
|
+
/**
|
|
209
|
+
* URL for the action type
|
|
210
|
+
* @type {string}
|
|
211
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
212
|
+
*/
|
|
213
|
+
'url'?: string | null;
|
|
214
|
+
/**
|
|
215
|
+
* Draft URL for the action type
|
|
216
|
+
* @type {string}
|
|
217
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
218
|
+
*/
|
|
219
|
+
'url_draft'?: string | null;
|
|
220
|
+
/**
|
|
221
|
+
* Form fields for the action type
|
|
222
|
+
* @type {Array<object>}
|
|
223
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
224
|
+
*/
|
|
225
|
+
'form'?: Array<object>;
|
|
226
|
+
/**
|
|
227
|
+
* Draft form fields for the action type
|
|
228
|
+
* @type {Array<object>}
|
|
229
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
230
|
+
*/
|
|
231
|
+
'form_draft'?: Array<object>;
|
|
232
|
+
/**
|
|
233
|
+
* Response data schema for the action type
|
|
234
|
+
* @type {Array<object>}
|
|
235
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
236
|
+
*/
|
|
237
|
+
'response_data_schema'?: Array<object>;
|
|
238
|
+
/**
|
|
239
|
+
* Draft response data schema for the action type
|
|
240
|
+
* @type {Array<object>}
|
|
241
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
242
|
+
*/
|
|
243
|
+
'response_data_schema_draft'?: Array<object>;
|
|
244
|
+
}
|
|
245
|
+
export declare const ListActionTypes200ResponseCollectionInnerHttpMethodEnum: {
|
|
246
|
+
readonly Get: "get";
|
|
247
|
+
readonly Post: "post";
|
|
248
|
+
readonly Put: "put";
|
|
249
|
+
readonly Patch: "patch";
|
|
250
|
+
readonly Delete: "delete";
|
|
251
|
+
};
|
|
252
|
+
export type ListActionTypes200ResponseCollectionInnerHttpMethodEnum = typeof ListActionTypes200ResponseCollectionInnerHttpMethodEnum[keyof typeof ListActionTypes200ResponseCollectionInnerHttpMethodEnum];
|
|
253
|
+
export declare const ListActionTypes200ResponseCollectionInnerHttpMethodDraftEnum: {
|
|
254
|
+
readonly Get: "get";
|
|
255
|
+
readonly Post: "post";
|
|
256
|
+
readonly Put: "put";
|
|
257
|
+
readonly Patch: "patch";
|
|
258
|
+
readonly Delete: "delete";
|
|
259
|
+
};
|
|
260
|
+
export type ListActionTypes200ResponseCollectionInnerHttpMethodDraftEnum = typeof ListActionTypes200ResponseCollectionInnerHttpMethodDraftEnum[keyof typeof ListActionTypes200ResponseCollectionInnerHttpMethodDraftEnum];
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* API V1
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: v1
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.ListActionTypes200ResponseCollectionInnerHttpMethodDraftEnum = exports.ListActionTypes200ResponseCollectionInnerHttpMethodEnum = void 0;
|
|
17
|
+
exports.ListActionTypes200ResponseCollectionInnerHttpMethodEnum = {
|
|
18
|
+
Get: 'get',
|
|
19
|
+
Post: 'post',
|
|
20
|
+
Put: 'put',
|
|
21
|
+
Patch: 'patch',
|
|
22
|
+
Delete: 'delete'
|
|
23
|
+
};
|
|
24
|
+
exports.ListActionTypes200ResponseCollectionInnerHttpMethodDraftEnum = {
|
|
25
|
+
Get: 'get',
|
|
26
|
+
Post: 'post',
|
|
27
|
+
Put: 'put',
|
|
28
|
+
Patch: 'patch',
|
|
29
|
+
Delete: 'delete'
|
|
30
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ListActionTypes200ResponseMeta
|
|
16
|
+
*/
|
|
17
|
+
export interface ListActionTypes200ResponseMeta {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof ListActionTypes200ResponseMeta
|
|
22
|
+
*/
|
|
23
|
+
'page_limit'?: number | null;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {boolean}
|
|
27
|
+
* @memberof ListActionTypes200ResponseMeta
|
|
28
|
+
*/
|
|
29
|
+
'has_next_page'?: boolean;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {boolean}
|
|
33
|
+
* @memberof ListActionTypes200ResponseMeta
|
|
34
|
+
*/
|
|
35
|
+
'has_previous_page'?: boolean;
|
|
36
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* API V1
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: v1
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,32 @@
|
|
|
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 { ListActionTypes200ResponseCollectionInner } from './list-action-types200-response-collection-inner';
|
|
13
|
+
import { ListActionTypes200ResponseMeta } from './list-action-types200-response-meta';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface ListActionTypes200Response
|
|
18
|
+
*/
|
|
19
|
+
export interface ListActionTypes200Response {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {Array<ListActionTypes200ResponseCollectionInner>}
|
|
23
|
+
* @memberof ListActionTypes200Response
|
|
24
|
+
*/
|
|
25
|
+
'collection': Array<ListActionTypes200ResponseCollectionInner>;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {ListActionTypes200ResponseMeta}
|
|
29
|
+
* @memberof ListActionTypes200Response
|
|
30
|
+
*/
|
|
31
|
+
'meta': ListActionTypes200ResponseMeta;
|
|
32
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* API V1
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: v1
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,144 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ListActions200ResponseCollectionInner
|
|
16
|
+
*/
|
|
17
|
+
export interface ListActions200ResponseCollectionInner {
|
|
18
|
+
/**
|
|
19
|
+
* System-generated unique identifier
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ListActions200ResponseCollectionInner
|
|
22
|
+
*/
|
|
23
|
+
'hashid'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Completed at in specified timezone
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ListActions200ResponseCollectionInner
|
|
28
|
+
*/
|
|
29
|
+
'completed_at'?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
* Completed at formatted as human-readable string
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListActions200ResponseCollectionInner
|
|
34
|
+
*/
|
|
35
|
+
'completed_at_string'?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
* Completed at in UTC
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof ListActions200ResponseCollectionInner
|
|
40
|
+
*/
|
|
41
|
+
'completed_at_utc'?: string | null;
|
|
42
|
+
/**
|
|
43
|
+
* ID of the execution this action belongs to
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof ListActions200ResponseCollectionInner
|
|
46
|
+
*/
|
|
47
|
+
'execution_id'?: string;
|
|
48
|
+
/**
|
|
49
|
+
* Failed at in specified timezone
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof ListActions200ResponseCollectionInner
|
|
52
|
+
*/
|
|
53
|
+
'failed_at'?: string | null;
|
|
54
|
+
/**
|
|
55
|
+
* Failed at formatted as human-readable string
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof ListActions200ResponseCollectionInner
|
|
58
|
+
*/
|
|
59
|
+
'failed_at_string'?: string | null;
|
|
60
|
+
/**
|
|
61
|
+
* Failed at in UTC
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof ListActions200ResponseCollectionInner
|
|
64
|
+
*/
|
|
65
|
+
'failed_at_utc'?: string | null;
|
|
66
|
+
/**
|
|
67
|
+
* Error message when action fails
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof ListActions200ResponseCollectionInner
|
|
70
|
+
*/
|
|
71
|
+
'failure_note'?: string | null;
|
|
72
|
+
/**
|
|
73
|
+
* Execution log details for the action
|
|
74
|
+
* @type {object}
|
|
75
|
+
* @memberof ListActions200ResponseCollectionInner
|
|
76
|
+
*/
|
|
77
|
+
'log'?: object | null;
|
|
78
|
+
/**
|
|
79
|
+
* Name of the action
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof ListActions200ResponseCollectionInner
|
|
82
|
+
*/
|
|
83
|
+
'name'?: string;
|
|
84
|
+
/**
|
|
85
|
+
* Node identifier associated with this action
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof ListActions200ResponseCollectionInner
|
|
88
|
+
*/
|
|
89
|
+
'node_id'?: string;
|
|
90
|
+
/**
|
|
91
|
+
* Object type identifier
|
|
92
|
+
* @type {string}
|
|
93
|
+
* @memberof ListActions200ResponseCollectionInner
|
|
94
|
+
*/
|
|
95
|
+
'object'?: string;
|
|
96
|
+
/**
|
|
97
|
+
* Run at in specified timezone
|
|
98
|
+
* @type {string}
|
|
99
|
+
* @memberof ListActions200ResponseCollectionInner
|
|
100
|
+
*/
|
|
101
|
+
'run_at'?: string | null;
|
|
102
|
+
/**
|
|
103
|
+
* Run at formatted as human-readable string
|
|
104
|
+
* @type {string}
|
|
105
|
+
* @memberof ListActions200ResponseCollectionInner
|
|
106
|
+
*/
|
|
107
|
+
'run_at_string'?: string | null;
|
|
108
|
+
/**
|
|
109
|
+
* Run at in UTC
|
|
110
|
+
* @type {string}
|
|
111
|
+
* @memberof ListActions200ResponseCollectionInner
|
|
112
|
+
*/
|
|
113
|
+
'run_at_utc'?: string | null;
|
|
114
|
+
/**
|
|
115
|
+
* Current status of the action
|
|
116
|
+
* @type {string}
|
|
117
|
+
* @memberof ListActions200ResponseCollectionInner
|
|
118
|
+
*/
|
|
119
|
+
'status'?: string;
|
|
120
|
+
/**
|
|
121
|
+
* Stopped at in specified timezone
|
|
122
|
+
* @type {string}
|
|
123
|
+
* @memberof ListActions200ResponseCollectionInner
|
|
124
|
+
*/
|
|
125
|
+
'stopped_at'?: string | null;
|
|
126
|
+
/**
|
|
127
|
+
* Stopped at formatted as human-readable string
|
|
128
|
+
* @type {string}
|
|
129
|
+
* @memberof ListActions200ResponseCollectionInner
|
|
130
|
+
*/
|
|
131
|
+
'stopped_at_string'?: string | null;
|
|
132
|
+
/**
|
|
133
|
+
* Stopped at in UTC
|
|
134
|
+
* @type {string}
|
|
135
|
+
* @memberof ListActions200ResponseCollectionInner
|
|
136
|
+
*/
|
|
137
|
+
'stopped_at_utc'?: string | null;
|
|
138
|
+
/**
|
|
139
|
+
* UUID identifier for the action
|
|
140
|
+
* @type {string}
|
|
141
|
+
* @memberof ListActions200ResponseCollectionInner
|
|
142
|
+
*/
|
|
143
|
+
'uuid'?: string;
|
|
144
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* API V1
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: v1
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,32 @@
|
|
|
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 { ListActionTypes200ResponseMeta } from './list-action-types200-response-meta';
|
|
13
|
+
import { ListActions200ResponseCollectionInner } from './list-actions200-response-collection-inner';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface ListActions200Response
|
|
18
|
+
*/
|
|
19
|
+
export interface ListActions200Response {
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @type {Array<ListActions200ResponseCollectionInner>}
|
|
23
|
+
* @memberof ListActions200Response
|
|
24
|
+
*/
|
|
25
|
+
'collection': Array<ListActions200ResponseCollectionInner>;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {ListActionTypes200ResponseMeta}
|
|
29
|
+
* @memberof ListActions200Response
|
|
30
|
+
*/
|
|
31
|
+
'meta': ListActionTypes200ResponseMeta;
|
|
32
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* API V1
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: v1
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -0,0 +1,66 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ListAppConnections200ResponseCollectionInner
|
|
16
|
+
*/
|
|
17
|
+
export interface ListAppConnections200ResponseCollectionInner {
|
|
18
|
+
/**
|
|
19
|
+
* System-generated unique identifier
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ListAppConnections200ResponseCollectionInner
|
|
22
|
+
*/
|
|
23
|
+
'id'?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Type of application being connected
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ListAppConnections200ResponseCollectionInner
|
|
28
|
+
*/
|
|
29
|
+
'app_type'?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Last used at in specified timezone
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ListAppConnections200ResponseCollectionInner
|
|
34
|
+
*/
|
|
35
|
+
'last_used_at'?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
* Last used at formatted as human-readable string
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof ListAppConnections200ResponseCollectionInner
|
|
40
|
+
*/
|
|
41
|
+
'last_used_at_string'?: string | null;
|
|
42
|
+
/**
|
|
43
|
+
* Last used at in UTC
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof ListAppConnections200ResponseCollectionInner
|
|
46
|
+
*/
|
|
47
|
+
'last_used_at_utc'?: string | null;
|
|
48
|
+
/**
|
|
49
|
+
* Name of the app connection
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof ListAppConnections200ResponseCollectionInner
|
|
52
|
+
*/
|
|
53
|
+
'name'?: string;
|
|
54
|
+
/**
|
|
55
|
+
* Object type identifier
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof ListAppConnections200ResponseCollectionInner
|
|
58
|
+
*/
|
|
59
|
+
'object'?: string;
|
|
60
|
+
/**
|
|
61
|
+
* Current status of the app connection
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof ListAppConnections200ResponseCollectionInner
|
|
64
|
+
*/
|
|
65
|
+
'status'?: string;
|
|
66
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* API V1
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: v1
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|