@embedworkflow/sdk 1.0.0 → 1.1.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 (63) hide show
  1. package/dist/api/action-types-api.d.ts +33 -31
  2. package/dist/api/action-types-api.js +13 -13
  3. package/dist/api/app-connections-api.d.ts +26 -25
  4. package/dist/api/app-connections-api.js +25 -25
  5. package/dist/api/installed-apps-api.d.ts +13 -13
  6. package/dist/api/triggers-api.d.ts +14 -12
  7. package/dist/api/users-api.d.ts +13 -12
  8. package/dist/api/workflows-api.d.ts +27 -26
  9. package/dist/esm/api/action-types-api.d.ts +33 -31
  10. package/dist/esm/api/action-types-api.js +13 -13
  11. package/dist/esm/api/app-connections-api.d.ts +26 -25
  12. package/dist/esm/api/app-connections-api.js +25 -25
  13. package/dist/esm/api/installed-apps-api.d.ts +13 -13
  14. package/dist/esm/api/triggers-api.d.ts +14 -12
  15. package/dist/esm/api/users-api.d.ts +13 -12
  16. package/dist/esm/api/workflows-api.d.ts +27 -26
  17. package/dist/esm/models/create-action-type-request-form-draft-inner.d.ts +75 -0
  18. package/dist/esm/models/create-action-type-request-form-draft-inner.js +25 -0
  19. package/dist/esm/models/create-action-type-request-icon-draft.d.ts +36 -0
  20. package/dist/esm/models/create-action-type-request-icon-draft.js +14 -0
  21. package/dist/esm/models/create-action-type-request.d.ts +105 -0
  22. package/dist/esm/models/create-action-type-request.js +14 -0
  23. package/dist/esm/models/create-action-type422-response.d.ts +36 -0
  24. package/dist/esm/models/create-action-type422-response.js +14 -0
  25. package/dist/esm/models/create-app-connection-request.d.ts +42 -0
  26. package/dist/esm/models/create-app-connection-request.js +14 -0
  27. package/dist/esm/models/create-workflow201-response.d.ts +215 -0
  28. package/dist/esm/models/create-workflow201-response.js +17 -0
  29. package/dist/esm/models/delete-action-type200-response.d.ts +24 -0
  30. package/dist/esm/models/delete-action-type200-response.js +14 -0
  31. package/dist/esm/models/import-configuration201-response.d.ts +6 -0
  32. package/dist/esm/models/index.d.ts +10 -8
  33. package/dist/esm/models/index.js +10 -8
  34. package/dist/esm/models/install-app201-response.d.ts +122 -0
  35. package/dist/esm/models/install-app201-response.js +14 -0
  36. package/dist/esm/models/list-workflows200-response-collection-inner.d.ts +183 -0
  37. package/dist/esm/models/list-workflows200-response-collection-inner.js +17 -0
  38. package/dist/esm/models/list-workflows200-response.d.ts +32 -0
  39. package/dist/esm/models/list-workflows200-response.js +14 -0
  40. package/dist/models/create-action-type-request-form-draft-inner.d.ts +75 -0
  41. package/dist/models/create-action-type-request-form-draft-inner.js +28 -0
  42. package/dist/models/create-action-type-request-icon-draft.d.ts +36 -0
  43. package/dist/models/create-action-type-request-icon-draft.js +15 -0
  44. package/dist/models/create-action-type-request.d.ts +105 -0
  45. package/dist/models/create-action-type-request.js +15 -0
  46. package/dist/models/create-action-type422-response.d.ts +36 -0
  47. package/dist/models/create-action-type422-response.js +15 -0
  48. package/dist/models/create-app-connection-request.d.ts +42 -0
  49. package/dist/models/create-app-connection-request.js +15 -0
  50. package/dist/models/create-workflow201-response.d.ts +215 -0
  51. package/dist/models/create-workflow201-response.js +20 -0
  52. package/dist/models/delete-action-type200-response.d.ts +24 -0
  53. package/dist/models/delete-action-type200-response.js +15 -0
  54. package/dist/models/import-configuration201-response.d.ts +6 -0
  55. package/dist/models/index.d.ts +10 -8
  56. package/dist/models/index.js +10 -8
  57. package/dist/models/install-app201-response.d.ts +122 -0
  58. package/dist/models/install-app201-response.js +15 -0
  59. package/dist/models/list-workflows200-response-collection-inner.d.ts +183 -0
  60. package/dist/models/list-workflows200-response-collection-inner.js +20 -0
  61. package/dist/models/list-workflows200-response.d.ts +32 -0
  62. package/dist/models/list-workflows200-response.js +15 -0
  63. package/package.json +1 -1
