@embedworkflow/sdk 1.0.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.
Files changed (243) hide show
  1. package/.github/workflows/push-tag.yaml +34 -0
  2. package/.openapi-generator/FILES +87 -0
  3. package/.openapi-generator/VERSION +1 -0
  4. package/.openapi-generator-ignore +23 -0
  5. package/README.md +2 -2
  6. package/api/accounts-api.ts +540 -0
  7. package/api/action-types-api.ts +697 -0
  8. package/api/actions-api.ts +786 -0
  9. package/api/app-connections-api.ts +556 -0
  10. package/api/available-apps-api.ts +239 -0
  11. package/api/data-fields-api.ts +404 -0
  12. package/api/events-api.ts +172 -0
  13. package/api/executions-api.ts +361 -0
  14. package/api/installed-apps-api.ts +410 -0
  15. package/api/payments-api.ts +172 -0
  16. package/api/triggers-api.ts +437 -0
  17. package/api/users-api.ts +531 -0
  18. package/api/workflows-api.ts +1302 -0
  19. package/api.ts +30 -0
  20. package/base.ts +86 -0
  21. package/common.ts +150 -0
  22. package/configuration.ts +110 -0
  23. package/dist/api/accounts-api.d.ts +124 -3
  24. package/dist/api/accounts-api.js +182 -1
  25. package/dist/api/action-types-api.d.ts +43 -36
  26. package/dist/api/action-types-api.js +27 -20
  27. package/dist/api/actions-api.d.ts +6 -6
  28. package/dist/api/app-connections-api.d.ts +28 -27
  29. package/dist/api/app-connections-api.js +25 -25
  30. package/dist/api/available-apps-api.d.ts +2 -2
  31. package/dist/api/data-fields-api.d.ts +46 -2
  32. package/dist/api/data-fields-api.js +68 -0
  33. package/dist/api/events-api.d.ts +1 -1
  34. package/dist/api/executions-api.d.ts +3 -3
  35. package/dist/api/installed-apps-api.d.ts +14 -14
  36. package/dist/api/payments-api.d.ts +1 -1
  37. package/dist/api/triggers-api.d.ts +22 -20
  38. package/dist/api/triggers-api.js +12 -12
  39. package/dist/api/users-api.d.ts +24 -18
  40. package/dist/api/users-api.js +14 -7
  41. package/dist/api/workflows-api.d.ts +114 -32
  42. package/dist/api/workflows-api.js +125 -8
  43. package/dist/common.d.ts +1 -1
  44. package/dist/esm/api/accounts-api.d.ts +124 -3
  45. package/dist/esm/api/accounts-api.js +181 -0
  46. package/dist/esm/api/action-types-api.d.ts +43 -36
  47. package/dist/esm/api/action-types-api.js +27 -20
  48. package/dist/esm/api/actions-api.d.ts +6 -6
  49. package/dist/esm/api/app-connections-api.d.ts +28 -27
  50. package/dist/esm/api/app-connections-api.js +25 -25
  51. package/dist/esm/api/available-apps-api.d.ts +2 -2
  52. package/dist/esm/api/data-fields-api.d.ts +46 -2
  53. package/dist/esm/api/data-fields-api.js +69 -1
  54. package/dist/esm/api/events-api.d.ts +1 -1
  55. package/dist/esm/api/executions-api.d.ts +3 -3
  56. package/dist/esm/api/installed-apps-api.d.ts +14 -14
  57. package/dist/esm/api/payments-api.d.ts +1 -1
  58. package/dist/esm/api/triggers-api.d.ts +22 -20
  59. package/dist/esm/api/triggers-api.js +12 -12
  60. package/dist/esm/api/users-api.d.ts +24 -18
  61. package/dist/esm/api/users-api.js +14 -7
  62. package/dist/esm/api/workflows-api.d.ts +114 -32
  63. package/dist/esm/api/workflows-api.js +124 -7
  64. package/dist/esm/common.d.ts +1 -1
  65. package/dist/esm/models/catch-hook-request.d.ts +25 -0
  66. package/dist/esm/models/{api-v1-action-types-post-request-form-draft-inner.d.ts → create-action-type-request-form-draft-inner.d.ts} +18 -12
  67. package/dist/esm/models/{api-v1-action-types-post-request-form-draft-inner.js → create-action-type-request-form-draft-inner.js} +1 -1
  68. package/dist/esm/models/{api-v1-action-types-post-request-icon-draft.d.ts → create-action-type-request-icon-draft.d.ts} +5 -5
  69. package/dist/{models/api-v1-action-types-post-request.d.ts → esm/models/create-action-type-request.d.ts} +34 -22
  70. package/dist/{models/retrieve-action-type404-response.d.ts → esm/models/create-action-type422-response.d.ts} +5 -5
  71. package/dist/esm/models/{api-v1-app-connections-post-request.d.ts → create-app-connection-request.d.ts} +6 -6
  72. package/dist/esm/models/create-workflow201-response.d.ts +262 -0
  73. package/dist/{models/clone-workflow201-response.js → esm/models/create-workflow201-response.js} +5 -4
  74. package/dist/esm/models/delete-action-type200-response.d.ts +24 -0
  75. package/dist/esm/models/delete-action-type200-response.js +14 -0
  76. package/dist/esm/models/evaluate-expression-request.d.ts +32 -0
  77. package/dist/esm/models/evaluate-expression-request.js +14 -0
  78. package/dist/esm/models/evaluate-expression200-response.d.ts +24 -0
  79. package/dist/esm/models/evaluate-expression200-response.js +14 -0
  80. package/dist/esm/models/export-configuration200-response-configuration.d.ts +16 -0
  81. package/dist/esm/models/export-configuration200-response-configuration.js +14 -0
  82. package/dist/esm/models/export-configuration200-response.d.ts +25 -0
  83. package/dist/esm/models/export-configuration200-response.js +14 -0
  84. package/dist/esm/models/import-configuration201-response.d.ts +6 -0
  85. package/dist/esm/models/index.d.ts +19 -8
  86. package/dist/esm/models/index.js +19 -8
  87. package/dist/{models/retrieve-installed-app200-response.d.ts → esm/models/install-app201-response.d.ts} +19 -19
  88. package/dist/esm/models/install-app201-response.js +14 -0
  89. package/dist/esm/models/list-action-types200-response-collection-inner.d.ts +58 -0
  90. package/dist/esm/models/list-action-types200-response-collection-inner.js +9 -0
  91. package/dist/esm/models/list-data-fields200-response-collection-inner.d.ts +18 -0
  92. package/dist/esm/models/list-triggers200-response-collection-inner.d.ts +18 -0
  93. package/dist/esm/models/list-users200-response-collection-inner.d.ts +6 -6
  94. package/dist/{models/retrieve-workflow200-response.d.ts → esm/models/list-workflows200-response-collection-inner.d.ts} +60 -68
  95. package/dist/esm/models/{retrieve-workflow200-response.js → list-workflows200-response-collection-inner.js} +1 -1
  96. package/dist/esm/models/list-workflows200-response.d.ts +32 -0
  97. package/dist/esm/models/list-workflows200-response.js +14 -0
  98. package/dist/esm/models/retrieve-account-usage200-response.d.ts +60 -0
  99. package/dist/esm/models/retrieve-account-usage200-response.js +14 -0
  100. package/dist/esm/models/retrieve-account200-response.d.ts +19 -1
  101. package/dist/esm/models/update-account-request-action-type-categories-inner-icon.d.ts +36 -0
  102. package/dist/esm/models/update-account-request-action-type-categories-inner-icon.js +14 -0
  103. package/dist/esm/models/update-account-request-action-type-categories-inner.d.ts +43 -0
  104. package/dist/esm/models/update-account-request-action-type-categories-inner.js +14 -0
  105. package/dist/esm/models/update-account-request.d.ts +13 -0
  106. package/dist/esm/models/update-action-type-request.d.ts +12 -0
  107. package/dist/esm/models/update-trigger-request.d.ts +30 -0
  108. package/dist/esm/models/update-trigger-request.js +14 -0
  109. package/dist/esm/models/update-workflow-request.d.ts +7 -1
  110. package/dist/esm/models/upsert-user-request.d.ts +6 -0
  111. package/dist/models/catch-hook-request.d.ts +25 -0
  112. package/dist/models/{api-v1-action-types-post-request-form-draft-inner.d.ts → create-action-type-request-form-draft-inner.d.ts} +18 -12
  113. package/dist/models/{api-v1-action-types-post-request-form-draft-inner.js → create-action-type-request-form-draft-inner.js} +2 -2
  114. package/dist/models/{api-v1-action-types-post-request-icon-draft.d.ts → create-action-type-request-icon-draft.d.ts} +5 -5
  115. package/dist/{esm/models/api-v1-action-types-post-request.d.ts → models/create-action-type-request.d.ts} +34 -22
  116. package/dist/{esm/models/retrieve-action-type404-response.d.ts → models/create-action-type422-response.d.ts} +5 -5
  117. package/dist/models/{api-v1-app-connections-post-request.d.ts → create-app-connection-request.d.ts} +6 -6
  118. package/dist/models/create-workflow201-response.d.ts +262 -0
  119. package/dist/models/create-workflow201-response.js +24 -0
  120. package/dist/models/delete-action-type200-response.d.ts +24 -0
  121. package/dist/models/delete-action-type200-response.js +15 -0
  122. package/dist/models/evaluate-expression-request.d.ts +32 -0
  123. package/dist/models/evaluate-expression-request.js +15 -0
  124. package/dist/models/evaluate-expression200-response.d.ts +24 -0
  125. package/dist/models/evaluate-expression200-response.js +15 -0
  126. package/dist/models/export-configuration200-response-configuration.d.ts +16 -0
  127. package/dist/models/export-configuration200-response-configuration.js +15 -0
  128. package/dist/models/export-configuration200-response.d.ts +25 -0
  129. package/dist/models/export-configuration200-response.js +15 -0
  130. package/dist/models/import-configuration201-response.d.ts +6 -0
  131. package/dist/models/index.d.ts +19 -8
  132. package/dist/models/index.js +19 -8
  133. package/dist/{esm/models/retrieve-installed-app200-response.d.ts → models/install-app201-response.d.ts} +19 -19
  134. package/dist/models/install-app201-response.js +15 -0
  135. package/dist/models/list-action-types200-response-collection-inner.d.ts +58 -0
  136. package/dist/models/list-action-types200-response-collection-inner.js +10 -1
  137. package/dist/models/list-data-fields200-response-collection-inner.d.ts +18 -0
  138. package/dist/models/list-triggers200-response-collection-inner.d.ts +18 -0
  139. package/dist/models/list-users200-response-collection-inner.d.ts +6 -6
  140. package/dist/{esm/models/retrieve-workflow200-response.d.ts → models/list-workflows200-response-collection-inner.d.ts} +60 -68
  141. package/dist/models/{retrieve-workflow200-response.js → list-workflows200-response-collection-inner.js} +2 -2
  142. package/dist/models/list-workflows200-response.d.ts +32 -0
  143. package/dist/models/list-workflows200-response.js +15 -0
  144. package/dist/models/retrieve-account-usage200-response.d.ts +60 -0
  145. package/dist/models/retrieve-account-usage200-response.js +15 -0
  146. package/dist/models/retrieve-account200-response.d.ts +19 -1
  147. package/dist/models/update-account-request-action-type-categories-inner-icon.d.ts +36 -0
  148. package/dist/models/update-account-request-action-type-categories-inner-icon.js +15 -0
  149. package/dist/models/update-account-request-action-type-categories-inner.d.ts +43 -0
  150. package/dist/models/update-account-request-action-type-categories-inner.js +15 -0
  151. package/dist/models/update-account-request.d.ts +13 -0
  152. package/dist/models/update-action-type-request.d.ts +12 -0
  153. package/dist/models/update-trigger-request.d.ts +30 -0
  154. package/dist/models/update-trigger-request.js +15 -0
  155. package/dist/models/update-workflow-request.d.ts +7 -1
  156. package/dist/models/upsert-user-request.d.ts +6 -0
  157. package/git_push.sh +57 -0
  158. package/index.ts +111 -0
  159. package/models/catch-hook-request.ts +32 -0
  160. package/models/create-action-type-request-form-draft-inner.ts +88 -0
  161. package/models/create-action-type-request-icon-draft.ts +42 -0
  162. package/models/create-action-type-request.ts +129 -0
  163. package/models/create-action-type422-response.ts +42 -0
  164. package/models/create-app-connection-request.ts +48 -0
  165. package/models/create-user-token-request.ts +38 -0
  166. package/models/create-user-token200-response.ts +30 -0
  167. package/models/create-workflow-request-template-draft-nodes-inner.ts +138 -0
  168. package/models/create-workflow-request-template-draft.ts +39 -0
  169. package/models/create-workflow-request.ts +75 -0
  170. package/models/create-workflow201-response.ts +266 -0
  171. package/models/delete-action-type200-response.ts +30 -0
  172. package/models/delete-workflow200-response-one-of.ts +30 -0
  173. package/models/delete-workflow200-response-one-of1.ts +30 -0
  174. package/models/delete-workflow200-response.ts +30 -0
  175. package/models/discard-workflow-draft-request.ts +36 -0
  176. package/models/evaluate-expression-request.ts +36 -0
  177. package/models/evaluate-expression200-response.ts +30 -0
  178. package/models/execute-workflow-request.ts +50 -0
  179. package/models/execute-workflow201-response.ts +126 -0
  180. package/models/export-configuration200-response-configuration.ts +23 -0
  181. package/models/export-configuration200-response.ts +33 -0
  182. package/models/import-configuration-request-schema.ts +24 -0
  183. package/models/import-configuration-request.ts +50 -0
  184. package/models/import-configuration201-response.ts +60 -0
  185. package/models/index.ts +70 -0
  186. package/models/install-app-request.ts +36 -0
  187. package/models/install-app201-response.ts +126 -0
  188. package/models/list-action-types200-response-collection-inner.ts +325 -0
  189. package/models/list-action-types200-response-meta.ts +42 -0
  190. package/models/list-action-types200-response.ts +42 -0
  191. package/models/list-actions200-response-collection-inner.ts +150 -0
  192. package/models/list-actions200-response.ts +42 -0
  193. package/models/list-app-connections200-response-collection-inner.ts +72 -0
  194. package/models/list-app-connections200-response.ts +42 -0
  195. package/models/list-available-apps200-response-collection-inner.ts +72 -0
  196. package/models/list-available-apps200-response.ts +42 -0
  197. package/{dist/esm/models/clone-workflow201-response.js → models/list-data-fields-type-parameter.ts} +11 -5
  198. package/models/list-data-fields200-response-collection-inner.ts +108 -0
  199. package/models/list-data-fields200-response.ts +42 -0
  200. package/models/list-events200-response-collection-inner.ts +84 -0
  201. package/models/list-events200-response.ts +42 -0
  202. package/models/list-installed-apps200-response-collection-inner.ts +120 -0
  203. package/models/list-installed-apps200-response.ts +42 -0
  204. package/models/list-triggers200-response-collection-inner.ts +126 -0
  205. package/models/list-triggers200-response.ts +42 -0
  206. package/models/list-users200-response-collection-inner.ts +90 -0
  207. package/models/list-users200-response.ts +42 -0
  208. package/models/list-workflow-executions200-response.ts +42 -0
  209. package/models/list-workflow-versions200-response-collection-inner.ts +66 -0
  210. package/models/list-workflow-versions200-response.ts +42 -0
  211. package/{dist/esm/models/clone-workflow201-response.d.ts → models/list-workflows200-response-collection-inner.ts} +76 -47
  212. package/models/list-workflows200-response.ts +42 -0
  213. package/models/publish-workflow-request.ts +30 -0
  214. package/models/retrieve-account-usage200-response.ts +66 -0
  215. package/models/retrieve-account200-response.ts +114 -0
  216. package/models/retrieve-available-app200-response.ts +78 -0
  217. package/models/retrieve-execution200-response.ts +138 -0
  218. package/models/retry-action-request.ts +38 -0
  219. package/models/stop-executions-request.ts +38 -0
  220. package/models/trigger-workflow-request.ts +54 -0
  221. package/models/update-account-request-action-type-categories-inner-icon.ts +42 -0
  222. package/models/update-account-request-action-type-categories-inner.ts +51 -0
  223. package/models/update-account-request-user-data-schema-inner.ts +54 -0
  224. package/models/update-account-request.ts +96 -0
  225. package/models/update-action-type-request.ts +48 -0
  226. package/models/update-installed-app-request.ts +30 -0
  227. package/models/update-trigger-request.ts +36 -0
  228. package/models/update-workflow-request.ts +93 -0
  229. package/models/upsert-user-request.ts +54 -0
  230. package/package.json +4 -6
  231. package/tsconfig.esm.json +7 -0
  232. package/tsconfig.json +18 -0
  233. package/dist/models/clone-workflow201-response.d.ts +0 -183
  234. /package/dist/esm/models/{api-v1-action-types-post-request-icon-draft.js → catch-hook-request.js} +0 -0
  235. /package/dist/esm/models/{api-v1-action-types-post-request.js → create-action-type-request-icon-draft.js} +0 -0
  236. /package/dist/esm/models/{api-v1-app-connections-post-request.js → create-action-type-request.js} +0 -0
  237. /package/dist/esm/models/{retrieve-action-type404-response.js → create-action-type422-response.js} +0 -0
  238. /package/dist/esm/models/{retrieve-installed-app200-response.js → create-app-connection-request.js} +0 -0
  239. /package/dist/models/{api-v1-action-types-post-request-icon-draft.js → catch-hook-request.js} +0 -0
  240. /package/dist/models/{api-v1-action-types-post-request.js → create-action-type-request-icon-draft.js} +0 -0
  241. /package/dist/models/{api-v1-app-connections-post-request.js → create-action-type-request.js} +0 -0
  242. /package/dist/models/{retrieve-action-type404-response.js → create-action-type422-response.js} +0 -0
  243. /package/dist/models/{retrieve-installed-app200-response.js → create-app-connection-request.js} +0 -0
