Skip to content

Commit

Permalink
Update dependency @octokit/graphql-schema to v14.44.0 (#795)
Browse files Browse the repository at this point in the history
* Update dependency @octokit/graphql-schema to v14.44.0

* Generated by GitHub Actions (ts / generate)

https://github.com/int128/hide-comment-action/actions/runs/6962174823

* Empty commit to trigger GitHub Actions

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: update-generated-files-action <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: int128-renovate-merge-bot[bot] <132176788+int128-renovate-merge-bot[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Nov 22, 2023
1 parent 4d7316e commit 13ee72a
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"@graphql-codegen/import-types-preset": "3.0.0",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-operations": "4.0.1",
"@octokit/graphql-schema": "14.43.2",
"@octokit/graphql-schema": "14.44.0",
"@tsconfig/node16": "16.1.1",
"@types/jest": "29.5.10",
"@types/node": "20.9.4",
Expand Down
25 changes: 25 additions & 0 deletions src/generated/graphql-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10674,6 +10674,8 @@ export type Mutation = {
unpinIssue?: Maybe<UnpinIssuePayload>;
/** Marks a review thread as unresolved. */
unresolveReviewThread?: Maybe<UnresolveReviewThreadPayload>;
/** Unsubscribes from notifications */
unsubscribeFromNotifications?: Maybe<UnsubscribeFromNotificationsPayload>;
/** Update a branch protection rule */
updateBranchProtectionRule?: Maybe<UpdateBranchProtectionRulePayload>;
/** Update a check run */
Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -26416,6 +26424,23 @@ export type UnresolveReviewThreadPayload = {
thread?: Maybe<PullRequestReviewThread>;
};

/** Autogenerated input type of UnsubscribeFromNotifications */
export type UnsubscribeFromNotificationsInput = {
/** A unique identifier for the client performing the mutation. */
clientMutationId?: InputMaybe<Scalars['String']['input']>;
/** The NotificationThread IDs of the objects to unsubscribe from. */
ids: Array<Scalars['ID']['input']>;
};

/** Autogenerated return type of UnsubscribeFromNotifications */
export type UnsubscribeFromNotificationsPayload = {
__typename?: 'UnsubscribeFromNotificationsPayload';
/** A unique identifier for the client performing the mutation. */
clientMutationId?: Maybe<Scalars['String']['output']>;
/** Did the operation succeed? */
success?: Maybe<Scalars['Boolean']['output']>;
};

/** Represents an 'unsubscribed' event on a given `Subscribable`. */
export type UnsubscribedEvent = Node & {
__typename?: 'UnsubscribedEvent';
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2079,10 +2079,10 @@
is-plain-object "^5.0.0"
universal-user-agent "^6.0.0"

"@octokit/graphql-schema@14.43.2":
version "14.43.2"
resolved "https://registry.yarnpkg.com/@octokit/graphql-schema/-/graphql-schema-14.43.2.tgz#5ecb3c19762ac55c735ed927b99f0bb6022b98b3"
integrity sha512-ZfoH/5LAbY2pQEtzAeblaLBnecJZu4uE+Cq0DAPkSfJX2vbcekYX8/gmNOW3FK08UVMOoMVlZqBI7heoBCqB7w==
"@octokit/graphql-schema@14.44.0":
version "14.44.0"
resolved "https://registry.yarnpkg.com/@octokit/graphql-schema/-/graphql-schema-14.44.0.tgz#909868760fe43a01b805c8a11823fffbda0cc69a"
integrity sha512-JabOyLLRib4uQ3rfvzQyCEqDS/YoJRkPBp57JJwylx8n/bLKsXa8AxTPd9antkFxLPkTZKkXSSRmHyCSG4RTBA==
dependencies:
graphql "^16.0.0"
graphql-tag "^2.10.3"
Expand Down

0 comments on commit 13ee72a

Please sign in to comment.