github-schema 1.22.11 → 1.22.13
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.
package/dist/github-schema.d.cts
CHANGED
|
@@ -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
|
-
/**
|
|
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. */
|
|
@@ -23791,7 +23796,7 @@ type Repository = Node & PackageOwner & ProjectOwner & ProjectV2Recent & Reposit
|
|
|
23791
23796
|
interactionAbility?: Maybe<RepositoryInteractionAbility>;
|
|
23792
23797
|
/** Indicates if the repository is unmaintained. */
|
|
23793
23798
|
isArchived: Scalars['Boolean']['output'];
|
|
23794
|
-
/** Returns true if blank issue
|
|
23799
|
+
/** Returns true if the viewer can create a blank issue in this repository */
|
|
23795
23800
|
isBlankIssuesEnabled: Scalars['Boolean']['output'];
|
|
23796
23801
|
/** Returns whether or not this repository disabled. */
|
|
23797
23802
|
isDisabled: Scalars['Boolean']['output'];
|
package/dist/github-schema.d.mts
CHANGED
|
@@ -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
|
-
/**
|
|
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. */
|
|
@@ -23791,7 +23796,7 @@ type Repository = Node & PackageOwner & ProjectOwner & ProjectV2Recent & Reposit
|
|
|
23791
23796
|
interactionAbility?: Maybe<RepositoryInteractionAbility>;
|
|
23792
23797
|
/** Indicates if the repository is unmaintained. */
|
|
23793
23798
|
isArchived: Scalars['Boolean']['output'];
|
|
23794
|
-
/** Returns true if blank issue
|
|
23799
|
+
/** Returns true if the viewer can create a blank issue in this repository */
|
|
23795
23800
|
isBlankIssuesEnabled: Scalars['Boolean']['output'];
|
|
23796
23801
|
/** Returns whether or not this repository disabled. */
|
|
23797
23802
|
isDisabled: Scalars['Boolean']['output'];
|
package/github-schema.graphql
CHANGED
|
@@ -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.
|
|
@@ -47189,7 +47194,7 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
|
|
|
47189
47194
|
isArchived: Boolean!
|
|
47190
47195
|
|
|
47191
47196
|
"""
|
|
47192
|
-
Returns true if blank issue
|
|
47197
|
+
Returns true if the viewer can create a blank issue in this repository
|
|
47193
47198
|
"""
|
|
47194
47199
|
isBlankIssuesEnabled: Boolean!
|
|
47195
47200
|
|