qovery-ws-typescript-axios 0.1.642 → 0.1.644
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 +8 -1
- package/dist/api.d.ts +7 -0
- package/dist/api.js +2 -1
- package/dist/esm/api.d.ts +7 -0
- package/dist/esm/api.js +2 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -668,6 +668,12 @@ export type DebugFlavor = typeof DebugFlavor[keyof typeof DebugFlavor];
|
|
|
668
668
|
* @interface EnvironmentStatusDto
|
|
669
669
|
*/
|
|
670
670
|
export interface EnvironmentStatusDto {
|
|
671
|
+
/**
|
|
672
|
+
*
|
|
673
|
+
* @type {Array<ApplicationStatusDto>}
|
|
674
|
+
* @memberof EnvironmentStatusDto
|
|
675
|
+
*/
|
|
676
|
+
'agentic_workflows': Array<ApplicationStatusDto>;
|
|
671
677
|
/**
|
|
672
678
|
*
|
|
673
679
|
* @type {Array<ApplicationStatusDto>}
|
|
@@ -2142,7 +2148,8 @@ export const ServiceType = {
|
|
|
2142
2148
|
JOB: 'JOB',
|
|
2143
2149
|
HELM: 'HELM',
|
|
2144
2150
|
TERRAFORM: 'TERRAFORM',
|
|
2145
|
-
ARGOCD_APP: 'ARGOCD_APP'
|
|
2151
|
+
ARGOCD_APP: 'ARGOCD_APP',
|
|
2152
|
+
AGENTIC_WORKFLOW: 'AGENTIC_WORKFLOW'
|
|
2146
2153
|
} as const;
|
|
2147
2154
|
|
|
2148
2155
|
export type ServiceType = typeof ServiceType[keyof typeof ServiceType];
|
package/dist/api.d.ts
CHANGED
|
@@ -631,6 +631,12 @@ export type DebugFlavor = typeof DebugFlavor[keyof typeof DebugFlavor];
|
|
|
631
631
|
* @interface EnvironmentStatusDto
|
|
632
632
|
*/
|
|
633
633
|
export interface EnvironmentStatusDto {
|
|
634
|
+
/**
|
|
635
|
+
*
|
|
636
|
+
* @type {Array<ApplicationStatusDto>}
|
|
637
|
+
* @memberof EnvironmentStatusDto
|
|
638
|
+
*/
|
|
639
|
+
'agentic_workflows': Array<ApplicationStatusDto>;
|
|
634
640
|
/**
|
|
635
641
|
*
|
|
636
642
|
* @type {Array<ApplicationStatusDto>}
|
|
@@ -2079,6 +2085,7 @@ export declare const ServiceType: {
|
|
|
2079
2085
|
readonly HELM: "HELM";
|
|
2080
2086
|
readonly TERRAFORM: "TERRAFORM";
|
|
2081
2087
|
readonly ARGOCD_APP: "ARGOCD_APP";
|
|
2088
|
+
readonly AGENTIC_WORKFLOW: "AGENTIC_WORKFLOW";
|
|
2082
2089
|
};
|
|
2083
2090
|
export type ServiceType = typeof ServiceType[keyof typeof ServiceType];
|
|
2084
2091
|
/**
|
package/dist/api.js
CHANGED
package/dist/esm/api.d.ts
CHANGED
|
@@ -631,6 +631,12 @@ export type DebugFlavor = typeof DebugFlavor[keyof typeof DebugFlavor];
|
|
|
631
631
|
* @interface EnvironmentStatusDto
|
|
632
632
|
*/
|
|
633
633
|
export interface EnvironmentStatusDto {
|
|
634
|
+
/**
|
|
635
|
+
*
|
|
636
|
+
* @type {Array<ApplicationStatusDto>}
|
|
637
|
+
* @memberof EnvironmentStatusDto
|
|
638
|
+
*/
|
|
639
|
+
'agentic_workflows': Array<ApplicationStatusDto>;
|
|
634
640
|
/**
|
|
635
641
|
*
|
|
636
642
|
* @type {Array<ApplicationStatusDto>}
|
|
@@ -2079,6 +2085,7 @@ export declare const ServiceType: {
|
|
|
2079
2085
|
readonly HELM: "HELM";
|
|
2080
2086
|
readonly TERRAFORM: "TERRAFORM";
|
|
2081
2087
|
readonly ARGOCD_APP: "ARGOCD_APP";
|
|
2088
|
+
readonly AGENTIC_WORKFLOW: "AGENTIC_WORKFLOW";
|
|
2082
2089
|
};
|
|
2083
2090
|
export type ServiceType = typeof ServiceType[keyof typeof ServiceType];
|
|
2084
2091
|
/**
|
package/dist/esm/api.js
CHANGED