@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
package/{dist/models/retrieve-installed-app200-response.d.ts → models/install-app201-response.ts}
RENAMED
|
@@ -1,122 +1,126 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
1
3
|
/**
|
|
2
4
|
* API V1
|
|
3
5
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
6
|
*
|
|
5
7
|
* The version of the OpenAPI document: v1
|
|
6
|
-
*
|
|
8
|
+
*
|
|
7
9
|
*
|
|
8
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
11
|
* https://openapi-generator.tech
|
|
10
12
|
* Do not edit the class manually.
|
|
11
13
|
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
12
17
|
/**
|
|
13
|
-
*
|
|
18
|
+
*
|
|
14
19
|
* @export
|
|
15
|
-
* @interface
|
|
20
|
+
* @interface InstallApp201Response
|
|
16
21
|
*/
|
|
17
|
-
export interface
|
|
22
|
+
export interface InstallApp201Response {
|
|
18
23
|
/**
|
|
19
24
|
* System-generated unique identifier
|
|
20
25
|
* @type {string}
|
|
21
|
-
* @memberof
|
|
26
|
+
* @memberof InstallApp201Response
|
|
22
27
|
*/
|
|
23
28
|
'id'?: string;
|
|
24
29
|
/**
|
|
25
30
|
* Unique identifier for the app
|
|
26
31
|
* @type {string}
|
|
27
|
-
* @memberof
|
|
32
|
+
* @memberof InstallApp201Response
|
|
28
33
|
*/
|
|
29
34
|
'app_identifier'?: string;
|
|
30
35
|
/**
|
|
31
36
|
* Currently installed version of the app
|
|
32
37
|
* @type {string}
|
|
33
|
-
* @memberof
|
|
38
|
+
* @memberof InstallApp201Response
|
|
34
39
|
*/
|
|
35
40
|
'app_version'?: string;
|
|
36
41
|
/**
|
|
37
42
|
* Latest available version of the app
|
|
38
43
|
* @type {string}
|
|
39
|
-
* @memberof
|
|
44
|
+
* @memberof InstallApp201Response
|
|
40
45
|
*/
|
|
41
46
|
'available_version'?: string | null;
|
|
42
47
|
/**
|
|
43
48
|
* Permission groups that can access this app
|
|
44
49
|
* @type {Array<string>}
|
|
45
|
-
* @memberof
|
|
50
|
+
* @memberof InstallApp201Response
|
|
46
51
|
*/
|
|
47
52
|
'groups'?: Array<string>;
|
|
48
53
|
/**
|
|
49
54
|
* Icon configuration for the installed app
|
|
50
55
|
* @type {object}
|
|
51
|
-
* @memberof
|
|
56
|
+
* @memberof InstallApp201Response
|
|
52
57
|
*/
|
|
53
58
|
'icon'?: object | null;
|
|
54
59
|
/**
|
|
55
60
|
* Schema configuration for the installed app
|
|
56
61
|
* @type {{ [key: string]: any; }}
|
|
57
|
-
* @memberof
|
|
62
|
+
* @memberof InstallApp201Response
|
|
58
63
|
*/
|
|
59
|
-
'installed_schema'?: {
|
|
60
|
-
[key: string]: any;
|
|
61
|
-
};
|
|
64
|
+
'installed_schema'?: { [key: string]: any; };
|
|
62
65
|
/**
|
|
63
66
|
* Last used at in specified timezone
|
|
64
67
|
* @type {string}
|
|
65
|
-
* @memberof
|
|
68
|
+
* @memberof InstallApp201Response
|
|
66
69
|
*/
|
|
67
70
|
'last_used_at'?: string | null;
|
|
68
71
|
/**
|
|
69
72
|
* Last used at formatted as human-readable string
|
|
70
73
|
* @type {string}
|
|
71
|
-
* @memberof
|
|
74
|
+
* @memberof InstallApp201Response
|
|
72
75
|
*/
|
|
73
76
|
'last_used_at_string'?: string | null;
|
|
74
77
|
/**
|
|
75
78
|
* Last used at in UTC
|
|
76
79
|
* @type {string}
|
|
77
|
-
* @memberof
|
|
80
|
+
* @memberof InstallApp201Response
|
|
78
81
|
*/
|
|
79
82
|
'last_used_at_utc'?: string | null;
|
|
80
83
|
/**
|
|
81
84
|
* Display name of the installed app
|
|
82
85
|
* @type {string}
|
|
83
|
-
* @memberof
|
|
86
|
+
* @memberof InstallApp201Response
|
|
84
87
|
*/
|
|
85
88
|
'name'?: string;
|
|
86
89
|
/**
|
|
87
90
|
* Object type identifier
|
|
88
91
|
* @type {string}
|
|
89
|
-
* @memberof
|
|
92
|
+
* @memberof InstallApp201Response
|
|
90
93
|
*/
|
|
91
94
|
'object'?: string;
|
|
92
95
|
/**
|
|
93
96
|
* Previously installed version of the app
|
|
94
97
|
* @type {string}
|
|
95
|
-
* @memberof
|
|
98
|
+
* @memberof InstallApp201Response
|
|
96
99
|
*/
|
|
97
100
|
'previous_version'?: string | null;
|
|
98
101
|
/**
|
|
99
102
|
* Whether an upgrade is available for this app
|
|
100
103
|
* @type {boolean}
|
|
101
|
-
* @memberof
|
|
104
|
+
* @memberof InstallApp201Response
|
|
102
105
|
*/
|
|
103
106
|
'upgrade_available'?: boolean;
|
|
104
107
|
/**
|
|
105
108
|
* Upgraded at in specified timezone
|
|
106
109
|
* @type {string}
|
|
107
|
-
* @memberof
|
|
110
|
+
* @memberof InstallApp201Response
|
|
108
111
|
*/
|
|
109
112
|
'upgraded_at'?: string | null;
|
|
110
113
|
/**
|
|
111
114
|
* Upgraded at formatted as human-readable string
|
|
112
115
|
* @type {string}
|
|
113
|
-
* @memberof
|
|
116
|
+
* @memberof InstallApp201Response
|
|
114
117
|
*/
|
|
115
118
|
'upgraded_at_string'?: string | null;
|
|
116
119
|
/**
|
|
117
120
|
* Upgraded at in UTC
|
|
118
121
|
* @type {string}
|
|
119
|
-
* @memberof
|
|
122
|
+
* @memberof InstallApp201Response
|
|
120
123
|
*/
|
|
121
124
|
'upgraded_at_utc'?: string | null;
|
|
122
125
|
}
|
|
126
|
+
|
|
@@ -0,0 +1,325 @@
|
|
|
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 ListActionTypes200ResponseCollectionInner
|
|
21
|
+
*/
|
|
22
|
+
export interface ListActionTypes200ResponseCollectionInner {
|
|
23
|
+
/**
|
|
24
|
+
* System-generated unique identifier
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
27
|
+
*/
|
|
28
|
+
'id'?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Human-readable name of the app connection
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
33
|
+
*/
|
|
34
|
+
'app_name'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
* Callback timeout duration value
|
|
37
|
+
* @type {number}
|
|
38
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
39
|
+
*/
|
|
40
|
+
'callback_timeout_n'?: number | null;
|
|
41
|
+
/**
|
|
42
|
+
* Callback timeout duration unit
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
45
|
+
*/
|
|
46
|
+
'callback_timeout_unit'?: ListActionTypes200ResponseCollectionInnerCallbackTimeoutUnitEnum | null;
|
|
47
|
+
/**
|
|
48
|
+
* Code content for the action type
|
|
49
|
+
* @type {string}
|
|
50
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
51
|
+
*/
|
|
52
|
+
'code'?: string | null;
|
|
53
|
+
/**
|
|
54
|
+
* Draft code content for the action type
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
57
|
+
*/
|
|
58
|
+
'code_draft'?: string | null;
|
|
59
|
+
/**
|
|
60
|
+
* Created at in specified timezone
|
|
61
|
+
* @type {string}
|
|
62
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
63
|
+
*/
|
|
64
|
+
'created_at'?: string | null;
|
|
65
|
+
/**
|
|
66
|
+
* Created at formatted as human-readable string
|
|
67
|
+
* @type {string}
|
|
68
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
69
|
+
*/
|
|
70
|
+
'created_at_string'?: string | null;
|
|
71
|
+
/**
|
|
72
|
+
* Created at in UTC
|
|
73
|
+
* @type {string}
|
|
74
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
75
|
+
*/
|
|
76
|
+
'created_at_utc'?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
* Description of the action type
|
|
79
|
+
* @type {string}
|
|
80
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
81
|
+
*/
|
|
82
|
+
'description'?: string | null;
|
|
83
|
+
/**
|
|
84
|
+
* Number of times this action type has been executed
|
|
85
|
+
* @type {number}
|
|
86
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
87
|
+
*/
|
|
88
|
+
'executed_count'?: number;
|
|
89
|
+
/**
|
|
90
|
+
* Permission groups for this action type
|
|
91
|
+
* @type {Array<string>}
|
|
92
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
93
|
+
*/
|
|
94
|
+
'groups'?: Array<string>;
|
|
95
|
+
/**
|
|
96
|
+
* Whether the action type has unsaved draft changes
|
|
97
|
+
* @type {boolean}
|
|
98
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
99
|
+
*/
|
|
100
|
+
'has_draft'?: boolean;
|
|
101
|
+
/**
|
|
102
|
+
* Headers configuration for the action type
|
|
103
|
+
* @type {{ [key: string]: any; }}
|
|
104
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
105
|
+
*/
|
|
106
|
+
'headers'?: { [key: string]: any; } | null;
|
|
107
|
+
/**
|
|
108
|
+
* Draft headers configuration for the action type
|
|
109
|
+
* @type {{ [key: string]: any; }}
|
|
110
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
111
|
+
*/
|
|
112
|
+
'headers_draft'?: { [key: string]: any; } | null;
|
|
113
|
+
/**
|
|
114
|
+
* HTTP method for the action type
|
|
115
|
+
* @type {string}
|
|
116
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
117
|
+
*/
|
|
118
|
+
'http_method'?: ListActionTypes200ResponseCollectionInnerHttpMethodEnum | null;
|
|
119
|
+
/**
|
|
120
|
+
* Draft HTTP method for the action type
|
|
121
|
+
* @type {string}
|
|
122
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
123
|
+
*/
|
|
124
|
+
'http_method_draft'?: ListActionTypes200ResponseCollectionInnerHttpMethodDraftEnum | null;
|
|
125
|
+
/**
|
|
126
|
+
* Icon configuration for the action type
|
|
127
|
+
* @type {object}
|
|
128
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
129
|
+
*/
|
|
130
|
+
'icon'?: object | null;
|
|
131
|
+
/**
|
|
132
|
+
* Draft icon configuration for the action type
|
|
133
|
+
* @type {object}
|
|
134
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
135
|
+
*/
|
|
136
|
+
'icon_draft'?: object | null;
|
|
137
|
+
/**
|
|
138
|
+
* Last executed at in specified timezone
|
|
139
|
+
* @type {string}
|
|
140
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
141
|
+
*/
|
|
142
|
+
'last_executed_at'?: string | null;
|
|
143
|
+
/**
|
|
144
|
+
* Last executed at formatted as human-readable string
|
|
145
|
+
* @type {string}
|
|
146
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
147
|
+
*/
|
|
148
|
+
'last_executed_at_string'?: string | null;
|
|
149
|
+
/**
|
|
150
|
+
* Last executed at in UTC
|
|
151
|
+
* @type {string}
|
|
152
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
153
|
+
*/
|
|
154
|
+
'last_executed_at_utc'?: string | null;
|
|
155
|
+
/**
|
|
156
|
+
* Last published at in specified timezone
|
|
157
|
+
* @type {string}
|
|
158
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
159
|
+
*/
|
|
160
|
+
'last_published_at'?: string | null;
|
|
161
|
+
/**
|
|
162
|
+
* Last published at formatted as human-readable string
|
|
163
|
+
* @type {string}
|
|
164
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
165
|
+
*/
|
|
166
|
+
'last_published_at_string'?: string | null;
|
|
167
|
+
/**
|
|
168
|
+
* Last published at in UTC
|
|
169
|
+
* @type {string}
|
|
170
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
171
|
+
*/
|
|
172
|
+
'last_published_at_utc'?: string | null;
|
|
173
|
+
/**
|
|
174
|
+
* Name of the action type
|
|
175
|
+
* @type {string}
|
|
176
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
177
|
+
*/
|
|
178
|
+
'name'?: string;
|
|
179
|
+
/**
|
|
180
|
+
* Object type identifier
|
|
181
|
+
* @type {string}
|
|
182
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
183
|
+
*/
|
|
184
|
+
'object'?: string;
|
|
185
|
+
/**
|
|
186
|
+
* Whether the action type is enabled
|
|
187
|
+
* @type {boolean}
|
|
188
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
189
|
+
*/
|
|
190
|
+
'on'?: boolean;
|
|
191
|
+
/**
|
|
192
|
+
* Parameters configuration for the action type
|
|
193
|
+
* @type {string}
|
|
194
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
195
|
+
*/
|
|
196
|
+
'params'?: string | null;
|
|
197
|
+
/**
|
|
198
|
+
* Draft parameters configuration for the action type
|
|
199
|
+
* @type {string}
|
|
200
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
201
|
+
*/
|
|
202
|
+
'params_draft'?: string | null;
|
|
203
|
+
/**
|
|
204
|
+
* Primary category classification
|
|
205
|
+
* @type {string}
|
|
206
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
207
|
+
*/
|
|
208
|
+
'primary_category'?: string | null;
|
|
209
|
+
/**
|
|
210
|
+
* The required app connection for this action type
|
|
211
|
+
* @type {string}
|
|
212
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
213
|
+
*/
|
|
214
|
+
'required_app_connection'?: string | null;
|
|
215
|
+
/**
|
|
216
|
+
* Secondary category classification
|
|
217
|
+
* @type {string}
|
|
218
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
219
|
+
*/
|
|
220
|
+
'secondary_category'?: string | null;
|
|
221
|
+
/**
|
|
222
|
+
* Source identifier for the action type
|
|
223
|
+
* @type {string}
|
|
224
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
225
|
+
*/
|
|
226
|
+
'source'?: string | null;
|
|
227
|
+
/**
|
|
228
|
+
* Type classification of the action
|
|
229
|
+
* @type {string}
|
|
230
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
231
|
+
*/
|
|
232
|
+
'type'?: string;
|
|
233
|
+
/**
|
|
234
|
+
* Updated at in specified timezone
|
|
235
|
+
* @type {string}
|
|
236
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
237
|
+
*/
|
|
238
|
+
'updated_at'?: string | null;
|
|
239
|
+
/**
|
|
240
|
+
* Updated at formatted as human-readable string
|
|
241
|
+
* @type {string}
|
|
242
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
243
|
+
*/
|
|
244
|
+
'updated_at_string'?: string | null;
|
|
245
|
+
/**
|
|
246
|
+
* Updated at in UTC
|
|
247
|
+
* @type {string}
|
|
248
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
249
|
+
*/
|
|
250
|
+
'updated_at_utc'?: string | null;
|
|
251
|
+
/**
|
|
252
|
+
* URL for the action type
|
|
253
|
+
* @type {string}
|
|
254
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
255
|
+
*/
|
|
256
|
+
'url'?: string | null;
|
|
257
|
+
/**
|
|
258
|
+
* Draft URL for the action type
|
|
259
|
+
* @type {string}
|
|
260
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
261
|
+
*/
|
|
262
|
+
'url_draft'?: string | null;
|
|
263
|
+
/**
|
|
264
|
+
* When true, actions fire the webhook but wait for an external callback before completing
|
|
265
|
+
* @type {boolean}
|
|
266
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
267
|
+
*/
|
|
268
|
+
'wait_for_callback'?: boolean;
|
|
269
|
+
/**
|
|
270
|
+
* Form fields for the action type
|
|
271
|
+
* @type {Array<object>}
|
|
272
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
273
|
+
*/
|
|
274
|
+
'form'?: Array<object>;
|
|
275
|
+
/**
|
|
276
|
+
* Draft form fields for the action type
|
|
277
|
+
* @type {Array<object>}
|
|
278
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
279
|
+
*/
|
|
280
|
+
'form_draft'?: Array<object>;
|
|
281
|
+
/**
|
|
282
|
+
* Response data schema for the action type
|
|
283
|
+
* @type {Array<object>}
|
|
284
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
285
|
+
*/
|
|
286
|
+
'response_data_schema'?: Array<object>;
|
|
287
|
+
/**
|
|
288
|
+
* Draft response data schema for the action type
|
|
289
|
+
* @type {Array<object>}
|
|
290
|
+
* @memberof ListActionTypes200ResponseCollectionInner
|
|
291
|
+
*/
|
|
292
|
+
'response_data_schema_draft'?: Array<object>;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
export const ListActionTypes200ResponseCollectionInnerCallbackTimeoutUnitEnum = {
|
|
296
|
+
Sec: 'sec',
|
|
297
|
+
Min: 'min',
|
|
298
|
+
Hour: 'hour',
|
|
299
|
+
Day: 'day',
|
|
300
|
+
Week: 'week',
|
|
301
|
+
Month: 'month',
|
|
302
|
+
Year: 'year'
|
|
303
|
+
} as const;
|
|
304
|
+
|
|
305
|
+
export type ListActionTypes200ResponseCollectionInnerCallbackTimeoutUnitEnum = typeof ListActionTypes200ResponseCollectionInnerCallbackTimeoutUnitEnum[keyof typeof ListActionTypes200ResponseCollectionInnerCallbackTimeoutUnitEnum];
|
|
306
|
+
export const ListActionTypes200ResponseCollectionInnerHttpMethodEnum = {
|
|
307
|
+
Get: 'get',
|
|
308
|
+
Post: 'post',
|
|
309
|
+
Put: 'put',
|
|
310
|
+
Patch: 'patch',
|
|
311
|
+
Delete: 'delete'
|
|
312
|
+
} as const;
|
|
313
|
+
|
|
314
|
+
export type ListActionTypes200ResponseCollectionInnerHttpMethodEnum = typeof ListActionTypes200ResponseCollectionInnerHttpMethodEnum[keyof typeof ListActionTypes200ResponseCollectionInnerHttpMethodEnum];
|
|
315
|
+
export const ListActionTypes200ResponseCollectionInnerHttpMethodDraftEnum = {
|
|
316
|
+
Get: 'get',
|
|
317
|
+
Post: 'post',
|
|
318
|
+
Put: 'put',
|
|
319
|
+
Patch: 'patch',
|
|
320
|
+
Delete: 'delete'
|
|
321
|
+
} as const;
|
|
322
|
+
|
|
323
|
+
export type ListActionTypes200ResponseCollectionInnerHttpMethodDraftEnum = typeof ListActionTypes200ResponseCollectionInnerHttpMethodDraftEnum[keyof typeof ListActionTypes200ResponseCollectionInnerHttpMethodDraftEnum];
|
|
324
|
+
|
|
325
|
+
|
|
@@ -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
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface ListActionTypes200ResponseMeta
|
|
21
|
+
*/
|
|
22
|
+
export interface ListActionTypes200ResponseMeta {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {number}
|
|
26
|
+
* @memberof ListActionTypes200ResponseMeta
|
|
27
|
+
*/
|
|
28
|
+
'page_limit'?: number | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {boolean}
|
|
32
|
+
* @memberof ListActionTypes200ResponseMeta
|
|
33
|
+
*/
|
|
34
|
+
'has_next_page'?: boolean;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {boolean}
|
|
38
|
+
* @memberof ListActionTypes200ResponseMeta
|
|
39
|
+
*/
|
|
40
|
+
'has_previous_page'?: boolean;
|
|
41
|
+
}
|
|
42
|
+
|
|
@@ -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
|
+
// May contain unused imports in some cases
|
|
17
|
+
// @ts-ignore
|
|
18
|
+
import { ListActionTypes200ResponseCollectionInner } from './list-action-types200-response-collection-inner';
|
|
19
|
+
// May contain unused imports in some cases
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { ListActionTypes200ResponseMeta } from './list-action-types200-response-meta';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @export
|
|
26
|
+
* @interface ListActionTypes200Response
|
|
27
|
+
*/
|
|
28
|
+
export interface ListActionTypes200Response {
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {Array<ListActionTypes200ResponseCollectionInner>}
|
|
32
|
+
* @memberof ListActionTypes200Response
|
|
33
|
+
*/
|
|
34
|
+
'collection': Array<ListActionTypes200ResponseCollectionInner>;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {ListActionTypes200ResponseMeta}
|
|
38
|
+
* @memberof ListActionTypes200Response
|
|
39
|
+
*/
|
|
40
|
+
'meta': ListActionTypes200ResponseMeta;
|
|
41
|
+
}
|
|
42
|
+
|