Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency @octokit/graphql-schema to v14.44.0 #795

Merged
merged 3 commits into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading