qovery-typescript-axios 1.1.843 → 1.1.844
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 +27 -2
- package/dist/api.d.ts +27 -2
- package/dist/api.js +2 -1
- package/dist/esm/api.d.ts +27 -2
- package/dist/esm/api.js +2 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -10023,6 +10023,18 @@ export interface EnvironmentStatus {
|
|
|
10023
10023
|
* @memberof EnvironmentStatus
|
|
10024
10024
|
*/
|
|
10025
10025
|
'deployment_status'?: EnvironmentDeploymentStatusEnum;
|
|
10026
|
+
/**
|
|
10027
|
+
*
|
|
10028
|
+
* @type {string}
|
|
10029
|
+
* @memberof EnvironmentStatus
|
|
10030
|
+
*/
|
|
10031
|
+
'deployment_request_id'?: string | null;
|
|
10032
|
+
/**
|
|
10033
|
+
*
|
|
10034
|
+
* @type {Array<StageStepMetrics>}
|
|
10035
|
+
* @memberof EnvironmentStatus
|
|
10036
|
+
*/
|
|
10037
|
+
'metrics'?: Array<StageStepMetrics> | null;
|
|
10026
10038
|
}
|
|
10027
10039
|
|
|
10028
10040
|
|
|
@@ -19740,6 +19752,12 @@ export type StageStatusEnum = typeof StageStatusEnum[keyof typeof StageStatusEnu
|
|
|
19740
19752
|
* @interface StageStepMetric
|
|
19741
19753
|
*/
|
|
19742
19754
|
export interface StageStepMetric {
|
|
19755
|
+
/**
|
|
19756
|
+
*
|
|
19757
|
+
* @type {string}
|
|
19758
|
+
* @memberof StageStepMetric
|
|
19759
|
+
*/
|
|
19760
|
+
'stage_id'?: string;
|
|
19743
19761
|
/**
|
|
19744
19762
|
*
|
|
19745
19763
|
* @type {StageStepMetricNameEnum}
|
|
@@ -19762,12 +19780,13 @@ export interface StageStepMetric {
|
|
|
19762
19780
|
|
|
19763
19781
|
|
|
19764
19782
|
/**
|
|
19765
|
-
* The name of the deployment step at the stage level: - QUEUEING: The step preceding the actual stage deployment step. - PROVISION_BUILDER: The step to provision builders before the actual build.
|
|
19783
|
+
* The name of the deployment step at the stage level: - TOTAL: The total duration of the stage deployment. - QUEUEING: The step preceding the actual stage deployment step. - PROVISION_BUILDER: The step to provision builders before the actual build.
|
|
19766
19784
|
* @export
|
|
19767
19785
|
* @enum {string}
|
|
19768
19786
|
*/
|
|
19769
19787
|
|
|
19770
19788
|
export const StageStepMetricNameEnum = {
|
|
19789
|
+
TOTAL: 'TOTAL',
|
|
19771
19790
|
QUEUEING: 'QUEUEING',
|
|
19772
19791
|
PROVISION_BUILDER: 'PROVISION_BUILDER'
|
|
19773
19792
|
} as const;
|
|
@@ -19782,7 +19801,13 @@ export type StageStepMetricNameEnum = typeof StageStepMetricNameEnum[keyof typeo
|
|
|
19782
19801
|
*/
|
|
19783
19802
|
export interface StageStepMetrics {
|
|
19784
19803
|
/**
|
|
19785
|
-
*
|
|
19804
|
+
*
|
|
19805
|
+
* @type {string}
|
|
19806
|
+
* @memberof StageStepMetrics
|
|
19807
|
+
*/
|
|
19808
|
+
'stage_id'?: string;
|
|
19809
|
+
/**
|
|
19810
|
+
* The total duration in seconds of the stage deployment or null if the deployment is not completed.
|
|
19786
19811
|
* @type {number}
|
|
19787
19812
|
* @memberof StageStepMetrics
|
|
19788
19813
|
*/
|
package/dist/api.d.ts
CHANGED
|
@@ -9715,6 +9715,18 @@ export interface EnvironmentStatus {
|
|
|
9715
9715
|
* @memberof EnvironmentStatus
|
|
9716
9716
|
*/
|
|
9717
9717
|
'deployment_status'?: EnvironmentDeploymentStatusEnum;
|
|
9718
|
+
/**
|
|
9719
|
+
*
|
|
9720
|
+
* @type {string}
|
|
9721
|
+
* @memberof EnvironmentStatus
|
|
9722
|
+
*/
|
|
9723
|
+
'deployment_request_id'?: string | null;
|
|
9724
|
+
/**
|
|
9725
|
+
*
|
|
9726
|
+
* @type {Array<StageStepMetrics>}
|
|
9727
|
+
* @memberof EnvironmentStatus
|
|
9728
|
+
*/
|
|
9729
|
+
'metrics'?: Array<StageStepMetrics> | null;
|
|
9718
9730
|
}
|
|
9719
9731
|
/**
|
|
9720
9732
|
* Origin of the organization event
|
|
@@ -19098,6 +19110,12 @@ export type StageStatusEnum = typeof StageStatusEnum[keyof typeof StageStatusEnu
|
|
|
19098
19110
|
* @interface StageStepMetric
|
|
19099
19111
|
*/
|
|
19100
19112
|
export interface StageStepMetric {
|
|
19113
|
+
/**
|
|
19114
|
+
*
|
|
19115
|
+
* @type {string}
|
|
19116
|
+
* @memberof StageStepMetric
|
|
19117
|
+
*/
|
|
19118
|
+
'stage_id'?: string;
|
|
19101
19119
|
/**
|
|
19102
19120
|
*
|
|
19103
19121
|
* @type {StageStepMetricNameEnum}
|
|
@@ -19118,11 +19136,12 @@ export interface StageStepMetric {
|
|
|
19118
19136
|
'duration_sec'?: number;
|
|
19119
19137
|
}
|
|
19120
19138
|
/**
|
|
19121
|
-
* The name of the deployment step at the stage level: - QUEUEING: The step preceding the actual stage deployment step. - PROVISION_BUILDER: The step to provision builders before the actual build.
|
|
19139
|
+
* The name of the deployment step at the stage level: - TOTAL: The total duration of the stage deployment. - QUEUEING: The step preceding the actual stage deployment step. - PROVISION_BUILDER: The step to provision builders before the actual build.
|
|
19122
19140
|
* @export
|
|
19123
19141
|
* @enum {string}
|
|
19124
19142
|
*/
|
|
19125
19143
|
export declare const StageStepMetricNameEnum: {
|
|
19144
|
+
readonly TOTAL: "TOTAL";
|
|
19126
19145
|
readonly QUEUEING: "QUEUEING";
|
|
19127
19146
|
readonly PROVISION_BUILDER: "PROVISION_BUILDER";
|
|
19128
19147
|
};
|
|
@@ -19134,7 +19153,13 @@ export type StageStepMetricNameEnum = typeof StageStepMetricNameEnum[keyof typeo
|
|
|
19134
19153
|
*/
|
|
19135
19154
|
export interface StageStepMetrics {
|
|
19136
19155
|
/**
|
|
19137
|
-
*
|
|
19156
|
+
*
|
|
19157
|
+
* @type {string}
|
|
19158
|
+
* @memberof StageStepMetrics
|
|
19159
|
+
*/
|
|
19160
|
+
'stage_id'?: string;
|
|
19161
|
+
/**
|
|
19162
|
+
* The total duration in seconds of the stage deployment or null if the deployment is not completed.
|
|
19138
19163
|
* @type {number}
|
|
19139
19164
|
* @memberof StageStepMetrics
|
|
19140
19165
|
*/
|
package/dist/api.js
CHANGED
|
@@ -1186,11 +1186,12 @@ exports.StageStatusEnum = {
|
|
|
1186
1186
|
CANCELED: 'CANCELED'
|
|
1187
1187
|
};
|
|
1188
1188
|
/**
|
|
1189
|
-
* The name of the deployment step at the stage level: - QUEUEING: The step preceding the actual stage deployment step. - PROVISION_BUILDER: The step to provision builders before the actual build.
|
|
1189
|
+
* The name of the deployment step at the stage level: - TOTAL: The total duration of the stage deployment. - QUEUEING: The step preceding the actual stage deployment step. - PROVISION_BUILDER: The step to provision builders before the actual build.
|
|
1190
1190
|
* @export
|
|
1191
1191
|
* @enum {string}
|
|
1192
1192
|
*/
|
|
1193
1193
|
exports.StageStepMetricNameEnum = {
|
|
1194
|
+
TOTAL: 'TOTAL',
|
|
1194
1195
|
QUEUEING: 'QUEUEING',
|
|
1195
1196
|
PROVISION_BUILDER: 'PROVISION_BUILDER'
|
|
1196
1197
|
};
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -9715,6 +9715,18 @@ export interface EnvironmentStatus {
|
|
|
9715
9715
|
* @memberof EnvironmentStatus
|
|
9716
9716
|
*/
|
|
9717
9717
|
'deployment_status'?: EnvironmentDeploymentStatusEnum;
|
|
9718
|
+
/**
|
|
9719
|
+
*
|
|
9720
|
+
* @type {string}
|
|
9721
|
+
* @memberof EnvironmentStatus
|
|
9722
|
+
*/
|
|
9723
|
+
'deployment_request_id'?: string | null;
|
|
9724
|
+
/**
|
|
9725
|
+
*
|
|
9726
|
+
* @type {Array<StageStepMetrics>}
|
|
9727
|
+
* @memberof EnvironmentStatus
|
|
9728
|
+
*/
|
|
9729
|
+
'metrics'?: Array<StageStepMetrics> | null;
|
|
9718
9730
|
}
|
|
9719
9731
|
/**
|
|
9720
9732
|
* Origin of the organization event
|
|
@@ -19098,6 +19110,12 @@ export type StageStatusEnum = typeof StageStatusEnum[keyof typeof StageStatusEnu
|
|
|
19098
19110
|
* @interface StageStepMetric
|
|
19099
19111
|
*/
|
|
19100
19112
|
export interface StageStepMetric {
|
|
19113
|
+
/**
|
|
19114
|
+
*
|
|
19115
|
+
* @type {string}
|
|
19116
|
+
* @memberof StageStepMetric
|
|
19117
|
+
*/
|
|
19118
|
+
'stage_id'?: string;
|
|
19101
19119
|
/**
|
|
19102
19120
|
*
|
|
19103
19121
|
* @type {StageStepMetricNameEnum}
|
|
@@ -19118,11 +19136,12 @@ export interface StageStepMetric {
|
|
|
19118
19136
|
'duration_sec'?: number;
|
|
19119
19137
|
}
|
|
19120
19138
|
/**
|
|
19121
|
-
* The name of the deployment step at the stage level: - QUEUEING: The step preceding the actual stage deployment step. - PROVISION_BUILDER: The step to provision builders before the actual build.
|
|
19139
|
+
* The name of the deployment step at the stage level: - TOTAL: The total duration of the stage deployment. - QUEUEING: The step preceding the actual stage deployment step. - PROVISION_BUILDER: The step to provision builders before the actual build.
|
|
19122
19140
|
* @export
|
|
19123
19141
|
* @enum {string}
|
|
19124
19142
|
*/
|
|
19125
19143
|
export declare const StageStepMetricNameEnum: {
|
|
19144
|
+
readonly TOTAL: "TOTAL";
|
|
19126
19145
|
readonly QUEUEING: "QUEUEING";
|
|
19127
19146
|
readonly PROVISION_BUILDER: "PROVISION_BUILDER";
|
|
19128
19147
|
};
|
|
@@ -19134,7 +19153,13 @@ export type StageStepMetricNameEnum = typeof StageStepMetricNameEnum[keyof typeo
|
|
|
19134
19153
|
*/
|
|
19135
19154
|
export interface StageStepMetrics {
|
|
19136
19155
|
/**
|
|
19137
|
-
*
|
|
19156
|
+
*
|
|
19157
|
+
* @type {string}
|
|
19158
|
+
* @memberof StageStepMetrics
|
|
19159
|
+
*/
|
|
19160
|
+
'stage_id'?: string;
|
|
19161
|
+
/**
|
|
19162
|
+
* The total duration in seconds of the stage deployment or null if the deployment is not completed.
|
|
19138
19163
|
* @type {number}
|
|
19139
19164
|
* @memberof StageStepMetrics
|
|
19140
19165
|
*/
|
package/dist/esm/api.js
CHANGED
|
@@ -1173,11 +1173,12 @@ export const StageStatusEnum = {
|
|
|
1173
1173
|
CANCELED: 'CANCELED'
|
|
1174
1174
|
};
|
|
1175
1175
|
/**
|
|
1176
|
-
* The name of the deployment step at the stage level: - QUEUEING: The step preceding the actual stage deployment step. - PROVISION_BUILDER: The step to provision builders before the actual build.
|
|
1176
|
+
* The name of the deployment step at the stage level: - TOTAL: The total duration of the stage deployment. - QUEUEING: The step preceding the actual stage deployment step. - PROVISION_BUILDER: The step to provision builders before the actual build.
|
|
1177
1177
|
* @export
|
|
1178
1178
|
* @enum {string}
|
|
1179
1179
|
*/
|
|
1180
1180
|
export const StageStepMetricNameEnum = {
|
|
1181
|
+
TOTAL: 'TOTAL',
|
|
1181
1182
|
QUEUEING: 'QUEUEING',
|
|
1182
1183
|
PROVISION_BUILDER: 'PROVISION_BUILDER'
|
|
1183
1184
|
};
|