qovery-typescript-axios 1.1.969 → 1.1.971
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 +133 -3
- package/dist/api.d.ts +82 -3
- package/dist/api.js +91 -11
- package/dist/esm/api.d.ts +82 -3
- package/dist/esm/api.js +80 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -332,7 +332,7 @@ export interface AgenticWorkflowRequest {
|
|
|
332
332
|
*/
|
|
333
333
|
'mcp'?: string;
|
|
334
334
|
/**
|
|
335
|
-
*
|
|
335
|
+
* MCP connectors attached to this workflow. May include a USER-scoped connector, which only its owner can attach or keep attached when saving.
|
|
336
336
|
* @type {Array<string>}
|
|
337
337
|
* @memberof AgenticWorkflowRequest
|
|
338
338
|
*/
|
|
@@ -498,7 +498,7 @@ export interface AgenticWorkflowResponse {
|
|
|
498
498
|
*/
|
|
499
499
|
'mcp': string;
|
|
500
500
|
/**
|
|
501
|
-
*
|
|
501
|
+
* MCP connectors attached to this workflow. May include a USER-scoped connector, which only its owner can attach or keep attached when saving.
|
|
502
502
|
* @type {Array<string>}
|
|
503
503
|
* @memberof AgenticWorkflowResponse
|
|
504
504
|
*/
|
|
@@ -11508,6 +11508,12 @@ export interface DeployAllRequest {
|
|
|
11508
11508
|
* @memberof DeployAllRequest
|
|
11509
11509
|
*/
|
|
11510
11510
|
'terraforms'?: Array<TerraformDeployRequest>;
|
|
11511
|
+
/**
|
|
11512
|
+
*
|
|
11513
|
+
* @type {Array<string>}
|
|
11514
|
+
* @memberof DeployAllRequest
|
|
11515
|
+
*/
|
|
11516
|
+
'agentic_workflows'?: Array<string>;
|
|
11511
11517
|
}
|
|
11512
11518
|
/**
|
|
11513
11519
|
*
|
|
@@ -20048,7 +20054,7 @@ export interface ManagedDatabaseTypeResponseList {
|
|
|
20048
20054
|
*/
|
|
20049
20055
|
export interface McpServerRequest {
|
|
20050
20056
|
/**
|
|
20051
|
-
*
|
|
20057
|
+
* MCP server name, unique per scope owner within the organization
|
|
20052
20058
|
* @type {string}
|
|
20053
20059
|
* @memberof McpServerRequest
|
|
20054
20060
|
*/
|
|
@@ -20071,7 +20077,15 @@ export interface McpServerRequest {
|
|
|
20071
20077
|
* @memberof McpServerRequest
|
|
20072
20078
|
*/
|
|
20073
20079
|
'headers'?: { [key: string]: string; };
|
|
20080
|
+
/**
|
|
20081
|
+
* Cannot be changed after creation. On create, omitting it means ORGANIZATION, which requires the MANAGE_INFRASTRUCTURE permission; creating a USER connector requires CREATE_PROJECT. On edit, omitting it leaves the connector\'s scope unchanged, and stating a scope that differs from the connector\'s is refused with 400.
|
|
20082
|
+
* @type {McpServerScope}
|
|
20083
|
+
* @memberof McpServerRequest
|
|
20084
|
+
*/
|
|
20085
|
+
'scope'?: McpServerScope;
|
|
20074
20086
|
}
|
|
20087
|
+
|
|
20088
|
+
|
|
20075
20089
|
/**
|
|
20076
20090
|
*
|
|
20077
20091
|
* @export
|
|
@@ -20120,7 +20134,33 @@ export interface McpServerResponse {
|
|
|
20120
20134
|
* @memberof McpServerResponse
|
|
20121
20135
|
*/
|
|
20122
20136
|
'header_names': Set<string>;
|
|
20137
|
+
/**
|
|
20138
|
+
*
|
|
20139
|
+
* @type {McpServerScope}
|
|
20140
|
+
* @memberof McpServerResponse
|
|
20141
|
+
*/
|
|
20142
|
+
'scope': McpServerScope;
|
|
20143
|
+
/**
|
|
20144
|
+
* Identity of the owning member. Null for an ORGANIZATION connector.
|
|
20145
|
+
* @type {string}
|
|
20146
|
+
* @memberof McpServerResponse
|
|
20147
|
+
*/
|
|
20148
|
+
'owner_user_sub'?: string | null;
|
|
20149
|
+
/**
|
|
20150
|
+
* Display name of the owning member. Null for an ORGANIZATION connector.
|
|
20151
|
+
* @type {string}
|
|
20152
|
+
* @memberof McpServerResponse
|
|
20153
|
+
*/
|
|
20154
|
+
'owner_name'?: string | null;
|
|
20155
|
+
/**
|
|
20156
|
+
* Whether the member making this request may attach the connector to an agentic workflow. Computed per caller: an organization admin sees every USER connector but can attach none of them, so a picker must use this rather than scope alone.
|
|
20157
|
+
* @type {boolean}
|
|
20158
|
+
* @memberof McpServerResponse
|
|
20159
|
+
*/
|
|
20160
|
+
'attachable': boolean;
|
|
20123
20161
|
}
|
|
20162
|
+
|
|
20163
|
+
|
|
20124
20164
|
/**
|
|
20125
20165
|
*
|
|
20126
20166
|
* @export
|
|
@@ -20134,6 +20174,20 @@ export interface McpServerResponseList {
|
|
|
20134
20174
|
*/
|
|
20135
20175
|
'results': Array<McpServerResponse>;
|
|
20136
20176
|
}
|
|
20177
|
+
/**
|
|
20178
|
+
* ORGANIZATION: usable by every member who can edit an agentic workflow. USER: personal to the member who created it; only that member can attach or edit it.
|
|
20179
|
+
* @export
|
|
20180
|
+
* @enum {string}
|
|
20181
|
+
*/
|
|
20182
|
+
|
|
20183
|
+
export const McpServerScope = {
|
|
20184
|
+
ORGANIZATION: 'ORGANIZATION',
|
|
20185
|
+
USER: 'USER'
|
|
20186
|
+
} as const;
|
|
20187
|
+
|
|
20188
|
+
export type McpServerScope = typeof McpServerScope[keyof typeof McpServerScope];
|
|
20189
|
+
|
|
20190
|
+
|
|
20137
20191
|
/**
|
|
20138
20192
|
*
|
|
20139
20193
|
* @export
|
|
@@ -28203,6 +28257,47 @@ export const AgenticWorkflowsApiAxiosParamCreator = function (configuration?: Co
|
|
|
28203
28257
|
|
|
28204
28258
|
|
|
28205
28259
|
|
|
28260
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
28261
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
28262
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
28263
|
+
|
|
28264
|
+
return {
|
|
28265
|
+
url: toPathString(localVarUrlObj),
|
|
28266
|
+
options: localVarRequestOptions,
|
|
28267
|
+
};
|
|
28268
|
+
},
|
|
28269
|
+
/**
|
|
28270
|
+
* Deploy the agentic workflow service so its configuration can be tested. Routine runs of the workflow are triggered by its webhook or its schedule, not by this endpoint.
|
|
28271
|
+
* @summary Deploy an agentic workflow
|
|
28272
|
+
* @param {string} agenticWorkflowId
|
|
28273
|
+
* @param {*} [options] Override http request option.
|
|
28274
|
+
* @throws {RequiredError}
|
|
28275
|
+
*/
|
|
28276
|
+
deployAgenticWorkflow: async (agenticWorkflowId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
28277
|
+
// verify required parameter 'agenticWorkflowId' is not null or undefined
|
|
28278
|
+
assertParamExists('deployAgenticWorkflow', 'agenticWorkflowId', agenticWorkflowId)
|
|
28279
|
+
const localVarPath = `/agenticWorkflow/{agenticWorkflowId}/deploy`
|
|
28280
|
+
.replace(`{${"agenticWorkflowId"}}`, encodeURIComponent(String(agenticWorkflowId)));
|
|
28281
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
28282
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
28283
|
+
let baseOptions;
|
|
28284
|
+
if (configuration) {
|
|
28285
|
+
baseOptions = configuration.baseOptions;
|
|
28286
|
+
}
|
|
28287
|
+
|
|
28288
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
28289
|
+
const localVarHeaderParameter = {} as any;
|
|
28290
|
+
const localVarQueryParameter = {} as any;
|
|
28291
|
+
|
|
28292
|
+
// authentication ApiKeyAuth required
|
|
28293
|
+
await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
|
|
28294
|
+
|
|
28295
|
+
// authentication bearerAuth required
|
|
28296
|
+
// http bearer authentication required
|
|
28297
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
28298
|
+
|
|
28299
|
+
|
|
28300
|
+
|
|
28206
28301
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
28207
28302
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
28208
28303
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -28436,6 +28531,19 @@ export const AgenticWorkflowsApiFp = function(configuration?: Configuration) {
|
|
|
28436
28531
|
const localVarOperationServerBasePath = operationServerMap['AgenticWorkflowsApi.deleteAgenticWorkflow']?.[localVarOperationServerIndex]?.url;
|
|
28437
28532
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
28438
28533
|
},
|
|
28534
|
+
/**
|
|
28535
|
+
* Deploy the agentic workflow service so its configuration can be tested. Routine runs of the workflow are triggered by its webhook or its schedule, not by this endpoint.
|
|
28536
|
+
* @summary Deploy an agentic workflow
|
|
28537
|
+
* @param {string} agenticWorkflowId
|
|
28538
|
+
* @param {*} [options] Override http request option.
|
|
28539
|
+
* @throws {RequiredError}
|
|
28540
|
+
*/
|
|
28541
|
+
async deployAgenticWorkflow(agenticWorkflowId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Status>> {
|
|
28542
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.deployAgenticWorkflow(agenticWorkflowId, options);
|
|
28543
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
28544
|
+
const localVarOperationServerBasePath = operationServerMap['AgenticWorkflowsApi.deployAgenticWorkflow']?.[localVarOperationServerIndex]?.url;
|
|
28545
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
28546
|
+
},
|
|
28439
28547
|
/**
|
|
28440
28548
|
*
|
|
28441
28549
|
* @summary Edit an agentic workflow
|
|
@@ -28532,6 +28640,16 @@ export const AgenticWorkflowsApiFactory = function (configuration?: Configuratio
|
|
|
28532
28640
|
deleteAgenticWorkflow(agenticWorkflowId: string, options?: RawAxiosRequestConfig): AxiosPromise<Status> {
|
|
28533
28641
|
return localVarFp.deleteAgenticWorkflow(agenticWorkflowId, options).then((request) => request(axios, basePath));
|
|
28534
28642
|
},
|
|
28643
|
+
/**
|
|
28644
|
+
* Deploy the agentic workflow service so its configuration can be tested. Routine runs of the workflow are triggered by its webhook or its schedule, not by this endpoint.
|
|
28645
|
+
* @summary Deploy an agentic workflow
|
|
28646
|
+
* @param {string} agenticWorkflowId
|
|
28647
|
+
* @param {*} [options] Override http request option.
|
|
28648
|
+
* @throws {RequiredError}
|
|
28649
|
+
*/
|
|
28650
|
+
deployAgenticWorkflow(agenticWorkflowId: string, options?: RawAxiosRequestConfig): AxiosPromise<Status> {
|
|
28651
|
+
return localVarFp.deployAgenticWorkflow(agenticWorkflowId, options).then((request) => request(axios, basePath));
|
|
28652
|
+
},
|
|
28535
28653
|
/**
|
|
28536
28654
|
*
|
|
28537
28655
|
* @summary Edit an agentic workflow
|
|
@@ -28622,6 +28740,18 @@ export class AgenticWorkflowsApi extends BaseAPI {
|
|
|
28622
28740
|
return AgenticWorkflowsApiFp(this.configuration).deleteAgenticWorkflow(agenticWorkflowId, options).then((request) => request(this.axios, this.basePath));
|
|
28623
28741
|
}
|
|
28624
28742
|
|
|
28743
|
+
/**
|
|
28744
|
+
* Deploy the agentic workflow service so its configuration can be tested. Routine runs of the workflow are triggered by its webhook or its schedule, not by this endpoint.
|
|
28745
|
+
* @summary Deploy an agentic workflow
|
|
28746
|
+
* @param {string} agenticWorkflowId
|
|
28747
|
+
* @param {*} [options] Override http request option.
|
|
28748
|
+
* @throws {RequiredError}
|
|
28749
|
+
* @memberof AgenticWorkflowsApi
|
|
28750
|
+
*/
|
|
28751
|
+
public deployAgenticWorkflow(agenticWorkflowId: string, options?: RawAxiosRequestConfig) {
|
|
28752
|
+
return AgenticWorkflowsApiFp(this.configuration).deployAgenticWorkflow(agenticWorkflowId, options).then((request) => request(this.axios, this.basePath));
|
|
28753
|
+
}
|
|
28754
|
+
|
|
28625
28755
|
/**
|
|
28626
28756
|
*
|
|
28627
28757
|
* @summary Edit an agentic workflow
|
package/dist/api.d.ts
CHANGED
|
@@ -302,7 +302,7 @@ export interface AgenticWorkflowRequest {
|
|
|
302
302
|
*/
|
|
303
303
|
'mcp'?: string;
|
|
304
304
|
/**
|
|
305
|
-
*
|
|
305
|
+
* MCP connectors attached to this workflow. May include a USER-scoped connector, which only its owner can attach or keep attached when saving.
|
|
306
306
|
* @type {Array<string>}
|
|
307
307
|
* @memberof AgenticWorkflowRequest
|
|
308
308
|
*/
|
|
@@ -466,7 +466,7 @@ export interface AgenticWorkflowResponse {
|
|
|
466
466
|
*/
|
|
467
467
|
'mcp': string;
|
|
468
468
|
/**
|
|
469
|
-
*
|
|
469
|
+
* MCP connectors attached to this workflow. May include a USER-scoped connector, which only its owner can attach or keep attached when saving.
|
|
470
470
|
* @type {Array<string>}
|
|
471
471
|
* @memberof AgenticWorkflowResponse
|
|
472
472
|
*/
|
|
@@ -11205,6 +11205,12 @@ export interface DeployAllRequest {
|
|
|
11205
11205
|
* @memberof DeployAllRequest
|
|
11206
11206
|
*/
|
|
11207
11207
|
'terraforms'?: Array<TerraformDeployRequest>;
|
|
11208
|
+
/**
|
|
11209
|
+
*
|
|
11210
|
+
* @type {Array<string>}
|
|
11211
|
+
* @memberof DeployAllRequest
|
|
11212
|
+
*/
|
|
11213
|
+
'agentic_workflows'?: Array<string>;
|
|
11208
11214
|
}
|
|
11209
11215
|
/**
|
|
11210
11216
|
*
|
|
@@ -19479,7 +19485,7 @@ export interface ManagedDatabaseTypeResponseList {
|
|
|
19479
19485
|
*/
|
|
19480
19486
|
export interface McpServerRequest {
|
|
19481
19487
|
/**
|
|
19482
|
-
*
|
|
19488
|
+
* MCP server name, unique per scope owner within the organization
|
|
19483
19489
|
* @type {string}
|
|
19484
19490
|
* @memberof McpServerRequest
|
|
19485
19491
|
*/
|
|
@@ -19504,6 +19510,12 @@ export interface McpServerRequest {
|
|
|
19504
19510
|
'headers'?: {
|
|
19505
19511
|
[key: string]: string;
|
|
19506
19512
|
};
|
|
19513
|
+
/**
|
|
19514
|
+
* Cannot be changed after creation. On create, omitting it means ORGANIZATION, which requires the MANAGE_INFRASTRUCTURE permission; creating a USER connector requires CREATE_PROJECT. On edit, omitting it leaves the connector\'s scope unchanged, and stating a scope that differs from the connector\'s is refused with 400.
|
|
19515
|
+
* @type {McpServerScope}
|
|
19516
|
+
* @memberof McpServerRequest
|
|
19517
|
+
*/
|
|
19518
|
+
'scope'?: McpServerScope;
|
|
19507
19519
|
}
|
|
19508
19520
|
/**
|
|
19509
19521
|
*
|
|
@@ -19553,6 +19565,30 @@ export interface McpServerResponse {
|
|
|
19553
19565
|
* @memberof McpServerResponse
|
|
19554
19566
|
*/
|
|
19555
19567
|
'header_names': Set<string>;
|
|
19568
|
+
/**
|
|
19569
|
+
*
|
|
19570
|
+
* @type {McpServerScope}
|
|
19571
|
+
* @memberof McpServerResponse
|
|
19572
|
+
*/
|
|
19573
|
+
'scope': McpServerScope;
|
|
19574
|
+
/**
|
|
19575
|
+
* Identity of the owning member. Null for an ORGANIZATION connector.
|
|
19576
|
+
* @type {string}
|
|
19577
|
+
* @memberof McpServerResponse
|
|
19578
|
+
*/
|
|
19579
|
+
'owner_user_sub'?: string | null;
|
|
19580
|
+
/**
|
|
19581
|
+
* Display name of the owning member. Null for an ORGANIZATION connector.
|
|
19582
|
+
* @type {string}
|
|
19583
|
+
* @memberof McpServerResponse
|
|
19584
|
+
*/
|
|
19585
|
+
'owner_name'?: string | null;
|
|
19586
|
+
/**
|
|
19587
|
+
* Whether the member making this request may attach the connector to an agentic workflow. Computed per caller: an organization admin sees every USER connector but can attach none of them, so a picker must use this rather than scope alone.
|
|
19588
|
+
* @type {boolean}
|
|
19589
|
+
* @memberof McpServerResponse
|
|
19590
|
+
*/
|
|
19591
|
+
'attachable': boolean;
|
|
19556
19592
|
}
|
|
19557
19593
|
/**
|
|
19558
19594
|
*
|
|
@@ -19567,6 +19603,16 @@ export interface McpServerResponseList {
|
|
|
19567
19603
|
*/
|
|
19568
19604
|
'results': Array<McpServerResponse>;
|
|
19569
19605
|
}
|
|
19606
|
+
/**
|
|
19607
|
+
* ORGANIZATION: usable by every member who can edit an agentic workflow. USER: personal to the member who created it; only that member can attach or edit it.
|
|
19608
|
+
* @export
|
|
19609
|
+
* @enum {string}
|
|
19610
|
+
*/
|
|
19611
|
+
export declare const McpServerScope: {
|
|
19612
|
+
readonly ORGANIZATION: "ORGANIZATION";
|
|
19613
|
+
readonly USER: "USER";
|
|
19614
|
+
};
|
|
19615
|
+
export type McpServerScope = typeof McpServerScope[keyof typeof McpServerScope];
|
|
19570
19616
|
/**
|
|
19571
19617
|
*
|
|
19572
19618
|
* @export
|
|
@@ -27146,6 +27192,14 @@ export declare const AgenticWorkflowsApiAxiosParamCreator: (configuration?: Conf
|
|
|
27146
27192
|
* @throws {RequiredError}
|
|
27147
27193
|
*/
|
|
27148
27194
|
deleteAgenticWorkflow: (agenticWorkflowId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27195
|
+
/**
|
|
27196
|
+
* Deploy the agentic workflow service so its configuration can be tested. Routine runs of the workflow are triggered by its webhook or its schedule, not by this endpoint.
|
|
27197
|
+
* @summary Deploy an agentic workflow
|
|
27198
|
+
* @param {string} agenticWorkflowId
|
|
27199
|
+
* @param {*} [options] Override http request option.
|
|
27200
|
+
* @throws {RequiredError}
|
|
27201
|
+
*/
|
|
27202
|
+
deployAgenticWorkflow: (agenticWorkflowId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27149
27203
|
/**
|
|
27150
27204
|
*
|
|
27151
27205
|
* @summary Edit an agentic workflow
|
|
@@ -27212,6 +27266,14 @@ export declare const AgenticWorkflowsApiFp: (configuration?: Configuration) => {
|
|
|
27212
27266
|
* @throws {RequiredError}
|
|
27213
27267
|
*/
|
|
27214
27268
|
deleteAgenticWorkflow(agenticWorkflowId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Status>>;
|
|
27269
|
+
/**
|
|
27270
|
+
* Deploy the agentic workflow service so its configuration can be tested. Routine runs of the workflow are triggered by its webhook or its schedule, not by this endpoint.
|
|
27271
|
+
* @summary Deploy an agentic workflow
|
|
27272
|
+
* @param {string} agenticWorkflowId
|
|
27273
|
+
* @param {*} [options] Override http request option.
|
|
27274
|
+
* @throws {RequiredError}
|
|
27275
|
+
*/
|
|
27276
|
+
deployAgenticWorkflow(agenticWorkflowId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Status>>;
|
|
27215
27277
|
/**
|
|
27216
27278
|
*
|
|
27217
27279
|
* @summary Edit an agentic workflow
|
|
@@ -27278,6 +27340,14 @@ export declare const AgenticWorkflowsApiFactory: (configuration?: Configuration,
|
|
|
27278
27340
|
* @throws {RequiredError}
|
|
27279
27341
|
*/
|
|
27280
27342
|
deleteAgenticWorkflow(agenticWorkflowId: string, options?: RawAxiosRequestConfig): AxiosPromise<Status>;
|
|
27343
|
+
/**
|
|
27344
|
+
* Deploy the agentic workflow service so its configuration can be tested. Routine runs of the workflow are triggered by its webhook or its schedule, not by this endpoint.
|
|
27345
|
+
* @summary Deploy an agentic workflow
|
|
27346
|
+
* @param {string} agenticWorkflowId
|
|
27347
|
+
* @param {*} [options] Override http request option.
|
|
27348
|
+
* @throws {RequiredError}
|
|
27349
|
+
*/
|
|
27350
|
+
deployAgenticWorkflow(agenticWorkflowId: string, options?: RawAxiosRequestConfig): AxiosPromise<Status>;
|
|
27281
27351
|
/**
|
|
27282
27352
|
*
|
|
27283
27353
|
* @summary Edit an agentic workflow
|
|
@@ -27349,6 +27419,15 @@ export declare class AgenticWorkflowsApi extends BaseAPI {
|
|
|
27349
27419
|
* @memberof AgenticWorkflowsApi
|
|
27350
27420
|
*/
|
|
27351
27421
|
deleteAgenticWorkflow(agenticWorkflowId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Status, any, {}>>;
|
|
27422
|
+
/**
|
|
27423
|
+
* Deploy the agentic workflow service so its configuration can be tested. Routine runs of the workflow are triggered by its webhook or its schedule, not by this endpoint.
|
|
27424
|
+
* @summary Deploy an agentic workflow
|
|
27425
|
+
* @param {string} agenticWorkflowId
|
|
27426
|
+
* @param {*} [options] Override http request option.
|
|
27427
|
+
* @throws {RequiredError}
|
|
27428
|
+
* @memberof AgenticWorkflowsApi
|
|
27429
|
+
*/
|
|
27430
|
+
deployAgenticWorkflow(agenticWorkflowId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Status, any, {}>>;
|
|
27352
27431
|
/**
|
|
27353
27432
|
*
|
|
27354
27433
|
* @summary Edit an agentic workflow
|
package/dist/api.js
CHANGED
|
@@ -24,17 +24,17 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
25
|
exports.ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum = exports.ClusterAdvancedSettingsLokiDeploymentModeEnum = exports.CloudflareDnsProviderResponseProviderEnum = exports.CloudflareDnsProviderRequestProviderEnum = exports.CloudVendorEnum = exports.CloudProviderEnum = exports.CheckedCustomDomainStatus = exports.BuildModeEnum = exports.BlueprintUpdatePreviewResponseServiceTypeEnum = exports.BlueprintSpecOverridesBackendEnum = exports.BlueprintSpecOverridesCredentialsEnum = exports.BlueprintManifestVariableFieldKindEnum = exports.BlueprintManifestFieldTypeTypeEnum = exports.BlueprintManifestEngineTerraformTypeEnum = exports.BlueprintManifestEngineOpenTofuTypeEnum = exports.BlueprintManifestEngineHelmTypeEnum = exports.BlueprintManifestContextVariableFieldKindEnum = exports.BlueprintDetailsResponseServiceTypeEnum = exports.BlueprintDeploymentStatusResponseStatusEnum = exports.AzureStaticClusterCredentialsObjectTypeEnum = exports.AwsStaticCredentialsRequestTypeEnum = exports.AwsStaticCredentialsAuthDtoModeEnum = exports.AwsStaticClusterCredentialsObjectTypeEnum = exports.AwsSecretManagerEndpointDtoModeEnum = exports.AwsRoleCredentialsRequestTypeEnum = exports.AwsRoleClusterCredentialsObjectTypeEnum = exports.AwsRoleArnAuthDtoModeEnum = exports.AwsParameterStoreEndpointDtoModeEnum = exports.AutoscalingMode = exports.AutomaticallyConfiguredAuthDtoModeEnum = exports.ArgocdAssociatedServiceType = exports.ArgoCdConnectionStatusEnum = exports.ArgoCdConnectionCheckResponseReasonEnum = exports.ApplicationAdvancedSettingsDeploymentUpdateStrategyTypeEnum = exports.ApplicationAdvancedSettingsDeploymentTopologySpreadZoneEnum = exports.ApplicationAdvancedSettingsDeploymentAntiaffinityPodEnum = exports.AnnotationsGroupAssociatedItemType = exports.AlertTargetType = exports.AlertSeverity = exports.AlertRuleState = exports.AlertRuleSource = exports.AlertRuleConditionOperator = exports.AlertRuleConditionKind = exports.AlertRuleConditionFunction = exports.AlertReceiverType = exports.AksInfrastructureOutputsKindEnum = exports.AgenticWorkflowModelType = exports.AgenticWorkflowExecutionMode = exports.APIVariableTypeEnum = exports.APIVariableScopeEnum = void 0;
|
|
26
26
|
exports.EnvironmentModeEnum = exports.EnvironmentLogTypeEnum = exports.EnvironmentDeploymentStatusEnum = exports.EksInfrastructureOutputsKindEnum = exports.EksAnywhereVsphereStaticCredentialsRequestTypeEnum = exports.EksAnywhereVsphereRoleCredentialsRequestTypeEnum = exports.EksAnywhereVsphereClusterCredentialsObjectTypeEnum = exports.DockerfileFragmentInlineTypeEnum = exports.DockerfileFragmentFileTypeEnum = exports.DeploymentRestrictionTypeEnum = exports.DeploymentRestrictionModeEnum = exports.DeploymentInfraReason = exports.DeploymentHistoryTriggerAction = exports.DeploymentHistoryStatusEnum = exports.DeploymentHistoryServiceDetailsOneOf2JobTypeEnum = exports.DeploymentHistoryActionStatus = exports.DeleteTerraformAction = exports.DatabaseTypeEnum = exports.DatabaseModeEnum = exports.DatabaseEditRequestDiskTypeEnum = exports.DatabaseAccessibilityEnum = exports.DatabaseDiskTypeEnum = exports.CustomDomainStatusEnum = exports.CreateEnvironmentModeEnum = exports.CpuArchitectureEnum = exports.ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum = exports.ContainerRegistryRequestConfigGcpCredentialsTypeEnum = exports.ContainerRegistryKindEnum = exports.ContainerRegistryAssociatedServiceType = exports.ContainerAdvancedSettingsDeploymentUpdateStrategyTypeEnum = exports.ContainerAdvancedSettingsDeploymentTopologySpreadZoneEnum = exports.ContainerAdvancedSettingsDeploymentAntiaffinityPodEnum = exports.CompanySizeEnum = exports.ClusterStateEnum = exports.ClusterOperatorFleetStatus = exports.ClusterLogsStepEnum = exports.ClusterFeatureResponseTypeEnum = exports.ClusterFeatureResponseValueTypeEnum = exports.ClusterFeatureNatGatewayTypeScalewayTypeEnum = exports.ClusterFeatureNatGatewayTypeScalewayProviderEnum = exports.ClusterFeatureNatGatewayTypeGcpProviderEnum = exports.ClusterDeploymentStatusEnum = exports.ClusterDeploymentHistoryReasonEnum = exports.ClusterDeleteMode = exports.ClusterAnalysisStatus = exports.ClusterAnalysisOutputFormat = exports.ClusterAnalysisKind = exports.ClusterAdvancedSettingsAwsEksEc2MetadataImdsEnum = exports.ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum = exports.ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum = void 0;
|
|
27
|
-
exports.
|
|
28
|
-
exports.
|
|
29
|
-
exports.
|
|
30
|
-
exports.
|
|
31
|
-
exports.
|
|
32
|
-
exports.
|
|
33
|
-
exports.
|
|
34
|
-
exports.
|
|
35
|
-
exports.
|
|
36
|
-
exports.
|
|
37
|
-
exports.VariableMainCallsApi = exports.VariableMainCallsApiFactory = exports.VariableMainCallsApiFp = exports.VariableMainCallsApiAxiosParamCreator = exports.UserSignUpApi = exports.UserSignUpApiFactory = exports.UserSignUpApiFp = exports.UserSignUpApiAxiosParamCreator = exports.TerraformsApi = void 0;
|
|
27
|
+
exports.PlatformClusterMode = exports.PlatformCloudVendor = exports.PlanEnum = exports.OrganizationWebhookKindEnum = exports.OrganizationWebhookEventEnum = exports.OrganizationOnboardingStatusEnum = exports.OrganizationEventType = exports.OrganizationEventTargetType = exports.OrganizationEventTargetLevel = exports.OrganizationEventSubTargetType = exports.OrganizationEventOrigin = exports.OrganizationCustomRoleProjectPermission = exports.OrganizationCustomRoleClusterPermission = exports.OrganizationApiTokenScope = exports.OrganizationAnnotationsGroupScopeEnum = exports.ObservabilityResourceProfile = exports.MetricsConfigurationManagedByQoveryKindEnum = exports.McpServerScope = exports.LinkedServiceTypeEnum = exports.LabelsGroupAssociatedItemType = exports.KubernetesEnum = exports.KedaScalerRole = exports.KarpenterNodePoolRequirementOperator = exports.KarpenterNodePoolRequirementKey = exports.KapsuleInfrastructureOutputsKindEnum = exports.JobTypeEnum = exports.JobScheduleEvent = exports.JobLifecycleTypeEnum = exports.JobForceEvent = exports.InvoiceStatusEnum = exports.InviteStatusEnum = exports.InviteMemberRoleEnum = exports.HelmRepositoryKindEnum = exports.HelmRepositoryAssociatedServiceType = exports.HelmPortProtocolEnum = exports.HelmForceEvent = exports.GkeInfrastructureOutputsKindEnum = exports.GitWebhookStatusResponseProviderEnum = exports.GitWebhookStatusResponseStatusEnum = exports.GitTokenAssociatedServiceType = exports.GitProviderEnum = exports.GenericClusterCredentialsObjectTypeEnum = exports.GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum = exports.GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum = exports.GcpStaticClusterCredentialsObjectTypeEnum = exports.GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum = exports.GcpSecretManagerEndpointDtoModeEnum = exports.GcpJsonCredentialsAuthDtoModeEnum = exports.FieldSchemaResponseTypeEnum = exports.EnvironmentStatusEventOriginEnum = void 0;
|
|
28
|
+
exports.AlertReceiversApiAxiosParamCreator = exports.AgenticWorkflowsApi = exports.AgenticWorkflowsApiFactory = exports.AgenticWorkflowsApiFp = exports.AgenticWorkflowsApiAxiosParamCreator = exports.AccountInfoApi = exports.AccountInfoApiFactory = exports.AccountInfoApiFp = exports.AccountInfoApiAxiosParamCreator = exports.WeekdayEnum = exports.TypeOfUseEnum = exports.TfVarsDiscoveryModeSpecificPathsTypeEnum = exports.TfVarsDiscoveryModeAutoDiscoverTypeEnum = exports.TerraformResourceResponseModeEnum = exports.TerraformEngineEnum = exports.TerraformDeployRequestActionEnum = exports.TerraformAutoDeployConfigTerraformActionEnum = exports.StorageTypeEnum = exports.StepMetricStatusEnum = exports.StatusKindEnum = exports.StateEnum = exports.StageStepMetricNameEnum = exports.StageStatusEnum = exports.ServicesOverviewResponseManagedByEnum = exports.ServiceTypeForVariableEnum = exports.ServiceTypeEnum = exports.ServiceSubActionEnum = exports.ServiceStepMetricNameEnum = exports.ServiceLightResponseJobTypeEnum = exports.ServiceDeploymentStatusEnum = exports.ServiceActionStatusEnum = exports.ServiceActionEnum = exports.SelfManagedClusterKind = exports.ScalewayClusterCredentialsObjectTypeEnum = exports.Route53StaticCredentialsResponseTypeEnum = exports.Route53StaticCredentialsRequestTypeEnum = exports.Route53DnsProviderResponseProviderEnum = exports.Route53DnsProviderRequestProviderEnum = exports.RewardClaimTypeEnum = exports.RegistryMirroringModeEnum = exports.QueuedDeploymentRequestWithStagesStagesInnerServicesInnerDetailsOneOfJobTypeEnum = exports.QoveryDnsProviderResponseProviderEnum = exports.QoveryDnsProviderRequestProviderEnum = exports.PortProtocolEnum = exports.PlatformTemplateReleaseStatus = exports.PlatformTemplateComponentKind = exports.PlatformLayerResolutionStatus = exports.PlatformComponentInputRequirementResponseTypeEnum = exports.PlatformComponentConfigurationRequirementStatus = exports.PlatformComponentConfigurationInputScope = void 0;
|
|
29
|
+
exports.ArgoCDApiFactory = exports.ArgoCDApiFp = exports.ArgoCDApiAxiosParamCreator = exports.ApplicationsApi = exports.ApplicationsApiFactory = exports.ApplicationsApiFp = exports.ApplicationsApiAxiosParamCreator = exports.ApplicationSecretApi = exports.ApplicationSecretApiFactory = exports.ApplicationSecretApiFp = exports.ApplicationSecretApiAxiosParamCreator = exports.ApplicationMainCallsApi = exports.ApplicationMainCallsApiFactory = exports.ApplicationMainCallsApiFp = exports.ApplicationMainCallsApiAxiosParamCreator = exports.ApplicationLogsApi = exports.ApplicationLogsApiFactory = exports.ApplicationLogsApiFp = exports.ApplicationLogsApiAxiosParamCreator = exports.ApplicationEnvironmentVariableApi = exports.ApplicationEnvironmentVariableApiFactory = exports.ApplicationEnvironmentVariableApiFp = exports.ApplicationEnvironmentVariableApiAxiosParamCreator = exports.ApplicationDeploymentRestrictionApi = exports.ApplicationDeploymentRestrictionApiFactory = exports.ApplicationDeploymentRestrictionApiFp = exports.ApplicationDeploymentRestrictionApiAxiosParamCreator = exports.ApplicationDeploymentHistoryApi = exports.ApplicationDeploymentHistoryApiFactory = exports.ApplicationDeploymentHistoryApiFp = exports.ApplicationDeploymentHistoryApiAxiosParamCreator = exports.ApplicationCustomDomainApi = exports.ApplicationCustomDomainApiFactory = exports.ApplicationCustomDomainApiFp = exports.ApplicationCustomDomainApiAxiosParamCreator = exports.ApplicationConfigurationApi = exports.ApplicationConfigurationApiFactory = exports.ApplicationConfigurationApiFp = exports.ApplicationConfigurationApiAxiosParamCreator = exports.ApplicationActionsApi = exports.ApplicationActionsApiFactory = exports.ApplicationActionsApiFp = exports.ApplicationActionsApiAxiosParamCreator = exports.AlertRulesApi = exports.AlertRulesApiFactory = exports.AlertRulesApiFp = exports.AlertRulesApiAxiosParamCreator = exports.AlertReceiversApi = exports.AlertReceiversApiFactory = exports.AlertReceiversApiFp = void 0;
|
|
30
|
+
exports.ContainerCustomDomainApiFactory = exports.ContainerCustomDomainApiFp = exports.ContainerCustomDomainApiAxiosParamCreator = exports.ContainerConfigurationApi = exports.ContainerConfigurationApiFactory = exports.ContainerConfigurationApiFp = exports.ContainerConfigurationApiAxiosParamCreator = exports.ContainerActionsApi = exports.ContainerActionsApiFactory = exports.ContainerActionsApiFp = exports.ContainerActionsApiAxiosParamCreator = exports.ClustersApi = exports.ClustersApiFactory = exports.ClustersApiFp = exports.ClustersApiAxiosParamCreator = exports.ClusterOperatorApi = exports.ClusterOperatorApiFactory = exports.ClusterOperatorApiFp = exports.ClusterOperatorApiAxiosParamCreator = exports.ClusterDeploymentHistoryApi = exports.ClusterDeploymentHistoryApiFactory = exports.ClusterDeploymentHistoryApiFp = exports.ClusterDeploymentHistoryApiAxiosParamCreator = exports.CloudProviderCredentialsApi = exports.CloudProviderCredentialsApiFactory = exports.CloudProviderCredentialsApiFp = exports.CloudProviderCredentialsApiAxiosParamCreator = exports.ListAzureAKSInstanceTypeGpuEnum = exports.ListAWSEKSInstanceTypeGpuEnum = exports.CloudProviderApi = exports.CloudProviderApiFactory = exports.CloudProviderApiFp = exports.CloudProviderApiAxiosParamCreator = exports.BlueprintMainCallsApi = exports.BlueprintMainCallsApiFactory = exports.BlueprintMainCallsApiFp = exports.BlueprintMainCallsApiAxiosParamCreator = exports.BlueprintCatalogApi = exports.BlueprintCatalogApiFactory = exports.BlueprintCatalogApiFp = exports.BlueprintCatalogApiAxiosParamCreator = exports.BillingApi = exports.BillingApiFactory = exports.BillingApiFp = exports.BillingApiAxiosParamCreator = exports.BackupsApi = exports.BackupsApiFactory = exports.BackupsApiFp = exports.BackupsApiAxiosParamCreator = exports.ArgoCDApi = void 0;
|
|
31
|
+
exports.DefaultApiAxiosParamCreator = exports.DatabasesApi = exports.DatabasesApiFactory = exports.DatabasesApiFp = exports.DatabasesApiAxiosParamCreator = exports.DatabaseMainCallsApi = exports.DatabaseMainCallsApiFactory = exports.DatabaseMainCallsApiFp = exports.DatabaseMainCallsApiAxiosParamCreator = exports.DatabaseDeploymentHistoryApi = exports.DatabaseDeploymentHistoryApiFactory = exports.DatabaseDeploymentHistoryApiFp = exports.DatabaseDeploymentHistoryApiAxiosParamCreator = exports.DatabaseApplicationApi = exports.DatabaseApplicationApiFactory = exports.DatabaseApplicationApiFp = exports.DatabaseApplicationApiAxiosParamCreator = exports.DatabaseActionsApi = exports.DatabaseActionsApiFactory = exports.DatabaseActionsApiFp = exports.DatabaseActionsApiAxiosParamCreator = exports.ContainersApi = exports.ContainersApiFactory = exports.ContainersApiFp = exports.ContainersApiAxiosParamCreator = exports.ContainerSecretApi = exports.ContainerSecretApiFactory = exports.ContainerSecretApiFp = exports.ContainerSecretApiAxiosParamCreator = exports.ContainerRegistriesApi = exports.ContainerRegistriesApiFactory = exports.ContainerRegistriesApiFp = exports.ContainerRegistriesApiAxiosParamCreator = exports.ContainerMainCallsApi = exports.ContainerMainCallsApiFactory = exports.ContainerMainCallsApiFp = exports.ContainerMainCallsApiAxiosParamCreator = exports.ContainerLogsApi = exports.ContainerLogsApiFactory = exports.ContainerLogsApiFp = exports.ContainerLogsApiAxiosParamCreator = exports.ContainerEnvironmentVariableApi = exports.ContainerEnvironmentVariableApiFactory = exports.ContainerEnvironmentVariableApiFp = exports.ContainerEnvironmentVariableApiAxiosParamCreator = exports.ContainerDeploymentHistoryApi = exports.ContainerDeploymentHistoryApiFactory = exports.ContainerDeploymentHistoryApiFp = exports.ContainerDeploymentHistoryApiAxiosParamCreator = exports.ContainerCustomDomainApi = void 0;
|
|
32
|
+
exports.EnvironmentsApiFactory = exports.EnvironmentsApiFp = exports.EnvironmentsApiAxiosParamCreator = exports.EnvironmentVariableApi = exports.EnvironmentVariableApiFactory = exports.EnvironmentVariableApiFp = exports.EnvironmentVariableApiAxiosParamCreator = exports.EnvironmentSecretApi = exports.EnvironmentSecretApiFactory = exports.EnvironmentSecretApiFp = exports.EnvironmentSecretApiAxiosParamCreator = exports.EnvironmentMainCallsApi = exports.EnvironmentMainCallsApiFactory = exports.EnvironmentMainCallsApiFp = exports.EnvironmentMainCallsApiAxiosParamCreator = exports.EnvironmentLogsApi = exports.EnvironmentLogsApiFactory = exports.EnvironmentLogsApiFp = exports.EnvironmentLogsApiAxiosParamCreator = exports.EnvironmentExportApi = exports.EnvironmentExportApiFactory = exports.EnvironmentExportApiFp = exports.EnvironmentExportApiAxiosParamCreator = exports.EnvironmentDeploymentRuleApi = exports.EnvironmentDeploymentRuleApiFactory = exports.EnvironmentDeploymentRuleApiFp = exports.EnvironmentDeploymentRuleApiAxiosParamCreator = exports.EnvironmentDeploymentHistoryApi = exports.EnvironmentDeploymentHistoryApiFactory = exports.EnvironmentDeploymentHistoryApiFp = exports.EnvironmentDeploymentHistoryApiAxiosParamCreator = exports.EnvironmentActionsApi = exports.EnvironmentActionsApiFactory = exports.EnvironmentActionsApiFp = exports.EnvironmentActionsApiAxiosParamCreator = exports.EnvironmentApi = exports.EnvironmentApiFactory = exports.EnvironmentApiFp = exports.EnvironmentApiAxiosParamCreator = exports.DeploymentStageMainCallsApi = exports.DeploymentStageMainCallsApiFactory = exports.DeploymentStageMainCallsApiFp = exports.DeploymentStageMainCallsApiAxiosParamCreator = exports.DeploymentQueueActionsApi = exports.DeploymentQueueActionsApiFactory = exports.DeploymentQueueActionsApiFp = exports.DeploymentQueueActionsApiAxiosParamCreator = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = void 0;
|
|
33
|
+
exports.JobConfigurationApiAxiosParamCreator = exports.JobActionsApi = exports.JobActionsApiFactory = exports.JobActionsApiFp = exports.JobActionsApiAxiosParamCreator = exports.IPsApi = exports.IPsApiFactory = exports.IPsApiFp = exports.IPsApiAxiosParamCreator = exports.HelmsApi = exports.HelmsApiFactory = exports.HelmsApiFp = exports.HelmsApiAxiosParamCreator = exports.HelmRepositoriesApi = exports.HelmRepositoriesApiFactory = exports.HelmRepositoriesApiFp = exports.HelmRepositoriesApiAxiosParamCreator = exports.HelmMainCallsApi = exports.HelmMainCallsApiFactory = exports.HelmMainCallsApiFp = exports.HelmMainCallsApiAxiosParamCreator = exports.HelmDeploymentRestrictionApi = exports.HelmDeploymentRestrictionApiFactory = exports.HelmDeploymentRestrictionApiFp = exports.HelmDeploymentRestrictionApiAxiosParamCreator = exports.HelmDeploymentHistoryApi = exports.HelmDeploymentHistoryApiFactory = exports.HelmDeploymentHistoryApiFp = exports.HelmDeploymentHistoryApiAxiosParamCreator = exports.HelmCustomDomainApi = exports.HelmCustomDomainApiFactory = exports.HelmCustomDomainApiFp = exports.HelmCustomDomainApiAxiosParamCreator = exports.HelmConfigurationApi = exports.HelmConfigurationApiFactory = exports.HelmConfigurationApiFp = exports.HelmConfigurationApiAxiosParamCreator = exports.HelmActionsApi = exports.HelmActionsApiFactory = exports.HelmActionsApiFp = exports.HelmActionsApiAxiosParamCreator = exports.GithubAppApi = exports.GithubAppApiFactory = exports.GithubAppApiFp = exports.GithubAppApiAxiosParamCreator = exports.GitRepositoriesApi = exports.GitRepositoriesApiFactory = exports.GitRepositoriesApiFp = exports.GitRepositoriesApiAxiosParamCreator = exports.EnvironmentsApi = void 0;
|
|
34
|
+
exports.OrganizationApiTokenApiFactory = exports.OrganizationApiTokenApiFp = exports.OrganizationApiTokenApiAxiosParamCreator = exports.OrganizationAnnotationsGroupApi = exports.OrganizationAnnotationsGroupApiFactory = exports.OrganizationAnnotationsGroupApiFp = exports.OrganizationAnnotationsGroupApiAxiosParamCreator = exports.OrganizationAccountGitRepositoriesApi = exports.OrganizationAccountGitRepositoriesApiFactory = exports.OrganizationAccountGitRepositoriesApiFp = exports.OrganizationAccountGitRepositoriesApiAxiosParamCreator = exports.MembersApi = exports.MembersApiFactory = exports.MembersApiFp = exports.MembersApiAxiosParamCreator = exports.MCPServersApi = exports.MCPServersApiFactory = exports.MCPServersApiFp = exports.MCPServersApiAxiosParamCreator = exports.LifecycleTemplateMainCallsApi = exports.LifecycleTemplateMainCallsApiFactory = exports.LifecycleTemplateMainCallsApiFp = exports.LifecycleTemplateMainCallsApiAxiosParamCreator = exports.JobsApi = exports.JobsApiFactory = exports.JobsApiFp = exports.JobsApiAxiosParamCreator = exports.JobSecretApi = exports.JobSecretApiFactory = exports.JobSecretApiFp = exports.JobSecretApiAxiosParamCreator = exports.JobMainCallsApi = exports.JobMainCallsApiFactory = exports.JobMainCallsApiFp = exports.JobMainCallsApiAxiosParamCreator = exports.JobEnvironmentVariableApi = exports.JobEnvironmentVariableApiFactory = exports.JobEnvironmentVariableApiFp = exports.JobEnvironmentVariableApiAxiosParamCreator = exports.JobDeploymentRestrictionApi = exports.JobDeploymentRestrictionApiFactory = exports.JobDeploymentRestrictionApiFp = exports.JobDeploymentRestrictionApiAxiosParamCreator = exports.JobDeploymentHistoryApi = exports.JobDeploymentHistoryApiFactory = exports.JobDeploymentHistoryApiFp = exports.JobDeploymentHistoryApiAxiosParamCreator = exports.JobConfigurationApi = exports.JobConfigurationApiFactory = exports.JobConfigurationApiFp = void 0;
|
|
35
|
+
exports.ProjectSecretApiAxiosParamCreator = exports.ProjectMainCallsApi = exports.ProjectMainCallsApiFactory = exports.ProjectMainCallsApiFp = exports.ProjectMainCallsApiAxiosParamCreator = exports.ProjectEnvironmentVariableApi = exports.ProjectEnvironmentVariableApiFactory = exports.ProjectEnvironmentVariableApiFp = exports.ProjectEnvironmentVariableApiAxiosParamCreator = exports.ProjectDeploymentRuleApi = exports.ProjectDeploymentRuleApiFactory = exports.ProjectDeploymentRuleApiFp = exports.ProjectDeploymentRuleApiAxiosParamCreator = exports.PlatformConfigurationApi = exports.PlatformConfigurationApiFactory = exports.PlatformConfigurationApiFp = exports.PlatformConfigurationApiAxiosParamCreator = exports.OrganizationWebhookApi = exports.OrganizationWebhookApiFactory = exports.OrganizationWebhookApiFp = exports.OrganizationWebhookApiAxiosParamCreator = exports.OrganizationPolicyApiTokenApi = exports.OrganizationPolicyApiTokenApiFactory = exports.OrganizationPolicyApiTokenApiFp = exports.OrganizationPolicyApiTokenApiAxiosParamCreator = exports.OrganizationMainCallsApi = exports.OrganizationMainCallsApiFactory = exports.OrganizationMainCallsApiFp = exports.OrganizationMainCallsApiAxiosParamCreator = exports.OrganizationLabelsGroupApi = exports.OrganizationLabelsGroupApiFactory = exports.OrganizationLabelsGroupApiFp = exports.OrganizationLabelsGroupApiAxiosParamCreator = exports.OrganizationEventApi = exports.OrganizationEventApiFactory = exports.OrganizationEventApiFp = exports.OrganizationEventApiAxiosParamCreator = exports.OrganizationEnterpriseConnectionApi = exports.OrganizationEnterpriseConnectionApiFactory = exports.OrganizationEnterpriseConnectionApiFp = exports.OrganizationEnterpriseConnectionApiAxiosParamCreator = exports.OrganizationCustomRoleApi = exports.OrganizationCustomRoleApiFactory = exports.OrganizationCustomRoleApiFp = exports.OrganizationCustomRoleApiAxiosParamCreator = exports.OrganizationClusterLockApi = exports.OrganizationClusterLockApiFactory = exports.OrganizationClusterLockApiFp = exports.OrganizationClusterLockApiAxiosParamCreator = exports.OrganizationApiTokenApi = void 0;
|
|
36
|
+
exports.TerraformsApiFp = exports.TerraformsApiAxiosParamCreator = exports.TerraformResourcesApi = exports.TerraformResourcesApiFactory = exports.TerraformResourcesApiFp = exports.TerraformResourcesApiAxiosParamCreator = exports.TerraformMainCallsApi = exports.TerraformMainCallsApiFactory = exports.TerraformMainCallsApiFp = exports.TerraformMainCallsApiAxiosParamCreator = exports.TerraformDeploymentRestrictionApi = exports.TerraformDeploymentRestrictionApiFactory = exports.TerraformDeploymentRestrictionApiFp = exports.TerraformDeploymentRestrictionApiAxiosParamCreator = exports.TerraformDeploymentHistoryApi = exports.TerraformDeploymentHistoryApiFactory = exports.TerraformDeploymentHistoryApiFp = exports.TerraformDeploymentHistoryApiAxiosParamCreator = exports.TerraformConfigurationApi = exports.TerraformConfigurationApiFactory = exports.TerraformConfigurationApiFp = exports.TerraformConfigurationApiAxiosParamCreator = exports.TerraformActionsApi = exports.TerraformActionsApiFactory = exports.TerraformActionsApiFp = exports.TerraformActionsApiAxiosParamCreator = exports.GetIngressDeploymentStatusServiceTypeEnum = exports.ServiceStatusApi = exports.ServiceStatusApiFactory = exports.ServiceStatusApiFp = exports.ServiceStatusApiAxiosParamCreator = exports.ServiceMainCallsApi = exports.ServiceMainCallsApiFactory = exports.ServiceMainCallsApiFp = exports.ServiceMainCallsApiAxiosParamCreator = exports.SecretManagerAccessApi = exports.SecretManagerAccessApiFactory = exports.SecretManagerAccessApiFp = exports.SecretManagerAccessApiAxiosParamCreator = exports.ReferralRewardsApi = exports.ReferralRewardsApiFactory = exports.ReferralRewardsApiFp = exports.ReferralRewardsApiAxiosParamCreator = exports.ProjectsApi = exports.ProjectsApiFactory = exports.ProjectsApiFp = exports.ProjectsApiAxiosParamCreator = exports.ProjectSecretApi = exports.ProjectSecretApiFactory = exports.ProjectSecretApiFp = void 0;
|
|
37
|
+
exports.VariableMainCallsApi = exports.VariableMainCallsApiFactory = exports.VariableMainCallsApiFp = exports.VariableMainCallsApiAxiosParamCreator = exports.UserSignUpApi = exports.UserSignUpApiFactory = exports.UserSignUpApiFp = exports.UserSignUpApiAxiosParamCreator = exports.TerraformsApi = exports.TerraformsApiFactory = void 0;
|
|
38
38
|
const axios_1 = require("axios");
|
|
39
39
|
// Some imports not used depending on template conditions
|
|
40
40
|
// @ts-ignore
|
|
@@ -1057,6 +1057,15 @@ exports.LinkedServiceTypeEnum = {
|
|
|
1057
1057
|
HELM: 'HELM',
|
|
1058
1058
|
TERRAFORM: 'TERRAFORM'
|
|
1059
1059
|
};
|
|
1060
|
+
/**
|
|
1061
|
+
* ORGANIZATION: usable by every member who can edit an agentic workflow. USER: personal to the member who created it; only that member can attach or edit it.
|
|
1062
|
+
* @export
|
|
1063
|
+
* @enum {string}
|
|
1064
|
+
*/
|
|
1065
|
+
exports.McpServerScope = {
|
|
1066
|
+
ORGANIZATION: 'ORGANIZATION',
|
|
1067
|
+
USER: 'USER'
|
|
1068
|
+
};
|
|
1060
1069
|
exports.MetricsConfigurationManagedByQoveryKindEnum = {
|
|
1061
1070
|
MANAGED_BY_QOVERY: 'MANAGED_BY_QOVERY'
|
|
1062
1071
|
};
|
|
@@ -2001,6 +2010,40 @@ const AgenticWorkflowsApiAxiosParamCreator = function (configuration) {
|
|
|
2001
2010
|
options: localVarRequestOptions,
|
|
2002
2011
|
};
|
|
2003
2012
|
}),
|
|
2013
|
+
/**
|
|
2014
|
+
* Deploy the agentic workflow service so its configuration can be tested. Routine runs of the workflow are triggered by its webhook or its schedule, not by this endpoint.
|
|
2015
|
+
* @summary Deploy an agentic workflow
|
|
2016
|
+
* @param {string} agenticWorkflowId
|
|
2017
|
+
* @param {*} [options] Override http request option.
|
|
2018
|
+
* @throws {RequiredError}
|
|
2019
|
+
*/
|
|
2020
|
+
deployAgenticWorkflow: (agenticWorkflowId_1, ...args_1) => __awaiter(this, [agenticWorkflowId_1, ...args_1], void 0, function* (agenticWorkflowId, options = {}) {
|
|
2021
|
+
// verify required parameter 'agenticWorkflowId' is not null or undefined
|
|
2022
|
+
(0, common_1.assertParamExists)('deployAgenticWorkflow', 'agenticWorkflowId', agenticWorkflowId);
|
|
2023
|
+
const localVarPath = `/agenticWorkflow/{agenticWorkflowId}/deploy`
|
|
2024
|
+
.replace(`{${"agenticWorkflowId"}}`, encodeURIComponent(String(agenticWorkflowId)));
|
|
2025
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2026
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
2027
|
+
let baseOptions;
|
|
2028
|
+
if (configuration) {
|
|
2029
|
+
baseOptions = configuration.baseOptions;
|
|
2030
|
+
}
|
|
2031
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
2032
|
+
const localVarHeaderParameter = {};
|
|
2033
|
+
const localVarQueryParameter = {};
|
|
2034
|
+
// authentication ApiKeyAuth required
|
|
2035
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
|
|
2036
|
+
// authentication bearerAuth required
|
|
2037
|
+
// http bearer authentication required
|
|
2038
|
+
yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
|
|
2039
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
2040
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2041
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2042
|
+
return {
|
|
2043
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
2044
|
+
options: localVarRequestOptions,
|
|
2045
|
+
};
|
|
2046
|
+
}),
|
|
2004
2047
|
/**
|
|
2005
2048
|
*
|
|
2006
2049
|
* @summary Edit an agentic workflow
|
|
@@ -2204,6 +2247,22 @@ const AgenticWorkflowsApiFp = function (configuration) {
|
|
|
2204
2247
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2205
2248
|
});
|
|
2206
2249
|
},
|
|
2250
|
+
/**
|
|
2251
|
+
* Deploy the agentic workflow service so its configuration can be tested. Routine runs of the workflow are triggered by its webhook or its schedule, not by this endpoint.
|
|
2252
|
+
* @summary Deploy an agentic workflow
|
|
2253
|
+
* @param {string} agenticWorkflowId
|
|
2254
|
+
* @param {*} [options] Override http request option.
|
|
2255
|
+
* @throws {RequiredError}
|
|
2256
|
+
*/
|
|
2257
|
+
deployAgenticWorkflow(agenticWorkflowId, options) {
|
|
2258
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2259
|
+
var _a, _b, _c;
|
|
2260
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.deployAgenticWorkflow(agenticWorkflowId, options);
|
|
2261
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2262
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['AgenticWorkflowsApi.deployAgenticWorkflow']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
2263
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2264
|
+
});
|
|
2265
|
+
},
|
|
2207
2266
|
/**
|
|
2208
2267
|
*
|
|
2209
2268
|
* @summary Edit an agentic workflow
|
|
@@ -2312,6 +2371,16 @@ const AgenticWorkflowsApiFactory = function (configuration, basePath, axios) {
|
|
|
2312
2371
|
deleteAgenticWorkflow(agenticWorkflowId, options) {
|
|
2313
2372
|
return localVarFp.deleteAgenticWorkflow(agenticWorkflowId, options).then((request) => request(axios, basePath));
|
|
2314
2373
|
},
|
|
2374
|
+
/**
|
|
2375
|
+
* Deploy the agentic workflow service so its configuration can be tested. Routine runs of the workflow are triggered by its webhook or its schedule, not by this endpoint.
|
|
2376
|
+
* @summary Deploy an agentic workflow
|
|
2377
|
+
* @param {string} agenticWorkflowId
|
|
2378
|
+
* @param {*} [options] Override http request option.
|
|
2379
|
+
* @throws {RequiredError}
|
|
2380
|
+
*/
|
|
2381
|
+
deployAgenticWorkflow(agenticWorkflowId, options) {
|
|
2382
|
+
return localVarFp.deployAgenticWorkflow(agenticWorkflowId, options).then((request) => request(axios, basePath));
|
|
2383
|
+
},
|
|
2315
2384
|
/**
|
|
2316
2385
|
*
|
|
2317
2386
|
* @summary Edit an agentic workflow
|
|
@@ -2399,6 +2468,17 @@ class AgenticWorkflowsApi extends base_1.BaseAPI {
|
|
|
2399
2468
|
deleteAgenticWorkflow(agenticWorkflowId, options) {
|
|
2400
2469
|
return (0, exports.AgenticWorkflowsApiFp)(this.configuration).deleteAgenticWorkflow(agenticWorkflowId, options).then((request) => request(this.axios, this.basePath));
|
|
2401
2470
|
}
|
|
2471
|
+
/**
|
|
2472
|
+
* Deploy the agentic workflow service so its configuration can be tested. Routine runs of the workflow are triggered by its webhook or its schedule, not by this endpoint.
|
|
2473
|
+
* @summary Deploy an agentic workflow
|
|
2474
|
+
* @param {string} agenticWorkflowId
|
|
2475
|
+
* @param {*} [options] Override http request option.
|
|
2476
|
+
* @throws {RequiredError}
|
|
2477
|
+
* @memberof AgenticWorkflowsApi
|
|
2478
|
+
*/
|
|
2479
|
+
deployAgenticWorkflow(agenticWorkflowId, options) {
|
|
2480
|
+
return (0, exports.AgenticWorkflowsApiFp)(this.configuration).deployAgenticWorkflow(agenticWorkflowId, options).then((request) => request(this.axios, this.basePath));
|
|
2481
|
+
}
|
|
2402
2482
|
/**
|
|
2403
2483
|
*
|
|
2404
2484
|
* @summary Edit an agentic workflow
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -302,7 +302,7 @@ export interface AgenticWorkflowRequest {
|
|
|
302
302
|
*/
|
|
303
303
|
'mcp'?: string;
|
|
304
304
|
/**
|
|
305
|
-
*
|
|
305
|
+
* MCP connectors attached to this workflow. May include a USER-scoped connector, which only its owner can attach or keep attached when saving.
|
|
306
306
|
* @type {Array<string>}
|
|
307
307
|
* @memberof AgenticWorkflowRequest
|
|
308
308
|
*/
|
|
@@ -466,7 +466,7 @@ export interface AgenticWorkflowResponse {
|
|
|
466
466
|
*/
|
|
467
467
|
'mcp': string;
|
|
468
468
|
/**
|
|
469
|
-
*
|
|
469
|
+
* MCP connectors attached to this workflow. May include a USER-scoped connector, which only its owner can attach or keep attached when saving.
|
|
470
470
|
* @type {Array<string>}
|
|
471
471
|
* @memberof AgenticWorkflowResponse
|
|
472
472
|
*/
|
|
@@ -11205,6 +11205,12 @@ export interface DeployAllRequest {
|
|
|
11205
11205
|
* @memberof DeployAllRequest
|
|
11206
11206
|
*/
|
|
11207
11207
|
'terraforms'?: Array<TerraformDeployRequest>;
|
|
11208
|
+
/**
|
|
11209
|
+
*
|
|
11210
|
+
* @type {Array<string>}
|
|
11211
|
+
* @memberof DeployAllRequest
|
|
11212
|
+
*/
|
|
11213
|
+
'agentic_workflows'?: Array<string>;
|
|
11208
11214
|
}
|
|
11209
11215
|
/**
|
|
11210
11216
|
*
|
|
@@ -19479,7 +19485,7 @@ export interface ManagedDatabaseTypeResponseList {
|
|
|
19479
19485
|
*/
|
|
19480
19486
|
export interface McpServerRequest {
|
|
19481
19487
|
/**
|
|
19482
|
-
*
|
|
19488
|
+
* MCP server name, unique per scope owner within the organization
|
|
19483
19489
|
* @type {string}
|
|
19484
19490
|
* @memberof McpServerRequest
|
|
19485
19491
|
*/
|
|
@@ -19504,6 +19510,12 @@ export interface McpServerRequest {
|
|
|
19504
19510
|
'headers'?: {
|
|
19505
19511
|
[key: string]: string;
|
|
19506
19512
|
};
|
|
19513
|
+
/**
|
|
19514
|
+
* Cannot be changed after creation. On create, omitting it means ORGANIZATION, which requires the MANAGE_INFRASTRUCTURE permission; creating a USER connector requires CREATE_PROJECT. On edit, omitting it leaves the connector\'s scope unchanged, and stating a scope that differs from the connector\'s is refused with 400.
|
|
19515
|
+
* @type {McpServerScope}
|
|
19516
|
+
* @memberof McpServerRequest
|
|
19517
|
+
*/
|
|
19518
|
+
'scope'?: McpServerScope;
|
|
19507
19519
|
}
|
|
19508
19520
|
/**
|
|
19509
19521
|
*
|
|
@@ -19553,6 +19565,30 @@ export interface McpServerResponse {
|
|
|
19553
19565
|
* @memberof McpServerResponse
|
|
19554
19566
|
*/
|
|
19555
19567
|
'header_names': Set<string>;
|
|
19568
|
+
/**
|
|
19569
|
+
*
|
|
19570
|
+
* @type {McpServerScope}
|
|
19571
|
+
* @memberof McpServerResponse
|
|
19572
|
+
*/
|
|
19573
|
+
'scope': McpServerScope;
|
|
19574
|
+
/**
|
|
19575
|
+
* Identity of the owning member. Null for an ORGANIZATION connector.
|
|
19576
|
+
* @type {string}
|
|
19577
|
+
* @memberof McpServerResponse
|
|
19578
|
+
*/
|
|
19579
|
+
'owner_user_sub'?: string | null;
|
|
19580
|
+
/**
|
|
19581
|
+
* Display name of the owning member. Null for an ORGANIZATION connector.
|
|
19582
|
+
* @type {string}
|
|
19583
|
+
* @memberof McpServerResponse
|
|
19584
|
+
*/
|
|
19585
|
+
'owner_name'?: string | null;
|
|
19586
|
+
/**
|
|
19587
|
+
* Whether the member making this request may attach the connector to an agentic workflow. Computed per caller: an organization admin sees every USER connector but can attach none of them, so a picker must use this rather than scope alone.
|
|
19588
|
+
* @type {boolean}
|
|
19589
|
+
* @memberof McpServerResponse
|
|
19590
|
+
*/
|
|
19591
|
+
'attachable': boolean;
|
|
19556
19592
|
}
|
|
19557
19593
|
/**
|
|
19558
19594
|
*
|
|
@@ -19567,6 +19603,16 @@ export interface McpServerResponseList {
|
|
|
19567
19603
|
*/
|
|
19568
19604
|
'results': Array<McpServerResponse>;
|
|
19569
19605
|
}
|
|
19606
|
+
/**
|
|
19607
|
+
* ORGANIZATION: usable by every member who can edit an agentic workflow. USER: personal to the member who created it; only that member can attach or edit it.
|
|
19608
|
+
* @export
|
|
19609
|
+
* @enum {string}
|
|
19610
|
+
*/
|
|
19611
|
+
export declare const McpServerScope: {
|
|
19612
|
+
readonly ORGANIZATION: "ORGANIZATION";
|
|
19613
|
+
readonly USER: "USER";
|
|
19614
|
+
};
|
|
19615
|
+
export type McpServerScope = typeof McpServerScope[keyof typeof McpServerScope];
|
|
19570
19616
|
/**
|
|
19571
19617
|
*
|
|
19572
19618
|
* @export
|
|
@@ -27146,6 +27192,14 @@ export declare const AgenticWorkflowsApiAxiosParamCreator: (configuration?: Conf
|
|
|
27146
27192
|
* @throws {RequiredError}
|
|
27147
27193
|
*/
|
|
27148
27194
|
deleteAgenticWorkflow: (agenticWorkflowId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27195
|
+
/**
|
|
27196
|
+
* Deploy the agentic workflow service so its configuration can be tested. Routine runs of the workflow are triggered by its webhook or its schedule, not by this endpoint.
|
|
27197
|
+
* @summary Deploy an agentic workflow
|
|
27198
|
+
* @param {string} agenticWorkflowId
|
|
27199
|
+
* @param {*} [options] Override http request option.
|
|
27200
|
+
* @throws {RequiredError}
|
|
27201
|
+
*/
|
|
27202
|
+
deployAgenticWorkflow: (agenticWorkflowId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27149
27203
|
/**
|
|
27150
27204
|
*
|
|
27151
27205
|
* @summary Edit an agentic workflow
|
|
@@ -27212,6 +27266,14 @@ export declare const AgenticWorkflowsApiFp: (configuration?: Configuration) => {
|
|
|
27212
27266
|
* @throws {RequiredError}
|
|
27213
27267
|
*/
|
|
27214
27268
|
deleteAgenticWorkflow(agenticWorkflowId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Status>>;
|
|
27269
|
+
/**
|
|
27270
|
+
* Deploy the agentic workflow service so its configuration can be tested. Routine runs of the workflow are triggered by its webhook or its schedule, not by this endpoint.
|
|
27271
|
+
* @summary Deploy an agentic workflow
|
|
27272
|
+
* @param {string} agenticWorkflowId
|
|
27273
|
+
* @param {*} [options] Override http request option.
|
|
27274
|
+
* @throws {RequiredError}
|
|
27275
|
+
*/
|
|
27276
|
+
deployAgenticWorkflow(agenticWorkflowId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Status>>;
|
|
27215
27277
|
/**
|
|
27216
27278
|
*
|
|
27217
27279
|
* @summary Edit an agentic workflow
|
|
@@ -27278,6 +27340,14 @@ export declare const AgenticWorkflowsApiFactory: (configuration?: Configuration,
|
|
|
27278
27340
|
* @throws {RequiredError}
|
|
27279
27341
|
*/
|
|
27280
27342
|
deleteAgenticWorkflow(agenticWorkflowId: string, options?: RawAxiosRequestConfig): AxiosPromise<Status>;
|
|
27343
|
+
/**
|
|
27344
|
+
* Deploy the agentic workflow service so its configuration can be tested. Routine runs of the workflow are triggered by its webhook or its schedule, not by this endpoint.
|
|
27345
|
+
* @summary Deploy an agentic workflow
|
|
27346
|
+
* @param {string} agenticWorkflowId
|
|
27347
|
+
* @param {*} [options] Override http request option.
|
|
27348
|
+
* @throws {RequiredError}
|
|
27349
|
+
*/
|
|
27350
|
+
deployAgenticWorkflow(agenticWorkflowId: string, options?: RawAxiosRequestConfig): AxiosPromise<Status>;
|
|
27281
27351
|
/**
|
|
27282
27352
|
*
|
|
27283
27353
|
* @summary Edit an agentic workflow
|
|
@@ -27349,6 +27419,15 @@ export declare class AgenticWorkflowsApi extends BaseAPI {
|
|
|
27349
27419
|
* @memberof AgenticWorkflowsApi
|
|
27350
27420
|
*/
|
|
27351
27421
|
deleteAgenticWorkflow(agenticWorkflowId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Status, any, {}>>;
|
|
27422
|
+
/**
|
|
27423
|
+
* Deploy the agentic workflow service so its configuration can be tested. Routine runs of the workflow are triggered by its webhook or its schedule, not by this endpoint.
|
|
27424
|
+
* @summary Deploy an agentic workflow
|
|
27425
|
+
* @param {string} agenticWorkflowId
|
|
27426
|
+
* @param {*} [options] Override http request option.
|
|
27427
|
+
* @throws {RequiredError}
|
|
27428
|
+
* @memberof AgenticWorkflowsApi
|
|
27429
|
+
*/
|
|
27430
|
+
deployAgenticWorkflow(agenticWorkflowId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Status, any, {}>>;
|
|
27352
27431
|
/**
|
|
27353
27432
|
*
|
|
27354
27433
|
* @summary Edit an agentic workflow
|
package/dist/esm/api.js
CHANGED
|
@@ -1042,6 +1042,15 @@ export const LinkedServiceTypeEnum = {
|
|
|
1042
1042
|
HELM: 'HELM',
|
|
1043
1043
|
TERRAFORM: 'TERRAFORM'
|
|
1044
1044
|
};
|
|
1045
|
+
/**
|
|
1046
|
+
* ORGANIZATION: usable by every member who can edit an agentic workflow. USER: personal to the member who created it; only that member can attach or edit it.
|
|
1047
|
+
* @export
|
|
1048
|
+
* @enum {string}
|
|
1049
|
+
*/
|
|
1050
|
+
export const McpServerScope = {
|
|
1051
|
+
ORGANIZATION: 'ORGANIZATION',
|
|
1052
|
+
USER: 'USER'
|
|
1053
|
+
};
|
|
1045
1054
|
export const MetricsConfigurationManagedByQoveryKindEnum = {
|
|
1046
1055
|
MANAGED_BY_QOVERY: 'MANAGED_BY_QOVERY'
|
|
1047
1056
|
};
|
|
@@ -1982,6 +1991,40 @@ export const AgenticWorkflowsApiAxiosParamCreator = function (configuration) {
|
|
|
1982
1991
|
options: localVarRequestOptions,
|
|
1983
1992
|
};
|
|
1984
1993
|
}),
|
|
1994
|
+
/**
|
|
1995
|
+
* Deploy the agentic workflow service so its configuration can be tested. Routine runs of the workflow are triggered by its webhook or its schedule, not by this endpoint.
|
|
1996
|
+
* @summary Deploy an agentic workflow
|
|
1997
|
+
* @param {string} agenticWorkflowId
|
|
1998
|
+
* @param {*} [options] Override http request option.
|
|
1999
|
+
* @throws {RequiredError}
|
|
2000
|
+
*/
|
|
2001
|
+
deployAgenticWorkflow: (agenticWorkflowId_1, ...args_1) => __awaiter(this, [agenticWorkflowId_1, ...args_1], void 0, function* (agenticWorkflowId, options = {}) {
|
|
2002
|
+
// verify required parameter 'agenticWorkflowId' is not null or undefined
|
|
2003
|
+
assertParamExists('deployAgenticWorkflow', 'agenticWorkflowId', agenticWorkflowId);
|
|
2004
|
+
const localVarPath = `/agenticWorkflow/{agenticWorkflowId}/deploy`
|
|
2005
|
+
.replace(`{${"agenticWorkflowId"}}`, encodeURIComponent(String(agenticWorkflowId)));
|
|
2006
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2007
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
2008
|
+
let baseOptions;
|
|
2009
|
+
if (configuration) {
|
|
2010
|
+
baseOptions = configuration.baseOptions;
|
|
2011
|
+
}
|
|
2012
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
2013
|
+
const localVarHeaderParameter = {};
|
|
2014
|
+
const localVarQueryParameter = {};
|
|
2015
|
+
// authentication ApiKeyAuth required
|
|
2016
|
+
yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
|
|
2017
|
+
// authentication bearerAuth required
|
|
2018
|
+
// http bearer authentication required
|
|
2019
|
+
yield setBearerAuthToObject(localVarHeaderParameter, configuration);
|
|
2020
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2021
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2022
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2023
|
+
return {
|
|
2024
|
+
url: toPathString(localVarUrlObj),
|
|
2025
|
+
options: localVarRequestOptions,
|
|
2026
|
+
};
|
|
2027
|
+
}),
|
|
1985
2028
|
/**
|
|
1986
2029
|
*
|
|
1987
2030
|
* @summary Edit an agentic workflow
|
|
@@ -2184,6 +2227,22 @@ export const AgenticWorkflowsApiFp = function (configuration) {
|
|
|
2184
2227
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2185
2228
|
});
|
|
2186
2229
|
},
|
|
2230
|
+
/**
|
|
2231
|
+
* Deploy the agentic workflow service so its configuration can be tested. Routine runs of the workflow are triggered by its webhook or its schedule, not by this endpoint.
|
|
2232
|
+
* @summary Deploy an agentic workflow
|
|
2233
|
+
* @param {string} agenticWorkflowId
|
|
2234
|
+
* @param {*} [options] Override http request option.
|
|
2235
|
+
* @throws {RequiredError}
|
|
2236
|
+
*/
|
|
2237
|
+
deployAgenticWorkflow(agenticWorkflowId, options) {
|
|
2238
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
2239
|
+
var _a, _b, _c;
|
|
2240
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.deployAgenticWorkflow(agenticWorkflowId, options);
|
|
2241
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2242
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['AgenticWorkflowsApi.deployAgenticWorkflow']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
2243
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2244
|
+
});
|
|
2245
|
+
},
|
|
2187
2246
|
/**
|
|
2188
2247
|
*
|
|
2189
2248
|
* @summary Edit an agentic workflow
|
|
@@ -2291,6 +2350,16 @@ export const AgenticWorkflowsApiFactory = function (configuration, basePath, axi
|
|
|
2291
2350
|
deleteAgenticWorkflow(agenticWorkflowId, options) {
|
|
2292
2351
|
return localVarFp.deleteAgenticWorkflow(agenticWorkflowId, options).then((request) => request(axios, basePath));
|
|
2293
2352
|
},
|
|
2353
|
+
/**
|
|
2354
|
+
* Deploy the agentic workflow service so its configuration can be tested. Routine runs of the workflow are triggered by its webhook or its schedule, not by this endpoint.
|
|
2355
|
+
* @summary Deploy an agentic workflow
|
|
2356
|
+
* @param {string} agenticWorkflowId
|
|
2357
|
+
* @param {*} [options] Override http request option.
|
|
2358
|
+
* @throws {RequiredError}
|
|
2359
|
+
*/
|
|
2360
|
+
deployAgenticWorkflow(agenticWorkflowId, options) {
|
|
2361
|
+
return localVarFp.deployAgenticWorkflow(agenticWorkflowId, options).then((request) => request(axios, basePath));
|
|
2362
|
+
},
|
|
2294
2363
|
/**
|
|
2295
2364
|
*
|
|
2296
2365
|
* @summary Edit an agentic workflow
|
|
@@ -2377,6 +2446,17 @@ export class AgenticWorkflowsApi extends BaseAPI {
|
|
|
2377
2446
|
deleteAgenticWorkflow(agenticWorkflowId, options) {
|
|
2378
2447
|
return AgenticWorkflowsApiFp(this.configuration).deleteAgenticWorkflow(agenticWorkflowId, options).then((request) => request(this.axios, this.basePath));
|
|
2379
2448
|
}
|
|
2449
|
+
/**
|
|
2450
|
+
* Deploy the agentic workflow service so its configuration can be tested. Routine runs of the workflow are triggered by its webhook or its schedule, not by this endpoint.
|
|
2451
|
+
* @summary Deploy an agentic workflow
|
|
2452
|
+
* @param {string} agenticWorkflowId
|
|
2453
|
+
* @param {*} [options] Override http request option.
|
|
2454
|
+
* @throws {RequiredError}
|
|
2455
|
+
* @memberof AgenticWorkflowsApi
|
|
2456
|
+
*/
|
|
2457
|
+
deployAgenticWorkflow(agenticWorkflowId, options) {
|
|
2458
|
+
return AgenticWorkflowsApiFp(this.configuration).deployAgenticWorkflow(agenticWorkflowId, options).then((request) => request(this.axios, this.basePath));
|
|
2459
|
+
}
|
|
2380
2460
|
/**
|
|
2381
2461
|
*
|
|
2382
2462
|
* @summary Edit an agentic workflow
|