github-schema 1.22.11 → 1.22.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1793,8 +1793,13 @@ type CheckAnnotation = {
1793
1793
  annotationLevel?: Maybe<CheckAnnotationLevel>;
1794
1794
  /** The path to the file that this annotation was made on. */
1795
1795
  blobUrl: Scalars['URI']['output'];
1796
- /** Identifies the primary key from the database. */
1796
+ /**
1797
+ * Identifies the primary key from the database.
1798
+ * @deprecated `databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2027-01-01 UTC.
1799
+ */
1797
1800
  databaseId?: Maybe<Scalars['Int']['output']>;
1801
+ /** Identifies the primary key from the database as a BigInt. */
1802
+ fullDatabaseId?: Maybe<Scalars['BigInt']['output']>;
1798
1803
  /** The position of this annotation. */
1799
1804
  location: CheckAnnotationSpan;
1800
1805
  /** The annotation's message. */
@@ -1793,8 +1793,13 @@ type CheckAnnotation = {
1793
1793
  annotationLevel?: Maybe<CheckAnnotationLevel>;
1794
1794
  /** The path to the file that this annotation was made on. */
1795
1795
  blobUrl: Scalars['URI']['output'];
1796
- /** Identifies the primary key from the database. */
1796
+ /**
1797
+ * Identifies the primary key from the database.
1798
+ * @deprecated `databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2027-01-01 UTC.
1799
+ */
1797
1800
  databaseId?: Maybe<Scalars['Int']['output']>;
1801
+ /** Identifies the primary key from the database as a BigInt. */
1802
+ fullDatabaseId?: Maybe<Scalars['BigInt']['output']>;
1798
1803
  /** The position of this annotation. */
1799
1804
  location: CheckAnnotationSpan;
1800
1805
  /** The annotation's message. */
@@ -3403,7 +3403,12 @@ type CheckAnnotation {
3403
3403
  """
3404
3404
  Identifies the primary key from the database.
3405
3405
  """
3406
- databaseId: Int
3406
+ databaseId: Int @deprecated(reason: "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2027-01-01 UTC.")
3407
+
3408
+ """
3409
+ Identifies the primary key from the database as a BigInt.
3410
+ """
3411
+ fullDatabaseId: BigInt
3407
3412
 
3408
3413
  """
3409
3414
  The position of this annotation.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-schema",
3
- "version": "1.22.11",
3
+ "version": "1.22.12",
4
4
  "description": "GitHub's GraphQL schema",
5
5
  "type": "module",
6
6
  "author": {