qovery-typescript-axios 1.1.919 → 1.1.920
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 +87 -2
- package/dist/api.d.ts +87 -2
- package/dist/esm/api.d.ts +87 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -4232,10 +4232,41 @@ export type BlueprintSpecOverridesBackendEnum = typeof BlueprintSpecOverridesBac
|
|
|
4232
4232
|
export interface BlueprintUpdateEngineDiff {
|
|
4233
4233
|
/**
|
|
4234
4234
|
*
|
|
4235
|
-
* @type {Array<
|
|
4235
|
+
* @type {Array<BlueprintUpdateEngineFieldChange>}
|
|
4236
4236
|
* @memberof BlueprintUpdateEngineDiff
|
|
4237
4237
|
*/
|
|
4238
|
-
'updated_values': Array<
|
|
4238
|
+
'updated_values': Array<BlueprintUpdateEngineFieldChange>;
|
|
4239
|
+
}
|
|
4240
|
+
/**
|
|
4241
|
+
* A single engine-block field delta (e.g. version, cpu, ram). Not a manifest variable, so it carries no field type or constraints.
|
|
4242
|
+
* @export
|
|
4243
|
+
* @interface BlueprintUpdateEngineFieldChange
|
|
4244
|
+
*/
|
|
4245
|
+
export interface BlueprintUpdateEngineFieldChange {
|
|
4246
|
+
/**
|
|
4247
|
+
*
|
|
4248
|
+
* @type {string}
|
|
4249
|
+
* @memberof BlueprintUpdateEngineFieldChange
|
|
4250
|
+
*/
|
|
4251
|
+
'name': string;
|
|
4252
|
+
/**
|
|
4253
|
+
*
|
|
4254
|
+
* @type {string}
|
|
4255
|
+
* @memberof BlueprintUpdateEngineFieldChange
|
|
4256
|
+
*/
|
|
4257
|
+
'current_default_value'?: string | null;
|
|
4258
|
+
/**
|
|
4259
|
+
*
|
|
4260
|
+
* @type {string}
|
|
4261
|
+
* @memberof BlueprintUpdateEngineFieldChange
|
|
4262
|
+
*/
|
|
4263
|
+
'new_default_value'?: string | null;
|
|
4264
|
+
/**
|
|
4265
|
+
*
|
|
4266
|
+
* @type {string}
|
|
4267
|
+
* @memberof BlueprintUpdateEngineFieldChange
|
|
4268
|
+
*/
|
|
4269
|
+
'current_value'?: string | null;
|
|
4239
4270
|
}
|
|
4240
4271
|
/**
|
|
4241
4272
|
*
|
|
@@ -4255,6 +4286,24 @@ export interface BlueprintUpdateNewOptionalValue {
|
|
|
4255
4286
|
* @memberof BlueprintUpdateNewOptionalValue
|
|
4256
4287
|
*/
|
|
4257
4288
|
'default_value'?: string | null;
|
|
4289
|
+
/**
|
|
4290
|
+
*
|
|
4291
|
+
* @type {BlueprintManifestFieldType}
|
|
4292
|
+
* @memberof BlueprintUpdateNewOptionalValue
|
|
4293
|
+
*/
|
|
4294
|
+
'type': BlueprintManifestFieldType;
|
|
4295
|
+
/**
|
|
4296
|
+
* Values the user may choose from. Null = unrestricted.
|
|
4297
|
+
* @type {Array<string>}
|
|
4298
|
+
* @memberof BlueprintUpdateNewOptionalValue
|
|
4299
|
+
*/
|
|
4300
|
+
'allowed_values'?: Array<string> | null;
|
|
4301
|
+
/**
|
|
4302
|
+
*
|
|
4303
|
+
* @type {boolean}
|
|
4304
|
+
* @memberof BlueprintUpdateNewOptionalValue
|
|
4305
|
+
*/
|
|
4306
|
+
'is_secret': boolean;
|
|
4258
4307
|
}
|
|
4259
4308
|
/**
|
|
4260
4309
|
*
|
|
@@ -4268,6 +4317,24 @@ export interface BlueprintUpdateNewRequiredValue {
|
|
|
4268
4317
|
* @memberof BlueprintUpdateNewRequiredValue
|
|
4269
4318
|
*/
|
|
4270
4319
|
'name': string;
|
|
4320
|
+
/**
|
|
4321
|
+
*
|
|
4322
|
+
* @type {BlueprintManifestFieldType}
|
|
4323
|
+
* @memberof BlueprintUpdateNewRequiredValue
|
|
4324
|
+
*/
|
|
4325
|
+
'type': BlueprintManifestFieldType;
|
|
4326
|
+
/**
|
|
4327
|
+
* Values the user may choose from. Null = unrestricted.
|
|
4328
|
+
* @type {Array<string>}
|
|
4329
|
+
* @memberof BlueprintUpdateNewRequiredValue
|
|
4330
|
+
*/
|
|
4331
|
+
'allowed_values'?: Array<string> | null;
|
|
4332
|
+
/**
|
|
4333
|
+
*
|
|
4334
|
+
* @type {boolean}
|
|
4335
|
+
* @memberof BlueprintUpdateNewRequiredValue
|
|
4336
|
+
*/
|
|
4337
|
+
'is_secret': boolean;
|
|
4271
4338
|
}
|
|
4272
4339
|
/**
|
|
4273
4340
|
*
|
|
@@ -4431,6 +4498,24 @@ export interface BlueprintUpdateUpdatedValue {
|
|
|
4431
4498
|
* @memberof BlueprintUpdateUpdatedValue
|
|
4432
4499
|
*/
|
|
4433
4500
|
'current_value'?: string | null;
|
|
4501
|
+
/**
|
|
4502
|
+
*
|
|
4503
|
+
* @type {BlueprintManifestFieldType}
|
|
4504
|
+
* @memberof BlueprintUpdateUpdatedValue
|
|
4505
|
+
*/
|
|
4506
|
+
'type': BlueprintManifestFieldType;
|
|
4507
|
+
/**
|
|
4508
|
+
* Values the user may choose from. Null = unrestricted.
|
|
4509
|
+
* @type {Array<string>}
|
|
4510
|
+
* @memberof BlueprintUpdateUpdatedValue
|
|
4511
|
+
*/
|
|
4512
|
+
'allowed_values'?: Array<string> | null;
|
|
4513
|
+
/**
|
|
4514
|
+
*
|
|
4515
|
+
* @type {boolean}
|
|
4516
|
+
* @memberof BlueprintUpdateUpdatedValue
|
|
4517
|
+
*/
|
|
4518
|
+
'is_secret': boolean;
|
|
4434
4519
|
}
|
|
4435
4520
|
/**
|
|
4436
4521
|
* Value object for a variable in a patch map. Set the map value to null to remove the variable.
|
package/dist/api.d.ts
CHANGED
|
@@ -4097,10 +4097,41 @@ export type BlueprintSpecOverridesBackendEnum = typeof BlueprintSpecOverridesBac
|
|
|
4097
4097
|
export interface BlueprintUpdateEngineDiff {
|
|
4098
4098
|
/**
|
|
4099
4099
|
*
|
|
4100
|
-
* @type {Array<
|
|
4100
|
+
* @type {Array<BlueprintUpdateEngineFieldChange>}
|
|
4101
4101
|
* @memberof BlueprintUpdateEngineDiff
|
|
4102
4102
|
*/
|
|
4103
|
-
'updated_values': Array<
|
|
4103
|
+
'updated_values': Array<BlueprintUpdateEngineFieldChange>;
|
|
4104
|
+
}
|
|
4105
|
+
/**
|
|
4106
|
+
* A single engine-block field delta (e.g. version, cpu, ram). Not a manifest variable, so it carries no field type or constraints.
|
|
4107
|
+
* @export
|
|
4108
|
+
* @interface BlueprintUpdateEngineFieldChange
|
|
4109
|
+
*/
|
|
4110
|
+
export interface BlueprintUpdateEngineFieldChange {
|
|
4111
|
+
/**
|
|
4112
|
+
*
|
|
4113
|
+
* @type {string}
|
|
4114
|
+
* @memberof BlueprintUpdateEngineFieldChange
|
|
4115
|
+
*/
|
|
4116
|
+
'name': string;
|
|
4117
|
+
/**
|
|
4118
|
+
*
|
|
4119
|
+
* @type {string}
|
|
4120
|
+
* @memberof BlueprintUpdateEngineFieldChange
|
|
4121
|
+
*/
|
|
4122
|
+
'current_default_value'?: string | null;
|
|
4123
|
+
/**
|
|
4124
|
+
*
|
|
4125
|
+
* @type {string}
|
|
4126
|
+
* @memberof BlueprintUpdateEngineFieldChange
|
|
4127
|
+
*/
|
|
4128
|
+
'new_default_value'?: string | null;
|
|
4129
|
+
/**
|
|
4130
|
+
*
|
|
4131
|
+
* @type {string}
|
|
4132
|
+
* @memberof BlueprintUpdateEngineFieldChange
|
|
4133
|
+
*/
|
|
4134
|
+
'current_value'?: string | null;
|
|
4104
4135
|
}
|
|
4105
4136
|
/**
|
|
4106
4137
|
*
|
|
@@ -4120,6 +4151,24 @@ export interface BlueprintUpdateNewOptionalValue {
|
|
|
4120
4151
|
* @memberof BlueprintUpdateNewOptionalValue
|
|
4121
4152
|
*/
|
|
4122
4153
|
'default_value'?: string | null;
|
|
4154
|
+
/**
|
|
4155
|
+
*
|
|
4156
|
+
* @type {BlueprintManifestFieldType}
|
|
4157
|
+
* @memberof BlueprintUpdateNewOptionalValue
|
|
4158
|
+
*/
|
|
4159
|
+
'type': BlueprintManifestFieldType;
|
|
4160
|
+
/**
|
|
4161
|
+
* Values the user may choose from. Null = unrestricted.
|
|
4162
|
+
* @type {Array<string>}
|
|
4163
|
+
* @memberof BlueprintUpdateNewOptionalValue
|
|
4164
|
+
*/
|
|
4165
|
+
'allowed_values'?: Array<string> | null;
|
|
4166
|
+
/**
|
|
4167
|
+
*
|
|
4168
|
+
* @type {boolean}
|
|
4169
|
+
* @memberof BlueprintUpdateNewOptionalValue
|
|
4170
|
+
*/
|
|
4171
|
+
'is_secret': boolean;
|
|
4123
4172
|
}
|
|
4124
4173
|
/**
|
|
4125
4174
|
*
|
|
@@ -4133,6 +4182,24 @@ export interface BlueprintUpdateNewRequiredValue {
|
|
|
4133
4182
|
* @memberof BlueprintUpdateNewRequiredValue
|
|
4134
4183
|
*/
|
|
4135
4184
|
'name': string;
|
|
4185
|
+
/**
|
|
4186
|
+
*
|
|
4187
|
+
* @type {BlueprintManifestFieldType}
|
|
4188
|
+
* @memberof BlueprintUpdateNewRequiredValue
|
|
4189
|
+
*/
|
|
4190
|
+
'type': BlueprintManifestFieldType;
|
|
4191
|
+
/**
|
|
4192
|
+
* Values the user may choose from. Null = unrestricted.
|
|
4193
|
+
* @type {Array<string>}
|
|
4194
|
+
* @memberof BlueprintUpdateNewRequiredValue
|
|
4195
|
+
*/
|
|
4196
|
+
'allowed_values'?: Array<string> | null;
|
|
4197
|
+
/**
|
|
4198
|
+
*
|
|
4199
|
+
* @type {boolean}
|
|
4200
|
+
* @memberof BlueprintUpdateNewRequiredValue
|
|
4201
|
+
*/
|
|
4202
|
+
'is_secret': boolean;
|
|
4136
4203
|
}
|
|
4137
4204
|
/**
|
|
4138
4205
|
*
|
|
@@ -4295,6 +4362,24 @@ export interface BlueprintUpdateUpdatedValue {
|
|
|
4295
4362
|
* @memberof BlueprintUpdateUpdatedValue
|
|
4296
4363
|
*/
|
|
4297
4364
|
'current_value'?: string | null;
|
|
4365
|
+
/**
|
|
4366
|
+
*
|
|
4367
|
+
* @type {BlueprintManifestFieldType}
|
|
4368
|
+
* @memberof BlueprintUpdateUpdatedValue
|
|
4369
|
+
*/
|
|
4370
|
+
'type': BlueprintManifestFieldType;
|
|
4371
|
+
/**
|
|
4372
|
+
* Values the user may choose from. Null = unrestricted.
|
|
4373
|
+
* @type {Array<string>}
|
|
4374
|
+
* @memberof BlueprintUpdateUpdatedValue
|
|
4375
|
+
*/
|
|
4376
|
+
'allowed_values'?: Array<string> | null;
|
|
4377
|
+
/**
|
|
4378
|
+
*
|
|
4379
|
+
* @type {boolean}
|
|
4380
|
+
* @memberof BlueprintUpdateUpdatedValue
|
|
4381
|
+
*/
|
|
4382
|
+
'is_secret': boolean;
|
|
4298
4383
|
}
|
|
4299
4384
|
/**
|
|
4300
4385
|
* Value object for a variable in a patch map. Set the map value to null to remove the variable.
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -4097,10 +4097,41 @@ export type BlueprintSpecOverridesBackendEnum = typeof BlueprintSpecOverridesBac
|
|
|
4097
4097
|
export interface BlueprintUpdateEngineDiff {
|
|
4098
4098
|
/**
|
|
4099
4099
|
*
|
|
4100
|
-
* @type {Array<
|
|
4100
|
+
* @type {Array<BlueprintUpdateEngineFieldChange>}
|
|
4101
4101
|
* @memberof BlueprintUpdateEngineDiff
|
|
4102
4102
|
*/
|
|
4103
|
-
'updated_values': Array<
|
|
4103
|
+
'updated_values': Array<BlueprintUpdateEngineFieldChange>;
|
|
4104
|
+
}
|
|
4105
|
+
/**
|
|
4106
|
+
* A single engine-block field delta (e.g. version, cpu, ram). Not a manifest variable, so it carries no field type or constraints.
|
|
4107
|
+
* @export
|
|
4108
|
+
* @interface BlueprintUpdateEngineFieldChange
|
|
4109
|
+
*/
|
|
4110
|
+
export interface BlueprintUpdateEngineFieldChange {
|
|
4111
|
+
/**
|
|
4112
|
+
*
|
|
4113
|
+
* @type {string}
|
|
4114
|
+
* @memberof BlueprintUpdateEngineFieldChange
|
|
4115
|
+
*/
|
|
4116
|
+
'name': string;
|
|
4117
|
+
/**
|
|
4118
|
+
*
|
|
4119
|
+
* @type {string}
|
|
4120
|
+
* @memberof BlueprintUpdateEngineFieldChange
|
|
4121
|
+
*/
|
|
4122
|
+
'current_default_value'?: string | null;
|
|
4123
|
+
/**
|
|
4124
|
+
*
|
|
4125
|
+
* @type {string}
|
|
4126
|
+
* @memberof BlueprintUpdateEngineFieldChange
|
|
4127
|
+
*/
|
|
4128
|
+
'new_default_value'?: string | null;
|
|
4129
|
+
/**
|
|
4130
|
+
*
|
|
4131
|
+
* @type {string}
|
|
4132
|
+
* @memberof BlueprintUpdateEngineFieldChange
|
|
4133
|
+
*/
|
|
4134
|
+
'current_value'?: string | null;
|
|
4104
4135
|
}
|
|
4105
4136
|
/**
|
|
4106
4137
|
*
|
|
@@ -4120,6 +4151,24 @@ export interface BlueprintUpdateNewOptionalValue {
|
|
|
4120
4151
|
* @memberof BlueprintUpdateNewOptionalValue
|
|
4121
4152
|
*/
|
|
4122
4153
|
'default_value'?: string | null;
|
|
4154
|
+
/**
|
|
4155
|
+
*
|
|
4156
|
+
* @type {BlueprintManifestFieldType}
|
|
4157
|
+
* @memberof BlueprintUpdateNewOptionalValue
|
|
4158
|
+
*/
|
|
4159
|
+
'type': BlueprintManifestFieldType;
|
|
4160
|
+
/**
|
|
4161
|
+
* Values the user may choose from. Null = unrestricted.
|
|
4162
|
+
* @type {Array<string>}
|
|
4163
|
+
* @memberof BlueprintUpdateNewOptionalValue
|
|
4164
|
+
*/
|
|
4165
|
+
'allowed_values'?: Array<string> | null;
|
|
4166
|
+
/**
|
|
4167
|
+
*
|
|
4168
|
+
* @type {boolean}
|
|
4169
|
+
* @memberof BlueprintUpdateNewOptionalValue
|
|
4170
|
+
*/
|
|
4171
|
+
'is_secret': boolean;
|
|
4123
4172
|
}
|
|
4124
4173
|
/**
|
|
4125
4174
|
*
|
|
@@ -4133,6 +4182,24 @@ export interface BlueprintUpdateNewRequiredValue {
|
|
|
4133
4182
|
* @memberof BlueprintUpdateNewRequiredValue
|
|
4134
4183
|
*/
|
|
4135
4184
|
'name': string;
|
|
4185
|
+
/**
|
|
4186
|
+
*
|
|
4187
|
+
* @type {BlueprintManifestFieldType}
|
|
4188
|
+
* @memberof BlueprintUpdateNewRequiredValue
|
|
4189
|
+
*/
|
|
4190
|
+
'type': BlueprintManifestFieldType;
|
|
4191
|
+
/**
|
|
4192
|
+
* Values the user may choose from. Null = unrestricted.
|
|
4193
|
+
* @type {Array<string>}
|
|
4194
|
+
* @memberof BlueprintUpdateNewRequiredValue
|
|
4195
|
+
*/
|
|
4196
|
+
'allowed_values'?: Array<string> | null;
|
|
4197
|
+
/**
|
|
4198
|
+
*
|
|
4199
|
+
* @type {boolean}
|
|
4200
|
+
* @memberof BlueprintUpdateNewRequiredValue
|
|
4201
|
+
*/
|
|
4202
|
+
'is_secret': boolean;
|
|
4136
4203
|
}
|
|
4137
4204
|
/**
|
|
4138
4205
|
*
|
|
@@ -4295,6 +4362,24 @@ export interface BlueprintUpdateUpdatedValue {
|
|
|
4295
4362
|
* @memberof BlueprintUpdateUpdatedValue
|
|
4296
4363
|
*/
|
|
4297
4364
|
'current_value'?: string | null;
|
|
4365
|
+
/**
|
|
4366
|
+
*
|
|
4367
|
+
* @type {BlueprintManifestFieldType}
|
|
4368
|
+
* @memberof BlueprintUpdateUpdatedValue
|
|
4369
|
+
*/
|
|
4370
|
+
'type': BlueprintManifestFieldType;
|
|
4371
|
+
/**
|
|
4372
|
+
* Values the user may choose from. Null = unrestricted.
|
|
4373
|
+
* @type {Array<string>}
|
|
4374
|
+
* @memberof BlueprintUpdateUpdatedValue
|
|
4375
|
+
*/
|
|
4376
|
+
'allowed_values'?: Array<string> | null;
|
|
4377
|
+
/**
|
|
4378
|
+
*
|
|
4379
|
+
* @type {boolean}
|
|
4380
|
+
* @memberof BlueprintUpdateUpdatedValue
|
|
4381
|
+
*/
|
|
4382
|
+
'is_secret': boolean;
|
|
4298
4383
|
}
|
|
4299
4384
|
/**
|
|
4300
4385
|
* Value object for a variable in a patch map. Set the map value to null to remove the variable.
|