qovery-typescript-axios 1.1.902 → 1.1.904
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 +42 -0
- package/dist/api.d.ts +42 -0
- package/dist/esm/api.d.ts +42 -0
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -1200,6 +1200,12 @@ export interface ApplicationAdvancedSettings {
|
|
|
1200
1200
|
* @memberof ApplicationAdvancedSettings
|
|
1201
1201
|
*/
|
|
1202
1202
|
'build.disable_buildkit_cache'?: boolean;
|
|
1203
|
+
/**
|
|
1204
|
+
* skip git submodules update when cloning the repository
|
|
1205
|
+
* @type {boolean}
|
|
1206
|
+
* @memberof ApplicationAdvancedSettings
|
|
1207
|
+
*/
|
|
1208
|
+
'build.skip_git_submodules'?: boolean;
|
|
1203
1209
|
/**
|
|
1204
1210
|
*
|
|
1205
1211
|
* @type {number}
|
|
@@ -14300,6 +14306,12 @@ export interface HelmRequest {
|
|
|
14300
14306
|
* @memberof HelmRequest
|
|
14301
14307
|
*/
|
|
14302
14308
|
'icon_uri'?: string;
|
|
14309
|
+
/**
|
|
14310
|
+
* The blueprint ID the service has been created from
|
|
14311
|
+
* @type {string}
|
|
14312
|
+
* @memberof HelmRequest
|
|
14313
|
+
*/
|
|
14314
|
+
'blueprintId'?: string | null;
|
|
14303
14315
|
}
|
|
14304
14316
|
/**
|
|
14305
14317
|
* @type HelmRequestAllOfSource
|
|
@@ -14561,6 +14573,12 @@ export interface HelmResponse {
|
|
|
14561
14573
|
* @memberof HelmResponse
|
|
14562
14574
|
*/
|
|
14563
14575
|
'service_type': ServiceTypeEnum;
|
|
14576
|
+
/**
|
|
14577
|
+
* The blueprint ID the service has been created from
|
|
14578
|
+
* @type {string}
|
|
14579
|
+
* @memberof HelmResponse
|
|
14580
|
+
*/
|
|
14581
|
+
'blueprintId'?: string | null;
|
|
14564
14582
|
}
|
|
14565
14583
|
|
|
14566
14584
|
|
|
@@ -15109,6 +15127,12 @@ export interface JobAdvancedSettings {
|
|
|
15109
15127
|
* @memberof JobAdvancedSettings
|
|
15110
15128
|
*/
|
|
15111
15129
|
'build.disable_buildkit_cache'?: boolean;
|
|
15130
|
+
/**
|
|
15131
|
+
* skip git submodules update when cloning the repository
|
|
15132
|
+
* @type {boolean}
|
|
15133
|
+
* @memberof JobAdvancedSettings
|
|
15134
|
+
*/
|
|
15135
|
+
'build.skip_git_submodules'?: boolean;
|
|
15112
15136
|
/**
|
|
15113
15137
|
* define how long in seconds an application is supposed to be stopped gracefully
|
|
15114
15138
|
* @type {number}
|
|
@@ -22462,6 +22486,12 @@ export interface TerraformAdvancedSettings {
|
|
|
22462
22486
|
* @memberof TerraformAdvancedSettings
|
|
22463
22487
|
*/
|
|
22464
22488
|
'build.ephemeral_storage_in_gib'?: number;
|
|
22489
|
+
/**
|
|
22490
|
+
* skip git submodules update when cloning the repository
|
|
22491
|
+
* @type {boolean}
|
|
22492
|
+
* @memberof TerraformAdvancedSettings
|
|
22493
|
+
*/
|
|
22494
|
+
'build.skip_git_submodules'?: boolean;
|
|
22465
22495
|
/**
|
|
22466
22496
|
* define how long in seconds an application is supposed to be stopped gracefully
|
|
22467
22497
|
* @type {number}
|
|
@@ -22923,6 +22953,12 @@ export interface TerraformRequest {
|
|
|
22923
22953
|
* @memberof TerraformRequest
|
|
22924
22954
|
*/
|
|
22925
22955
|
'dockerfile_fragment'?: TerraformRequestDockerfileFragment | null;
|
|
22956
|
+
/**
|
|
22957
|
+
* The blueprint ID the service has been created from
|
|
22958
|
+
* @type {string}
|
|
22959
|
+
* @memberof TerraformRequest
|
|
22960
|
+
*/
|
|
22961
|
+
'blueprintId'?: string | null;
|
|
22926
22962
|
}
|
|
22927
22963
|
|
|
22928
22964
|
|
|
@@ -23210,6 +23246,12 @@ export interface TerraformResponse {
|
|
|
23210
23246
|
* @memberof TerraformResponse
|
|
23211
23247
|
*/
|
|
23212
23248
|
'dockerfile_fragment'?: TerraformResponseAllOfDockerfileFragment | null;
|
|
23249
|
+
/**
|
|
23250
|
+
* The blueprint ID the service has been created from
|
|
23251
|
+
* @type {string}
|
|
23252
|
+
* @memberof TerraformResponse
|
|
23253
|
+
*/
|
|
23254
|
+
'blueprintId'?: string | null;
|
|
23213
23255
|
}
|
|
23214
23256
|
|
|
23215
23257
|
|
package/dist/api.d.ts
CHANGED
|
@@ -1141,6 +1141,12 @@ export interface ApplicationAdvancedSettings {
|
|
|
1141
1141
|
* @memberof ApplicationAdvancedSettings
|
|
1142
1142
|
*/
|
|
1143
1143
|
'build.disable_buildkit_cache'?: boolean;
|
|
1144
|
+
/**
|
|
1145
|
+
* skip git submodules update when cloning the repository
|
|
1146
|
+
* @type {boolean}
|
|
1147
|
+
* @memberof ApplicationAdvancedSettings
|
|
1148
|
+
*/
|
|
1149
|
+
'build.skip_git_submodules'?: boolean;
|
|
1144
1150
|
/**
|
|
1145
1151
|
*
|
|
1146
1152
|
* @type {number}
|
|
@@ -13843,6 +13849,12 @@ export interface HelmRequest {
|
|
|
13843
13849
|
* @memberof HelmRequest
|
|
13844
13850
|
*/
|
|
13845
13851
|
'icon_uri'?: string;
|
|
13852
|
+
/**
|
|
13853
|
+
* The blueprint ID the service has been created from
|
|
13854
|
+
* @type {string}
|
|
13855
|
+
* @memberof HelmRequest
|
|
13856
|
+
*/
|
|
13857
|
+
'blueprintId'?: string | null;
|
|
13846
13858
|
}
|
|
13847
13859
|
/**
|
|
13848
13860
|
* @type HelmRequestAllOfSource
|
|
@@ -14103,6 +14115,12 @@ export interface HelmResponse {
|
|
|
14103
14115
|
* @memberof HelmResponse
|
|
14104
14116
|
*/
|
|
14105
14117
|
'service_type': ServiceTypeEnum;
|
|
14118
|
+
/**
|
|
14119
|
+
* The blueprint ID the service has been created from
|
|
14120
|
+
* @type {string}
|
|
14121
|
+
* @memberof HelmResponse
|
|
14122
|
+
*/
|
|
14123
|
+
'blueprintId'?: string | null;
|
|
14106
14124
|
}
|
|
14107
14125
|
/**
|
|
14108
14126
|
* @type HelmResponseAllOfPorts
|
|
@@ -14638,6 +14656,12 @@ export interface JobAdvancedSettings {
|
|
|
14638
14656
|
* @memberof JobAdvancedSettings
|
|
14639
14657
|
*/
|
|
14640
14658
|
'build.disable_buildkit_cache'?: boolean;
|
|
14659
|
+
/**
|
|
14660
|
+
* skip git submodules update when cloning the repository
|
|
14661
|
+
* @type {boolean}
|
|
14662
|
+
* @memberof JobAdvancedSettings
|
|
14663
|
+
*/
|
|
14664
|
+
'build.skip_git_submodules'?: boolean;
|
|
14641
14665
|
/**
|
|
14642
14666
|
* define how long in seconds an application is supposed to be stopped gracefully
|
|
14643
14667
|
* @type {number}
|
|
@@ -21720,6 +21744,12 @@ export interface TerraformAdvancedSettings {
|
|
|
21720
21744
|
* @memberof TerraformAdvancedSettings
|
|
21721
21745
|
*/
|
|
21722
21746
|
'build.ephemeral_storage_in_gib'?: number;
|
|
21747
|
+
/**
|
|
21748
|
+
* skip git submodules update when cloning the repository
|
|
21749
|
+
* @type {boolean}
|
|
21750
|
+
* @memberof TerraformAdvancedSettings
|
|
21751
|
+
*/
|
|
21752
|
+
'build.skip_git_submodules'?: boolean;
|
|
21723
21753
|
/**
|
|
21724
21754
|
* define how long in seconds an application is supposed to be stopped gracefully
|
|
21725
21755
|
* @type {number}
|
|
@@ -22172,6 +22202,12 @@ export interface TerraformRequest {
|
|
|
22172
22202
|
* @memberof TerraformRequest
|
|
22173
22203
|
*/
|
|
22174
22204
|
'dockerfile_fragment'?: TerraformRequestDockerfileFragment | null;
|
|
22205
|
+
/**
|
|
22206
|
+
* The blueprint ID the service has been created from
|
|
22207
|
+
* @type {string}
|
|
22208
|
+
* @memberof TerraformRequest
|
|
22209
|
+
*/
|
|
22210
|
+
'blueprintId'?: string | null;
|
|
22175
22211
|
}
|
|
22176
22212
|
/**
|
|
22177
22213
|
* @type TerraformRequestDockerfileFragment
|
|
@@ -22460,6 +22496,12 @@ export interface TerraformResponse {
|
|
|
22460
22496
|
* @memberof TerraformResponse
|
|
22461
22497
|
*/
|
|
22462
22498
|
'dockerfile_fragment'?: TerraformResponseAllOfDockerfileFragment | null;
|
|
22499
|
+
/**
|
|
22500
|
+
* The blueprint ID the service has been created from
|
|
22501
|
+
* @type {string}
|
|
22502
|
+
* @memberof TerraformResponse
|
|
22503
|
+
*/
|
|
22504
|
+
'blueprintId'?: string | null;
|
|
22463
22505
|
}
|
|
22464
22506
|
/**
|
|
22465
22507
|
* @type TerraformResponseAllOfDockerfileFragment
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -1141,6 +1141,12 @@ export interface ApplicationAdvancedSettings {
|
|
|
1141
1141
|
* @memberof ApplicationAdvancedSettings
|
|
1142
1142
|
*/
|
|
1143
1143
|
'build.disable_buildkit_cache'?: boolean;
|
|
1144
|
+
/**
|
|
1145
|
+
* skip git submodules update when cloning the repository
|
|
1146
|
+
* @type {boolean}
|
|
1147
|
+
* @memberof ApplicationAdvancedSettings
|
|
1148
|
+
*/
|
|
1149
|
+
'build.skip_git_submodules'?: boolean;
|
|
1144
1150
|
/**
|
|
1145
1151
|
*
|
|
1146
1152
|
* @type {number}
|
|
@@ -13843,6 +13849,12 @@ export interface HelmRequest {
|
|
|
13843
13849
|
* @memberof HelmRequest
|
|
13844
13850
|
*/
|
|
13845
13851
|
'icon_uri'?: string;
|
|
13852
|
+
/**
|
|
13853
|
+
* The blueprint ID the service has been created from
|
|
13854
|
+
* @type {string}
|
|
13855
|
+
* @memberof HelmRequest
|
|
13856
|
+
*/
|
|
13857
|
+
'blueprintId'?: string | null;
|
|
13846
13858
|
}
|
|
13847
13859
|
/**
|
|
13848
13860
|
* @type HelmRequestAllOfSource
|
|
@@ -14103,6 +14115,12 @@ export interface HelmResponse {
|
|
|
14103
14115
|
* @memberof HelmResponse
|
|
14104
14116
|
*/
|
|
14105
14117
|
'service_type': ServiceTypeEnum;
|
|
14118
|
+
/**
|
|
14119
|
+
* The blueprint ID the service has been created from
|
|
14120
|
+
* @type {string}
|
|
14121
|
+
* @memberof HelmResponse
|
|
14122
|
+
*/
|
|
14123
|
+
'blueprintId'?: string | null;
|
|
14106
14124
|
}
|
|
14107
14125
|
/**
|
|
14108
14126
|
* @type HelmResponseAllOfPorts
|
|
@@ -14638,6 +14656,12 @@ export interface JobAdvancedSettings {
|
|
|
14638
14656
|
* @memberof JobAdvancedSettings
|
|
14639
14657
|
*/
|
|
14640
14658
|
'build.disable_buildkit_cache'?: boolean;
|
|
14659
|
+
/**
|
|
14660
|
+
* skip git submodules update when cloning the repository
|
|
14661
|
+
* @type {boolean}
|
|
14662
|
+
* @memberof JobAdvancedSettings
|
|
14663
|
+
*/
|
|
14664
|
+
'build.skip_git_submodules'?: boolean;
|
|
14641
14665
|
/**
|
|
14642
14666
|
* define how long in seconds an application is supposed to be stopped gracefully
|
|
14643
14667
|
* @type {number}
|
|
@@ -21720,6 +21744,12 @@ export interface TerraformAdvancedSettings {
|
|
|
21720
21744
|
* @memberof TerraformAdvancedSettings
|
|
21721
21745
|
*/
|
|
21722
21746
|
'build.ephemeral_storage_in_gib'?: number;
|
|
21747
|
+
/**
|
|
21748
|
+
* skip git submodules update when cloning the repository
|
|
21749
|
+
* @type {boolean}
|
|
21750
|
+
* @memberof TerraformAdvancedSettings
|
|
21751
|
+
*/
|
|
21752
|
+
'build.skip_git_submodules'?: boolean;
|
|
21723
21753
|
/**
|
|
21724
21754
|
* define how long in seconds an application is supposed to be stopped gracefully
|
|
21725
21755
|
* @type {number}
|
|
@@ -22172,6 +22202,12 @@ export interface TerraformRequest {
|
|
|
22172
22202
|
* @memberof TerraformRequest
|
|
22173
22203
|
*/
|
|
22174
22204
|
'dockerfile_fragment'?: TerraformRequestDockerfileFragment | null;
|
|
22205
|
+
/**
|
|
22206
|
+
* The blueprint ID the service has been created from
|
|
22207
|
+
* @type {string}
|
|
22208
|
+
* @memberof TerraformRequest
|
|
22209
|
+
*/
|
|
22210
|
+
'blueprintId'?: string | null;
|
|
22175
22211
|
}
|
|
22176
22212
|
/**
|
|
22177
22213
|
* @type TerraformRequestDockerfileFragment
|
|
@@ -22460,6 +22496,12 @@ export interface TerraformResponse {
|
|
|
22460
22496
|
* @memberof TerraformResponse
|
|
22461
22497
|
*/
|
|
22462
22498
|
'dockerfile_fragment'?: TerraformResponseAllOfDockerfileFragment | null;
|
|
22499
|
+
/**
|
|
22500
|
+
* The blueprint ID the service has been created from
|
|
22501
|
+
* @type {string}
|
|
22502
|
+
* @memberof TerraformResponse
|
|
22503
|
+
*/
|
|
22504
|
+
'blueprintId'?: string | null;
|
|
22463
22505
|
}
|
|
22464
22506
|
/**
|
|
22465
22507
|
* @type TerraformResponseAllOfDockerfileFragment
|