From 9f269a5ae26696307568155e911d2cc0c46086ad Mon Sep 17 00:00:00 2001 From: update-generated-files-action <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 22 Nov 2023 20:04:36 +0000 Subject: [PATCH] Generated by GitHub Actions (ts / generate) https://github.com/int128/hide-comment-action/actions/runs/6962174823 --- src/generated/graphql-types.ts | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) 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';