From 3a9cffbd272b31d0b7a5ab8193c181c5dd87ec67 Mon Sep 17 00:00:00 2001 From: Arjun Patel Date: Wed, 29 May 2024 13:54:18 -0400 Subject: [PATCH] codegen --- apps/parsley/src/gql/generated/types.ts | 29 ++++++------------------- apps/spruce/src/gql/generated/types.ts | 29 ++++++------------------- 2 files changed, 14 insertions(+), 44 deletions(-) diff --git a/apps/parsley/src/gql/generated/types.ts b/apps/parsley/src/gql/generated/types.ts index a2acfeaaf..2476c67d2 100644 --- a/apps/parsley/src/gql/generated/types.ts +++ b/apps/parsley/src/gql/generated/types.ts @@ -1091,8 +1091,7 @@ export type MutationAddAnnotationIssueArgs = { }; export type MutationAddFavoriteProjectArgs = { - identifier?: InputMaybe; - opts?: InputMaybe; + opts: AddFavoriteProjectInput; }; export type MutationAttachProjectToNewRepoArgs = { @@ -1135,16 +1134,11 @@ export type MutationCreatePublicKeyArgs = { }; export type MutationDeactivateStepbackTaskArgs = { - buildVariantName?: InputMaybe; - opts?: InputMaybe; - projectId?: InputMaybe; - taskName?: InputMaybe; + opts: DeactivateStepbackTaskInput; }; export type MutationDefaultSectionToRepoArgs = { - opts?: InputMaybe; - projectId?: InputMaybe; - section?: InputMaybe; + opts: DefaultSectionToRepoInput; }; export type MutationDeleteDistroArgs = { @@ -1204,9 +1198,7 @@ export type MutationOverrideTaskDependenciesArgs = { }; export type MutationPromoteVarsToRepoArgs = { - opts?: InputMaybe; - projectId?: InputMaybe; - varNames?: InputMaybe>; + opts: PromoteVarsToRepoInput; }; export type MutationRemoveAnnotationIssueArgs = { @@ -1217,8 +1209,7 @@ export type MutationRemoveAnnotationIssueArgs = { }; export type MutationRemoveFavoriteProjectArgs = { - identifier?: InputMaybe; - opts?: InputMaybe; + opts: RemoveFavoriteProjectInput; }; export type MutationRemoveItemFromCommitQueueArgs = { @@ -2095,14 +2086,12 @@ export type QueryProjectArgs = { export type QueryProjectEventsArgs = { before?: InputMaybe; - identifier?: InputMaybe; limit?: InputMaybe; - projectIdentifier?: InputMaybe; + projectIdentifier: Scalars["String"]["input"]; }; export type QueryProjectSettingsArgs = { - identifier?: InputMaybe; - projectIdentifier?: InputMaybe; + projectIdentifier: Scalars["String"]["input"]; }; export type QueryRepoEventsArgs = { @@ -2604,8 +2593,6 @@ export type Task = { status: Scalars["String"]["output"]; stepbackInfo?: Maybe; tags: Array; - /** @deprecated Use files instead */ - taskFiles: TaskFiles; taskGroup?: Maybe; taskGroupMaxHosts?: Maybe; /** taskLogs returns the tail 100 lines of the task's logs. */ @@ -2689,8 +2676,6 @@ export type TaskFiles = { /** TaskFilterOptions defines the parameters that are used when fetching tasks from a Version. */ export type TaskFilterOptions = { baseStatuses?: InputMaybe>; - /** @deprecated Use includeNeverActivatedTasks instead */ - includeEmptyActivation?: InputMaybe; includeNeverActivatedTasks?: InputMaybe; limit?: InputMaybe; page?: InputMaybe; diff --git a/apps/spruce/src/gql/generated/types.ts b/apps/spruce/src/gql/generated/types.ts index ff10acba4..a203f7d55 100644 --- a/apps/spruce/src/gql/generated/types.ts +++ b/apps/spruce/src/gql/generated/types.ts @@ -1091,8 +1091,7 @@ export type MutationAddAnnotationIssueArgs = { }; export type MutationAddFavoriteProjectArgs = { - identifier?: InputMaybe; - opts?: InputMaybe; + opts: AddFavoriteProjectInput; }; export type MutationAttachProjectToNewRepoArgs = { @@ -1135,16 +1134,11 @@ export type MutationCreatePublicKeyArgs = { }; export type MutationDeactivateStepbackTaskArgs = { - buildVariantName?: InputMaybe; - opts?: InputMaybe; - projectId?: InputMaybe; - taskName?: InputMaybe; + opts: DeactivateStepbackTaskInput; }; export type MutationDefaultSectionToRepoArgs = { - opts?: InputMaybe; - projectId?: InputMaybe; - section?: InputMaybe; + opts: DefaultSectionToRepoInput; }; export type MutationDeleteDistroArgs = { @@ -1204,9 +1198,7 @@ export type MutationOverrideTaskDependenciesArgs = { }; export type MutationPromoteVarsToRepoArgs = { - opts?: InputMaybe; - projectId?: InputMaybe; - varNames?: InputMaybe>; + opts: PromoteVarsToRepoInput; }; export type MutationRemoveAnnotationIssueArgs = { @@ -1217,8 +1209,7 @@ export type MutationRemoveAnnotationIssueArgs = { }; export type MutationRemoveFavoriteProjectArgs = { - identifier?: InputMaybe; - opts?: InputMaybe; + opts: RemoveFavoriteProjectInput; }; export type MutationRemoveItemFromCommitQueueArgs = { @@ -2095,14 +2086,12 @@ export type QueryProjectArgs = { export type QueryProjectEventsArgs = { before?: InputMaybe; - identifier?: InputMaybe; limit?: InputMaybe; - projectIdentifier?: InputMaybe; + projectIdentifier: Scalars["String"]["input"]; }; export type QueryProjectSettingsArgs = { - identifier?: InputMaybe; - projectIdentifier?: InputMaybe; + projectIdentifier: Scalars["String"]["input"]; }; export type QueryRepoEventsArgs = { @@ -2604,8 +2593,6 @@ export type Task = { status: Scalars["String"]["output"]; stepbackInfo?: Maybe; tags: Array; - /** @deprecated Use files instead */ - taskFiles: TaskFiles; taskGroup?: Maybe; taskGroupMaxHosts?: Maybe; /** taskLogs returns the tail 100 lines of the task's logs. */ @@ -2689,8 +2676,6 @@ export type TaskFiles = { /** TaskFilterOptions defines the parameters that are used when fetching tasks from a Version. */ export type TaskFilterOptions = { baseStatuses?: InputMaybe>; - /** @deprecated Use includeNeverActivatedTasks instead */ - includeEmptyActivation?: InputMaybe; includeNeverActivatedTasks?: InputMaybe; limit?: InputMaybe; page?: InputMaybe;