qovery-typescript-axios 1.1.920 → 1.1.922

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
@@ -4268,6 +4268,25 @@ export interface BlueprintUpdateEngineFieldChange {
4268
4268
  */
4269
4269
  'current_value'?: string | null;
4270
4270
  }
4271
+ /**
4272
+ * A newer major version of the blueprint available for a major upgrade.
4273
+ * @export
4274
+ * @interface BlueprintUpdateNewMajorVersion
4275
+ */
4276
+ export interface BlueprintUpdateNewMajorVersion {
4277
+ /**
4278
+ * The engine major version (e.g. \"17\").
4279
+ * @type {string}
4280
+ * @memberof BlueprintUpdateNewMajorVersion
4281
+ */
4282
+ 'service_version': string;
4283
+ /**
4284
+ * Latest catalog tag for that major version.
4285
+ * @type {string}
4286
+ * @memberof BlueprintUpdateNewMajorVersion
4287
+ */
4288
+ 'latest_tag': string;
4289
+ }
4271
4290
  /**
4272
4291
  *
4273
4292
  * @export
@@ -4467,6 +4486,12 @@ export interface BlueprintUpdateResponse {
4467
4486
  * @memberof BlueprintUpdateResponse
4468
4487
  */
4469
4488
  'engine_diff': BlueprintUpdateEngineDiff;
4489
+ /**
4490
+ * Major versions of the same blueprint newer than the service\'s current one (e.g. service on aws/postgres/16 while 17 and 18 exist). Empty when already on the latest major or when the current version is non-numeric.
4491
+ * @type {Array<BlueprintUpdateNewMajorVersion>}
4492
+ * @memberof BlueprintUpdateResponse
4493
+ */
4494
+ 'new_major_versions': Array<BlueprintUpdateNewMajorVersion>;
4470
4495
  }
4471
4496
  /**
4472
4497
  *
package/dist/api.d.ts CHANGED
@@ -4133,6 +4133,25 @@ export interface BlueprintUpdateEngineFieldChange {
4133
4133
  */
4134
4134
  'current_value'?: string | null;
4135
4135
  }
4136
+ /**
4137
+ * A newer major version of the blueprint available for a major upgrade.
4138
+ * @export
4139
+ * @interface BlueprintUpdateNewMajorVersion
4140
+ */
4141
+ export interface BlueprintUpdateNewMajorVersion {
4142
+ /**
4143
+ * The engine major version (e.g. \"17\").
4144
+ * @type {string}
4145
+ * @memberof BlueprintUpdateNewMajorVersion
4146
+ */
4147
+ 'service_version': string;
4148
+ /**
4149
+ * Latest catalog tag for that major version.
4150
+ * @type {string}
4151
+ * @memberof BlueprintUpdateNewMajorVersion
4152
+ */
4153
+ 'latest_tag': string;
4154
+ }
4136
4155
  /**
4137
4156
  *
4138
4157
  * @export
@@ -4331,6 +4350,12 @@ export interface BlueprintUpdateResponse {
4331
4350
  * @memberof BlueprintUpdateResponse
4332
4351
  */
4333
4352
  'engine_diff': BlueprintUpdateEngineDiff;
4353
+ /**
4354
+ * Major versions of the same blueprint newer than the service\'s current one (e.g. service on aws/postgres/16 while 17 and 18 exist). Empty when already on the latest major or when the current version is non-numeric.
4355
+ * @type {Array<BlueprintUpdateNewMajorVersion>}
4356
+ * @memberof BlueprintUpdateResponse
4357
+ */
4358
+ 'new_major_versions': Array<BlueprintUpdateNewMajorVersion>;
4334
4359
  }
4335
4360
  /**
4336
4361
  *
package/dist/esm/api.d.ts CHANGED
@@ -4133,6 +4133,25 @@ export interface BlueprintUpdateEngineFieldChange {
4133
4133
  */
4134
4134
  'current_value'?: string | null;
4135
4135
  }
4136
+ /**
4137
+ * A newer major version of the blueprint available for a major upgrade.
4138
+ * @export
4139
+ * @interface BlueprintUpdateNewMajorVersion
4140
+ */
4141
+ export interface BlueprintUpdateNewMajorVersion {
4142
+ /**
4143
+ * The engine major version (e.g. \"17\").
4144
+ * @type {string}
4145
+ * @memberof BlueprintUpdateNewMajorVersion
4146
+ */
4147
+ 'service_version': string;
4148
+ /**
4149
+ * Latest catalog tag for that major version.
4150
+ * @type {string}
4151
+ * @memberof BlueprintUpdateNewMajorVersion
4152
+ */
4153
+ 'latest_tag': string;
4154
+ }
4136
4155
  /**
4137
4156
  *
4138
4157
  * @export
@@ -4331,6 +4350,12 @@ export interface BlueprintUpdateResponse {
4331
4350
  * @memberof BlueprintUpdateResponse
4332
4351
  */
4333
4352
  'engine_diff': BlueprintUpdateEngineDiff;
4353
+ /**
4354
+ * Major versions of the same blueprint newer than the service\'s current one (e.g. service on aws/postgres/16 while 17 and 18 exist). Empty when already on the latest major or when the current version is non-numeric.
4355
+ * @type {Array<BlueprintUpdateNewMajorVersion>}
4356
+ * @memberof BlueprintUpdateResponse
4357
+ */
4358
+ 'new_major_versions': Array<BlueprintUpdateNewMajorVersion>;
4334
4359
  }
4335
4360
  /**
4336
4361
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qovery-typescript-axios",
3
- "version": "v1.1.920",
3
+ "version": "v1.1.922",
4
4
  "description": "OpenAPI client for qovery-typescript-axios",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {