qovery-typescript-axios 1.1.974 → 1.1.976

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/api.ts CHANGED
@@ -171,6 +171,25 @@ export interface AgenticWorkflowHeader {
171
171
  */
172
172
  'value': string;
173
173
  }
174
+ /**
175
+ *
176
+ * @export
177
+ * @interface AgenticWorkflowMcpServer
178
+ */
179
+ export interface AgenticWorkflowMcpServer {
180
+ /**
181
+ *
182
+ * @type {string}
183
+ * @memberof AgenticWorkflowMcpServer
184
+ */
185
+ 'id': string;
186
+ /**
187
+ * Whether the initial configuration or template requires this MCP server.
188
+ * @type {boolean}
189
+ * @memberof AgenticWorkflowMcpServer
190
+ */
191
+ 'required': boolean;
192
+ }
174
193
  /**
175
194
  *
176
195
  * @export
@@ -335,8 +354,21 @@ export interface AgenticWorkflowRequest {
335
354
  * MCP connectors attached to this workflow. May include a USER-scoped connector, which only its owner can attach or keep attached when saving.
336
355
  * @type {Array<string>}
337
356
  * @memberof AgenticWorkflowRequest
357
+ * @deprecated
338
358
  */
339
359
  'mcp_server_ids'?: Array<string>;
360
+ /**
361
+ * MCP connectors attached to this workflow. A required connector must be present during creation, but may be removed during a later settings update.
362
+ * @type {Array<AgenticWorkflowMcpServer>}
363
+ * @memberof AgenticWorkflowRequest
364
+ */
365
+ 'mcp_servers'?: Array<AgenticWorkflowMcpServer>;
366
+ /**
367
+ * Qovery services explicitly provided as context to this workflow.
368
+ * @type {Array<string>}
369
+ * @memberof AgenticWorkflowRequest
370
+ */
371
+ 'context_service_ids'?: Array<string>;
340
372
  /**
341
373
  *
342
374
  * @type {Array<AgenticWorkflowOutput>}
@@ -501,8 +533,21 @@ export interface AgenticWorkflowResponse {
501
533
  * MCP connectors attached to this workflow. May include a USER-scoped connector, which only its owner can attach or keep attached when saving.
502
534
  * @type {Array<string>}
503
535
  * @memberof AgenticWorkflowResponse
536
+ * @deprecated
504
537
  */
505
538
  'mcp_server_ids': Array<string>;
539
+ /**
540
+ * MCP connectors attached to this workflow, including their configuration metadata.
541
+ * @type {Array<AgenticWorkflowMcpServer>}
542
+ * @memberof AgenticWorkflowResponse
543
+ */
544
+ 'mcp_servers': Array<AgenticWorkflowMcpServer>;
545
+ /**
546
+ * Qovery services explicitly provided as context to this workflow.
547
+ * @type {Array<string>}
548
+ * @memberof AgenticWorkflowResponse
549
+ */
550
+ 'context_service_ids': Array<string>;
506
551
  /**
507
552
  *
508
553
  * @type {Array<AgenticWorkflowOutput>}
@@ -23082,6 +23127,25 @@ export interface PlatformComponentOutputBindingResponse {
23082
23127
  */
23083
23128
  'output': string;
23084
23129
  }
23130
+ /**
23131
+ * Displays selected top-level fields of another component in the same layer. The source component remains the resolver, configuration binding and deployment owner. This declaration does not move data or change Helm releases.
23132
+ * @export
23133
+ * @interface PlatformConfigurationSectionResponse
23134
+ */
23135
+ export interface PlatformConfigurationSectionResponse {
23136
+ /**
23137
+ * Component key to use for resolve requests and stored configuration.
23138
+ * @type {string}
23139
+ * @memberof PlatformConfigurationSectionResponse
23140
+ */
23141
+ 'sourceComponentKey': string;
23142
+ /**
23143
+ * Unique top-level source fields displayed here instead of in the source component editor.
23144
+ * @type {Array<string>}
23145
+ * @memberof PlatformConfigurationSectionResponse
23146
+ */
23147
+ 'fieldKeys': Array<string>;
23148
+ }
23085
23149
  /**
23086
23150
  *
23087
23151
  * @export
@@ -23154,6 +23218,12 @@ export interface PlatformTemplateComponentResponse {
23154
23218
  * @memberof PlatformTemplateComponentResponse
23155
23219
  */
23156
23220
  'fields': Array<FieldSchemaResponse>;
23221
+ /**
23222
+ * Additional configuration sections displayed under this component. Its own configuration and cluster inputs remain available. Omitted or empty keeps the existing editor behavior; fields always remain declared on their owner.
23223
+ * @type {Array<PlatformConfigurationSectionResponse>}
23224
+ * @memberof PlatformTemplateComponentResponse
23225
+ */
23226
+ 'configurationSections'?: Array<PlatformConfigurationSectionResponse>;
23157
23227
  }
23158
23228
 
23159
23229
 