@@ -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
+
@@ -0,0 +1,150 @@
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 ListActions200ResponseCollectionInner
21
+ */
22
+ export interface ListActions200ResponseCollectionInner {
23
+ /**
24
+ * System-generated unique identifier
25
+ * @type {string}
26
+ * @memberof ListActions200ResponseCollectionInner
27
+ */
28
+ 'hashid'?: string;
29
+ /**
30
+ * Completed at in specified timezone
31
+ * @type {string}
32
+ * @memberof ListActions200ResponseCollectionInner
33
+ */
34
+ 'completed_at'?: string | null;
35
+ /**
36
+ * Completed at formatted as human-readable string
37
+ * @type {string}
38
+ * @memberof ListActions200ResponseCollectionInner
39
+ */
40
+ 'completed_at_string'?: string | null;
41
+ /**
42
+ * Completed at in UTC
43
+ * @type {string}
44
+ * @memberof ListActions200ResponseCollectionInner
45
+ */
46
+ 'completed_at_utc'?: string | null;
47
+ /**
48
+ * ID of the execution this action belongs to
49
+ * @type {string}
50
+ * @memberof ListActions200ResponseCollectionInner
51
+ */
52
+ 'execution_id'?: string;
53
+ /**
54
+ * Failed at in specified timezone
55
+ * @type {string}
56
+ * @memberof ListActions200ResponseCollectionInner
57
+ */
58
+ 'failed_at'?: string | null;
59
+ /**
60
+ * Failed at formatted as human-readable string
61
+ * @type {string}
62
+ * @memberof ListActions200ResponseCollectionInner
63
+ */
64
+ 'failed_at_string'?: string | null;
65
+ /**
66
+ * Failed at in UTC
67
+ * @type {string}
68
+ * @memberof ListActions200ResponseCollectionInner
69
+ */
70
+ 'failed_at_utc'?: string | null;
71
+ /**
72
+ * Error message when action fails
73
+ * @type {string}
74
+ * @memberof ListActions200ResponseCollectionInner
75
+ */
76
+ 'failure_note'?: string | null;
77
+ /**
78
+ * Execution log details for the action
79
+ * @type {object}
80
+ * @memberof ListActions200ResponseCollectionInner
81
+ */
82
+ 'log'?: object | null;
83
+ /**
84
+ * Name of the action
85
+ * @type {string}
86
+ * @memberof ListActions200ResponseCollectionInner
87
+ */
88
+ 'name'?: string;
89
+ /**
90
+ * Node identifier associated with this action
91
+ * @type {string}
92
+ * @memberof ListActions200ResponseCollectionInner
93
+ */
94
+ 'node_id'?: string;
95
+ /**
96
+ * Object type identifier
97
+ * @type {string}
98
+ * @memberof ListActions200ResponseCollectionInner
99
+ */
100
+ 'object'?: string;
101
+ /**
102
+ * Run at in specified timezone
103
+ * @type {string}
104
+ * @memberof ListActions200ResponseCollectionInner
105
+ */
106
+ 'run_at'?: string | null;
107
+ /**
108
+ * Run at formatted as human-readable string
109
+ * @type {string}
110
+ * @memberof ListActions200ResponseCollectionInner
111
+ */
112
+ 'run_at_string'?: string | null;
113
+ /**
114
+ * Run at in UTC
115
+ * @type {string}
116
+ * @memberof ListActions200ResponseCollectionInner
117
+ */
118
+ 'run_at_utc'?: string | null;
119
+ /**
120
+ * Current status of the action
121
+ * @type {string}
122
+ * @memberof ListActions200ResponseCollectionInner
123
+ */
124
+ 'status'?: string;
125
+ /**
126
+ * Stopped at in specified timezone
127
+ * @type {string}
128
+ * @memberof ListActions200ResponseCollectionInner
129
+ */
130
+ 'stopped_at'?: string | null;
131
+ /**
132
+ * Stopped at formatted as human-readable string
133
+ * @type {string}
134
+ * @memberof ListActions200ResponseCollectionInner
135
+ */
136
+ 'stopped_at_string'?: string | null;
137
+ /**
138
+ * Stopped at in UTC
139
+ * @type {string}
140
+ * @memberof ListActions200ResponseCollectionInner
141
+ */
142
+ 'stopped_at_utc'?: string | null;
143
+ /**
144
+ * UUID identifier for the action
145
+ * @type {string}
146
+ * @memberof ListActions200ResponseCollectionInner
147
+ */
148
+ 'uuid'?: string;
149
+ }
150
+
@@ -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 { ListActionTypes200ResponseMeta } from './list-action-types200-response-meta';
19
+ // May contain unused imports in some cases
20
+ // @ts-ignore
21
+ import { ListActions200ResponseCollectionInner } from './list-actions200-response-collection-inner';
22
+
23
+ /**
24
+ *
25
+ * @export
26
+ * @interface ListActions200Response
27
+ */
28
+ export interface ListActions200Response {
29
+ /**
30
+ *
31
+ * @type {Array<ListActions200ResponseCollectionInner>}
32
+ * @memberof ListActions200Response
33
+ */
34
+ 'collection': Array<ListActions200ResponseCollectionInner>;
35
+ /**
36
+ *
37
+ * @type {ListActionTypes200ResponseMeta}
38
+ * @memberof ListActions200Response
39
+ */
40
+ 'meta': ListActionTypes200ResponseMeta;
41
+ }
42
+
@@ -0,0 +1,72 @@
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 ListAppConnections200ResponseCollectionInner
21
+ */
22
+ export interface ListAppConnections200ResponseCollectionInner {
23
+ /**
24
+ * System-generated unique identifier
25
+ * @type {string}
26
+ * @memberof ListAppConnections200ResponseCollectionInner
27
+ */
28
+ 'id'?: string;
29
+ /**
30
+ * Type of application being connected
31
+ * @type {string}
32
+ * @memberof ListAppConnections200ResponseCollectionInner
33
+ */
34
+ 'app_type'?: string;
35
+ /**
36
+ * Last used at in specified timezone
37
+ * @type {string}
38
+ * @memberof ListAppConnections200ResponseCollectionInner
39
+ */
40
+ 'last_used_at'?: string | null;
41
+ /**
42
+ * Last used at formatted as human-readable string
43
+ * @type {string}
44
+ * @memberof ListAppConnections200ResponseCollectionInner
45
+ */
46
+ 'last_used_at_string'?: string | null;
47
+ /**
48
+ * Last used at in UTC
49
+ * @type {string}
50
+ * @memberof ListAppConnections200ResponseCollectionInner
51
+ */
52
+ 'last_used_at_utc'?: string | null;
53
+ /**
54
+ * Name of the app connection
55
+ * @type {string}
56
+ * @memberof ListAppConnections200ResponseCollectionInner
57
+ */
58
+ 'name'?: string;
59
+ /**
60
+ * Object type identifier
61
+ * @type {string}
62
+ * @memberof ListAppConnections200ResponseCollectionInner
63
+ */
64
+ 'object'?: string;
65
+ /**
66
+ * Current status of the app connection
67
+ * @type {string}
68
+ * @memberof ListAppConnections200ResponseCollectionInner
69
+ */
70
+ 'status'?: string;
71
+ }
72
+