Skip to content

Commit

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

* Generated by GitHub Actions (ts / generate)

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

* 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 Feb 23, 2024
1 parent 08253eb commit b2d13cf
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 7 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.6",
"@graphql-codegen/typescript-operations": "4.2.0",
"@octokit/graphql-schema": "14.56.0",
"@octokit/graphql-schema": "14.57.0",
"@tsconfig/node16": "16.1.1",
"@types/jest": "29.5.12",
"@types/node": "20.11.20",
Expand Down
31 changes: 29 additions & 2 deletions src/generated/graphql-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9537,6 +9537,25 @@ export type MarkFileAsViewedPayload = {
pullRequest?: Maybe<PullRequest>;
};

/** Autogenerated input type of MarkNotificationAsDone */
export type MarkNotificationAsDoneInput = {
/** A unique identifier for the client performing the mutation. */
clientMutationId?: InputMaybe<Scalars['String']['input']>;
/** The NotificationThread id. */
id: Scalars['ID']['input'];
};

/** Autogenerated return type of MarkNotificationAsDone */
export type MarkNotificationAsDonePayload = {
__typename?: 'MarkNotificationAsDonePayload';
/** A unique identifier for the client performing the mutation. */
clientMutationId?: Maybe<Scalars['String']['output']>;
/** Did the operation succeed? */
success?: Maybe<Scalars['Boolean']['output']>;
/** The user that the notification belongs to. */
viewer?: Maybe<User>;
};

/** Autogenerated input type of MarkProjectV2AsTemplate */
export type MarkProjectV2AsTemplateInput = {
/** A unique identifier for the client performing the mutation. */
Expand Down Expand Up @@ -10212,7 +10231,7 @@ export type Migration = {
sourceUrl: Scalars['URI']['output'];
/** The migration state. */
state: MigrationState;
/** The number of warnings encountered for this migration. To review the warnings, check the [Migration Log](https://docs.github.com/en/migrations/using-github-enterprise-importer/completing-your-migration-with-github-enterprise-importer/accessing-your-migration-logs-for-github-enterprise-importer). */
/** The number of warnings encountered for this migration. To review the warnings, check the [Migration Log](https://docs.github.com/migrations/using-github-enterprise-importer/completing-your-migration-with-github-enterprise-importer/accessing-your-migration-logs-for-github-enterprise-importer). */
warningsCount: Scalars['Int']['output'];
};

Expand Down Expand Up @@ -10740,6 +10759,8 @@ export type Mutation = {
markDiscussionCommentAsAnswer?: Maybe<MarkDiscussionCommentAsAnswerPayload>;
/** Mark a pull request file as viewed */
markFileAsViewed?: Maybe<MarkFileAsViewedPayload>;
/** Marks a notification as done */
markNotificationAsDone?: Maybe<MarkNotificationAsDonePayload>;
/** Mark a project as a template. Note that only projects which are owned by an Organization can be marked as a template. */
markProjectV2AsTemplate?: Maybe<MarkProjectV2AsTemplatePayload>;
/** Marks a pull request ready for review. */
Expand Down Expand Up @@ -11621,6 +11642,12 @@ export type MutationMarkFileAsViewedArgs = {
};


/** The root query for implementing GraphQL mutations. */
export type MutationMarkNotificationAsDoneArgs = {
input: MarkNotificationAsDoneInput;
};


/** The root query for implementing GraphQL mutations. */
export type MutationMarkProjectV2AsTemplateArgs = {
input: MarkProjectV2AsTemplateInput;
Expand Down Expand Up @@ -21884,7 +21911,7 @@ export type RepositoryMigration = Migration & Node & {
sourceUrl: Scalars['URI']['output'];
/** The migration state. */
state: MigrationState;
/** The number of warnings encountered for this migration. To review the warnings, check the [Migration Log](https://docs.github.com/en/migrations/using-github-enterprise-importer/completing-your-migration-with-github-enterprise-importer/accessing-your-migration-logs-for-github-enterprise-importer). */
/** The number of warnings encountered for this migration. To review the warnings, check the [Migration Log](https://docs.github.com/migrations/using-github-enterprise-importer/completing-your-migration-with-github-enterprise-importer/accessing-your-migration-logs-for-github-enterprise-importer). */
warningsCount: Scalars['Int']['output'];
};

Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2218,10 +2218,10 @@
is-plain-object "^5.0.0"
universal-user-agent "^6.0.0"

"@octokit/graphql-schema@14.56.0":
version "14.56.0"
resolved "https://registry.yarnpkg.com/@octokit/graphql-schema/-/graphql-schema-14.56.0.tgz#e07f64731f62045cec2454481f11e43d47db285b"
integrity sha512-NfwR32BA7f3S9bX2EqHjGfNLz/C295n0ERYaBUBCaQ62UYRDZ5pJk81GGMgsGwbPBn1KMth8QHzXYP2FXGvMMg==
"@octokit/graphql-schema@14.57.0":
version "14.57.0"
resolved "https://registry.yarnpkg.com/@octokit/graphql-schema/-/graphql-schema-14.57.0.tgz#c262172199d0a2a579fe2ce639cff63bc54db6c9"
integrity sha512-DvUIxJkfboiQEOme4DOpF4+EtOh1qbYffm/hbcFdqAQzWFPV19Nkul9t/XnyKRPFyy26Nwf8QesCOeYw8os5rQ==
dependencies:
graphql "^16.0.0"
graphql-tag "^2.10.3"
Expand Down

0 comments on commit b2d13cf

Please sign in to comment.