qovery-typescript-axios 1.1.863 → 1.1.865

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/api.ts CHANGED
@@ -10382,63 +10382,6 @@ export interface EnvironmentOverviewResponse {
10382
10382
  }
10383
10383
 
10384
10384
 
10385
- /**
10386
- *
10387
- * @export
10388
- * @interface EnvironmentOverviewResponseDeprecated
10389
- */
10390
- export interface EnvironmentOverviewResponseDeprecated {
10391
- /**
10392
- *
10393
- * @type {string}
10394
- * @memberof EnvironmentOverviewResponseDeprecated
10395
- */
10396
- 'id': string;
10397
- /**
10398
- *
10399
- * @type {string}
10400
- * @memberof EnvironmentOverviewResponseDeprecated
10401
- */
10402
- 'created_at': string;
10403
- /**
10404
- *
10405
- * @type {string}
10406
- * @memberof EnvironmentOverviewResponseDeprecated
10407
- */
10408
- 'updated_at': string;
10409
- /**
10410
- *
10411
- * @type {string}
10412
- * @memberof EnvironmentOverviewResponseDeprecated
10413
- */
10414
- 'name': string;
10415
- /**
10416
- *
10417
- * @type {EnvironmentModeEnum}
10418
- * @memberof EnvironmentOverviewResponseDeprecated
10419
- */
10420
- 'mode': EnvironmentModeEnum;
10421
- /**
10422
- *
10423
- * @type {ClusterOverviewResponse}
10424
- * @memberof EnvironmentOverviewResponseDeprecated
10425
- */
10426
- 'cluster'?: ClusterOverviewResponse;
10427
- /**
10428
- *
10429
- * @type {number}
10430
- * @memberof EnvironmentOverviewResponseDeprecated
10431
- */
10432
- 'service_count': number;
10433
- /**
10434
- *
10435
- * @type {EnvironmentStatus}
10436
- * @memberof EnvironmentOverviewResponseDeprecated
10437
- */
10438
- 'deployment_status'?: EnvironmentStatus;
10439
- }
10440
-
10441
-
10442
10385
  /**
10443
10386
  *
10444
10387
  * @export
@@ -10452,19 +10395,6 @@ export interface EnvironmentOverviewResponseList {
10452
10395
  */
10453
10396
  'results'?: Array<EnvironmentOverviewResponse>;
10454
10397
  }
