qovery-typescript-axios 1.1.948 → 1.1.950
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 +10 -2
- package/dist/api.d.ts +8 -0
- package/dist/api.js +4 -2
- package/dist/esm/api.d.ts +8 -0
- package/dist/esm/api.js +4 -2
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -37,7 +37,8 @@ export const APIVariableScopeEnum = {
|
|
|
37
37
|
CONTAINER: 'CONTAINER',
|
|
38
38
|
JOB: 'JOB',
|
|
39
39
|
HELM: 'HELM',
|
|
40
|
-
TERRAFORM: 'TERRAFORM'
|
|
40
|
+
TERRAFORM: 'TERRAFORM',
|
|
41
|
+
AGENTIC_WORKFLOW: 'AGENTIC_WORKFLOW'
|
|
41
42
|
} as const;
|
|
42
43
|
|
|
43
44
|
export type APIVariableScopeEnum = typeof APIVariableScopeEnum[keyof typeof APIVariableScopeEnum];
|
|
@@ -12931,6 +12932,12 @@ export interface Environment {
|
|
|
12931
12932
|
* @memberof Environment
|
|
12932
12933
|
*/
|
|
12933
12934
|
'cluster_name'?: string;
|
|
12935
|
+
/**
|
|
12936
|
+
* Date after which the environment is automatically deleted. Null when the environment never expires, which is the case for every environment except the throwaway ones created for a single agentic workflow run.
|
|
12937
|
+
* @type {string}
|
|
12938
|
+
* @memberof Environment
|
|
12939
|
+
*/
|
|
12940
|
+
'expires_at'?: string | null;
|
|
12934
12941
|
}
|
|
12935
12942
|
|
|
12936
12943
|
|
|
@@ -24540,7 +24547,8 @@ export const ServiceTypeForVariableEnum = {
|
|
|
24540
24547
|
CONTAINER: 'CONTAINER',
|
|
24541
24548
|
JOB: 'JOB',
|
|
24542
24549
|
HELM: 'HELM',
|
|
24543
|
-
TERRAFORM: 'TERRAFORM'
|
|
24550
|
+
TERRAFORM: 'TERRAFORM',
|
|
24551
|
+
AGENTIC_WORKFLOW: 'AGENTIC_WORKFLOW'
|
|
24544
24552
|
} as const;
|
|
24545
24553
|
|
|
24546
24554
|
export type ServiceTypeForVariableEnum = typeof ServiceTypeForVariableEnum[keyof typeof ServiceTypeForVariableEnum];
|
package/dist/api.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ export declare const APIVariableScopeEnum: {
|
|
|
27
27
|
readonly JOB: "JOB";
|
|
28
28
|
readonly HELM: "HELM";
|
|
29
29
|
readonly TERRAFORM: "TERRAFORM";
|
|
30
|
+
readonly AGENTIC_WORKFLOW: "AGENTIC_WORKFLOW";
|
|
30
31
|
};
|
|
31
32
|
export type APIVariableScopeEnum = typeof APIVariableScopeEnum[keyof typeof APIVariableScopeEnum];
|
|
32
33
|
/**
|
|
@@ -12571,6 +12572,12 @@ export interface Environment {
|
|
|
12571
12572
|
* @memberof Environment
|
|
12572
12573
|
*/
|
|
12573
12574
|
'cluster_name'?: string;
|
|
12575
|
+
/**
|
|
12576
|
+
* Date after which the environment is automatically deleted. Null when the environment never expires, which is the case for every environment except the throwaway ones created for a single agentic workflow run.
|
|
12577
|
+
* @type {string}
|
|
12578
|
+
* @memberof Environment
|
|
12579
|
+
*/
|
|
12580
|
+
'expires_at'?: string | null;
|
|
12574
12581
|
}
|
|
12575
12582
|
/**
|
|
12576
12583
|
*
|
|
@@ -23792,6 +23799,7 @@ export declare const ServiceTypeForVariableEnum: {
|
|
|
23792
23799
|
readonly JOB: "JOB";
|
|
23793
23800
|
readonly HELM: "HELM";
|
|
23794
23801
|
readonly TERRAFORM: "TERRAFORM";
|
|
23802
|
+
readonly AGENTIC_WORKFLOW: "AGENTIC_WORKFLOW";
|
|
23795
23803
|
};
|
|
23796
23804
|
export type ServiceTypeForVariableEnum = typeof ServiceTypeForVariableEnum[keyof typeof ServiceTypeForVariableEnum];
|
|
23797
23805
|
/**
|
package/dist/api.js
CHANGED
|
@@ -53,7 +53,8 @@ exports.APIVariableScopeEnum = {
|
|
|
53
53
|
CONTAINER: 'CONTAINER',
|
|
54
54
|
JOB: 'JOB',
|
|
55
55
|
HELM: 'HELM',
|
|
56
|
-
TERRAFORM: 'TERRAFORM'
|
|
56
|
+
TERRAFORM: 'TERRAFORM',
|
|
57
|
+
AGENTIC_WORKFLOW: 'AGENTIC_WORKFLOW'
|
|
57
58
|
};
|
|
58
59
|
/**
|
|
59
60
|
* type of the environment variable (VALUE, FILE, ALIAS, OVERRIDE, BUIT_IN, EXTERNAL_SECRET, FILE_EXTERNAL_SECRET)
|
|
@@ -1478,7 +1479,8 @@ exports.ServiceTypeForVariableEnum = {
|
|
|
1478
1479
|
CONTAINER: 'CONTAINER',
|
|
1479
1480
|
JOB: 'JOB',
|
|
1480
1481
|
HELM: 'HELM',
|
|
1481
|
-
TERRAFORM: 'TERRAFORM'
|
|
1482
|
+
TERRAFORM: 'TERRAFORM',
|
|
1483
|
+
AGENTIC_WORKFLOW: 'AGENTIC_WORKFLOW'
|
|
1482
1484
|
};
|
|
1483
1485
|
exports.ServicesOverviewResponseManagedByEnum = {
|
|
1484
1486
|
QOVERY: 'QOVERY',
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ export declare const APIVariableScopeEnum: {
|
|
|
27
27
|
readonly JOB: "JOB";
|
|
28
28
|
readonly HELM: "HELM";
|
|
29
29
|
readonly TERRAFORM: "TERRAFORM";
|
|
30
|
+
readonly AGENTIC_WORKFLOW: "AGENTIC_WORKFLOW";
|
|
30
31
|
};
|
|
31
32
|
export type APIVariableScopeEnum = typeof APIVariableScopeEnum[keyof typeof APIVariableScopeEnum];
|
|
32
33
|
/**
|
|
@@ -12571,6 +12572,12 @@ export interface Environment {
|
|
|
12571
12572
|
* @memberof Environment
|
|
12572
12573
|
*/
|
|
12573
12574
|
'cluster_name'?: string;
|
|
12575
|
+
/**
|
|
12576
|
+
* Date after which the environment is automatically deleted. Null when the environment never expires, which is the case for every environment except the throwaway ones created for a single agentic workflow run.
|
|
12577
|
+
* @type {string}
|
|
12578
|
+
* @memberof Environment
|
|
12579
|
+
*/
|
|
12580
|
+
'expires_at'?: string | null;
|
|
12574
12581
|
}
|
|
12575
12582
|
/**
|
|
12576
12583
|
*
|
|
@@ -23792,6 +23799,7 @@ export declare const ServiceTypeForVariableEnum: {
|
|
|
23792
23799
|
readonly JOB: "JOB";
|
|
23793
23800
|
readonly HELM: "HELM";
|
|
23794
23801
|
readonly TERRAFORM: "TERRAFORM";
|
|
23802
|
+
readonly AGENTIC_WORKFLOW: "AGENTIC_WORKFLOW";
|
|
23795
23803
|
};
|
|
23796
23804
|
export type ServiceTypeForVariableEnum = typeof ServiceTypeForVariableEnum[keyof typeof ServiceTypeForVariableEnum];
|
|
23797
23805
|
/**
|
package/dist/esm/api.js
CHANGED
|
@@ -39,7 +39,8 @@ export const APIVariableScopeEnum = {
|
|
|
39
39
|
CONTAINER: 'CONTAINER',
|
|
40
40
|
JOB: 'JOB',
|
|
41
41
|
HELM: 'HELM',
|
|
42
|
-
TERRAFORM: 'TERRAFORM'
|
|
42
|
+
TERRAFORM: 'TERRAFORM',
|
|
43
|
+
AGENTIC_WORKFLOW: 'AGENTIC_WORKFLOW'
|
|
43
44
|
};
|
|
44
45
|
/**
|
|
45
46
|
* type of the environment variable (VALUE, FILE, ALIAS, OVERRIDE, BUIT_IN, EXTERNAL_SECRET, FILE_EXTERNAL_SECRET)
|
|
@@ -1464,7 +1465,8 @@ export const ServiceTypeForVariableEnum = {
|
|
|
1464
1465
|
CONTAINER: 'CONTAINER',
|
|
1465
1466
|
JOB: 'JOB',
|
|
1466
1467
|
HELM: 'HELM',
|
|
1467
|
-
TERRAFORM: 'TERRAFORM'
|
|
1468
|
+
TERRAFORM: 'TERRAFORM',
|
|
1469
|
+
AGENTIC_WORKFLOW: 'AGENTIC_WORKFLOW'
|
|
1468
1470
|
};
|
|
1469
1471
|
export const ServicesOverviewResponseManagedByEnum = {
|
|
1470
1472
|
QOVERY: 'QOVERY',
|