@@ -0,0 +1,42 @@
1
+ /**
2
+ * API V1
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v1
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface CreateAppConnectionRequest
16
+ */
17
+ export interface CreateAppConnectionRequest {
18
+ /**
19
+ * Name of resource
20
+ * @type {string}
21
+ * @memberof CreateAppConnectionRequest
22
+ */
23
+ 'name': string;
24
+ /**
25
+ * App Type
26
+ * @type {string}
27
+ * @memberof CreateAppConnectionRequest
28
+ */
29
+ 'app_type': string;
30
+ /**
31
+ * User\'s key
32
+ * @type {string}
33
+ * @memberof CreateAppConnectionRequest
34
+ */
35
+ 'user_key': string;
36
+ /**
37
+ * App connection configuration
38
+ * @type {object}
39
+ * @memberof CreateAppConnectionRequest
40
+ */
41
+ 'config': object;
42
+ }
@@ -0,0 +1,14 @@
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
+ export {};
@@ -0,0 +1,215 @@
1
+ /**
2
+ * API V1
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v1
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface CreateWorkflow201Response
16
+ */
17
+ export interface CreateWorkflow201Response {
18
+ /**
19
+ * System-generated unique identifier
20
+ * @type {string}
21
+ * @memberof CreateWorkflow201Response
22
+ */
23
+ 'hashid'?: string;
24
+ /**
25
+ * Number of actions in the workflow
26
+ * @type {number}
27
+ * @memberof CreateWorkflow201Response
28
+ */
29
+ 'actions_count'?: number;
30
+ /**
31
+ * Created at in specified timezone
32
+ * @type {string}
33
+ * @memberof CreateWorkflow201Response
34
+ */
35
+ 'created_at'?: string | null;
36
+ /**
37
+ * Created at formatted as human-readable string
38
+ * @type {string}
39
+ * @memberof CreateWorkflow201Response
40
+ */
41
+ 'created_at_string'?: string | null;
42
+ /**
43
+ * Created at in UTC
44
+ * @type {string}
45
+ * @memberof CreateWorkflow201Response
46
+ */
47
+ 'created_at_utc'?: string | null;
48
+ /**
49
+ * Whether this is a default template for new users (Admin only)
50
+ * @type {boolean}
51
+ * @memberof CreateWorkflow201Response
52
+ */
53
+ 'default_template'?: boolean;
54
+ /**
55
+ * Description of the workflow
56
+ * @type {string}
57
+ * @memberof CreateWorkflow201Response
58
+ */
59
+ 'description'?: string | null;
60
+ /**
61
+ * Event trigger configuration
62
+ * @type {object}
63
+ * @memberof CreateWorkflow201Response
64
+ */
65
+ 'event_trigger'?: object | null;
66
+ /**
67
+ * Draft event trigger configuration
68
+ * @type {object}
69
+ * @memberof CreateWorkflow201Response
70
+ */
71
+ 'event_trigger_draft'?: object | null;
72
+ /**
73
+ * Number of times workflow has been executed
74
+ * @type {number}
75
+ * @memberof CreateWorkflow201Response
76
+ */
77
+ 'executions_count'?: number;
78
+ /**
79
+ * Permission groups (Admin only)
80
+ * @type {Array<string>}
81
+ * @memberof CreateWorkflow201Response
82
+ */
83
+ 'groups'?: Array<string>;
84
+ /**
85
+ * Whether the workflow has unsaved draft changes
86
+ * @type {boolean}
87
+ * @memberof CreateWorkflow201Response
88
+ */
89
+ 'has_draft'?: boolean;
90
+ /**
91
+ * Unique identifier
92
+ * @type {string}
93
+ * @memberof CreateWorkflow201Response
94
+ */
95
+ 'id'?: string;
96
+ /**
97
+ * Unique key for the workflow
98
+ * @type {string}
99
+ * @memberof CreateWorkflow201Response
100
+ */
101
+ 'key'?: string;
102
+ /**
103
+ * Last published at in specified timezone
104
+ * @type {string}
105
+ * @memberof CreateWorkflow201Response
106
+ */
107
+ 'last_published_at'?: string | null;
108
+ /**
109
+ * Last published at formatted as human-readable string
110
+ * @type {string}
111
+ * @memberof CreateWorkflow201Response
112
+ */
113
+ 'last_published_at_string'?: string | null;
114
+ /**
115
+ * Last published at in UTC
116
+ * @type {string}
117
+ * @memberof CreateWorkflow201Response
118
+ */
119
+ 'last_published_at_utc'?: string | null;
120
+ /**
121
+ * Conditions for matching workflow execution
122
+ * @type {object}
123
+ * @memberof CreateWorkflow201Response
124
+ */
125
+ 'match_conditions'?: object | null;
126
+ /**
127
+ * Draft conditions for matching workflow execution
128
+ * @type {object}
129
+ * @memberof CreateWorkflow201Response
130
+ */
131
+ 'match_conditions_draft'?: object | null;
132
+ /**
133
+ * Name of the workflow
134
+ * @type {string}
135
+ * @memberof CreateWorkflow201Response
136
+ */
137
+ 'name'?: string;
138
+ /**
139
+ * Object type identifier
140
+ * @type {string}
141
+ * @memberof CreateWorkflow201Response
142
+ */
143
+ 'object'?: string;
144
+ /**
145
+ * Whether the workflow is enabled
146
+ * @type {boolean}
147
+ * @memberof CreateWorkflow201Response
148
+ */
149
+ 'on'?: boolean;
150
+ /**
151
+ * Workflow execution statistics
152
+ * @type {{ [key: string]: any; }}
153
+ * @memberof CreateWorkflow201Response
154
+ */
155
+ 'stats'?: {
156
+ [key: string]: any;
157
+ };
158
+ /**
159
+ * Current status of the workflow
160
+ * @type {string}
161
+ * @memberof CreateWorkflow201Response
162
+ */
163
+ 'status'?: CreateWorkflow201ResponseStatusEnum;
164
+ /**
165
+ * Published workflow template layout
166
+ * @type {object}
167
+ * @memberof CreateWorkflow201Response
168
+ */
169
+ 'template'?: object;
170
+ /**
171
+ * Draft workflow template layout
172
+ * @type {object}
173
+ * @memberof CreateWorkflow201Response
174
+ */
175
+ 'template_draft'?: object;
176
+ /**
177
+ * Conditions for triggering the workflow
178
+ * @type {{ [key: string]: any; }}
179
+ * @memberof CreateWorkflow201Response
180
+ */
181
+ 'trigger_conditions'?: {
182
+ [key: string]: any;
183
+ };
184
+ /**
185
+ * Draft conditions for triggering the workflow
186
+ * @type {{ [key: string]: any; }}
187
+ * @memberof CreateWorkflow201Response
188
+ */
189
+ 'trigger_conditions_draft'?: {
190
+ [key: string]: any;
191
+ };
192
+ /**
193
+ * Updated at in specified timezone
194
+ * @type {string}
195
+ * @memberof CreateWorkflow201Response
196
+ */
197
+ 'updated_at'?: string | null;
198
+ /**
199
+ * Updated at formatted as human-readable string
200
+ * @type {string}
201
+ * @memberof CreateWorkflow201Response
202
+ */
203
+ 'updated_at_string'?: string | null;
204
+ /**
205
+ * Updated at in UTC
206
+ * @type {string}
207
+ * @memberof CreateWorkflow201Response
208
+ */
209
+ 'updated_at_utc'?: string | null;
210
+ }
211
+ export declare const CreateWorkflow201ResponseStatusEnum: {
212
+ readonly On: "on";
213
+ readonly Off: "off";
214
+ };
215
+ export type CreateWorkflow201ResponseStatusEnum = typeof CreateWorkflow201ResponseStatusEnum[keyof typeof CreateWorkflow201ResponseStatusEnum];
@@ -0,0 +1,17 @@
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
+ export const CreateWorkflow201ResponseStatusEnum = {
15
+ On: 'on',
16
+ Off: 'off'
17
+ };
@@ -0,0 +1,24 @@
1
+ /**
2
+ * API V1
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v1
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface DeleteActionType200Response
16
+ */
17
+ export interface DeleteActionType200Response {
18
+ /**
19
+ * ID of deleted resource
20
+ * @type {string}
21
+ * @memberof DeleteActionType200Response
22
+ */
23
+ 'id': string;
24
+ }
@@ -0,0 +1,14 @@
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
+ export {};
@@ -45,4 +45,10 @@ export interface ImportConfiguration201Response {
45
45
  * @memberof ImportConfiguration201Response
46
46
  */
47
47
  'user_data_schema'?: Array<object>;
48
+ /**
49
+ * Workflows
50
+ * @type {Array<object>}
51
+ * @memberof ImportConfiguration201Response
52
+ */
53
+ 'workflows'?: Array<object>;
48
54
  }
