@embedworkflow/sdk 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/.github/workflows/push-tag.yaml +34 -0
- package/.openapi-generator/FILES +87 -0
- package/.openapi-generator/VERSION +1 -0
- package/.openapi-generator-ignore +23 -0
- package/README.md +2 -2
- package/api/accounts-api.ts +540 -0
- package/api/action-types-api.ts +697 -0
- package/api/actions-api.ts +786 -0
- package/api/app-connections-api.ts +556 -0
- package/api/available-apps-api.ts +239 -0
- package/api/data-fields-api.ts +404 -0
- package/api/events-api.ts +172 -0
- package/api/executions-api.ts +361 -0
- package/api/installed-apps-api.ts +410 -0
- package/api/payments-api.ts +172 -0
- package/api/triggers-api.ts +437 -0
- package/api/users-api.ts +531 -0
- package/api/workflows-api.ts +1302 -0
- package/api.ts +30 -0
- package/base.ts +86 -0
- package/common.ts +150 -0
- package/configuration.ts +110 -0
- package/dist/api/accounts-api.d.ts +124 -3
- package/dist/api/accounts-api.js +182 -1
- package/dist/api/action-types-api.d.ts +16 -11
- package/dist/api/action-types-api.js +14 -7
- package/dist/api/actions-api.d.ts +6 -6
- package/dist/api/app-connections-api.d.ts +5 -5
- package/dist/api/available-apps-api.d.ts +2 -2
- package/dist/api/data-fields-api.d.ts +46 -2
- package/dist/api/data-fields-api.js +68 -0
- package/dist/api/events-api.d.ts +1 -1
- package/dist/api/executions-api.d.ts +3 -3
- package/dist/api/installed-apps-api.d.ts +4 -4
- package/dist/api/payments-api.d.ts +1 -1
- package/dist/api/triggers-api.d.ts +14 -14
- package/dist/api/triggers-api.js +12 -12
- package/dist/api/users-api.d.ts +14 -9
- package/dist/api/users-api.js +14 -7
- package/dist/api/workflows-api.d.ts +96 -15
- package/dist/api/workflows-api.js +125 -8
- package/dist/common.d.ts +1 -1
- package/dist/esm/api/accounts-api.d.ts +124 -3
- package/dist/esm/api/accounts-api.js +181 -0
- package/dist/esm/api/action-types-api.d.ts +16 -11
- package/dist/esm/api/action-types-api.js +14 -7
- package/dist/esm/api/actions-api.d.ts +6 -6
- package/dist/esm/api/app-connections-api.d.ts +5 -5
- package/dist/esm/api/available-apps-api.d.ts +2 -2
- package/dist/esm/api/data-fields-api.d.ts +46 -2
- package/dist/esm/api/data-fields-api.js +69 -1
- package/dist/esm/api/events-api.d.ts +1 -1
- package/dist/esm/api/executions-api.d.ts +3 -3
- package/dist/esm/api/installed-apps-api.d.ts +4 -4
- package/dist/esm/api/payments-api.d.ts +1 -1
- package/dist/esm/api/triggers-api.d.ts +14 -14
- package/dist/esm/api/triggers-api.js +12 -12
- package/dist/esm/api/users-api.d.ts +14 -9
- package/dist/esm/api/users-api.js +14 -7
- package/dist/esm/api/workflows-api.d.ts +96 -15
- package/dist/esm/api/workflows-api.js +124 -7
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/models/catch-hook-request.d.ts +25 -0
- package/dist/esm/models/create-action-type-request-form-draft-inner.d.ts +6 -0
- package/dist/esm/models/create-action-type-request.d.ts +12 -0
- package/dist/esm/models/create-workflow201-response.d.ts +58 -11
- package/dist/esm/models/create-workflow201-response.js +4 -0
- package/dist/esm/models/evaluate-expression-request.d.ts +32 -0
- package/dist/esm/models/evaluate-expression200-response.d.ts +24 -0
- package/dist/esm/models/export-configuration200-response-configuration.d.ts +16 -0
- package/dist/esm/models/export-configuration200-response.d.ts +25 -0
- package/dist/esm/models/index.d.ts +9 -0
- package/dist/esm/models/index.js +9 -0
- package/dist/esm/models/list-action-types200-response-collection-inner.d.ts +58 -0
- package/dist/esm/models/list-action-types200-response-collection-inner.js +9 -0
- package/dist/esm/models/list-data-fields200-response-collection-inner.d.ts +18 -0
- package/dist/esm/models/list-triggers200-response-collection-inner.d.ts +18 -0
- package/dist/esm/models/list-users200-response-collection-inner.d.ts +6 -6
- package/dist/esm/models/list-workflows200-response-collection-inner.d.ts +29 -5
- package/dist/esm/models/retrieve-account-usage200-response.d.ts +60 -0
- package/dist/esm/models/retrieve-account-usage200-response.js +14 -0
- package/dist/esm/models/retrieve-account200-response.d.ts +19 -1
- package/dist/esm/models/{api-v1-action-types-post-request-icon-draft.d.ts → update-account-request-action-type-categories-inner-icon.d.ts} +10 -10
- package/dist/esm/models/update-account-request-action-type-categories-inner-icon.js +14 -0
- package/dist/esm/models/update-account-request-action-type-categories-inner.d.ts +43 -0
- package/dist/esm/models/update-account-request-action-type-categories-inner.js +14 -0
- package/dist/esm/models/update-account-request.d.ts +13 -0
- package/dist/esm/models/update-action-type-request.d.ts +12 -0
- package/dist/esm/models/update-trigger-request.d.ts +30 -0
- package/dist/esm/models/update-trigger-request.js +14 -0
- package/dist/esm/models/update-workflow-request.d.ts +7 -1
- package/dist/esm/models/upsert-user-request.d.ts +6 -0
- package/dist/models/catch-hook-request.d.ts +25 -0
- package/dist/models/create-action-type-request-form-draft-inner.d.ts +6 -0
- package/dist/models/create-action-type-request.d.ts +12 -0
- package/dist/models/create-workflow201-response.d.ts +58 -11
- package/dist/models/create-workflow201-response.js +5 -1
- package/dist/models/evaluate-expression-request.d.ts +32 -0
- package/dist/models/evaluate-expression200-response.d.ts +24 -0
- package/dist/models/export-configuration200-response-configuration.d.ts +16 -0
- package/dist/models/export-configuration200-response.d.ts +25 -0
- package/dist/models/index.d.ts +9 -0
- package/dist/models/index.js +9 -0
- package/dist/models/list-action-types200-response-collection-inner.d.ts +58 -0
- package/dist/models/list-action-types200-response-collection-inner.js +10 -1
- package/dist/models/list-data-fields200-response-collection-inner.d.ts +18 -0
- package/dist/models/list-triggers200-response-collection-inner.d.ts +18 -0
- package/dist/models/list-users200-response-collection-inner.d.ts +6 -6
- package/dist/models/list-workflows200-response-collection-inner.d.ts +29 -5
- package/dist/models/retrieve-account-usage200-response.d.ts +60 -0
- package/dist/models/retrieve-account-usage200-response.js +15 -0
- package/dist/models/retrieve-account200-response.d.ts +19 -1
- package/dist/{esm/models/retrieve-action-type404-response.d.ts → models/update-account-request-action-type-categories-inner-icon.d.ts} +12 -12
- package/dist/models/update-account-request-action-type-categories-inner-icon.js +15 -0
- package/dist/models/update-account-request-action-type-categories-inner.d.ts +43 -0
- package/dist/models/update-account-request-action-type-categories-inner.js +15 -0
- package/dist/models/update-account-request.d.ts +13 -0
- package/dist/models/update-action-type-request.d.ts +12 -0
- package/dist/models/update-trigger-request.d.ts +30 -0
- package/dist/models/update-trigger-request.js +15 -0
- package/dist/models/update-workflow-request.d.ts +7 -1
- package/dist/models/upsert-user-request.d.ts +6 -0
- package/git_push.sh +57 -0
- package/index.ts +111 -0
- package/models/catch-hook-request.ts +32 -0
- package/models/create-action-type-request-form-draft-inner.ts +88 -0
- package/{dist/models/api-v1-action-types-post-request-icon-draft.d.ts → models/create-action-type-request-icon-draft.ts} +12 -6
- package/{dist/models/api-v1-action-types-post-request.d.ts → models/create-action-type-request.ts} +49 -25
- package/{dist/models/retrieve-action-type404-response.d.ts → models/create-action-type422-response.ts} +13 -7
- package/{dist/esm/models/api-v1-app-connections-post-request.d.ts → models/create-app-connection-request.ts} +14 -8
- package/models/create-user-token-request.ts +38 -0
- package/models/create-user-token200-response.ts +30 -0
- package/models/create-workflow-request-template-draft-nodes-inner.ts +138 -0
- package/models/create-workflow-request-template-draft.ts +39 -0
- package/models/create-workflow-request.ts +75 -0
- package/{dist/esm/models/retrieve-workflow200-response.d.ts → models/create-workflow201-response.ts} +111 -60
- package/models/delete-action-type200-response.ts +30 -0
- package/{dist/esm/models/api-v1-action-types-post-request-form-draft-inner.js → models/delete-workflow200-response-one-of.ts} +18 -13
- package/models/delete-workflow200-response-one-of1.ts +30 -0
- package/models/delete-workflow200-response.ts +30 -0
- package/models/discard-workflow-draft-request.ts +36 -0
- package/models/evaluate-expression-request.ts +36 -0
- package/models/evaluate-expression200-response.ts +30 -0
- package/models/execute-workflow-request.ts +50 -0
- package/models/execute-workflow201-response.ts +126 -0
- package/models/export-configuration200-response-configuration.ts +23 -0
- package/models/export-configuration200-response.ts +33 -0
- package/models/import-configuration-request-schema.ts +24 -0
- package/models/import-configuration-request.ts +50 -0
- package/models/import-configuration201-response.ts +60 -0
- package/models/index.ts +70 -0
- package/models/install-app-request.ts +36 -0
- package/{dist/models/retrieve-installed-app200-response.d.ts → models/install-app201-response.ts} +28 -24
- package/models/list-action-types200-response-collection-inner.ts +325 -0
- package/models/list-action-types200-response-meta.ts +42 -0
- package/models/list-action-types200-response.ts +42 -0
- package/models/list-actions200-response-collection-inner.ts +150 -0
- package/models/list-actions200-response.ts +42 -0
- package/models/list-app-connections200-response-collection-inner.ts +72 -0
- package/models/list-app-connections200-response.ts +42 -0
- package/models/list-available-apps200-response-collection-inner.ts +72 -0
- package/models/list-available-apps200-response.ts +42 -0
- package/{dist/esm/models/clone-workflow201-response.js → models/list-data-fields-type-parameter.ts} +11 -5
- package/models/list-data-fields200-response-collection-inner.ts +108 -0
- package/models/list-data-fields200-response.ts +42 -0
- package/models/list-events200-response-collection-inner.ts +84 -0
- package/models/list-events200-response.ts +42 -0
- package/{dist/esm/models/retrieve-installed-app200-response.d.ts → models/list-installed-apps200-response-collection-inner.ts} +26 -28
- package/models/list-installed-apps200-response.ts +42 -0
- package/models/list-triggers200-response-collection-inner.ts +126 -0
- package/models/list-triggers200-response.ts +42 -0
- package/models/list-users200-response-collection-inner.ts +90 -0
- package/models/list-users200-response.ts +42 -0
- package/models/list-workflow-executions200-response.ts +42 -0
- package/models/list-workflow-versions200-response-collection-inner.ts +66 -0
- package/models/list-workflow-versions200-response.ts +42 -0
- package/{dist/models/retrieve-workflow200-response.d.ts → models/list-workflows200-response-collection-inner.ts} +76 -79
- package/models/list-workflows200-response.ts +42 -0
- package/models/publish-workflow-request.ts +30 -0
- package/models/retrieve-account-usage200-response.ts +66 -0
- package/models/retrieve-account200-response.ts +114 -0
- package/models/retrieve-available-app200-response.ts +78 -0
- package/models/retrieve-execution200-response.ts +138 -0
- package/models/retry-action-request.ts +38 -0
- package/models/stop-executions-request.ts +38 -0
- package/models/trigger-workflow-request.ts +54 -0
- package/models/update-account-request-action-type-categories-inner-icon.ts +42 -0
- package/models/update-account-request-action-type-categories-inner.ts +51 -0
- package/models/update-account-request-user-data-schema-inner.ts +54 -0
- package/models/update-account-request.ts +96 -0
- package/models/update-action-type-request.ts +48 -0
- package/models/update-installed-app-request.ts +30 -0
- package/models/update-trigger-request.ts +36 -0
- package/models/update-workflow-request.ts +93 -0
- package/models/upsert-user-request.ts +54 -0
- package/package.json +4 -6
- package/tsconfig.esm.json +7 -0
- package/tsconfig.json +18 -0
- package/dist/esm/models/api-v1-action-types-post-request-form-draft-inner.d.ts +0 -75
- package/dist/esm/models/api-v1-action-types-post-request.d.ts +0 -105
- package/dist/esm/models/clone-workflow201-response.d.ts +0 -183
- package/dist/esm/models/retrieve-workflow200-response.js +0 -17
- package/dist/models/api-v1-action-types-post-request-form-draft-inner.d.ts +0 -75
- package/dist/models/api-v1-action-types-post-request-form-draft-inner.js +0 -28
- package/dist/models/api-v1-app-connections-post-request.d.ts +0 -42
- package/dist/models/clone-workflow201-response.d.ts +0 -183
- package/dist/models/clone-workflow201-response.js +0 -20
- package/dist/models/retrieve-workflow200-response.js +0 -20
- /package/dist/esm/models/{api-v1-action-types-post-request-icon-draft.js → catch-hook-request.js} +0 -0
- /package/dist/esm/models/{api-v1-action-types-post-request.js → evaluate-expression-request.js} +0 -0
- /package/dist/esm/models/{api-v1-app-connections-post-request.js → evaluate-expression200-response.js} +0 -0
- /package/dist/esm/models/{retrieve-action-type404-response.js → export-configuration200-response-configuration.js} +0 -0
- /package/dist/esm/models/{retrieve-installed-app200-response.js → export-configuration200-response.js} +0 -0
- /package/dist/models/{api-v1-action-types-post-request-icon-draft.js → catch-hook-request.js} +0 -0
- /package/dist/models/{api-v1-action-types-post-request.js → evaluate-expression-request.js} +0 -0
- /package/dist/models/{api-v1-app-connections-post-request.js → evaluate-expression200-response.js} +0 -0
- /package/dist/models/{retrieve-action-type404-response.js → export-configuration200-response-configuration.js} +0 -0
- /package/dist/models/{retrieve-installed-app200-response.js → export-configuration200-response.js} +0 -0
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* API V1
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface RetrieveExecution200Response
|
|
21
|
+
*/
|
|
22
|
+
export interface RetrieveExecution200Response {
|
|
23
|
+
/**
|
|
24
|
+
* System-generated unique identifier
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof RetrieveExecution200Response
|
|
27
|
+
*/
|
|
28
|
+
'hashid'?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Total number of actions in the execution
|
|
31
|
+
* @type {number}
|
|
32
|
+
* @memberof RetrieveExecution200Response
|
|
33
|
+
*/
|
|
34
|
+
'actions_count'?: number | null;
|
|
35
|
+
/**
|
|
36
|
+
* Number of completed actions
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof RetrieveExecution200Response
|
|
39
|
+
*/
|
|
40
|
+
'completed_actions_count'?: number;
|
|
41
|
+
/**
|
|
42
|
+
* Created at in specified timezone
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof RetrieveExecution200Response
|
|
45
|
+
*/
|
|
46
|
+
'created_at'?: string | null;
|
|
47
|
+
/**
|
|
48
|
+
* Created at formatted as human-readable string
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof RetrieveExecution200Response
|
|
51
|
+
*/
|
|
52
|
+
'created_at_string'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
* Created at in UTC
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof RetrieveExecution200Response
|
|
57
|
+
*/
|
|
58
|
+
'created_at_utc'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
* Data context for the execution
|
|
61
|
+
* @type {{ [key: string]: any; }}
|
|
62
|
+
* @memberof RetrieveExecution200Response
|
|
63
|
+
*/
|
|
64
|
+
'execution_data'?: { [key: string]: any; } | null;
|
|
65
|
+
/**
|
|
66
|
+
* Number of failed actions
|
|
67
|
+
* @type {number}
|
|
68
|
+
* @memberof RetrieveExecution200Response
|
|
69
|
+
*/
|
|
70
|
+
'failed_actions_count'?: number;
|
|
71
|
+
/**
|
|
72
|
+
* System-generated unique identifier
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof RetrieveExecution200Response
|
|
75
|
+
*/
|
|
76
|
+
'id'?: string;
|
|
77
|
+
/**
|
|
78
|
+
* Number of idle actions
|
|
79
|
+
* @type {number}
|
|
80
|
+
* @memberof RetrieveExecution200Response
|
|
81
|
+
*/
|
|
82
|
+
'idle_actions_count'?: number;
|
|
83
|
+
/**
|
|
84
|
+
* Unique key for the execution
|
|
85
|
+
* @type {string}
|
|
86
|
+
* @memberof RetrieveExecution200Response
|
|
87
|
+
*/
|
|
88
|
+
'key'?: string;
|
|
89
|
+
/**
|
|
90
|
+
* Execution log details
|
|
91
|
+
* @type {object}
|
|
92
|
+
* @memberof RetrieveExecution200Response
|
|
93
|
+
*/
|
|
94
|
+
'log'?: object | null;
|
|
95
|
+
/**
|
|
96
|
+
* Name of the execution
|
|
97
|
+
* @type {string}
|
|
98
|
+
* @memberof RetrieveExecution200Response
|
|
99
|
+
*/
|
|
100
|
+
'name'?: string;
|
|
101
|
+
/**
|
|
102
|
+
* Object type identifier
|
|
103
|
+
* @type {string}
|
|
104
|
+
* @memberof RetrieveExecution200Response
|
|
105
|
+
*/
|
|
106
|
+
'object'?: string;
|
|
107
|
+
/**
|
|
108
|
+
* Number of currently running actions
|
|
109
|
+
* @type {number}
|
|
110
|
+
* @memberof RetrieveExecution200Response
|
|
111
|
+
*/
|
|
112
|
+
'running_actions_count'?: number;
|
|
113
|
+
/**
|
|
114
|
+
* Execution statistics
|
|
115
|
+
* @type {{ [key: string]: any; }}
|
|
116
|
+
* @memberof RetrieveExecution200Response
|
|
117
|
+
*/
|
|
118
|
+
'stats'?: { [key: string]: any; };
|
|
119
|
+
/**
|
|
120
|
+
* Current status of the execution
|
|
121
|
+
* @type {string}
|
|
122
|
+
* @memberof RetrieveExecution200Response
|
|
123
|
+
*/
|
|
124
|
+
'status'?: string;
|
|
125
|
+
/**
|
|
126
|
+
* Number of stopped actions
|
|
127
|
+
* @type {number}
|
|
128
|
+
* @memberof RetrieveExecution200Response
|
|
129
|
+
*/
|
|
130
|
+
'stopped_actions_count'?: number;
|
|
131
|
+
/**
|
|
132
|
+
* Template layout for the execution
|
|
133
|
+
* @type {object}
|
|
134
|
+
* @memberof RetrieveExecution200Response
|
|
135
|
+
*/
|
|
136
|
+
'template'?: object;
|
|
137
|
+
}
|
|
138
|
+
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* API V1
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface RetryActionRequest
|
|
21
|
+
*/
|
|
22
|
+
export interface RetryActionRequest {
|
|
23
|
+
[key: string]: any;
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* User\'s key
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof RetryActionRequest
|
|
29
|
+
*/
|
|
30
|
+
'user_key': string;
|
|
31
|
+
/**
|
|
32
|
+
* The trigger\'s hook id used for third party webhooks.
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof RetryActionRequest
|
|
35
|
+
*/
|
|
36
|
+
'hook_id': string;
|
|
37
|
+
}
|
|
38
|
+
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* API V1
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface StopExecutionsRequest
|
|
21
|
+
*/
|
|
22
|
+
export interface StopExecutionsRequest {
|
|
23
|
+
[key: string]: any;
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* User\'s key
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof StopExecutionsRequest
|
|
29
|
+
*/
|
|
30
|
+
'user_key': string;
|
|
31
|
+
/**
|
|
32
|
+
* Data to filter
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof StopExecutionsRequest
|
|
35
|
+
*/
|
|
36
|
+
'filters'?: string;
|
|
37
|
+
}
|
|
38
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* API V1
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface TriggerWorkflowRequest
|
|
21
|
+
*/
|
|
22
|
+
export interface TriggerWorkflowRequest {
|
|
23
|
+
/**
|
|
24
|
+
* User\'s key
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof TriggerWorkflowRequest
|
|
27
|
+
*/
|
|
28
|
+
'user_key'?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Data required to execute the workflow. Key-value pairs that provide context and variables needed during workflow execution.
|
|
31
|
+
* @type {{ [key: string]: any; }}
|
|
32
|
+
* @memberof TriggerWorkflowRequest
|
|
33
|
+
*/
|
|
34
|
+
'execution_data'?: { [key: string]: any; };
|
|
35
|
+
/**
|
|
36
|
+
* The trigger\'s key
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof TriggerWorkflowRequest
|
|
39
|
+
*/
|
|
40
|
+
'event'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* Array of workflow ids.
|
|
43
|
+
* @type {Array<string>}
|
|
44
|
+
* @memberof TriggerWorkflowRequest
|
|
45
|
+
*/
|
|
46
|
+
'workflow_ids'?: Array<string>;
|
|
47
|
+
/**
|
|
48
|
+
* Array of workflow keys.
|
|
49
|
+
* @type {Array<string>}
|
|
50
|
+
* @memberof TriggerWorkflowRequest
|
|
51
|
+
*/
|
|
52
|
+
'workflow_keys'?: Array<string>;
|
|
53
|
+
}
|
|
54
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* API V1
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Icon configuration (user-editable)
|
|
19
|
+
* @export
|
|
20
|
+
* @interface UpdateAccountRequestActionTypeCategoriesInnerIcon
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateAccountRequestActionTypeCategoriesInnerIcon {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UpdateAccountRequestActionTypeCategoriesInnerIcon
|
|
27
|
+
*/
|
|
28
|
+
'type'?: string;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UpdateAccountRequestActionTypeCategoriesInnerIcon
|
|
33
|
+
*/
|
|
34
|
+
'background_color'?: string;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof UpdateAccountRequestActionTypeCategoriesInnerIcon
|
|
39
|
+
*/
|
|
40
|
+
'url'?: string;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* API V1
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { UpdateAccountRequestActionTypeCategoriesInnerIcon } from './update-account-request-action-type-categories-inner-icon';
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
*
|
|
22
|
+
* @export
|
|
23
|
+
* @interface UpdateAccountRequestActionTypeCategoriesInner
|
|
24
|
+
*/
|
|
25
|
+
export interface UpdateAccountRequestActionTypeCategoriesInner {
|
|
26
|
+
/**
|
|
27
|
+
* Immutable category identifier
|
|
28
|
+
* @type {string}
|
|
29
|
+
* @memberof UpdateAccountRequestActionTypeCategoriesInner
|
|
30
|
+
*/
|
|
31
|
+
'key': string;
|
|
32
|
+
/**
|
|
33
|
+
* Display name (user-editable)
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof UpdateAccountRequestActionTypeCategoriesInner
|
|
36
|
+
*/
|
|
37
|
+
'name': string;
|
|
38
|
+
/**
|
|
39
|
+
* Short description (user-editable)
|
|
40
|
+
* @type {string}
|
|
41
|
+
* @memberof UpdateAccountRequestActionTypeCategoriesInner
|
|
42
|
+
*/
|
|
43
|
+
'description'?: string;
|
|
44
|
+
/**
|
|
45
|
+
*
|
|
46
|
+
* @type {UpdateAccountRequestActionTypeCategoriesInnerIcon}
|
|
47
|
+
* @memberof UpdateAccountRequestActionTypeCategoriesInner
|
|
48
|
+
*/
|
|
49
|
+
'icon'?: UpdateAccountRequestActionTypeCategoriesInnerIcon;
|
|
50
|
+
}
|
|
51
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* API V1
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface UpdateAccountRequestUserDataSchemaInner
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateAccountRequestUserDataSchemaInner {
|
|
23
|
+
/**
|
|
24
|
+
* Variable name for the data field
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UpdateAccountRequestUserDataSchemaInner
|
|
27
|
+
*/
|
|
28
|
+
'variable': string;
|
|
29
|
+
/**
|
|
30
|
+
* Path to the data within the structure
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UpdateAccountRequestUserDataSchemaInner
|
|
33
|
+
*/
|
|
34
|
+
'data_path'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Data type identifier
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof UpdateAccountRequestUserDataSchemaInner
|
|
39
|
+
*/
|
|
40
|
+
'type': string;
|
|
41
|
+
/**
|
|
42
|
+
* Whether this field is required
|
|
43
|
+
* @type {boolean}
|
|
44
|
+
* @memberof UpdateAccountRequestUserDataSchemaInner
|
|
45
|
+
*/
|
|
46
|
+
'required'?: boolean;
|
|
47
|
+
/**
|
|
48
|
+
* Permission groups for this data field
|
|
49
|
+
* @type {Array<string>}
|
|
50
|
+
* @memberof UpdateAccountRequestUserDataSchemaInner
|
|
51
|
+
*/
|
|
52
|
+
'groups'?: Array<string>;
|
|
53
|
+
}
|
|
54
|
+
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* API V1
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { UpdateAccountRequestActionTypeCategoriesInner } from './update-account-request-action-type-categories-inner';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { UpdateAccountRequestUserDataSchemaInner } from './update-account-request-user-data-schema-inner';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface UpdateAccountRequest
|
|
27
|
+
*/
|
|
28
|
+
export interface UpdateAccountRequest {
|
|
29
|
+
/**
|
|
30
|
+
* Company name associated with the account
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UpdateAccountRequest
|
|
33
|
+
*/
|
|
34
|
+
'company_name'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* User name for the account
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof UpdateAccountRequest
|
|
39
|
+
*/
|
|
40
|
+
'user_name'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* Theme setting for the account
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof UpdateAccountRequest
|
|
45
|
+
*/
|
|
46
|
+
'theme'?: string;
|
|
47
|
+
/**
|
|
48
|
+
* Time zone setting for the account
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof UpdateAccountRequest
|
|
51
|
+
*/
|
|
52
|
+
'time_zone'?: string;
|
|
53
|
+
/**
|
|
54
|
+
* Custom domain for the account
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof UpdateAccountRequest
|
|
57
|
+
*/
|
|
58
|
+
'custom_domain'?: string;
|
|
59
|
+
/**
|
|
60
|
+
* User permission groups. Only available to users with admin role.
|
|
61
|
+
* @type {Array<string>}
|
|
62
|
+
* @memberof UpdateAccountRequest
|
|
63
|
+
*/
|
|
64
|
+
'groups'?: Array<string>;
|
|
65
|
+
/**
|
|
66
|
+
* Enable or disable action type categories display
|
|
67
|
+
* @type {boolean}
|
|
68
|
+
* @memberof UpdateAccountRequest
|
|
69
|
+
*/
|
|
70
|
+
'action_type_categories_enabled'?: boolean;
|
|
71
|
+
/**
|
|
72
|
+
* Action type categories for the account.
|
|
73
|
+
* @type {Array<UpdateAccountRequestActionTypeCategoriesInner>}
|
|
74
|
+
* @memberof UpdateAccountRequest
|
|
75
|
+
*/
|
|
76
|
+
'action_type_categories'?: Array<UpdateAccountRequestActionTypeCategoriesInner>;
|
|
77
|
+
/**
|
|
78
|
+
* Additional account data
|
|
79
|
+
* @type {{ [key: string]: any; }}
|
|
80
|
+
* @memberof UpdateAccountRequest
|
|
81
|
+
*/
|
|
82
|
+
'data'?: { [key: string]: any; };
|
|
83
|
+
/**
|
|
84
|
+
* Data schema configuration
|
|
85
|
+
* @type {Array<UpdateAccountRequestUserDataSchemaInner>}
|
|
86
|
+
* @memberof UpdateAccountRequest
|
|
87
|
+
*/
|
|
88
|
+
'user_data_schema'?: Array<UpdateAccountRequestUserDataSchemaInner>;
|
|
89
|
+
/**
|
|
90
|
+
* Data schema configuration
|
|
91
|
+
* @type {Array<UpdateAccountRequestUserDataSchemaInner>}
|
|
92
|
+
* @memberof UpdateAccountRequest
|
|
93
|
+
*/
|
|
94
|
+
'data_schema'?: Array<UpdateAccountRequestUserDataSchemaInner>;
|
|
95
|
+
}
|
|
96
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* API V1
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface UpdateActionTypeRequest
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateActionTypeRequest {
|
|
23
|
+
/**
|
|
24
|
+
* The trigger\'s key
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UpdateActionTypeRequest
|
|
27
|
+
*/
|
|
28
|
+
'event'?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Title
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UpdateActionTypeRequest
|
|
33
|
+
*/
|
|
34
|
+
'title'?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Primary category for the action type
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof UpdateActionTypeRequest
|
|
39
|
+
*/
|
|
40
|
+
'primary_category'?: string;
|
|
41
|
+
/**
|
|
42
|
+
* Secondary category for the action type
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof UpdateActionTypeRequest
|
|
45
|
+
*/
|
|
46
|
+
'secondary_category'?: string;
|
|
47
|
+
}
|
|
48
|
+
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* API V1
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface UpdateInstalledAppRequest
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateInstalledAppRequest {
|
|
23
|
+
/**
|
|
24
|
+
* User permission groups. Only available to users with admin role.
|
|
25
|
+
* @type {Array<string>}
|
|
26
|
+
* @memberof UpdateInstalledAppRequest
|
|
27
|
+
*/
|
|
28
|
+
'groups'?: Array<string>;
|
|
29
|
+
}
|
|
30
|
+
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* API V1
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: v1
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface UpdateTriggerRequest
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateTriggerRequest {
|
|
23
|
+
/**
|
|
24
|
+
* The trigger\'s key
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof UpdateTriggerRequest
|
|
27
|
+
*/
|
|
28
|
+
'event'?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Title
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof UpdateTriggerRequest
|
|
33
|
+
*/
|
|
34
|
+
'title'?: string;
|
|
35
|
+
}
|
|
36
|
+
|