diff --git a/src/generated/graphql-types.ts b/src/generated/graphql-types.ts index 409b3e32..d79ca989 100644 --- a/src/generated/graphql-types.ts +++ b/src/generated/graphql-types.ts @@ -10674,6 +10674,8 @@ export type Mutation = { unpinIssue?: Maybe; /** Marks a review thread as unresolved. */ unresolveReviewThread?: Maybe; + /** Unsubscribes from notifications */ + unsubscribeFromNotifications?: Maybe; /** Update a branch protection rule */ updateBranchProtectionRule?: Maybe; /** Update a check run */ @@ -11765,6 +11767,12 @@ export type MutationUnresolveReviewThreadArgs = { }; +/** The root query for implementing GraphQL mutations. */ +export type MutationUnsubscribeFromNotificationsArgs = { + input: UnsubscribeFromNotificationsInput; +}; + + /** The root query for implementing GraphQL mutations. */ export type MutationUpdateBranchProtectionRuleArgs = { input: UpdateBranchProtectionRuleInput; @@ -26416,6 +26424,23 @@ export type UnresolveReviewThreadPayload = { thread?: Maybe; }; +/** Autogenerated input type of UnsubscribeFromNotifications */ +export type UnsubscribeFromNotificationsInput = { + /** A unique identifier for the client performing the mutation. */ + clientMutationId?: InputMaybe; + /** The NotificationThread IDs of the objects to unsubscribe from. */ + ids: Array; +}; + +/** Autogenerated return type of UnsubscribeFromNotifications */ +export type UnsubscribeFromNotificationsPayload = { + __typename?: 'UnsubscribeFromNotificationsPayload'; + /** A unique identifier for the client performing the mutation. */ + clientMutationId?: Maybe; + /** Did the operation succeed? */ + success?: Maybe; +}; + /** Represents an 'unsubscribed' event on a given `Subscribable`. */ export type UnsubscribedEvent = Node & { __typename?: 'UnsubscribedEvent';