@@ -1,13 +1,15 @@
1
- export * from './api-v1-action-types-post-request';
2
- export * from './api-v1-action-types-post-request-form-draft-inner';
3
- export * from './api-v1-action-types-post-request-icon-draft';
4
- export * from './api-v1-app-connections-post-request';
5
- export * from './clone-workflow201-response';
1
+ export * from './create-action-type422-response';
2
+ export * from './create-action-type-request';
3
+ export * from './create-action-type-request-form-draft-inner';
4
+ export * from './create-action-type-request-icon-draft';
5
+ export * from './create-app-connection-request';
6
6
  export * from './create-user-token200-response';
7
7
  export * from './create-user-token-request';
8
+ export * from './create-workflow201-response';
8
9
  export * from './create-workflow-request';
9
10
  export * from './create-workflow-request-template-draft';
10
11
  export * from './create-workflow-request-template-draft-nodes-inner';
12
+ export * from './delete-action-type200-response';
11
13
  export * from './delete-workflow200-response';
12
14
  export * from './delete-workflow200-response-one-of';
13
15
  export * from './delete-workflow200-response-one-of1';
@@ -17,6 +19,7 @@ export * from './execute-workflow-request';
17
19
  export * from './import-configuration201-response';
18
20
  export * from './import-configuration-request';