10455
- /**
10456
- *
10457
- * @export
10458
- * @interface EnvironmentOverviewResponseListDeprecated
10459
- */
10460
- export interface EnvironmentOverviewResponseListDeprecated {
10461
- /**
10462
- *
10463
- * @type {Array<EnvironmentOverviewResponseDeprecated>}
10464
- * @memberof EnvironmentOverviewResponseListDeprecated
10465
- */
10466
- 'results'?: Array<EnvironmentOverviewResponseDeprecated>;
10467
- }
10468
10398
  /**
10469
10399
  *
10470
10400
  * @export
@@ -47906,47 +47836,6 @@ export const EnvironmentsApiAxiosParamCreator = function (configuration?: Config
47906
47836
 
47907
47837
 
47908
47838
 
47909
- setSearchParams(localVarUrlObj, localVarQueryParameter);
47910
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
47911
- localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
47912
-
47913
- return {
47914
- url: toPathString(localVarUrlObj),
47915
- options: localVarRequestOptions,
47916
- };
47917
- },
47918
- /**
47919
- * Returns a list of environments with their overview information including deployment status, service count, and cluster details.
47920
- * @summary List environments overview
47921
- * @param {string} projectId Project ID
47922
- * @param {*} [options] Override http request option.
47923
- * @throws {RequiredError}
47924
- */
47925
- getProjectEnvironmentsOverviewDeprecated: async (projectId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
47926
- // verify required parameter 'projectId' is not null or undefined
47927
- assertParamExists('getProjectEnvironmentsOverviewDeprecated', 'projectId', projectId)
47928
- const localVarPath = `/project/{projectId}/environmentOverview`
47929
- .replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
47930
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
47931
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
47932
- let baseOptions;
47933
- if (configuration) {
47934
- baseOptions = configuration.baseOptions;
47935
- }
47936
-
47937
- const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
47938
- const localVarHeaderParameter = {} as any;
47939
- const localVarQueryParameter = {} as any;
47940
-
47941
- // authentication ApiKeyAuth required
47942
- await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
47943
-
47944
- // authentication bearerAuth required
47945
- // http bearer authentication required
47946
- await setBearerAuthToObject(localVarHeaderParameter, configuration)
47947
-
47948
-
47949
-
47950
47839
  setSearchParams(localVarUrlObj, localVarQueryParameter);
47951
47840
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
47952
47841
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
@@ -48088,19 +47977,6 @@ export const EnvironmentsApiFp = function(configuration?: Configuration) {
48088
47977
  const localVarOperationServerBasePath = operationServerMap['EnvironmentsApi.getProjectEnvironmentsOverview']?.[localVarOperationServerIndex]?.url;
48089
47978
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
48090
47979
  },
48091
- /**
48092
- * Returns a list of environments with their overview information including deployment status, service count, and cluster details.
48093
- * @summary List environments overview
48094
- * @param {string} projectId Project ID
48095
- * @param {*} [options] Override http request option.
48096
- * @throws {RequiredError}
48097
- */
48098
- async getProjectEnvironmentsOverviewDeprecated(projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EnvironmentOverviewResponseListDeprecated>> {
48099
- const localVarAxiosArgs = await localVarAxiosParamCreator.getProjectEnvironmentsOverviewDeprecated(projectId, options);
48100
- const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
48101
- const localVarOperationServerBasePath = operationServerMap['EnvironmentsApi.getProjectEnvironmentsOverviewDeprecated']?.[localVarOperationServerIndex]?.url;
48102
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
48103
- },
48104
47980
  /**
48105
47981
  * Returns a list of environments with only their id and status.
48106
47982
  * @summary List environments statuses
@@ -48168,16 +48044,6 @@ export const EnvironmentsApiFactory = function (configuration?: Configuration, b
48168
48044
  getProjectEnvironmentsOverview(projectId: string, options?: RawAxiosRequestConfig): AxiosPromise<EnvironmentOverviewResponseList> {
48169
48045
  return localVarFp.getProjectEnvironmentsOverview(projectId, options).then((request) => request(axios, basePath));
48170
48046
  },
48171
- /**
48172
- * Returns a list of environments with their overview information including deployment status, service count, and cluster details.
48173
- * @summary List environments overview
48174
- * @param {string} projectId Project ID
48175
- * @param {*} [options] Override http request option.
48176
- * @throws {RequiredError}
48177
- */
48178
- getProjectEnvironmentsOverviewDeprecated(projectId: string, options?: RawAxiosRequestConfig): AxiosPromise<EnvironmentOverviewResponseListDeprecated> {
48179
- return localVarFp.getProjectEnvironmentsOverviewDeprecated(projectId, options).then((request) => request(axios, basePath));
48180
- },
48181
48047
  /**
48182
48048
  * Returns a list of environments with only their id and status.
48183
48049
  * @summary List environments statuses
@@ -48245,18 +48111,6 @@ export class EnvironmentsApi extends BaseAPI {
48245
48111
  return EnvironmentsApiFp(this.configuration).getProjectEnvironmentsOverview(projectId, options).then((request) => request(this.axios, this.basePath));
48246
48112
  }
48247
48113
 
48248
- /**
48249
- * Returns a list of environments with their overview information including deployment status, service count, and cluster details.
48250
- * @summary List environments overview
48251
- * @param {string} projectId Project ID
48252
- * @param {*} [options] Override http request option.
48253
- * @throws {RequiredError}
48254
- * @memberof EnvironmentsApi
48255
- */
48256
- public getProjectEnvironmentsOverviewDeprecated(projectId: string, options?: RawAxiosRequestConfig) {
48257
- return EnvironmentsApiFp(this.configuration).getProjectEnvironmentsOverviewDeprecated(projectId, options).then((request) => request(this.axios, this.basePath));
48258
- }
48259
-
48260
48114
  /**
48261
48115
  * Returns a list of environments with only their id and status.
48262
48116
  * @summary List environments statuses
package/dist/api.d.ts CHANGED
@@ -10062,61 +10062,6 @@ export interface EnvironmentOverviewResponse {
10062
10062
  */
10063
10063
  'deployment_status'?: EnvironmentStatus | null;
10064
10064
  }
10065
- /**
10066
- *
10067
- * @export
10068
- * @interface EnvironmentOverviewResponseDeprecated
10069
- */
10070
- export interface EnvironmentOverviewResponseDeprecated {
10071
- /**
10072
- *
10073
- * @type {string}
10074
- * @memberof EnvironmentOverviewResponseDeprecated
10075
- */
10076
- 'id': string;
10077
- /**
10078
- *
10079
- * @type {string}
10080
- * @memberof EnvironmentOverviewResponseDeprecated
10081
- */
10082
- 'created_at': string;
10083
- /**
10084
- *
10085
- * @type {string}
10086
- * @memberof EnvironmentOverviewResponseDeprecated
10087
- */
10088
- 'updated_at': string;
10089
- /**
10090
- *
10091
- * @type {string}
10092
- * @memberof EnvironmentOverviewResponseDeprecated
10093
- */
10094
- 'name': string;
10095
- /**
10096
- *
10097
- * @type {EnvironmentModeEnum}
10098
- * @memberof EnvironmentOverviewResponseDeprecated
10099
- */
10100
- 'mode': EnvironmentModeEnum;
10101
- /**
10102
- *
10103
- * @type {ClusterOverviewResponse}
10104
- * @memberof EnvironmentOverviewResponseDeprecated
10105
- */
10106
- 'cluster'?: ClusterOverviewResponse;
10107
- /**
10108
- *
10109
- * @type {number}
10110
- * @memberof EnvironmentOverviewResponseDeprecated
10111
- */
10112
- 'service_count': number;
10113
- /**
10114
- *
10115
- * @type {EnvironmentStatus}
10116
- * @memberof EnvironmentOverviewResponseDeprecated
10117
- */
10118
- 'deployment_status'?: EnvironmentStatus;
10119
- }
10120
10065
  /**
10121
10066
  *
10122
10067
  * @export
@@ -10130,19 +10075,6 @@ export interface EnvironmentOverviewResponseList {
10130
10075
  */
10131
10076
  'results'?: Array<EnvironmentOverviewResponse>;
10132
10077
  }