package/dist/api.d.ts CHANGED
@@ -149,6 +149,25 @@ export interface AgenticWorkflowHeader {
149
149
  */
150
150
  'value': string;
151
151
  }
152
+ /**
153
+ *
154
+ * @export
155
+ * @interface AgenticWorkflowMcpServer
156
+ */
157
+ export interface AgenticWorkflowMcpServer {
158
+ /**
159
+ *
160
+ * @type {string}
161
+ * @memberof AgenticWorkflowMcpServer
162
+ */
163
+ 'id': string;
164
+ /**
165
+ * Whether the initial configuration or template requires this MCP server.
166
+ * @type {boolean}
167
+ * @memberof AgenticWorkflowMcpServer
168
+ */
169
+ 'required': boolean;
170
+ }
152
171
  /**
153
172
  *
154
173
  * @export
@@ -305,8 +324,21 @@ export interface AgenticWorkflowRequest {
305
324
  * MCP connectors attached to this workflow. May include a USER-scoped connector, which only its owner can attach or keep attached when saving.
306
325
  * @type {Array<string>}
307
326
  * @memberof AgenticWorkflowRequest
327
+ * @deprecated
308
328
  */
309
329
  'mcp_server_ids'?: Array<string>;
330
+ /**
331
+ * MCP connectors attached to this workflow. A required connector must be present during creation, but may be removed during a later settings update.
332
+ * @type {Array<AgenticWorkflowMcpServer>}
333
+ * @memberof AgenticWorkflowRequest
334
+ */
335
+ 'mcp_servers'?: Array<AgenticWorkflowMcpServer>;
336
+ /**
337
+ * Qovery services explicitly provided as context to this workflow.
338
+ * @type {Array<string>}
339
+ * @memberof AgenticWorkflowRequest
340
+ */
341
+ 'context_service_ids'?: Array<string>;
310
342
  /**
311
343
  *
312
344
  * @type {Array<AgenticWorkflowOutput>}
@@ -469,8 +501,21 @@ export interface AgenticWorkflowResponse {
469
501
  * MCP connectors attached to this workflow. May include a USER-scoped connector, which only its owner can attach or keep attached when saving.
470
502
  * @type {Array<string>}
471
503
  * @memberof AgenticWorkflowResponse
504
+ * @deprecated
472
505
  */
473
506
  'mcp_server_ids': Array<string>;
507
+ /**
508
+ * MCP connectors attached to this workflow, including their configuration metadata.
509
+ * @type {Array<AgenticWorkflowMcpServer>}
510
+ * @memberof AgenticWorkflowResponse
511
+ */
512
+ 'mcp_servers': Array<AgenticWorkflowMcpServer>;
513
+ /**
514
+ * Qovery services explicitly provided as context to this workflow.
515
+ * @type {Array<string>}
516
+ * @memberof AgenticWorkflowResponse
517
+ */
518
+ 'context_service_ids': Array<string>;
474
519
  /**
475
520
  *
476
521
  * @type {Array<AgenticWorkflowOutput>}
@@ -22412,6 +22457,25 @@ export interface PlatformComponentOutputBindingResponse {
22412
22457
  */
22413
22458
  'output': string;
22414
22459
  }
22460
+ /**
22461
+ * Displays selected top-level fields of another component in the same layer. The source component remains the resolver, configuration binding and deployment owner. This declaration does not move data or change Helm releases.
22462
+ * @export
22463
+ * @interface PlatformConfigurationSectionResponse
22464
+ */
22465
+ export interface PlatformConfigurationSectionResponse {
22466
+ /**
22467
+ * Component key to use for resolve requests and stored configuration.
22468
+ * @type {string}
22469
+ * @memberof PlatformConfigurationSectionResponse
22470
+ */
22471
+ 'sourceComponentKey': string;
22472
+ /**
22473
+ * Unique top-level source fields displayed here instead of in the source component editor.
22474
+ * @type {Array<string>}
22475
+ * @memberof PlatformConfigurationSectionResponse
22476
+ */
22477
+ 'fieldKeys': Array<string>;
22478
+ }
22415
22479
  /**
22416
22480
  *
22417
22481
  * @export
@@ -22476,6 +22540,12 @@ export interface PlatformTemplateComponentResponse {
22476
22540
  * @memberof PlatformTemplateComponentResponse
22477
22541
  */
22478
22542
  'fields': Array<FieldSchemaResponse>;
22543
+ /**
22544
+ * Additional configuration sections displayed under this component. Its own configuration and cluster inputs remain available. Omitted or empty keeps the existing editor behavior; fields always remain declared on their owner.
22545
+ * @type {Array<PlatformConfigurationSectionResponse>}
22546
+ * @memberof PlatformTemplateComponentResponse
22547
+ */
22548
+ 'configurationSections'?: Array<PlatformConfigurationSectionResponse>;
22479
22549
  }
22480
22550
  /**
22481
22551
  *
package/dist/esm/api.d.ts CHANGED
@@ -149,6 +149,25 @@ export interface AgenticWorkflowHeader {
149
149
  */
