diff --git a/package.json b/package.json index 8841572e..9b5307f0 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "@graphql-codegen/import-types-preset": "3.0.0", "@graphql-codegen/typescript": "4.0.4", "@graphql-codegen/typescript-operations": "4.1.2", - "@octokit/graphql-schema": "14.55.0", + "@octokit/graphql-schema": "14.55.1", "@tsconfig/node16": "16.1.1", "@types/jest": "29.5.12", "@types/node": "20.11.17", diff --git a/src/generated/graphql-types.ts b/src/generated/graphql-types.ts index d80be14c..a3635a93 100644 --- a/src/generated/graphql-types.ts +++ b/src/generated/graphql-types.ts @@ -17202,7 +17202,10 @@ export type PullRequest = Assignable & Closable & Comment & Labelable & Lockable createdAt: Scalars['DateTime']['output']; /** Check if this comment was created via an email reply. */ createdViaEmail: Scalars['Boolean']['output']; - /** Identifies the primary key from the database. */ + /** + * Identifies the primary key from the database. + * @deprecated `databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC. + */ databaseId?: Maybe; /** The number of deletions in this pull request. */ deletions: Scalars['Int']['output']; @@ -17210,6 +17213,8 @@ export type PullRequest = Assignable & Closable & Comment & Labelable & Lockable editor?: Maybe; /** Lists the files changed within this pull request. */ files?: Maybe; + /** Identifies the primary key from the database as a BigInt. */ + fullDatabaseId?: Maybe; /** Identifies the head Ref associated with the pull request. */ headRef?: Maybe; /** Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted. */ @@ -17810,10 +17815,15 @@ export type PullRequestReview = Comment & Deletable & Minimizable & Node & React createdAt: Scalars['DateTime']['output']; /** Check if this comment was created via an email reply. */ createdViaEmail: Scalars['Boolean']['output']; - /** Identifies the primary key from the database. */ + /** + * Identifies the primary key from the database. + * @deprecated `databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC. + */ databaseId?: Maybe; /** The actor who edited the comment. */ editor?: Maybe; + /** Identifies the primary key from the database as a BigInt. */ + fullDatabaseId?: Maybe; /** The Node ID of the PullRequestReview object */ id: Scalars['ID']['output']; /** Check if this comment was edited and includes an edit with the creation data */ @@ -17919,7 +17929,10 @@ export type PullRequestReviewComment = Comment & Deletable & Minimizable & Node createdAt: Scalars['DateTime']['output']; /** Check if this comment was created via an email reply. */ createdViaEmail: Scalars['Boolean']['output']; - /** Identifies the primary key from the database. */ + /** + * Identifies the primary key from the database. + * @deprecated `databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC. + */ databaseId?: Maybe; /** The diff hunk to which the comment applies. */ diffHunk: Scalars['String']['output']; @@ -17927,6 +17940,8 @@ export type PullRequestReviewComment = Comment & Deletable & Minimizable & Node draftedAt: Scalars['DateTime']['output']; /** The actor who edited the comment. */ editor?: Maybe; + /** Identifies the primary key from the database as a BigInt. */ + fullDatabaseId?: Maybe; /** The Node ID of the PullRequestReviewComment object */ id: Scalars['ID']['output']; /** Check if this comment was edited and includes an edit with the creation data */ diff --git a/yarn.lock b/yarn.lock index 1edcfb16..8674fcf5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2180,10 +2180,10 @@ is-plain-object "^5.0.0" universal-user-agent "^6.0.0" -"@octokit/graphql-schema@14.55.0": - version "14.55.0" - resolved "https://registry.yarnpkg.com/@octokit/graphql-schema/-/graphql-schema-14.55.0.tgz#95365159779f1c31db6fa69b3c4a0bbe50b3a5d7" - integrity sha512-IJjs5rvfDB8kyh878CidoBszHFKfTNfT4vfYrayQi3/PUvOxhur5YANKq4d+kb5pRA5CQGc/jOD6td45UTxK7g== +"@octokit/graphql-schema@14.55.1": + version "14.55.1" + resolved "https://registry.yarnpkg.com/@octokit/graphql-schema/-/graphql-schema-14.55.1.tgz#e00eadd9948f37b8ceca889de0608d1a6c651509" + integrity sha512-2D+ozyxfsbOdGeiLj/9wfBFVODj8eTQ8qeTwr9wOPyhIYtVcGPFJJTt8u/9Tfj+rImkg0xQg6fyFDO+In6Jb8Q== dependencies: graphql "^16.0.0" graphql-tag "^2.10.3"