19
21
  export * from './import-configuration-request-schema';
22
+ export * from './install-app201-response';
20
23
  export * from './install-app-request';
21
24
  export * from './list-action-types200-response';
22
25
  export * from './list-action-types200-response-collection-inner';
@@ -41,13 +44,12 @@ export * from './list-users200-response-collection-inner';
41
44
  export * from './list-workflow-executions200-response';
42
45
  export * from './list-workflow-versions200-response';
43
46
  export * from './list-workflow-versions200-response-collection-inner';
47
+ export * from './list-workflows200-response';
48
+ export * from './list-workflows200-response-collection-inner';
44
49
  export * from './publish-workflow-request';
45
50
  export * from './retrieve-account200-response';
46
- export * from './retrieve-action-type404-response';
47
51
  export * from './retrieve-available-app200-response';
48
52
  export * from './retrieve-execution200-response';
49
- export * from './retrieve-installed-app200-response';
50
- export * from './retrieve-workflow200-response';
51
53
  export * from './retry-action-request';
52
54
  export * from './stop-executions-request';
53
55
  export * from './trigger-workflow-request';
@@ -1,13 +1,15 @@
1
- export * from './api-v1-action-types-post-request';
2
- export * from './api-v1-action-types-post-request-form-draft-inner';
3
- export * from './api-v1-action-types-post-request-icon-draft';
4
- export * from './api-v1-app-connections-post-request';
5
- export * from './clone-workflow201-response';
1
+ export * from './create-action-type422-response';
2
+ export * from './create-action-type-request';
3
+ export * from './create-action-type-request-form-draft-inner';
4
+ export * from './create-action-type-request-icon-draft';
5
+ export * from './create-app-connection-request';
6
6
  export * from './create-user-token200-response';
7
7
  export * from './create-user-token-request';
8
+ export * from './create-workflow201-response';
8
9
  export * from './create-workflow-request';
9
10
  export * from './create-workflow-request-template-draft';
10
11
  export * from './create-workflow-request-template-draft-nodes-inner';
12
+ export * from './delete-action-type200-response';
11
13
  export * from './delete-workflow200-response';
12
14
  export * from './delete-workflow200-response-one-of';
13
15
  export * from './delete-workflow200-response-one-of1';
@@ -17,6 +19,7 @@ export * from './execute-workflow-request';
17
19
  export * from './import-configuration201-response';
18
20
  export * from './import-configuration-request';
19
21
  export * from './import-configuration-request-schema';
22
+ export * from './install-app201-response';
20
23
  export * from './install-app-request';
21
24
  export * from './list-action-types200-response';
22
25
  export * from './list-action-types200-response-collection-inner';
@@ -41,13 +44,12 @@ export * from './list-users200-response-collection-inner';
41
44
  export * from './list-workflow-executions200-response';