10133
- /**
10134
- *
10135
- * @export
10136
- * @interface EnvironmentOverviewResponseListDeprecated
10137
- */
10138
- export interface EnvironmentOverviewResponseListDeprecated {
10139
- /**
10140
- *
10141
- * @type {Array<EnvironmentOverviewResponseDeprecated>}
10142
- * @memberof EnvironmentOverviewResponseListDeprecated
10143
- */
10144
- 'results'?: Array<EnvironmentOverviewResponseDeprecated>;
10145
- }
10146
10078
  /**
10147
10079
  *
10148
10080
  * @export
@@ -33343,14 +33275,6 @@ export declare const EnvironmentsApiAxiosParamCreator: (configuration?: Configur
33343
33275
  * @throws {RequiredError}
33344
33276
  */
33345
33277
  getProjectEnvironmentsOverview: (projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33346
- /**
33347
- * Returns a list of environments with their overview information including deployment status, service count, and cluster details.
33348
- * @summary List environments overview
33349
- * @param {string} projectId Project ID
33350
- * @param {*} [options] Override http request option.
33351
- * @throws {RequiredError}
33352
- */
33353
- getProjectEnvironmentsOverviewDeprecated: (projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33354
33278
  /**
33355
33279
  * Returns a list of environments with only their id and status.
33356
33280
  * @summary List environments statuses
@@ -33398,14 +33322,6 @@ export declare const EnvironmentsApiFp: (configuration?: Configuration) => {
33398
33322
  * @throws {RequiredError}
33399
33323
  */
33400
33324
  getProjectEnvironmentsOverview(projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EnvironmentOverviewResponseList>>;
33401
- /**
33402
- * Returns a list of environments with their overview information including deployment status, service count, and cluster details.
33403
- * @summary List environments overview
33404
- * @param {string} projectId Project ID
33405
- * @param {*} [options] Override http request option.
33406
- * @throws {RequiredError}
33407
- */
33408
- getProjectEnvironmentsOverviewDeprecated(projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EnvironmentOverviewResponseListDeprecated>>;
33409
33325
  /**
33410
33326
  * Returns a list of environments with only their id and status.
33411
33327
  * @summary List environments statuses
@@ -33453,14 +33369,6 @@ export declare const EnvironmentsApiFactory: (configuration?: Configuration, bas
33453
33369
  * @throws {RequiredError}
33454
33370
  */
33455
33371
  getProjectEnvironmentsOverview(projectId: string, options?: RawAxiosRequestConfig): AxiosPromise<EnvironmentOverviewResponseList>;
33456
- /**
33457
- * Returns a list of environments with their overview information including deployment status, service count, and cluster details.
33458
- * @summary List environments overview
33459
- * @param {string} projectId Project ID
33460
- * @param {*} [options] Override http request option.
33461
- * @throws {RequiredError}
33462
- */
33463
- getProjectEnvironmentsOverviewDeprecated(projectId: string, options?: RawAxiosRequestConfig): AxiosPromise<EnvironmentOverviewResponseListDeprecated>;
33464
33372
  /**
33465
33373
  * Returns a list of environments with only their id and status.
33466
33374
  * @summary List environments statuses
@@ -33513,15 +33421,6 @@ export declare class EnvironmentsApi extends BaseAPI {
33513
33421
  * @memberof EnvironmentsApi
33514
33422
  */
33515
33423
  getProjectEnvironmentsOverview(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EnvironmentOverviewResponseList, any, {}>>;
33516
- /**
33517
- * Returns a list of environments with their overview information including deployment status, service count, and cluster details.
33518
- * @summary List environments overview
33519
- * @param {string} projectId Project ID
33520
- * @param {*} [options] Override http request option.
33521
- * @throws {RequiredError}
33522
- * @memberof EnvironmentsApi
33523
- */
33524
- getProjectEnvironmentsOverviewDeprecated(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EnvironmentOverviewResponseListDeprecated, any, {}>>;
33525
33424
  /**
33526
33425
  * Returns a list of environments with only their id and status.
33527
33426
  * @summary List environments statuses
package/dist/api.js CHANGED
@@ -25194,40 +25194,6 @@ const EnvironmentsApiAxiosParamCreator = function (configuration) {
25194
25194
  options: localVarRequestOptions,
25195
25195
  };
25196
25196
  }),
25197
- /**
25198
- * Returns a list of environments with their overview information including deployment status, service count, and cluster details.
25199
- * @summary List environments overview
25200
- * @param {string} projectId Project ID
25201
- * @param {*} [options] Override http request option.
25202
- * @throws {RequiredError}
25203
- */
25204
- getProjectEnvironmentsOverviewDeprecated: (projectId_1, ...args_1) => __awaiter(this, [projectId_1, ...args_1], void 0, function* (projectId, options = {}) {
25205
- // verify required parameter 'projectId' is not null or undefined
25206
- (0, common_1.assertParamExists)('getProjectEnvironmentsOverviewDeprecated', 'projectId', projectId);
25207
- const localVarPath = `/project/{projectId}/environmentOverview`
25208
- .replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
25209
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
25210
- const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
25211
- let baseOptions;
25212
- if (configuration) {
25213
- baseOptions = configuration.baseOptions;
25214
- }
25215
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
25216
- const localVarHeaderParameter = {};
25217
- const localVarQueryParameter = {};
25218
- // authentication ApiKeyAuth required
25219
- yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "Authorization", configuration);
25220
- // authentication bearerAuth required
25221
- // http bearer authentication required
25222
- yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
25223
- (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
25224
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
25225
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
25226
- return {
25227
- url: (0, common_1.toPathString)(localVarUrlObj),
25228
- options: localVarRequestOptions,
25229
- };
25230
- }),
25231
25197
  /**
25232
25198
  * Returns a list of environments with only their id and status.
25233
25199
  * @summary List environments statuses
@@ -25355,22 +25321,6 @@ const EnvironmentsApiFp = function (configuration) {
25355
25321
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
25356
25322
  });
25357
25323
  },
25358
- /**
25359
- * Returns a list of environments with their overview information including deployment status, service count, and cluster details.
25360
- * @summary List environments overview
25361
- * @param {string} projectId Project ID
25362
- * @param {*} [options] Override http request option.
25363
- * @throws {RequiredError}
25364
- */
25365
- getProjectEnvironmentsOverviewDeprecated(projectId, options) {
25366
- return __awaiter(this, void 0, void 0, function* () {
25367
- var _a, _b, _c;
25368
- const localVarAxiosArgs = yield localVarAxiosParamCreator.getProjectEnvironmentsOverviewDeprecated(projectId, options);
25369
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
25370
- const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['EnvironmentsApi.getProjectEnvironmentsOverviewDeprecated']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
25371
- return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
25372
- });
25373
- },
25374
25324
  /**
25375
25325
  * Returns a list of environments with only their id and status.
25376
25326
  * @summary List environments statuses
@@ -25444,16 +25394,6 @@ const EnvironmentsApiFactory = function (configuration, basePath, axios) {
25444
25394
  getProjectEnvironmentsOverview(projectId, options) {
25445
25395
  return localVarFp.getProjectEnvironmentsOverview(projectId, options).then((request) => request(axios, basePath));
25446
25396
  },
25447
- /**
25448
- * Returns a list of environments with their overview information including deployment status, service count, and cluster details.
25449
- * @summary List environments overview
25450
- * @param {string} projectId Project ID
25451
- * @param {*} [options] Override http request option.
25452
- * @throws {RequiredError}
25453
- */
25454
- getProjectEnvironmentsOverviewDeprecated(projectId, options) {
25455
- return localVarFp.getProjectEnvironmentsOverviewDeprecated(projectId, options).then((request) => request(axios, basePath));
25456
- },
25457
25397
  /**
25458
25398
  * Returns a list of environments with only their id and status.
25459
25399
  * @summary List environments statuses
@@ -25518,17 +25458,6 @@ class EnvironmentsApi extends base_1.BaseAPI {
25518
25458
  getProjectEnvironmentsOverview(projectId, options) {
25519
25459
  return (0, exports.EnvironmentsApiFp)(this.configuration).getProjectEnvironmentsOverview(projectId, options).then((request) => request(this.axios, this.basePath));
25520
25460
  }
25521
- /**
25522
- * Returns a list of environments with their overview information including deployment status, service count, and cluster details.
25523
- * @summary List environments overview
25524
- * @param {string} projectId Project ID
25525
- * @param {*} [options] Override http request option.
25526
- * @throws {RequiredError}
25527
- * @memberof EnvironmentsApi
25528
- */
25529
- getProjectEnvironmentsOverviewDeprecated(projectId, options) {
25530
- return (0, exports.EnvironmentsApiFp)(this.configuration).getProjectEnvironmentsOverviewDeprecated(projectId, options).then((request) => request(this.axios, this.basePath));
25531
- }
25532
25461
  /**
25533
25462
  * Returns a list of environments with only their id and status.
25534
25463
  * @summary List environments statuses
package/dist/esm/api.d.ts CHANGED
@@ -10062,61 +10062,6 @@ export interface EnvironmentOverviewResponse {
10062
10062
  */
10063
10063
  'deployment_status'?: EnvironmentStatus | null;
10064
10064
  }
10065
- /**
10066
- *
10067
- * @export
10068
- * @interface EnvironmentOverviewResponseDeprecated
10069
- */
10070
- export interface EnvironmentOverviewResponseDeprecated {
10071
- /**
10072
- *
10073
- * @type {string}
10074
- * @memberof EnvironmentOverviewResponseDeprecated
10075
- */
10076
- 'id': string;
10077
- /**
10078
- *
10079
- * @type {string}
10080
- * @memberof EnvironmentOverviewResponseDeprecated
10081
- */
10082
- 'created_at': string;
10083
- /**
10084
- *
10085
- * @type {string}
10086
- * @memberof EnvironmentOverviewResponseDeprecated
10087
- */
10088
- 'updated_at': string;
10089
- /**
10090
- *
10091
- * @type {string}
10092
- * @memberof EnvironmentOverviewResponseDeprecated
10093
- */
10094
- 'name': string;
10095
- /**
10096
- *
10097
- * @type {EnvironmentModeEnum}
10098
- * @memberof EnvironmentOverviewResponseDeprecated
10099
- */
10100
- 'mode': EnvironmentModeEnum;
10101
- /**
10102
- *
10103
- * @type {ClusterOverviewResponse}
10104
- * @memberof EnvironmentOverviewResponseDeprecated
10105
- */
10106
- 'cluster'?: ClusterOverviewResponse;
10107
- /**
10108
- *
10109
- * @type {number}
10110
- * @memberof EnvironmentOverviewResponseDeprecated
10111
- */
10112
- 'service_count': number;
10113
- /**
10114
- *
10115
- * @type {EnvironmentStatus}
10116
- * @memberof EnvironmentOverviewResponseDeprecated
10117
- */
10118
- 'deployment_status'?: EnvironmentStatus;
10119
- }
10120
10065
  /**
10121
10066
  *
10122
10067
  * @export
@@ -10130,19 +10075,6 @@ export interface EnvironmentOverviewResponseList {
10130
10075
  */
10131
10076
  'results'?: Array<EnvironmentOverviewResponse>;
10132
10077
  }
10133
- /**
10134
- *
10135
- * @export
10136
- * @interface EnvironmentOverviewResponseListDeprecated
10137
- */
10138
- export interface EnvironmentOverviewResponseListDeprecated {
10139
- /**
10140
- *
10141
- * @type {Array<EnvironmentOverviewResponseDeprecated>}
10142
- * @memberof EnvironmentOverviewResponseListDeprecated
10143
- */
10144
- 'results'?: Array<EnvironmentOverviewResponseDeprecated>;
10145
- }
10146
10078
  /**
10147
10079
  *
10148
10080
  * @export
@@ -33343,14 +33275,6 @@ export declare const EnvironmentsApiAxiosParamCreator: (configuration?: Configur
33343
33275
  * @throws {RequiredError}
33344
33276
  */
33345
33277
  getProjectEnvironmentsOverview: (projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33346
- /**
33347
- * Returns a list of environments with their overview information including deployment status, service count, and cluster details.
33348
- * @summary List environments overview
33349
- * @param {string} projectId Project ID
33350
- * @param {*} [options] Override http request option.
33351
- * @throws {RequiredError}
33352
- */
33353
- getProjectEnvironmentsOverviewDeprecated: (projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
33354
33278
  /**
33355
33279
  * Returns a list of environments with only their id and status.
33356
33280
  * @summary List environments statuses
@@ -33398,14 +33322,6 @@ export declare const EnvironmentsApiFp: (configuration?: Configuration) => {
33398
33322
  * @throws {RequiredError}
33399
33323
  */
33400
33324
  getProjectEnvironmentsOverview(projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EnvironmentOverviewResponseList>>;
33401
- /**
33402
- * Returns a list of environments with their overview information including deployment status, service count, and cluster details.
33403
- * @summary List environments overview
33404
- * @param {string} projectId Project ID
33405
- * @param {*} [options] Override http request option.
33406
- * @throws {RequiredError}
33407
- */
33408
- getProjectEnvironmentsOverviewDeprecated(projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EnvironmentOverviewResponseListDeprecated>>;
33409
33325
  /**
33410
33326
  * Returns a list of environments with only their id and status.
33411
33327
  * @summary List environments statuses
@@ -33453,14 +33369,6 @@ export declare const EnvironmentsApiFactory: (configuration?: Configuration, bas
33453
33369
  * @throws {RequiredError}
33454
33370
  */
33455
33371
  getProjectEnvironmentsOverview(projectId: string, options?: RawAxiosRequestConfig): AxiosPromise<EnvironmentOverviewResponseList>;
33456
- /**
33457
- * Returns a list of environments with their overview information including deployment status, service count, and cluster details.
33458
- * @summary List environments overview
33459
- * @param {string} projectId Project ID
33460
- * @param {*} [options] Override http request option.
33461
- * @throws {RequiredError}
33462
- */
33463
- getProjectEnvironmentsOverviewDeprecated(projectId: string, options?: RawAxiosRequestConfig): AxiosPromise<EnvironmentOverviewResponseListDeprecated>;
33464
33372
  /**
33465
33373
  * Returns a list of environments with only their id and status.
33466
33374
  * @summary List environments statuses
@@ -33513,15 +33421,6 @@ export declare class EnvironmentsApi extends BaseAPI {
33513
33421
  * @memberof EnvironmentsApi
33514
33422
  */
33515
33423
  getProjectEnvironmentsOverview(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EnvironmentOverviewResponseList, any, {}>>;
33516
- /**
33517
- * Returns a list of environments with their overview information including deployment status, service count, and cluster details.
33518
- * @summary List environments overview
33519
- * @param {string} projectId Project ID
33520
- * @param {*} [options] Override http request option.
33521
- * @throws {RequiredError}
33522
- * @memberof EnvironmentsApi
33523
- */
33524
- getProjectEnvironmentsOverviewDeprecated(projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EnvironmentOverviewResponseListDeprecated, any, {}>>;
33525
33424
  /**
33526
33425
  * Returns a list of environments with only their id and status.
33527
33426
  * @summary List environments statuses
package/dist/esm/api.js CHANGED
@@ -24997,40 +24997,6 @@ export const EnvironmentsApiAxiosParamCreator = function (configuration) {
24997
24997
  options: localVarRequestOptions,
24998
24998
  };
24999
24999
  }),
25000
- /**
25001
- * Returns a list of environments with their overview information including deployment status, service count, and cluster details.
25002
- * @summary List environments overview
25003
- * @param {string} projectId Project ID
25004
- * @param {*} [options] Override http request option.
25005
- * @throws {RequiredError}
25006
- */
25007
- getProjectEnvironmentsOverviewDeprecated: (projectId_1, ...args_1) => __awaiter(this, [projectId_1, ...args_1], void 0, function* (projectId, options = {}) {
25008
- // verify required parameter 'projectId' is not null or undefined
25009
- assertParamExists('getProjectEnvironmentsOverviewDeprecated', 'projectId', projectId);
25010
- const localVarPath = `/project/{projectId}/environmentOverview`
25011
- .replace(`{${"projectId"}}`, encodeURIComponent(String(projectId)));
25012
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
25013
- const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
25014
- let baseOptions;
25015
- if (configuration) {
25016
- baseOptions = configuration.baseOptions;
25017
- }
25018
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
25019
- const localVarHeaderParameter = {};
25020
- const localVarQueryParameter = {};
25021
- // authentication ApiKeyAuth required
25022
- yield setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration);
25023
- // authentication bearerAuth required
25024
- // http bearer authentication required
25025
- yield setBearerAuthToObject(localVarHeaderParameter, configuration);
25026
- setSearchParams(localVarUrlObj, localVarQueryParameter);
25027
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
25028
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
25029
- return {
25030
- url: toPathString(localVarUrlObj),
25031
- options: localVarRequestOptions,
25032
- };
25033
- }),
25034
25000
  /**
25035
25001
  * Returns a list of environments with only their id and status.
25036
25002
  * @summary List environments statuses
@@ -25157,22 +25123,6 @@ export const EnvironmentsApiFp = function (configuration) {
25157
25123
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
25158
25124
  });
25159
25125
  },
25160
- /**
25161
- * Returns a list of environments with their overview information including deployment status, service count, and cluster details.
25162
- * @summary List environments overview
25163
- * @param {string} projectId Project ID
25164
- * @param {*} [options] Override http request option.
25165
- * @throws {RequiredError}
25166
- */
25167
- getProjectEnvironmentsOverviewDeprecated(projectId, options) {
25168
- return __awaiter(this, void 0, void 0, function* () {
25169
- var _a, _b, _c;
25170
- const localVarAxiosArgs = yield localVarAxiosParamCreator.getProjectEnvironmentsOverviewDeprecated(projectId, options);
25171
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
25172
- const localVarOperationServerBasePath = (_c = (_b = operationServerMap['EnvironmentsApi.getProjectEnvironmentsOverviewDeprecated']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
25173
- return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
25174
- });
25175
- },
25176
25126
  /**
25177
25127
  * Returns a list of environments with only their id and status.
25178
25128
  * @summary List environments statuses
@@ -25245,16 +25195,6 @@ export const EnvironmentsApiFactory = function (configuration, basePath, axios)
25245
25195
  getProjectEnvironmentsOverview(projectId, options) {
25246
25196
  return localVarFp.getProjectEnvironmentsOverview(projectId, options).then((request) => request(axios, basePath));
25247
25197
  },
25248
- /**
25249
- * Returns a list of environments with their overview information including deployment status, service count, and cluster details.
25250
- * @summary List environments overview
25251
- * @param {string} projectId Project ID
25252
- * @param {*} [options] Override http request option.
25253
- * @throws {RequiredError}
25254
- */
25255
- getProjectEnvironmentsOverviewDeprecated(projectId, options) {
25256
- return localVarFp.getProjectEnvironmentsOverviewDeprecated(projectId, options).then((request) => request(axios, basePath));
25257
- },
25258
25198
  /**
25259
25199
  * Returns a list of environments with only their id and status.
25260
25200
  * @summary List environments statuses
@@ -25318,17 +25258,6 @@ export class EnvironmentsApi extends BaseAPI {
25318
25258
  getProjectEnvironmentsOverview(projectId, options) {
25319
25259
  return EnvironmentsApiFp(this.configuration).getProjectEnvironmentsOverview(projectId, options).then((request) => request(this.axios, this.basePath));
25320
25260
  }
25321
- /**
25322
- * Returns a list of environments with their overview information including deployment status, service count, and cluster details.
25323
- * @summary List environments overview
25324
- * @param {string} projectId Project ID
25325
- * @param {*} [options] Override http request option.
25326
- * @throws {RequiredError}
25327
- * @memberof EnvironmentsApi
25328
- */
25329
- getProjectEnvironmentsOverviewDeprecated(projectId, options) {
25330
- return EnvironmentsApiFp(this.configuration).getProjectEnvironmentsOverviewDeprecated(projectId, options).then((request) => request(this.axios, this.basePath));
25331
- }
25332
25261
  /**
25333
25262
  * Returns a list of environments with only their id and status.
25334
25263
  * @summary List environments statuses
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qovery-typescript-axios",
3
- "version": "v1.1.863",
3
+ "version": "v1.1.865",
4
4
  "description": "OpenAPI client for qovery-typescript-axios",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -24,7 +24,7 @@
24
24
  "prepare": "npm run build"
25
25
  },
26
26
  "dependencies": {
27
- "axios": "1.12.2"
27
+ "axios": "1.15.0"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/node": "12.11.5 - 12.20.42",