diff --git a/src/generated/graphql-types.ts b/src/generated/graphql-types.ts index 1ac93d9e..4fdbee14 100644 --- a/src/generated/graphql-types.ts +++ b/src/generated/graphql-types.ts @@ -82,10 +82,24 @@ export type AcceptEnterpriseAdministratorInvitationPayload = { export type AcceptTopicSuggestionInput = { /** A unique identifier for the client performing the mutation. */ clientMutationId?: InputMaybe; - /** The name of the suggested topic. */ - name: Scalars['String']['input']; - /** The Node ID of the repository. */ - repositoryId: Scalars['ID']['input']; + /** + * The name of the suggested topic. + * + * **Upcoming Change on 2024-04-01 UTC** + * **Description:** `name` will be removed. + * **Reason:** Suggested topics are no longer supported + * + */ + name?: InputMaybe; + /** + * The Node ID of the repository. + * + * **Upcoming Change on 2024-04-01 UTC** + * **Description:** `repositoryId` will be removed. + * **Reason:** Suggested topics are no longer supported + * + */ + repositoryId?: InputMaybe; }; /** Autogenerated return type of AcceptTopicSuggestion */ @@ -93,7 +107,10 @@ export type AcceptTopicSuggestionPayload = { __typename?: 'AcceptTopicSuggestionPayload'; /** A unique identifier for the client performing the mutation. */ clientMutationId?: Maybe; - /** The accepted topic. */ + /** + * The accepted topic. + * @deprecated Suggested topics are no longer supported Removal on 2024-04-01 UTC. + */ topic?: Maybe; }; @@ -4374,12 +4391,33 @@ export type CrossReferencedEvent = Node & UniformResourceLocatable & { export type DeclineTopicSuggestionInput = { /** A unique identifier for the client performing the mutation. */ clientMutationId?: InputMaybe; - /** The name of the suggested topic. */ - name: Scalars['String']['input']; - /** The reason why the suggested topic is declined. */ - reason: TopicSuggestionDeclineReason; - /** The Node ID of the repository. */ - repositoryId: Scalars['ID']['input']; + /** + * The name of the suggested topic. + * + * **Upcoming Change on 2024-04-01 UTC** + * **Description:** `name` will be removed. + * **Reason:** Suggested topics are no longer supported + * + */ + name?: InputMaybe; + /** + * The reason why the suggested topic is declined. + * + * **Upcoming Change on 2024-04-01 UTC** + * **Description:** `reason` will be removed. + * **Reason:** Suggested topics are no longer supported + * + */ + reason?: InputMaybe; + /** + * The Node ID of the repository. + * + * **Upcoming Change on 2024-04-01 UTC** + * **Description:** `repositoryId` will be removed. + * **Reason:** Suggested topics are no longer supported + * + */ + repositoryId?: InputMaybe; }; /** Autogenerated return type of DeclineTopicSuggestion */ @@ -4387,7 +4425,10 @@ export type DeclineTopicSuggestionPayload = { __typename?: 'DeclineTopicSuggestionPayload'; /** A unique identifier for the client performing the mutation. */ clientMutationId?: Maybe; - /** The declined topic. */ + /** + * The declined topic. + * @deprecated Suggested topics are no longer supported Removal on 2024-04-01 UTC. + */ topic?: Maybe; }; @@ -26236,13 +26277,25 @@ export type TopicAuditEntryData = { /** Reason that the suggested topic is declined. */ export enum TopicSuggestionDeclineReason { - /** The suggested topic is not relevant to the repository. */ + /** + * The suggested topic is not relevant to the repository. + * @deprecated Suggested topics are no longer supported Removal on 2024-04-01 UTC. + */ NotRelevant = 'NOT_RELEVANT', - /** The viewer does not like the suggested topic. */ + /** + * The viewer does not like the suggested topic. + * @deprecated Suggested topics are no longer supported Removal on 2024-04-01 UTC. + */ PersonalPreference = 'PERSONAL_PREFERENCE', - /** The suggested topic is too general for the repository. */ + /** + * The suggested topic is too general for the repository. + * @deprecated Suggested topics are no longer supported Removal on 2024-04-01 UTC. + */ TooGeneral = 'TOO_GENERAL', - /** The suggested topic is too specific for the repository (e.g. #ruby-on-rails-version-4-2-1). */ + /** + * The suggested topic is too specific for the repository (e.g. #ruby-on-rails-version-4-2-1). + * @deprecated Suggested topics are no longer supported Removal on 2024-04-01 UTC. + */ TooSpecific = 'TOO_SPECIFIC' }