qovery-typescript-axios 1.1.960 → 1.1.961
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 +14 -1
- package/dist/api.d.ts +14 -1
- package/dist/api.js +2 -1
- package/dist/esm/api.d.ts +14 -1
- package/dist/esm/api.js +2 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -24761,6 +24761,12 @@ export interface ServiceStepMetric {
|
|
|
24761
24761
|
* @memberof ServiceStepMetric
|
|
24762
24762
|
*/
|
|
24763
24763
|
'duration_sec'?: number;
|
|
24764
|
+
/**
|
|
24765
|
+
* The time at which the step started. Present while the step is ongoing and may be retained after completion.
|
|
24766
|
+
* @type {string}
|
|
24767
|
+
* @memberof ServiceStepMetric
|
|
24768
|
+
*/
|
|
24769
|
+
'started_at'?: string | null;
|
|
24764
24770
|
}
|
|
24765
24771
|
|
|
24766
24772
|
|
|
@@ -25449,6 +25455,12 @@ export interface StageStepMetric {
|
|
|
25449
25455
|
* @memberof StageStepMetric
|
|
25450
25456
|
*/
|
|
25451
25457
|
'duration_sec'?: number;
|
|
25458
|
+
/**
|
|
25459
|
+
* The time at which the step started. Present while the step is ongoing and may be retained after completion.
|
|
25460
|
+
* @type {string}
|
|
25461
|
+
* @memberof StageStepMetric
|
|
25462
|
+
*/
|
|
25463
|
+
'started_at'?: string | null;
|
|
25452
25464
|
}
|
|
25453
25465
|
|
|
25454
25466
|
|
|
@@ -25655,12 +25667,13 @@ export type StatusKindEnum = typeof StatusKindEnum[keyof typeof StatusKindEnum];
|
|
|
25655
25667
|
|
|
25656
25668
|
|
|
25657
25669
|
/**
|
|
25658
|
-
* The status of
|
|
25670
|
+
* The lifecycle status of the step: - ONGOING: The step is currently running. - SUCCESS: The step completed successfully. - ERROR: The step completed with an error. - CANCEL: The step was canceled. - SKIP: The step was skipped because it was not necessary.
|
|
25659
25671
|
* @export
|
|
25660
25672
|
* @enum {string}
|
|
25661
25673
|
*/
|
|
25662
25674
|
|
|
25663
25675
|
export const StepMetricStatusEnum = {
|
|
25676
|
+
ONGOING: 'ONGOING',
|
|
25664
25677
|
SUCCESS: 'SUCCESS',
|
|
25665
25678
|
ERROR: 'ERROR',
|
|
25666
25679
|
CANCEL: 'CANCEL',
|
package/dist/api.d.ts
CHANGED
|
@@ -24017,6 +24017,12 @@ export interface ServiceStepMetric {
|
|
|
24017
24017
|
* @memberof ServiceStepMetric
|
|
24018
24018
|
*/
|
|
24019
24019
|
'duration_sec'?: number;
|
|
24020
|
+
/**
|
|
24021
|
+
* The time at which the step started. Present while the step is ongoing and may be retained after completion.
|
|
24022
|
+
* @type {string}
|
|
24023
|
+
* @memberof ServiceStepMetric
|
|
24024
|
+
*/
|
|
24025
|
+
'started_at'?: string | null;
|
|
24020
24026
|
}
|
|
24021
24027
|
/**
|
|
24022
24028
|
* The name of the deployment step at the service level: - REGISTRY_CREATE_REPOSITORY: The step to create the repository in the registry. - GIT_CLONE: The step to clone the source code repository. - BUILD_QUEUEING: The queuing time preceding the actual building step. - BUILD: The step to build the source code. - DEPLOYMENT_QUEUEING: The queuing time preceding the actual deployment step. - DEPLOYMENT: The step to deploy the service. - ROUTER_DEPLOYMENT: The step to deploy the router. - MIRROR_IMAGE: The step to mirror the image to the private registry. - EXECUTING: The step to execute a job or terraform apply.
|
|
@@ -24664,6 +24670,12 @@ export interface StageStepMetric {
|
|
|
24664
24670
|
* @memberof StageStepMetric
|
|
24665
24671
|
*/
|
|
24666
24672
|
'duration_sec'?: number;
|
|
24673
|
+
/**
|
|
24674
|
+
* The time at which the step started. Present while the step is ongoing and may be retained after completion.
|
|
24675
|
+
* @type {string}
|
|
24676
|
+
* @memberof StageStepMetric
|
|
24677
|
+
*/
|
|
24678
|
+
'started_at'?: string | null;
|
|
24667
24679
|
}
|
|
24668
24680
|
/**
|
|
24669
24681
|
* 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.
|
|
@@ -24852,11 +24864,12 @@ export declare const StatusKindEnum: {
|
|
|
24852
24864
|
};
|
|
24853
24865
|
export type StatusKindEnum = typeof StatusKindEnum[keyof typeof StatusKindEnum];
|
|
24854
24866
|
/**
|
|
24855
|
-
* The status of
|
|
24867
|
+
* The lifecycle status of the step: - ONGOING: The step is currently running. - SUCCESS: The step completed successfully. - ERROR: The step completed with an error. - CANCEL: The step was canceled. - SKIP: The step was skipped because it was not necessary.
|
|
24856
24868
|
* @export
|
|
24857
24869
|
* @enum {string}
|
|
24858
24870
|
*/
|
|
24859
24871
|
export declare const StepMetricStatusEnum: {
|
|
24872
|
+
readonly ONGOING: "ONGOING";
|
|
24860
24873
|
readonly SUCCESS: "SUCCESS";
|
|
24861
24874
|
readonly ERROR: "ERROR";
|
|
24862
24875
|
readonly CANCEL: "CANCEL";
|
package/dist/api.js
CHANGED
|
@@ -1616,11 +1616,12 @@ exports.StatusKindEnum = {
|
|
|
1616
1616
|
WAITING: 'WAITING'
|
|
1617
1617
|
};
|
|
1618
1618
|
/**
|
|
1619
|
-
* The status of
|
|
1619
|
+
* The lifecycle status of the step: - ONGOING: The step is currently running. - SUCCESS: The step completed successfully. - ERROR: The step completed with an error. - CANCEL: The step was canceled. - SKIP: The step was skipped because it was not necessary.
|
|
1620
1620
|
* @export
|
|
1621
1621
|
* @enum {string}
|
|
1622
1622
|
*/
|
|
1623
1623
|
exports.StepMetricStatusEnum = {
|
|
1624
|
+
ONGOING: 'ONGOING',
|
|
1624
1625
|
SUCCESS: 'SUCCESS',
|
|
1625
1626
|
ERROR: 'ERROR',
|
|
1626
1627
|
CANCEL: 'CANCEL',
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -24017,6 +24017,12 @@ export interface ServiceStepMetric {
|
|
|
24017
24017
|
* @memberof ServiceStepMetric
|
|
24018
24018
|
*/
|
|
24019
24019
|
'duration_sec'?: number;
|
|
24020
|
+
/**
|
|
24021
|
+
* The time at which the step started. Present while the step is ongoing and may be retained after completion.
|
|
24022
|
+
* @type {string}
|
|
24023
|
+
* @memberof ServiceStepMetric
|
|
24024
|
+
*/
|
|
24025
|
+
'started_at'?: string | null;
|
|
24020
24026
|
}
|
|
24021
24027
|
/**
|
|
24022
24028
|
* The name of the deployment step at the service level: - REGISTRY_CREATE_REPOSITORY: The step to create the repository in the registry. - GIT_CLONE: The step to clone the source code repository. - BUILD_QUEUEING: The queuing time preceding the actual building step. - BUILD: The step to build the source code. - DEPLOYMENT_QUEUEING: The queuing time preceding the actual deployment step. - DEPLOYMENT: The step to deploy the service. - ROUTER_DEPLOYMENT: The step to deploy the router. - MIRROR_IMAGE: The step to mirror the image to the private registry. - EXECUTING: The step to execute a job or terraform apply.
|
|
@@ -24664,6 +24670,12 @@ export interface StageStepMetric {
|
|
|
24664
24670
|
* @memberof StageStepMetric
|
|
24665
24671
|
*/
|
|
24666
24672
|
'duration_sec'?: number;
|
|
24673
|
+
/**
|
|
24674
|
+
* The time at which the step started. Present while the step is ongoing and may be retained after completion.
|
|
24675
|
+
* @type {string}
|
|
24676
|
+
* @memberof StageStepMetric
|
|
24677
|
+
*/
|
|
24678
|
+
'started_at'?: string | null;
|
|
24667
24679
|
}
|
|
24668
24680
|
/**
|
|
24669
24681
|
* 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.
|
|
@@ -24852,11 +24864,12 @@ export declare const StatusKindEnum: {
|
|
|
24852
24864
|
};
|
|
24853
24865
|
export type StatusKindEnum = typeof StatusKindEnum[keyof typeof StatusKindEnum];
|
|
24854
24866
|
/**
|
|
24855
|
-
* The status of
|
|
24867
|
+
* The lifecycle status of the step: - ONGOING: The step is currently running. - SUCCESS: The step completed successfully. - ERROR: The step completed with an error. - CANCEL: The step was canceled. - SKIP: The step was skipped because it was not necessary.
|
|
24856
24868
|
* @export
|
|
24857
24869
|
* @enum {string}
|
|
24858
24870
|
*/
|
|
24859
24871
|
export declare const StepMetricStatusEnum: {
|
|
24872
|
+
readonly ONGOING: "ONGOING";
|
|
24860
24873
|
readonly SUCCESS: "SUCCESS";
|
|
24861
24874
|
readonly ERROR: "ERROR";
|
|
24862
24875
|
readonly CANCEL: "CANCEL";
|
package/dist/esm/api.js
CHANGED
|
@@ -1601,11 +1601,12 @@ export const StatusKindEnum = {
|
|
|
1601
1601
|
WAITING: 'WAITING'
|
|
1602
1602
|
};
|
|
1603
1603
|
/**
|
|
1604
|
-
* The status of
|
|
1604
|
+
* The lifecycle status of the step: - ONGOING: The step is currently running. - SUCCESS: The step completed successfully. - ERROR: The step completed with an error. - CANCEL: The step was canceled. - SKIP: The step was skipped because it was not necessary.
|
|
1605
1605
|
* @export
|
|
1606
1606
|
* @enum {string}
|
|
1607
1607
|
*/
|
|
1608
1608
|
export const StepMetricStatusEnum = {
|
|
1609
|
+
ONGOING: 'ONGOING',
|
|
1609
1610
|
SUCCESS: 'SUCCESS',
|
|
1610
1611
|
ERROR: 'ERROR',
|
|
1611
1612
|
CANCEL: 'CANCEL',
|