42
45
  export * from './list-workflow-versions200-response';
43
46
  export * from './list-workflow-versions200-response-collection-inner';
47
+ export * from './list-workflows200-response';
48
+ export * from './list-workflows200-response-collection-inner';
44
49
  export * from './publish-workflow-request';
45
50
  export * from './retrieve-account200-response';
46
- export * from './retrieve-action-type404-response';
47
51
  export * from './retrieve-available-app200-response';
48
52
  export * from './retrieve-execution200-response';
49
- export * from './retrieve-installed-app200-response';
50
- export * from './retrieve-workflow200-response';
51
53
  export * from './retry-action-request';
52
54
  export * from './stop-executions-request';
53
55
  export * from './trigger-workflow-request';
@@ -0,0 +1,122 @@
1
+ /**
2
+ * API V1
3
+ * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
+ *
5
+ * The version of the OpenAPI document: v1
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface InstallApp201Response
16
+ */
17
+ export interface InstallApp201Response {
18
+ /**
19
+ * System-generated unique identifier
20
+ * @type {string}
21
+ * @memberof InstallApp201Response
22
+ */
23
+ 'id'?: string;
24
+ /**
25
+ * Unique identifier for the app
26
+ * @type {string}
27
+ * @memberof InstallApp201Response
28
+ */
29
+ 'app_identifier'?: string;
30
+ /**
31
+ * Currently installed version of the app
32
+ * @type {string}
33
+ * @memberof InstallApp201Response
34
+ */
35
+ 'app_version'?: string;
36
+ /**
37
+ * Latest available version of the app
38
+ * @type {string}
39
+ * @memberof InstallApp201Response
40
+ */
41
+ 'available_version'?: string | null;
42
+ /**
43
+ * Permission groups that can access this app
44
+ * @type {Array<string>}
45
+ * @memberof InstallApp201Response
46
+ */
47
+ 'groups'?: Array<string>;
48
+ /**
49
+ * Icon configuration for the installed app
50
+ * @type {object}
51
+ * @memberof InstallApp201Response
52
+ */
53
+ 'icon'?: object | null;
54
+ /**
55
+ * Schema configuration for the installed app
56
+ * @type {{ [key: string]: any; }}
57
+ * @memberof InstallApp201Response
58
+ */
59
+ 'installed_schema'?: {
60
+ [key: string]: any;
61
+ };
62
+ /**
63
+ * Last used at in specified timezone
64
+ * @type {string}
65
+ * @memberof InstallApp201Response
66
+ */
67
+ 'last_used_at'?: string | null;
68
+ /**
69
+ * Last used at formatted as human-readable string
70
+ * @type {string}
71
+ * @memberof InstallApp201Response
72
+ */
73
+ 'last_used_at_string'?: string | null;
74
+ /**
75
+ * Last used at in UTC
76
+ * @type {string}
77
+ * @memberof InstallApp201Response
78
+ */
79
+ 'last_used_at_utc'?: string | null;
80
+ /**
81
+ * Display name of the installed app
82
+ * @type {string}
83
+ * @memberof InstallApp201Response
84
+ */
85
+ 'name'?: string;
86
+ /**
87
+ * Object type identifier
88
+ * @type {string}
89
+ * @memberof InstallApp201Response
90
+ */
91
+ 'object'?: string;
92
+ /**
93
+ * Previously installed version of the app
94
+ * @type {string}
95
+ * @memberof InstallApp201Response
96
+ */
97
+ 'previous_version'?: string | null;
98
+ /**
99
+ * Whether an upgrade is available for this app
100
+ * @type {boolean}
101
+ * @memberof InstallApp201Response
102
+ */
103
+ 'upgrade_available'?: boolean;
104
+ /**
105
+ * Upgraded at in specified timezone
106
+ * @type {string}
107
+ * @memberof InstallApp201Response
108
+ */
109
+ 'upgraded_at'?: string | null;
110
+ /**
111
+ * Upgraded at formatted as human-readable string
112
+ * @type {string}
113
+ * @memberof InstallApp201Response
114
+ */
115
+ 'upgraded_at_string'?: string | null;
116
+ /**
117
+ * Upgraded at in UTC
118
+ * @type {string}
119
+ * @memberof InstallApp201Response
120
+ */
121
+ 'upgraded_at_utc'?: string | null;
122
+ }
@@ -0,0 +1,14 @@
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
+ export {};