qovery-typescript-axios 1.1.936 → 1.1.937
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 +17 -2
- package/dist/api.d.ts +15 -0
- package/dist/api.js +2 -1
- package/dist/esm/api.d.ts +15 -0
- package/dist/esm/api.js +2 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -371,12 +371,24 @@ export interface AgenticWorkflowResponse {
|
|
|
371
371
|
* @memberof AgenticWorkflowResponse
|
|
372
372
|
*/
|
|
373
373
|
'updated_at'?: string;
|
|
374
|
+
/**
|
|
375
|
+
*
|
|
376
|
+
* @type {ServiceTypeEnum}
|
|
377
|
+
* @memberof AgenticWorkflowResponse
|
|
378
|
+
*/
|
|
379
|
+
'service_type': ServiceTypeEnum;
|
|
374
380
|
/**
|
|
375
381
|
* name is case insensitive
|
|
376
382
|
* @type {string}
|
|
377
383
|
* @memberof AgenticWorkflowResponse
|
|
378
384
|
*/
|
|
379
385
|
'name': string;
|
|
386
|
+
/**
|
|
387
|
+
* URL-friendly identifier derived from the name
|
|
388
|
+
* @type {string}
|
|
389
|
+
* @memberof AgenticWorkflowResponse
|
|
390
|
+
*/
|
|
391
|
+
'slug': string;
|
|
380
392
|
/**
|
|
381
393
|
*
|
|
382
394
|
* @type {string}
|
|
@@ -444,6 +456,8 @@ export interface AgenticWorkflowResponse {
|
|
|
444
456
|
*/
|
|
445
457
|
'webhook': AgenticWorkflowWebhook;
|
|
446
458
|
}
|
|
459
|
+
|
|
460
|
+
|
|
447
461
|
/**
|
|
448
462
|
*
|
|
449
463
|
* @export
|
|
@@ -19108,7 +19122,7 @@ export interface ListServicesByEnvironmentId200Response {
|
|
|
19108
19122
|
* @type ListServicesByEnvironmentId200ResponseResultsInner
|
|
19109
19123
|
* @export
|
|
19110
19124
|
*/
|
|
19111
|
-
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;
|
|
19125
|
+
export type ListServicesByEnvironmentId200ResponseResultsInner = { service_type: 'AGENTIC_WORKFLOW' } & AgenticWorkflowResponse | { 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;
|
|
19112
19126
|
|
|
19113
19127
|
/**
|
|
19114
19128
|
*
|
|
@@ -24185,7 +24199,8 @@ export const ServiceTypeEnum = {
|
|
|
24185
24199
|
JOB: 'JOB',
|
|
24186
24200
|
HELM: 'HELM',
|
|
24187
24201
|
TERRAFORM: 'TERRAFORM',
|
|
24188
|
-
ARGOCD_APP: 'ARGOCD_APP'
|
|
24202
|
+
ARGOCD_APP: 'ARGOCD_APP',
|
|
24203
|
+
AGENTIC_WORKFLOW: 'AGENTIC_WORKFLOW'
|
|
24189
24204
|
} as const;
|
|
24190
24205
|
|
|
24191
24206
|
export type ServiceTypeEnum = typeof ServiceTypeEnum[keyof typeof ServiceTypeEnum];
|
package/dist/api.d.ts
CHANGED
|
@@ -345,12 +345,24 @@ export interface AgenticWorkflowResponse {
|
|
|
345
345
|
* @memberof AgenticWorkflowResponse
|
|
346
346
|
*/
|
|
347
347
|
'updated_at'?: string;
|
|
348
|
+
/**
|
|
349
|
+
*
|
|
350
|
+
* @type {ServiceTypeEnum}
|
|
351
|
+
* @memberof AgenticWorkflowResponse
|
|
352
|
+
*/
|
|
353
|
+
'service_type': ServiceTypeEnum;
|
|
348
354
|
/**
|
|
349
355
|
* name is case insensitive
|
|
350
356
|
* @type {string}
|
|
351
357
|
* @memberof AgenticWorkflowResponse
|
|
352
358
|
*/
|
|
353
359
|
'name': string;
|
|
360
|
+
/**
|
|
361
|
+
* URL-friendly identifier derived from the name
|
|
362
|
+
* @type {string}
|
|
363
|
+
* @memberof AgenticWorkflowResponse
|
|
364
|
+
*/
|
|
365
|
+
'slug': string;
|
|
354
366
|
/**
|
|
355
367
|
*
|
|
356
368
|
* @type {string}
|
|
@@ -18553,6 +18565,8 @@ export interface ListServicesByEnvironmentId200Response {
|
|
|
18553
18565
|
* @export
|
|
18554
18566
|
*/
|
|
18555
18567
|
export type ListServicesByEnvironmentId200ResponseResultsInner = {
|
|
18568
|
+
service_type: 'AGENTIC_WORKFLOW';
|
|
18569
|
+
} & AgenticWorkflowResponse | {
|
|
18556
18570
|
service_type: 'APPLICATION';
|
|
18557
18571
|
} & Application | {
|
|
18558
18572
|
service_type: 'ARGOCD_APP';
|
|
@@ -23439,6 +23453,7 @@ export declare const ServiceTypeEnum: {
|
|
|
23439
23453
|
readonly HELM: "HELM";
|
|
23440
23454
|
readonly TERRAFORM: "TERRAFORM";
|
|
23441
23455
|
readonly ARGOCD_APP: "ARGOCD_APP";
|
|
23456
|
+
readonly AGENTIC_WORKFLOW: "AGENTIC_WORKFLOW";
|
|
23442
23457
|
};
|
|
23443
23458
|
export type ServiceTypeEnum = typeof ServiceTypeEnum[keyof typeof ServiceTypeEnum];
|
|
23444
23459
|
/**
|
package/dist/api.js
CHANGED
package/dist/esm/api.d.ts
CHANGED
|
@@ -345,12 +345,24 @@ export interface AgenticWorkflowResponse {
|
|
|
345
345
|
* @memberof AgenticWorkflowResponse
|
|
346
346
|
*/
|
|
347
347
|
'updated_at'?: string;
|
|
348
|
+
/**
|
|
349
|
+
*
|
|
350
|
+
* @type {ServiceTypeEnum}
|
|
351
|
+
* @memberof AgenticWorkflowResponse
|
|
352
|
+
*/
|
|
353
|
+
'service_type': ServiceTypeEnum;
|
|
348
354
|
/**
|
|
349
355
|
* name is case insensitive
|
|
350
356
|
* @type {string}
|
|
351
357
|
* @memberof AgenticWorkflowResponse
|
|
352
358
|
*/
|
|
353
359
|
'name': string;
|
|
360
|
+
/**
|
|
361
|
+
* URL-friendly identifier derived from the name
|
|
362
|
+
* @type {string}
|
|
363
|
+
* @memberof AgenticWorkflowResponse
|
|
364
|
+
*/
|
|
365
|
+
'slug': string;
|
|
354
366
|
/**
|
|
355
367
|
*
|
|
356
368
|
* @type {string}
|
|
@@ -18553,6 +18565,8 @@ export interface ListServicesByEnvironmentId200Response {
|
|
|
18553
18565
|
* @export
|
|
18554
18566
|
*/
|
|
18555
18567
|
export type ListServicesByEnvironmentId200ResponseResultsInner = {
|
|
18568
|
+
service_type: 'AGENTIC_WORKFLOW';
|
|
18569
|
+
} & AgenticWorkflowResponse | {
|
|
18556
18570
|
service_type: 'APPLICATION';
|
|
18557
18571
|
} & Application | {
|
|
18558
18572
|
service_type: 'ARGOCD_APP';
|
|
@@ -23439,6 +23453,7 @@ export declare const ServiceTypeEnum: {
|
|
|
23439
23453
|
readonly HELM: "HELM";
|
|
23440
23454
|
readonly TERRAFORM: "TERRAFORM";
|
|
23441
23455
|
readonly ARGOCD_APP: "ARGOCD_APP";
|
|
23456
|
+
readonly AGENTIC_WORKFLOW: "AGENTIC_WORKFLOW";
|
|
23442
23457
|
};
|
|
23443
23458
|
export type ServiceTypeEnum = typeof ServiceTypeEnum[keyof typeof ServiceTypeEnum];
|
|
23444
23459
|
/**
|
package/dist/esm/api.js
CHANGED
|
@@ -1448,7 +1448,8 @@ export const ServiceTypeEnum = {
|
|
|
1448
1448
|
JOB: 'JOB',
|
|
1449
1449
|
HELM: 'HELM',
|
|
1450
1450
|
TERRAFORM: 'TERRAFORM',
|
|
1451
|
-
ARGOCD_APP: 'ARGOCD_APP'
|
|
1451
|
+
ARGOCD_APP: 'ARGOCD_APP',
|
|
1452
|
+
AGENTIC_WORKFLOW: 'AGENTIC_WORKFLOW'
|
|
1452
1453
|
};
|
|
1453
1454
|
/**
|
|
1454
1455
|
* type of the service
|