qovery-typescript-axios 1.1.865 → 1.1.867

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 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
@@ -15649,7 +15694,7 @@ export interface ListServicesByEnvironmentId200Response {
15649
15694
  * @type ListServicesByEnvironmentId200ResponseResultsInner
15650
15695
  * @export
15651
15696
  */
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;
15697
+ 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
15698
 
15654
15699
  /**
15655
15700
  *
@@ -19879,7 +19924,8 @@ export const ServiceTypeEnum = {
19879
19924
  CONTAINER: 'CONTAINER',
19880
19925
  JOB: 'JOB',
19881
19926
  HELM: 'HELM',
19882
- TERRAFORM: 'TERRAFORM'
19927
+ TERRAFORM: 'TERRAFORM',
19928
+ ARGOCD_APP: 'ARGOCD_APP'
19883
19929
  } as const;
19884
19930
 
19885
19931
  export type ServiceTypeEnum = typeof ServiceTypeEnum[keyof typeof ServiceTypeEnum];
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
@@ -15176,6 +15219,8 @@ export interface ListServicesByEnvironmentId200Response {
15176
15219
  export type ListServicesByEnvironmentId200ResponseResultsInner = {
15177
15220
  service_type: 'APPLICATION';
15178
15221
  } & Application | {
15222
+ service_type: 'ARGOCD_APP';
15223
+ } & ArgocdAppResponse | {
15179
15224
  service_type: 'CONTAINER';
15180
15225
  } & ContainerResponse | {
15181
15226
  service_type: 'DATABASE';
@@ -19249,6 +19294,7 @@ export declare const ServiceTypeEnum: {
19249
19294
  readonly JOB: "JOB";
19250
19295
  readonly HELM: "HELM";
19251
19296
  readonly TERRAFORM: "TERRAFORM";
19297
+ readonly ARGOCD_APP: "ARGOCD_APP";
19252
19298
  };
19253
19299
  export type ServiceTypeEnum = typeof ServiceTypeEnum[keyof typeof ServiceTypeEnum];
19254
19300
  /**
package/dist/api.js CHANGED
@@ -1202,7 +1202,8 @@ exports.ServiceTypeEnum = {
1202
1202
  CONTAINER: 'CONTAINER',
1203
1203
  JOB: 'JOB',
1204
1204
  HELM: 'HELM',
1205
- TERRAFORM: 'TERRAFORM'
1205
+ TERRAFORM: 'TERRAFORM',
1206
+ ARGOCD_APP: 'ARGOCD_APP'
1206
1207
  };
1207
1208
  /**
1208
1209
  * type of the service
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
@@ -15176,6 +15219,8 @@ export interface ListServicesByEnvironmentId200Response {
15176
15219
  export type ListServicesByEnvironmentId200ResponseResultsInner = {
15177
15220
  service_type: 'APPLICATION';
15178
15221
  } & Application | {
15222
+ service_type: 'ARGOCD_APP';
15223
+ } & ArgocdAppResponse | {
15179
15224
  service_type: 'CONTAINER';
15180
15225
  } & ContainerResponse | {
15181
15226
  service_type: 'DATABASE';
@@ -19249,6 +19294,7 @@ export declare const ServiceTypeEnum: {
19249
19294
  readonly JOB: "JOB";
19250
19295
  readonly HELM: "HELM";
19251
19296
  readonly TERRAFORM: "TERRAFORM";
19297
+ readonly ARGOCD_APP: "ARGOCD_APP";
19252
19298
  };
19253
19299
  export type ServiceTypeEnum = typeof ServiceTypeEnum[keyof typeof ServiceTypeEnum];
19254
19300
  /**
package/dist/esm/api.js CHANGED
@@ -1189,7 +1189,8 @@ export const ServiceTypeEnum = {
1189
1189
  CONTAINER: 'CONTAINER',
1190
1190
  JOB: 'JOB',
1191
1191
  HELM: 'HELM',
1192
- TERRAFORM: 'TERRAFORM'
1192
+ TERRAFORM: 'TERRAFORM',
1193
+ ARGOCD_APP: 'ARGOCD_APP'
1193
1194
  };
1194
1195
  /**
1195
1196
  * type of the service
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qovery-typescript-axios",
3
- "version": "v1.1.865",
3
+ "version": "v1.1.867",
4
4
  "description": "OpenAPI client for qovery-typescript-axios",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {