Skip to content

Commit 775647f

Browse files
author
qovery
committed
See Qovery/qovery-openapi-spec@7177a0a from refs/heads/main
1 parent 6a37c34 commit 775647f

File tree

2 files changed

+19
-15
lines changed

2 files changed

+19
-15
lines changed

api.ts

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5362,10 +5362,10 @@ export interface CronJobResponse {
53625362
'service_type': ServiceTypeEnum;
53635363
/**
53645364
*
5365-
* @type {string}
5365+
* @type {JobTypeEnum}
53665366
* @memberof CronJobResponse
53675367
*/
5368-
'job_type': CronJobResponseJobTypeEnum;
5368+
'job_type': JobTypeEnum;
53695369
/**
53705370
*
53715371
* @type {CronJobResponseAllOfSchedule}
@@ -5386,11 +5386,6 @@ export interface CronJobResponse {
53865386
'labels_groups'?: Array<OrganizationLabelsGroupResponse>;
53875387
}
53885388

5389-
export const CronJobResponseJobTypeEnum = {
5390-
CRON: 'CRON'
5391-
} as const;
5392-
5393-
export type CronJobResponseJobTypeEnum = typeof CronJobResponseJobTypeEnum[keyof typeof CronJobResponseJobTypeEnum];
53945389

53955390
/**
53965391
*
@@ -11542,6 +11537,20 @@ export interface JobSourceDockerResponse {
1154211537
*/
1154311538
'docker_target_build_stage'?: string | null;
1154411539
}
11540+
/**
11541+
* type of job
11542+
* @export
11543+
* @enum {string}
11544+
*/
11545+
11546+
export const JobTypeEnum = {
11547+
LIFECYCLE: 'LIFECYCLE',
11548+
CRON: 'CRON'
11549+
} as const;
11550+
11551+
export type JobTypeEnum = typeof JobTypeEnum[keyof typeof JobTypeEnum];
11552+
11553+
1154511554
/**
1154611555
*
1154711556
* @export
@@ -12051,10 +12060,10 @@ export interface LifecycleJobResponse {
1205112060
'service_type': ServiceTypeEnum;
1205212061
/**
1205312062
*
12054-
* @type {string}
12063+
* @type {JobTypeEnum}
1205512064
* @memberof LifecycleJobResponse
1205612065
*/
12057-
'job_type': LifecycleJobResponseJobTypeEnum;
12066+
'job_type': JobTypeEnum;
1205812067
/**
1205912068
*
1206012069
* @type {LifecycleJobResponseAllOfSchedule}
@@ -12075,11 +12084,6 @@ export interface LifecycleJobResponse {
1207512084
'labels_groups'?: Array<OrganizationLabelsGroupResponse>;
1207612085
}
1207712086

12078-
export const LifecycleJobResponseJobTypeEnum = {
12079-
LIFECYCLE: 'LIFECYCLE'
12080-
} as const;
12081-
12082-
export type LifecycleJobResponseJobTypeEnum = typeof LifecycleJobResponseJobTypeEnum[keyof typeof LifecycleJobResponseJobTypeEnum];
1208312087

1208412088
/**
1208512089
*

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "qovery-typescript-axios",
3-
"version": "v1.1.617",
3+
"version": "1.0.3",
44
"description": "OpenAPI client for qovery-typescript-axios",
55
"author": "OpenAPI-Generator Contributors",
66
"repository": {

0 commit comments

Comments
 (0)