Skip to content

Commit

Permalink
Generated by GitHub Actions (ts / generate)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Dec 22, 2023
1 parent 0d4c172 commit feb6de3
Showing 1 changed file with 69 additions and 16 deletions.
85 changes: 69 additions & 16 deletions src/generated/graphql-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,18 +82,35 @@ export type AcceptEnterpriseAdministratorInvitationPayload = {
export type AcceptTopicSuggestionInput = {
/** A unique identifier for the client performing the mutation. */
clientMutationId?: InputMaybe<Scalars['String']['input']>;
/** 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<Scalars['String']['input']>;
/**
* 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<Scalars['ID']['input']>;
};

/** Autogenerated return type of AcceptTopicSuggestion */
export type AcceptTopicSuggestionPayload = {
__typename?: 'AcceptTopicSuggestionPayload';
/** A unique identifier for the client performing the mutation. */
clientMutationId?: Maybe<Scalars['String']['output']>;
/** The accepted topic. */
/**
* The accepted topic.
* @deprecated Suggested topics are no longer supported Removal on 2024-04-01 UTC.
*/
topic?: Maybe<Topic>;
};

Expand Down Expand Up @@ -4374,20 +4391,44 @@ export type CrossReferencedEvent = Node & UniformResourceLocatable & {
export type DeclineTopicSuggestionInput = {
/** A unique identifier for the client performing the mutation. */
clientMutationId?: InputMaybe<Scalars['String']['input']>;
/** 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<Scalars['String']['input']>;
/**
* 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<TopicSuggestionDeclineReason>;
/**
* 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<Scalars['ID']['input']>;
};

/** Autogenerated return type of DeclineTopicSuggestion */
export type DeclineTopicSuggestionPayload = {
__typename?: 'DeclineTopicSuggestionPayload';
/** A unique identifier for the client performing the mutation. */
clientMutationId?: Maybe<Scalars['String']['output']>;
/** The declined topic. */
/**
* The declined topic.
* @deprecated Suggested topics are no longer supported Removal on 2024-04-01 UTC.
*/
topic?: Maybe<Topic>;
};

Expand Down Expand Up @@ -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'
}

Expand Down

0 comments on commit feb6de3

Please sign in to comment.