qovery-typescript-axios 1.1.970 → 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 +82 -0
- package/dist/api.d.ts +39 -0
- package/dist/api.js +71 -0
- package/dist/esm/api.d.ts +39 -0
- package/dist/esm/api.js +71 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -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
|
*
|
|
@@ -28251,6 +28257,47 @@ export const AgenticWorkflowsApiAxiosParamCreator = function (configuration?: Co
|
|
|
28251
28257
|
|
|
28252
28258
|
|
|
28253
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
|
+
|
|
28254
28301
|
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
28255
28302
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
28256
28303
|
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
@@ -28484,6 +28531,19 @@ export const AgenticWorkflowsApiFp = function(configuration?: Configuration) {
|
|
|
28484
28531
|
const localVarOperationServerBasePath = operationServerMap['AgenticWorkflowsApi.deleteAgenticWorkflow']?.[localVarOperationServerIndex]?.url;
|
|
28485
28532
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
28486
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
|
+
},
|
|
28487
28547
|
/**
|
|
28488
28548
|
*
|
|
28489
28549
|
* @summary Edit an agentic workflow
|
|
@@ -28580,6 +28640,16 @@ export const AgenticWorkflowsApiFactory = function (configuration?: Configuratio
|
|
|
28580
28640
|
deleteAgenticWorkflow(agenticWorkflowId: string, options?: RawAxiosRequestConfig): AxiosPromise<Status> {
|
|
28581
28641
|
return localVarFp.deleteAgenticWorkflow(agenticWorkflowId, options).then((request) => request(axios, basePath));
|
|
28582
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
|
+
},
|
|
28583
28653
|
/**
|
|
28584
28654
|
*
|
|
28585
28655
|
* @summary Edit an agentic workflow
|
|
@@ -28670,6 +28740,18 @@ export class AgenticWorkflowsApi extends BaseAPI {
|
|
|
28670
28740
|
return AgenticWorkflowsApiFp(this.configuration).deleteAgenticWorkflow(agenticWorkflowId, options).then((request) => request(this.axios, this.basePath));
|
|
28671
28741
|
}
|
|
28672
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
|
+
|
|
28673
28755
|
/**
|
|
28674
28756
|
*
|
|
28675
28757
|
* @summary Edit an agentic workflow
|
package/dist/api.d.ts
CHANGED
|
@@ -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
|
*
|
|
@@ -27186,6 +27192,14 @@ export declare const AgenticWorkflowsApiAxiosParamCreator: (configuration?: Conf
|
|
|
27186
27192
|
* @throws {RequiredError}
|
|
27187
27193
|
*/
|
|
27188
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>;
|
|
27189
27203
|
/**
|
|
27190
27204
|
*
|
|
27191
27205
|
* @summary Edit an agentic workflow
|
|
@@ -27252,6 +27266,14 @@ export declare const AgenticWorkflowsApiFp: (configuration?: Configuration) => {
|
|
|
27252
27266
|
* @throws {RequiredError}
|
|
27253
27267
|
*/
|
|
27254
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>>;
|
|
27255
27277
|
/**
|
|
27256
27278
|
*
|
|
27257
27279
|
* @summary Edit an agentic workflow
|
|
@@ -27318,6 +27340,14 @@ export declare const AgenticWorkflowsApiFactory: (configuration?: Configuration,
|
|
|
27318
27340
|
* @throws {RequiredError}
|
|
27319
27341
|
*/
|
|
27320
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>;
|
|
27321
27351
|
/**
|
|
27322
27352
|
*
|
|
27323
27353
|
* @summary Edit an agentic workflow
|
|
@@ -27389,6 +27419,15 @@ export declare class AgenticWorkflowsApi extends BaseAPI {
|
|
|
27389
27419
|
* @memberof AgenticWorkflowsApi
|
|
27390
27420
|
*/
|
|
27391
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, {}>>;
|
|
27392
27431
|
/**
|
|
27393
27432
|
*
|
|
27394
27433
|
* @summary Edit an agentic workflow
|
package/dist/api.js
CHANGED
|
@@ -2010,6 +2010,40 @@ const AgenticWorkflowsApiAxiosParamCreator = function (configuration) {
|
|
|
2010
2010
|
options: localVarRequestOptions,
|
|
2011
2011
|
};
|
|
2012
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
|
+
}),
|
|
2013
2047
|
/**
|
|
2014
2048
|
*
|
|
2015
2049
|
* @summary Edit an agentic workflow
|
|
@@ -2213,6 +2247,22 @@ const AgenticWorkflowsApiFp = function (configuration) {
|
|
|
2213
2247
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2214
2248
|
});
|
|
2215
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
|
+
},
|
|
2216
2266
|
/**
|
|
2217
2267
|
*
|
|
2218
2268
|
* @summary Edit an agentic workflow
|
|
@@ -2321,6 +2371,16 @@ const AgenticWorkflowsApiFactory = function (configuration, basePath, axios) {
|
|
|
2321
2371
|
deleteAgenticWorkflow(agenticWorkflowId, options) {
|
|
2322
2372
|
return localVarFp.deleteAgenticWorkflow(agenticWorkflowId, options).then((request) => request(axios, basePath));
|
|
2323
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
|
+
},
|
|
2324
2384
|
/**
|
|
2325
2385
|
*
|
|
2326
2386
|
* @summary Edit an agentic workflow
|
|
@@ -2408,6 +2468,17 @@ class AgenticWorkflowsApi extends base_1.BaseAPI {
|
|
|
2408
2468
|
deleteAgenticWorkflow(agenticWorkflowId, options) {
|
|
2409
2469
|
return (0, exports.AgenticWorkflowsApiFp)(this.configuration).deleteAgenticWorkflow(agenticWorkflowId, options).then((request) => request(this.axios, this.basePath));
|
|
2410
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
|
+
}
|
|
2411
2482
|
/**
|
|
2412
2483
|
*
|
|
2413
2484
|
* @summary Edit an agentic workflow
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -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
|
*
|
|
@@ -27186,6 +27192,14 @@ export declare const AgenticWorkflowsApiAxiosParamCreator: (configuration?: Conf
|
|
|
27186
27192
|
* @throws {RequiredError}
|
|
27187
27193
|
*/
|
|
27188
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>;
|
|
27189
27203
|
/**
|
|
27190
27204
|
*
|
|
27191
27205
|
* @summary Edit an agentic workflow
|
|
@@ -27252,6 +27266,14 @@ export declare const AgenticWorkflowsApiFp: (configuration?: Configuration) => {
|
|
|
27252
27266
|
* @throws {RequiredError}
|
|
27253
27267
|
*/
|
|
27254
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>>;
|
|
27255
27277
|
/**
|
|
27256
27278
|
*
|
|
27257
27279
|
* @summary Edit an agentic workflow
|
|
@@ -27318,6 +27340,14 @@ export declare const AgenticWorkflowsApiFactory: (configuration?: Configuration,
|
|
|
27318
27340
|
* @throws {RequiredError}
|
|
27319
27341
|
*/
|
|
27320
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>;
|
|
27321
27351
|
/**
|
|
27322
27352
|
*
|
|
27323
27353
|
* @summary Edit an agentic workflow
|
|
@@ -27389,6 +27419,15 @@ export declare class AgenticWorkflowsApi extends BaseAPI {
|
|
|
27389
27419
|
* @memberof AgenticWorkflowsApi
|
|
27390
27420
|
*/
|
|
27391
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, {}>>;
|
|
27392
27431
|
/**
|
|
27393
27432
|
*
|
|
27394
27433
|
* @summary Edit an agentic workflow
|
package/dist/esm/api.js
CHANGED
|
@@ -1991,6 +1991,40 @@ export const AgenticWorkflowsApiAxiosParamCreator = function (configuration) {
|
|
|
1991
1991
|
options: localVarRequestOptions,
|
|
1992
1992
|
};
|
|
1993
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
|
+
}),
|
|
1994
2028
|
/**
|
|
1995
2029
|
*
|
|
1996
2030
|
* @summary Edit an agentic workflow
|
|
@@ -2193,6 +2227,22 @@ export const AgenticWorkflowsApiFp = function (configuration) {
|
|
|
2193
2227
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2194
2228
|
});
|
|
2195
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
|
+
},
|
|
2196
2246
|
/**
|
|
2197
2247
|
*
|
|
2198
2248
|
* @summary Edit an agentic workflow
|
|
@@ -2300,6 +2350,16 @@ export const AgenticWorkflowsApiFactory = function (configuration, basePath, axi
|
|
|
2300
2350
|
deleteAgenticWorkflow(agenticWorkflowId, options) {
|
|
2301
2351
|
return localVarFp.deleteAgenticWorkflow(agenticWorkflowId, options).then((request) => request(axios, basePath));
|
|
2302
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
|
+
},
|
|
2303
2363
|
/**
|
|
2304
2364
|
*
|
|
2305
2365
|
* @summary Edit an agentic workflow
|
|
@@ -2386,6 +2446,17 @@ export class AgenticWorkflowsApi extends BaseAPI {
|
|
|
2386
2446
|
deleteAgenticWorkflow(agenticWorkflowId, options) {
|
|
2387
2447
|
return AgenticWorkflowsApiFp(this.configuration).deleteAgenticWorkflow(agenticWorkflowId, options).then((request) => request(this.axios, this.basePath));
|
|
2388
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
|
+
}
|
|
2389
2460
|
/**
|
|
2390
2461
|
*
|
|
2391
2462
|
* @summary Edit an agentic workflow
|