@@ -5362,10 +5362,10 @@ export interface CronJobResponse {
5362
5362
'service_type': ServiceTypeEnum;
5363
5363
/**
5364
5364
*
5365
- * @type {string }
5365
+ * @type {JobTypeEnum }
5366
5366
* @memberof CronJobResponse
5367
5367
*/
5368
- 'job_type': CronJobResponseJobTypeEnum ;
5368
+ 'job_type': JobTypeEnum ;
5369
5369
/**
5370
5370
*
5371
5371
* @type {CronJobResponseAllOfSchedule}
@@ -5386,11 +5386,6 @@ export interface CronJobResponse {
5386
5386
'labels_groups'?: Array<OrganizationLabelsGroupResponse>;
5387
5387
}
5388
5388
5389
- export const CronJobResponseJobTypeEnum = {
5390
- CRON: 'CRON'
5391
- } as const;
5392
-
5393
- export type CronJobResponseJobTypeEnum = typeof CronJobResponseJobTypeEnum[keyof typeof CronJobResponseJobTypeEnum];
5394
5389
5395
5390
/**
5396
5391
*
@@ -11542,6 +11537,20 @@ export interface JobSourceDockerResponse {
11542
11537
*/
11543
11538
'docker_target_build_stage'?: string | null;
11544
11539
}
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
+
11545
11554
/**
11546
11555
*
11547
11556
* @export
@@ -12051,10 +12060,10 @@ export interface LifecycleJobResponse {
12051
12060
'service_type': ServiceTypeEnum;
12052
12061
/**
12053
12062
*
12054
- * @type {string }
12063
+ * @type {JobTypeEnum }
12055
12064
* @memberof LifecycleJobResponse
12056
12065
*/
12057
- 'job_type': LifecycleJobResponseJobTypeEnum ;
12066
+ 'job_type': JobTypeEnum ;
12058
12067
/**
12059
12068
*
12060
12069
* @type {LifecycleJobResponseAllOfSchedule}
@@ -12075,11 +12084,6 @@ export interface LifecycleJobResponse {
12075
12084
'labels_groups'?: Array<OrganizationLabelsGroupResponse>;
12076
12085
}
12077
12086
12078
- export const LifecycleJobResponseJobTypeEnum = {
12079
- LIFECYCLE: 'LIFECYCLE'
12080
- } as const;
12081
-
12082
- export type LifecycleJobResponseJobTypeEnum = typeof LifecycleJobResponseJobTypeEnum[keyof typeof LifecycleJobResponseJobTypeEnum];
12083
12087
12084
12088
/**
12085
12089
*
0 commit comments