150
150
  'value': string;
151
151
  }
152
+ /**
153
+ *
154
+ * @export
155
+ * @interface AgenticWorkflowMcpServer
156
+ */
157
+ export interface AgenticWorkflowMcpServer {
158
+ /**
159
+ *
160
+ * @type {string}
161
+ * @memberof AgenticWorkflowMcpServer
162
+ */
163
+ 'id': string;
164
+ /**
165
+ * Whether the initial configuration or template requires this MCP server.
166
+ * @type {boolean}
167
+ * @memberof AgenticWorkflowMcpServer
168
+ */
169
+ 'required': boolean;
170
+ }
152
171
  /**
153
172
  *
154
173
  * @export
@@ -305,8 +324,21 @@ export interface AgenticWorkflowRequest {
305
324
  * MCP connectors attached to this workflow. May include a USER-scoped connector, which only its owner can attach or keep attached when saving.
306
325
  * @type {Array<string>}
307
326
  * @memberof AgenticWorkflowRequest
327
+ * @deprecated
308
328
  */
309
329
  'mcp_server_ids'?: Array<string>;
330
+ /**
331
+ * MCP connectors attached to this workflow. A required connector must be present during creation, but may be removed during a later settings update.
332
+ * @type {Array<AgenticWorkflowMcpServer>}
333
+ * @memberof AgenticWorkflowRequest
334
+ */
335
+ 'mcp_servers'?: Array<AgenticWorkflowMcpServer>;
336
+ /**
337
+ * Qovery services explicitly provided as context to this workflow.
338
+ * @type {Array<string>}
339
+ * @memberof AgenticWorkflowRequest
340
+ */
341
+ 'context_service_ids'?: Array<string>;
310
342
  /**
311
343
  *
312
344
  * @type {Array<AgenticWorkflowOutput>}
@@ -469,8 +501,21 @@ export interface AgenticWorkflowResponse {
469
501
  * MCP connectors attached to this workflow. May include a USER-scoped connector, which only its owner can attach or keep attached when saving.
470
502
  * @type {Array<string>}
471
503
  * @memberof AgenticWorkflowResponse
504
+ * @deprecated
472
505
  */
473
506
  'mcp_server_ids': Array<string>;
507
+ /**
508
+ * MCP connectors attached to this workflow, including their configuration metadata.
509
+ * @type {Array<AgenticWorkflowMcpServer>}
510
+ * @memberof AgenticWorkflowResponse
511
+ */
512
+ 'mcp_servers': Array<AgenticWorkflowMcpServer>;
513
+ /**
514
+ * Qovery services explicitly provided as context to this workflow.
515
+ * @type {Array<string>}
516
+ * @memberof AgenticWorkflowResponse
517
+ */
518
+ 'context_service_ids': Array<string>;
474
519
  /**
475
520
  *
476
521
  * @type {Array<AgenticWorkflowOutput>}
@@ -22412,6 +22457,25 @@ export interface PlatformComponentOutputBindingResponse {
22412
22457
  */
22413
22458
  'output': string;
22414
22459
  }
22460
+ /**
22461
+ * Displays selected top-level fields of another component in the same layer. The source component remains the resolver, configuration binding and deployment owner. This declaration does not move data or change Helm releases.
22462
+ * @export
22463
+ * @interface PlatformConfigurationSectionResponse
22464
+ */
22465
+ export interface PlatformConfigurationSectionResponse {
22466
+ /**
22467
+ * Component key to use for resolve requests and stored configuration.
22468
+ * @type {string}
22469
+ * @memberof PlatformConfigurationSectionResponse
22470
+ */
22471
+ 'sourceComponentKey': string;
22472
+ /**
22473
+ * Unique top-level source fields displayed here instead of in the source component editor.
22474
+ * @type {Array<string>}
22475
+ * @memberof PlatformConfigurationSectionResponse
22476
+ */
22477
+ 'fieldKeys': Array<string>;
22478
+ }
22415
22479
  /**
22416
22480
  *
22417
22481
  * @export
@@ -22476,6 +22540,12 @@ export interface PlatformTemplateComponentResponse {
22476
22540
  * @memberof PlatformTemplateComponentResponse
22477
22541
  */
22478
22542
  'fields': Array<FieldSchemaResponse>;
22543
+ /**
22544
+ * Additional configuration sections displayed under this component. Its own configuration and cluster inputs remain available. Omitted or empty keeps the existing editor behavior; fields always remain declared on their owner.
22545
+ * @type {Array<PlatformConfigurationSectionResponse>}
22546
+ * @memberof PlatformTemplateComponentResponse
22547
+ */
22548
+ 'configurationSections'?: Array<PlatformConfigurationSectionResponse>;
22479
22549
  }
22480
22550
  /**
22481
22551
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qovery-typescript-axios",
3
- "version": "v1.1.974",
3
+ "version": "v1.1.976",
4
4
  "description": "OpenAPI client for qovery-typescript-axios",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {