qovery-typescript-axios 1.1.936 → 1.1.938

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
@@ -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
@@ -13596,6 +13610,7 @@ export const EnvironmentStatusEventOriginEnum = {
13596
13610
  CONSOLE: 'CONSOLE',
13597
13611
  GIT: 'GIT',
13598
13612
  QOVERY_INTERNAL: 'QOVERY_INTERNAL',
13613
+ SKILL: 'SKILL',
13599
13614
  TERRAFORM_PROVIDER: 'TERRAFORM_PROVIDER'
13600
13615
  } as const;
13601
13616
 
@@ -19108,7 +19123,7 @@ export interface ListServicesByEnvironmentId200Response {
19108
19123
  * @type ListServicesByEnvironmentId200ResponseResultsInner
19109
19124
  * @export
19110
19125
  */
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;
19126
+ 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
19127
 
19113
19128
  /**
19114
19129
  *
@@ -20513,6 +20528,7 @@ export const OrganizationEventOrigin = {
20513
20528
  CONSOLE: 'CONSOLE',
20514
20529
  GIT: 'GIT',
20515
20530
  QOVERY_INTERNAL: 'QOVERY_INTERNAL',
20531
+ SKILL: 'SKILL',
20516
20532
  TERRAFORM_PROVIDER: 'TERRAFORM_PROVIDER'
20517
20533
  } as const;
20518
20534
 
@@ -24185,7 +24201,8 @@ export const ServiceTypeEnum = {
24185
24201
  JOB: 'JOB',
24186
24202
  HELM: 'HELM',
24187
24203
  TERRAFORM: 'TERRAFORM',
24188
- ARGOCD_APP: 'ARGOCD_APP'
24204
+ ARGOCD_APP: 'ARGOCD_APP',
24205
+ AGENTIC_WORKFLOW: 'AGENTIC_WORKFLOW'
24189
24206
  } as const;
24190
24207
 
24191
24208
  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}
@@ -13213,6 +13225,7 @@ export declare const EnvironmentStatusEventOriginEnum: {
13213
13225
  readonly CONSOLE: "CONSOLE";
13214
13226
  readonly GIT: "GIT";
13215
13227
  readonly QOVERY_INTERNAL: "QOVERY_INTERNAL";
13228
+ readonly SKILL: "SKILL";
13216
13229
  readonly TERRAFORM_PROVIDER: "TERRAFORM_PROVIDER";
13217
13230
  };
13218
13231
  export type EnvironmentStatusEventOriginEnum = typeof EnvironmentStatusEventOriginEnum[keyof typeof EnvironmentStatusEventOriginEnum];
@@ -18553,6 +18566,8 @@ export interface ListServicesByEnvironmentId200Response {
18553
18566
  * @export
18554
18567
  */
18555
18568
  export type ListServicesByEnvironmentId200ResponseResultsInner = {
18569
+ service_type: 'AGENTIC_WORKFLOW';
18570
+ } & AgenticWorkflowResponse | {
18556
18571
  service_type: 'APPLICATION';
18557
18572
  } & Application | {
18558
18573
  service_type: 'ARGOCD_APP';
@@ -19927,6 +19942,7 @@ export declare const OrganizationEventOrigin: {
19927
19942
  readonly CONSOLE: "CONSOLE";
19928
19943
  readonly GIT: "GIT";
19929
19944
  readonly QOVERY_INTERNAL: "QOVERY_INTERNAL";
19945
+ readonly SKILL: "SKILL";
19930
19946
  readonly TERRAFORM_PROVIDER: "TERRAFORM_PROVIDER";
19931
19947
  };
19932
19948
  export type OrganizationEventOrigin = typeof OrganizationEventOrigin[keyof typeof OrganizationEventOrigin];
@@ -23439,6 +23455,7 @@ export declare const ServiceTypeEnum: {
23439
23455
  readonly HELM: "HELM";
23440
23456
  readonly TERRAFORM: "TERRAFORM";
23441
23457
  readonly ARGOCD_APP: "ARGOCD_APP";
23458
+ readonly AGENTIC_WORKFLOW: "AGENTIC_WORKFLOW";
23442
23459
  };
23443
23460
  export type ServiceTypeEnum = typeof ServiceTypeEnum[keyof typeof ServiceTypeEnum];
23444
23461
  /**
package/dist/api.js CHANGED
@@ -763,6 +763,7 @@ exports.EnvironmentStatusEventOriginEnum = {
763
763
  CONSOLE: 'CONSOLE',
764
764
  GIT: 'GIT',
765
765
  QOVERY_INTERNAL: 'QOVERY_INTERNAL',
766
+ SKILL: 'SKILL',
766
767
  TERRAFORM_PROVIDER: 'TERRAFORM_PROVIDER'
767
768
  };
768
769
  exports.GcpJsonCredentialsAuthDtoModeEnum = {
@@ -1077,6 +1078,7 @@ exports.OrganizationEventOrigin = {
1077
1078
  CONSOLE: 'CONSOLE',
1078
1079
  GIT: 'GIT',
1079
1080
  QOVERY_INTERNAL: 'QOVERY_INTERNAL',
1081
+ SKILL: 'SKILL',
1080
1082
  TERRAFORM_PROVIDER: 'TERRAFORM_PROVIDER'
1081
1083
  };
1082
1084
  /**
@@ -1462,7 +1464,8 @@ exports.ServiceTypeEnum = {
1462
1464
  JOB: 'JOB',
1463
1465
  HELM: 'HELM',
1464
1466
  TERRAFORM: 'TERRAFORM',
1465
- ARGOCD_APP: 'ARGOCD_APP'
1467
+ ARGOCD_APP: 'ARGOCD_APP',
1468
+ AGENTIC_WORKFLOW: 'AGENTIC_WORKFLOW'
1466
1469
  };
1467
1470
  /**
1468
1471
  * type of the service
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}
@@ -13213,6 +13225,7 @@ export declare const EnvironmentStatusEventOriginEnum: {
13213
13225
  readonly CONSOLE: "CONSOLE";
13214
13226
  readonly GIT: "GIT";
13215
13227
  readonly QOVERY_INTERNAL: "QOVERY_INTERNAL";
13228
+ readonly SKILL: "SKILL";
13216
13229
  readonly TERRAFORM_PROVIDER: "TERRAFORM_PROVIDER";
13217
13230
  };
13218
13231
  export type EnvironmentStatusEventOriginEnum = typeof EnvironmentStatusEventOriginEnum[keyof typeof EnvironmentStatusEventOriginEnum];
@@ -18553,6 +18566,8 @@ export interface ListServicesByEnvironmentId200Response {
18553
18566
  * @export
18554
18567
  */
18555
18568
  export type ListServicesByEnvironmentId200ResponseResultsInner = {
18569
+ service_type: 'AGENTIC_WORKFLOW';
18570
+ } & AgenticWorkflowResponse | {
18556
18571
  service_type: 'APPLICATION';
18557
18572
  } & Application | {
18558
18573
  service_type: 'ARGOCD_APP';
@@ -19927,6 +19942,7 @@ export declare const OrganizationEventOrigin: {
19927
19942
  readonly CONSOLE: "CONSOLE";
19928
19943
  readonly GIT: "GIT";
19929
19944
  readonly QOVERY_INTERNAL: "QOVERY_INTERNAL";
19945
+ readonly SKILL: "SKILL";
19930
19946
  readonly TERRAFORM_PROVIDER: "TERRAFORM_PROVIDER";
19931
19947
  };
19932
19948
  export type OrganizationEventOrigin = typeof OrganizationEventOrigin[keyof typeof OrganizationEventOrigin];
@@ -23439,6 +23455,7 @@ export declare const ServiceTypeEnum: {
23439
23455
  readonly HELM: "HELM";
23440
23456
  readonly TERRAFORM: "TERRAFORM";
23441
23457
  readonly ARGOCD_APP: "ARGOCD_APP";
23458
+ readonly AGENTIC_WORKFLOW: "AGENTIC_WORKFLOW";
23442
23459
  };
23443
23460
  export type ServiceTypeEnum = typeof ServiceTypeEnum[keyof typeof ServiceTypeEnum];
23444
23461
  /**
package/dist/esm/api.js CHANGED
@@ -749,6 +749,7 @@ export const EnvironmentStatusEventOriginEnum = {
749
749
  CONSOLE: 'CONSOLE',
750
750
  GIT: 'GIT',
751
751
  QOVERY_INTERNAL: 'QOVERY_INTERNAL',
752
+ SKILL: 'SKILL',
752
753
  TERRAFORM_PROVIDER: 'TERRAFORM_PROVIDER'
753
754
  };
754
755
  export const GcpJsonCredentialsAuthDtoModeEnum = {
@@ -1063,6 +1064,7 @@ export const OrganizationEventOrigin = {
1063
1064
  CONSOLE: 'CONSOLE',
1064
1065
  GIT: 'GIT',
1065
1066
  QOVERY_INTERNAL: 'QOVERY_INTERNAL',
1067
+ SKILL: 'SKILL',
1066
1068
  TERRAFORM_PROVIDER: 'TERRAFORM_PROVIDER'
1067
1069
  };
1068
1070
  /**
@@ -1448,7 +1450,8 @@ export const ServiceTypeEnum = {
1448
1450
  JOB: 'JOB',
1449
1451
  HELM: 'HELM',
1450
1452
  TERRAFORM: 'TERRAFORM',
1451
- ARGOCD_APP: 'ARGOCD_APP'
1453
+ ARGOCD_APP: 'ARGOCD_APP',
1454
+ AGENTIC_WORKFLOW: 'AGENTIC_WORKFLOW'
1452
1455
  };
1453
1456
  /**
1454
1457
  * type of the service
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qovery-typescript-axios",
3
- "version": "v1.1.936",
3
+ "version": "v1.1.938",
4
4
  "description": "OpenAPI client for qovery-typescript-axios",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {