@@ -19,7 +19,6 @@ export const RepeatEveryMinute: RepeatOptions = {
1919export enum QueueName {
2020 Builds = 'Builds' ,
2121 S3 = 'S3' ,
22- Projects = 'Projects' ,
2322 Releases = 'Releases' ,
2423 Polling = 'Polling' ,
2524 System_Startup = 'System (Startup)' ,
@@ -33,8 +32,6 @@ export enum JobType {
3332 // Polling Jobs
3433 Poll_Build = 'Check Product Build' ,
3534 Poll_Release = 'Check Product Release' ,
36- // Project Jobs
37- Project_Create = 'Create Project' ,
3835 // Publishing Jobs
3936 Release_Product = 'Release Product' ,
4037 Release_Cancel = 'Cancel Release' ,
@@ -75,13 +72,6 @@ export namespace Polling {
7572 }
7673}
7774
78- export namespace Project {
79- export interface Create {
80- type : JobType . Project_Create ;
81- projectId : number ;
82- }
83- }
84-
8575export namespace Release {
8676 export interface Product {
8777 type : JobType . Release_Product ;
@@ -123,7 +113,6 @@ export type BuildJob = JobTypeMap[JobType.Build_Product | JobType.Build_Cancel];
123113export type S3Job = JobTypeMap [ JobType . S3_CopyArtifacts | JobType . S3_CopyError ] ;
124114export type PublishJob = JobTypeMap [ JobType . Release_Product | JobType . Release_Cancel ] ;
125115export type PollJob = JobTypeMap [ JobType . Poll_Build | JobType . Poll_Release ] ;
126- export type ProjectJob = JobTypeMap [ JobType . Project_Create ] ;
127116export type StartupJob = JobTypeMap [
128117 | JobType . System_CreateCodeBuildProject
129118 | JobType . System_RefreshAppVersions ] ;
@@ -134,7 +123,6 @@ export type JobTypeMap = {
134123 [ JobType . Build_Cancel ] : Build . Cancel ;
135124 [ JobType . Poll_Build ] : Polling . Build ;
136125 [ JobType . Poll_Release ] : Polling . Release ;
137- [ JobType . Project_Create ] : Project . Create ;
138126 [ JobType . Release_Product ] : Release . Product ;
139127 [ JobType . Release_Cancel ] : Release . Cancel ;
140128 [ JobType . S3_CopyArtifacts ] : S3 . CopyArtifacts ;
0 commit comments