qovery-typescript-axios 1.1.865 → 1.1.866
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 +48 -2
- package/dist/api.d.ts +46 -0
- package/dist/api.js +2 -1
- package/dist/esm/api.d.ts +46 -0
- package/dist/esm/api.js +2 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -2029,6 +2029,51 @@ export interface ArgoCdCredentialsResponse {
|
|
|
2029
2029
|
*/
|
|
2030
2030
|
'updated_at': string;
|
|
2031
2031
|
}
|
|
2032
|
+
/**
|
|
2033
|
+
* An ArgoCD service
|
|
2034
|
+
* @export
|
|
2035
|
+
* @interface ArgocdAppResponse
|
|
2036
|
+
*/
|
|
2037
|
+
export interface ArgocdAppResponse {
|
|
2038
|
+
/**
|
|
2039
|
+
*
|
|
2040
|
+
* @type {string}
|
|
2041
|
+
* @memberof ArgocdAppResponse
|
|
2042
|
+
*/
|
|
2043
|
+
'id': string;
|
|
2044
|
+
/**
|
|
2045
|
+
*
|
|
2046
|
+
* @type {string}
|
|
2047
|
+
* @memberof ArgocdAppResponse
|
|
2048
|
+
*/
|
|
2049
|
+
'created_at': string;
|
|
2050
|
+
/**
|
|
2051
|
+
*
|
|
2052
|
+
* @type {string}
|
|
2053
|
+
* @memberof ArgocdAppResponse
|
|
2054
|
+
*/
|
|
2055
|
+
'updated_at'?: string;
|
|
2056
|
+
/**
|
|
2057
|
+
* name is case insensitive
|
|
2058
|
+
* @type {string}
|
|
2059
|
+
* @memberof ArgocdAppResponse
|
|
2060
|
+
*/
|
|
2061
|
+
'name': string;
|
|
2062
|
+
/**
|
|
2063
|
+
*
|
|
2064
|
+
* @type {ServiceTypeEnum}
|
|
2065
|
+
* @memberof ArgocdAppResponse
|
|
2066
|
+
*/
|
|
2067
|
+
'service_type': ServiceTypeEnum;
|
|
2068
|
+
/**
|
|
2069
|
+
*
|
|
2070
|
+
* @type {string}
|
|
2071
|
+
* @memberof ArgocdAppResponse
|
|
2072
|
+
*/
|
|
2073
|
+
'namespace': string;
|
|
2074
|
+
}
|
|
2075
|
+
|
|
2076
|
+
|
|
2032
2077
|
/**
|
|
2033
2078
|
*
|
|
2034
2079
|
* @export
|
|
@@ -15448,7 +15493,8 @@ export const LinkedServiceTypeEnum = {
|
|
|
15448
15493
|
DATABASE: 'DATABASE',
|
|
15449
15494
|
JOB: 'JOB',
|
|
15450
15495
|
HELM: 'HELM',
|
|
15451
|
-
TERRAFORM: 'TERRAFORM'
|
|
15496
|
+
TERRAFORM: 'TERRAFORM',
|
|
15497
|
+
ARGOCD_APP: 'ARGOCD_APP'
|
|
15452
15498
|
} as const;
|
|
15453
15499
|
|
|
15454
15500
|
export type LinkedServiceTypeEnum = typeof LinkedServiceTypeEnum[keyof typeof LinkedServiceTypeEnum];
|
|
@@ -15649,7 +15695,7 @@ export interface ListServicesByEnvironmentId200Response {
|
|
|
15649
15695
|
* @type ListServicesByEnvironmentId200ResponseResultsInner
|
|
15650
15696
|
* @export
|
|
15651
15697
|
*/
|
|
15652
|
-
export type ListServicesByEnvironmentId200ResponseResultsInner = { service_type: 'APPLICATION' } & Application | { service_type: 'CONTAINER' } & ContainerResponse | { service_type: 'DATABASE' } & Database | { service_type: 'HELM' } & HelmResponse | { service_type: 'JOB' } & JobResponse | { service_type: 'TERRAFORM' } & TerraformResponse;
|
|
15698
|
+
export type ListServicesByEnvironmentId200ResponseResultsInner = { service_type: 'APPLICATION' } & Application | { service_type: 'ARGOCD_APP' } & ArgocdAppResponse | { service_type: 'CONTAINER' } & ContainerResponse | { service_type: 'DATABASE' } & Database | { service_type: 'HELM' } & HelmResponse | { service_type: 'JOB' } & JobResponse | { service_type: 'TERRAFORM' } & TerraformResponse;
|
|
15653
15699
|
|
|
15654
15700
|
/**
|
|
15655
15701
|
*
|
package/dist/api.d.ts
CHANGED
|
@@ -1949,6 +1949,49 @@ export interface ArgoCdCredentialsResponse {
|
|
|
1949
1949
|
*/
|
|
1950
1950
|
'updated_at': string;
|
|
1951
1951
|
}
|
|
1952
|
+
/**
|
|
1953
|
+
* An ArgoCD service
|
|
1954
|
+
* @export
|
|
1955
|
+
* @interface ArgocdAppResponse
|
|
1956
|
+
*/
|
|
1957
|
+
export interface ArgocdAppResponse {
|
|
1958
|
+
/**
|
|
1959
|
+
*
|
|
1960
|
+
* @type {string}
|
|
1961
|
+
* @memberof ArgocdAppResponse
|
|
1962
|
+
*/
|
|
1963
|
+
'id': string;
|
|
1964
|
+
/**
|
|
1965
|
+
*
|
|
1966
|
+
* @type {string}
|
|
1967
|
+
* @memberof ArgocdAppResponse
|
|
1968
|
+
*/
|
|
1969
|
+
'created_at': string;
|
|
1970
|
+
/**
|
|
1971
|
+
*
|
|
1972
|
+
* @type {string}
|
|
1973
|
+
* @memberof ArgocdAppResponse
|
|
1974
|
+
*/
|
|
1975
|
+
'updated_at'?: string;
|
|
1976
|
+
/**
|
|
1977
|
+
* name is case insensitive
|
|
1978
|
+
* @type {string}
|
|
1979
|
+
* @memberof ArgocdAppResponse
|
|
1980
|
+
*/
|
|
1981
|
+
'name': string;
|
|
1982
|
+
/**
|
|
1983
|
+
*
|
|
1984
|
+
* @type {ServiceTypeEnum}
|
|
1985
|
+
* @memberof ArgocdAppResponse
|
|
1986
|
+
*/
|
|
1987
|
+
'service_type': ServiceTypeEnum;
|
|
1988
|
+
/**
|
|
1989
|
+
*
|
|
1990
|
+
* @type {string}
|
|
1991
|
+
* @memberof ArgocdAppResponse
|
|
1992
|
+
*/
|
|
1993
|
+
'namespace': string;
|
|
1994
|
+
}
|
|
1952
1995
|
/**
|
|
1953
1996
|
*
|
|
1954
1997
|
* @export
|
|
@@ -14976,6 +15019,7 @@ export declare const LinkedServiceTypeEnum: {
|
|
|
14976
15019
|
readonly JOB: "JOB";
|
|
14977
15020
|
readonly HELM: "HELM";
|
|
14978
15021
|
readonly TERRAFORM: "TERRAFORM";
|
|
15022
|
+
readonly ARGOCD_APP: "ARGOCD_APP";
|
|
14979
15023
|
};
|
|
14980
15024
|
export type LinkedServiceTypeEnum = typeof LinkedServiceTypeEnum[keyof typeof LinkedServiceTypeEnum];
|
|
14981
15025
|
/**
|
|
@@ -15176,6 +15220,8 @@ export interface ListServicesByEnvironmentId200Response {
|
|
|
15176
15220
|
export type ListServicesByEnvironmentId200ResponseResultsInner = {
|
|
15177
15221
|
service_type: 'APPLICATION';
|
|
15178
15222
|
} & Application | {
|
|
15223
|
+
service_type: 'ARGOCD_APP';
|
|
15224
|
+
} & ArgocdAppResponse | {
|
|
15179
15225
|
service_type: 'CONTAINER';
|
|
15180
15226
|
} & ContainerResponse | {
|
|
15181
15227
|
service_type: 'DATABASE';
|
package/dist/api.js
CHANGED
|
@@ -848,7 +848,8 @@ exports.LinkedServiceTypeEnum = {
|
|
|
848
848
|
DATABASE: 'DATABASE',
|
|
849
849
|
JOB: 'JOB',
|
|
850
850
|
HELM: 'HELM',
|
|
851
|
-
TERRAFORM: 'TERRAFORM'
|
|
851
|
+
TERRAFORM: 'TERRAFORM',
|
|
852
|
+
ARGOCD_APP: 'ARGOCD_APP'
|
|
852
853
|
};
|
|
853
854
|
exports.MetricsConfigurationManagedByQoveryKindEnum = {
|
|
854
855
|
MANAGED_BY_QOVERY: 'MANAGED_BY_QOVERY'
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -1949,6 +1949,49 @@ export interface ArgoCdCredentialsResponse {
|
|
|
1949
1949
|
*/
|
|
1950
1950
|
'updated_at': string;
|
|
1951
1951
|
}
|
|
1952
|
+
/**
|
|
1953
|
+
* An ArgoCD service
|
|
1954
|
+
* @export
|
|
1955
|
+
* @interface ArgocdAppResponse
|
|
1956
|
+
*/
|
|
1957
|
+
export interface ArgocdAppResponse {
|
|
1958
|
+
/**
|
|
1959
|
+
*
|
|
1960
|
+
* @type {string}
|
|
1961
|
+
* @memberof ArgocdAppResponse
|
|
1962
|
+
*/
|
|
1963
|
+
'id': string;
|
|
1964
|
+
/**
|
|
1965
|
+
*
|
|
1966
|
+
* @type {string}
|
|
1967
|
+
* @memberof ArgocdAppResponse
|
|
1968
|
+
*/
|
|
1969
|
+
'created_at': string;
|
|
1970
|
+
/**
|
|
1971
|
+
*
|
|
1972
|
+
* @type {string}
|
|
1973
|
+
* @memberof ArgocdAppResponse
|
|
1974
|
+
*/
|
|
1975
|
+
'updated_at'?: string;
|
|
1976
|
+
/**
|
|
1977
|
+
* name is case insensitive
|
|
1978
|
+
* @type {string}
|
|
1979
|
+
* @memberof ArgocdAppResponse
|
|
1980
|
+
*/
|
|
1981
|
+
'name': string;
|
|
1982
|
+
/**
|
|
1983
|
+
*
|
|
1984
|
+
* @type {ServiceTypeEnum}
|
|
1985
|
+
* @memberof ArgocdAppResponse
|
|
1986
|
+
*/
|
|
1987
|
+
'service_type': ServiceTypeEnum;
|
|
1988
|
+
/**
|
|
1989
|
+
*
|
|
1990
|
+
* @type {string}
|
|
1991
|
+
* @memberof ArgocdAppResponse
|
|
1992
|
+
*/
|
|
1993
|
+
'namespace': string;
|
|
1994
|
+
}
|
|
1952
1995
|
/**
|
|
1953
1996
|
*
|
|
1954
1997
|
* @export
|
|
@@ -14976,6 +15019,7 @@ export declare const LinkedServiceTypeEnum: {
|
|
|
14976
15019
|
readonly JOB: "JOB";
|
|
14977
15020
|
readonly HELM: "HELM";
|
|
14978
15021
|
readonly TERRAFORM: "TERRAFORM";
|
|
15022
|
+
readonly ARGOCD_APP: "ARGOCD_APP";
|
|
14979
15023
|
};
|
|
14980
15024
|
export type LinkedServiceTypeEnum = typeof LinkedServiceTypeEnum[keyof typeof LinkedServiceTypeEnum];
|
|
14981
15025
|
/**
|
|
@@ -15176,6 +15220,8 @@ export interface ListServicesByEnvironmentId200Response {
|
|
|
15176
15220
|
export type ListServicesByEnvironmentId200ResponseResultsInner = {
|
|
15177
15221
|
service_type: 'APPLICATION';
|
|
15178
15222
|
} & Application | {
|
|
15223
|
+
service_type: 'ARGOCD_APP';
|
|
15224
|
+
} & ArgocdAppResponse | {
|
|
15179
15225
|
service_type: 'CONTAINER';
|
|
15180
15226
|
} & ContainerResponse | {
|
|
15181
15227
|
service_type: 'DATABASE';
|
package/dist/esm/api.js
CHANGED
|
@@ -835,7 +835,8 @@ export const LinkedServiceTypeEnum = {
|
|
|
835
835
|
DATABASE: 'DATABASE',
|
|
836
836
|
JOB: 'JOB',
|
|
837
837
|
HELM: 'HELM',
|
|
838
|
-
TERRAFORM: 'TERRAFORM'
|
|
838
|
+
TERRAFORM: 'TERRAFORM',
|
|
839
|
+
ARGOCD_APP: 'ARGOCD_APP'
|
|
839
840
|
};
|
|
840
841
|
export const MetricsConfigurationManagedByQoveryKindEnum = {
|
|
841
842
|
MANAGED_BY_QOVERY: 'MANAGED_BY_QOVERY'
|