qovery-typescript-axios 1.1.975 → 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 +45 -0
- package/dist/api.d.ts +45 -0
- package/dist/esm/api.d.ts +45 -0
- package/package.json +1 -1
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>}
|
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>}
|
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>}
|