github-schema 1.7.0 → 1.7.1

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.
@@ -7324,6 +7324,8 @@ type FundingPlatform =
7324
7324
  | 'OTECHIE'
7325
7325
  /** Patreon funding platform. */
7326
7326
  | 'PATREON'
7327
+ /** Polar funding platform. */
7328
+ | 'POLAR'
7327
7329
  /** Tidelift funding platform. */
7328
7330
  | 'TIDELIFT';
7329
7331
  /** A generic hovercard context with a message and icon */
@@ -15759,7 +15761,10 @@ type PullRequest = Assignable & Closable & Comment & Labelable & Lockable & Node
15759
15761
  createdAt: Scalars['DateTime']['output'];
15760
15762
  /** Check if this comment was created via an email reply. */
15761
15763
  createdViaEmail: Scalars['Boolean']['output'];
15762
- /** Identifies the primary key from the database. */
15764
+ /**
15765
+ * Identifies the primary key from the database.
15766
+ * @deprecated `databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC.
15767
+ */
15763
15768
  databaseId?: Maybe<Scalars['Int']['output']>;
15764
15769
  /** The number of deletions in this pull request. */
15765
15770
  deletions: Scalars['Int']['output'];
@@ -15767,6 +15772,8 @@ type PullRequest = Assignable & Closable & Comment & Labelable & Lockable & Node
15767
15772
  editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
15768
15773
  /** Lists the files changed within this pull request. */
15769
15774
  files?: Maybe<PullRequestChangedFileConnection>;
15775
+ /** Identifies the primary key from the database as a BigInt. */
15776
+ fullDatabaseId?: Maybe<Scalars['BigInt']['output']>;
15770
15777
  /** Identifies the head Ref associated with the pull request. */
15771
15778
  headRef?: Maybe<Ref>;
15772
15779
  /** Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted. */
@@ -16301,10 +16308,15 @@ type PullRequestReview = Comment & Deletable & Minimizable & Node & Reactable &
16301
16308
  createdAt: Scalars['DateTime']['output'];
16302
16309
  /** Check if this comment was created via an email reply. */
16303
16310
  createdViaEmail: Scalars['Boolean']['output'];
16304
- /** Identifies the primary key from the database. */
16311
+ /**
16312
+ * Identifies the primary key from the database.
16313
+ * @deprecated `databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC.
16314
+ */
16305
16315
  databaseId?: Maybe<Scalars['Int']['output']>;
16306
16316
  /** The actor who edited the comment. */
16307
16317
  editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
16318
+ /** Identifies the primary key from the database as a BigInt. */
16319
+ fullDatabaseId?: Maybe<Scalars['BigInt']['output']>;
16308
16320
  /** The Node ID of the PullRequestReview object */
16309
16321
  id: Scalars['ID']['output'];
16310
16322
  /** Check if this comment was edited and includes an edit with the creation data */
@@ -16405,7 +16417,10 @@ type PullRequestReviewComment = Comment & Deletable & Minimizable & Node & React
16405
16417
  createdAt: Scalars['DateTime']['output'];
16406
16418
  /** Check if this comment was created via an email reply. */
16407
16419
  createdViaEmail: Scalars['Boolean']['output'];
16408
- /** Identifies the primary key from the database. */
16420
+ /**
16421
+ * Identifies the primary key from the database.
16422
+ * @deprecated `databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC.
16423
+ */
16409
16424
  databaseId?: Maybe<Scalars['Int']['output']>;
16410
16425
  /** The diff hunk to which the comment applies. */
16411
16426
  diffHunk: Scalars['String']['output'];
@@ -16413,6 +16428,8 @@ type PullRequestReviewComment = Comment & Deletable & Minimizable & Node & React
16413
16428
  draftedAt: Scalars['DateTime']['output'];
16414
16429
  /** The actor who edited the comment. */
16415
16430
  editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
16431
+ /** Identifies the primary key from the database as a BigInt. */
16432
+ fullDatabaseId?: Maybe<Scalars['BigInt']['output']>;
16416
16433
  /** The Node ID of the PullRequestReviewComment object */
16417
16434
  id: Scalars['ID']['output'];
16418
16435
  /** Check if this comment was edited and includes an edit with the creation data */
@@ -19125,6 +19142,8 @@ type Repository = Node & PackageOwner & ProjectOwner & ProjectV2Recent & Reposit
19125
19142
  hasIssuesEnabled: Scalars['Boolean']['output'];
19126
19143
  /** Indicates if the repository has the Projects feature enabled. */
19127
19144
  hasProjectsEnabled: Scalars['Boolean']['output'];
19145
+ /** Indicates if the repository displays a Sponsor button for financial contributions. */
19146
+ hasSponsorshipsEnabled: Scalars['Boolean']['output'];
19128
19147
  /** Whether vulnerability alerts are enabled for the repository. */
19129
19148
  hasVulnerabilityAlertsEnabled: Scalars['Boolean']['output'];
19130
19149
  /** Indicates if the repository has wiki feature enabled. */
@@ -19834,6 +19853,8 @@ type RepositoryInfo = {
19834
19853
  hasIssuesEnabled: Scalars['Boolean']['output'];
19835
19854
  /** Indicates if the repository has the Projects feature enabled. */
19836
19855
  hasProjectsEnabled: Scalars['Boolean']['output'];
19856
+ /** Indicates if the repository displays a Sponsor button for financial contributions. */
19857
+ hasSponsorshipsEnabled: Scalars['Boolean']['output'];
19837
19858
  /** Indicates if the repository has wiki feature enabled. */
19838
19859
  hasWikiEnabled: Scalars['Boolean']['output'];
19839
19860
  /** The repository's URL. */
@@ -25835,6 +25856,8 @@ type UpdateRepositoryInput = {
25835
25856
  hasIssuesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
25836
25857
  /** Indicates if the repository should have the project boards feature enabled. */
25837
25858
  hasProjectsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
25859
+ /** Indicates if the repository displays a Sponsor button for financial contributions. */
25860
+ hasSponsorshipsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
25838
25861
  /** Indicates if the repository should have the wiki feature enabled. */
25839
25862
  hasWikiEnabled?: InputMaybe<Scalars['Boolean']['input']>;
25840
25863
  /** The URL for a web page about this repository. Pass an empty string to erase the existing URL. */
@@ -7324,6 +7324,8 @@ type FundingPlatform =
7324
7324
  | 'OTECHIE'
7325
7325
  /** Patreon funding platform. */
7326
7326
  | 'PATREON'
7327
+ /** Polar funding platform. */
7328
+ | 'POLAR'
7327
7329
  /** Tidelift funding platform. */
7328
7330
  | 'TIDELIFT';
7329
7331
  /** A generic hovercard context with a message and icon */
@@ -15759,7 +15761,10 @@ type PullRequest = Assignable & Closable & Comment & Labelable & Lockable & Node
15759
15761
  createdAt: Scalars['DateTime']['output'];
15760
15762
  /** Check if this comment was created via an email reply. */
15761
15763
  createdViaEmail: Scalars['Boolean']['output'];
15762
- /** Identifies the primary key from the database. */
15764
+ /**
15765
+ * Identifies the primary key from the database.
15766
+ * @deprecated `databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC.
15767
+ */
15763
15768
  databaseId?: Maybe<Scalars['Int']['output']>;
15764
15769
  /** The number of deletions in this pull request. */
15765
15770
  deletions: Scalars['Int']['output'];
@@ -15767,6 +15772,8 @@ type PullRequest = Assignable & Closable & Comment & Labelable & Lockable & Node
15767
15772
  editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
15768
15773
  /** Lists the files changed within this pull request. */
15769
15774
  files?: Maybe<PullRequestChangedFileConnection>;
15775
+ /** Identifies the primary key from the database as a BigInt. */
15776
+ fullDatabaseId?: Maybe<Scalars['BigInt']['output']>;
15770
15777
  /** Identifies the head Ref associated with the pull request. */
15771
15778
  headRef?: Maybe<Ref>;
15772
15779
  /** Identifies the name of the head Ref associated with the pull request, even if the ref has been deleted. */
@@ -16301,10 +16308,15 @@ type PullRequestReview = Comment & Deletable & Minimizable & Node & Reactable &
16301
16308
  createdAt: Scalars['DateTime']['output'];
16302
16309
  /** Check if this comment was created via an email reply. */
16303
16310
  createdViaEmail: Scalars['Boolean']['output'];
16304
- /** Identifies the primary key from the database. */
16311
+ /**
16312
+ * Identifies the primary key from the database.
16313
+ * @deprecated `databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC.
16314
+ */
16305
16315
  databaseId?: Maybe<Scalars['Int']['output']>;
16306
16316
  /** The actor who edited the comment. */
16307
16317
  editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
16318
+ /** Identifies the primary key from the database as a BigInt. */
16319
+ fullDatabaseId?: Maybe<Scalars['BigInt']['output']>;
16308
16320
  /** The Node ID of the PullRequestReview object */
16309
16321
  id: Scalars['ID']['output'];
16310
16322
  /** Check if this comment was edited and includes an edit with the creation data */
@@ -16405,7 +16417,10 @@ type PullRequestReviewComment = Comment & Deletable & Minimizable & Node & React
16405
16417
  createdAt: Scalars['DateTime']['output'];
16406
16418
  /** Check if this comment was created via an email reply. */
16407
16419
  createdViaEmail: Scalars['Boolean']['output'];
16408
- /** Identifies the primary key from the database. */
16420
+ /**
16421
+ * Identifies the primary key from the database.
16422
+ * @deprecated `databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC.
16423
+ */
16409
16424
  databaseId?: Maybe<Scalars['Int']['output']>;
16410
16425
  /** The diff hunk to which the comment applies. */
16411
16426
  diffHunk: Scalars['String']['output'];
@@ -16413,6 +16428,8 @@ type PullRequestReviewComment = Comment & Deletable & Minimizable & Node & React
16413
16428
  draftedAt: Scalars['DateTime']['output'];
16414
16429
  /** The actor who edited the comment. */
16415
16430
  editor?: Maybe<Bot | EnterpriseUserAccount | Mannequin | Organization | User>;
16431
+ /** Identifies the primary key from the database as a BigInt. */
16432
+ fullDatabaseId?: Maybe<Scalars['BigInt']['output']>;
16416
16433
  /** The Node ID of the PullRequestReviewComment object */
16417
16434
  id: Scalars['ID']['output'];
16418
16435
  /** Check if this comment was edited and includes an edit with the creation data */
@@ -19125,6 +19142,8 @@ type Repository = Node & PackageOwner & ProjectOwner & ProjectV2Recent & Reposit
19125
19142
  hasIssuesEnabled: Scalars['Boolean']['output'];
19126
19143
  /** Indicates if the repository has the Projects feature enabled. */
19127
19144
  hasProjectsEnabled: Scalars['Boolean']['output'];
19145
+ /** Indicates if the repository displays a Sponsor button for financial contributions. */
19146
+ hasSponsorshipsEnabled: Scalars['Boolean']['output'];
19128
19147
  /** Whether vulnerability alerts are enabled for the repository. */
19129
19148
  hasVulnerabilityAlertsEnabled: Scalars['Boolean']['output'];
19130
19149
  /** Indicates if the repository has wiki feature enabled. */
@@ -19834,6 +19853,8 @@ type RepositoryInfo = {
19834
19853
  hasIssuesEnabled: Scalars['Boolean']['output'];
19835
19854
  /** Indicates if the repository has the Projects feature enabled. */
19836
19855
  hasProjectsEnabled: Scalars['Boolean']['output'];
19856
+ /** Indicates if the repository displays a Sponsor button for financial contributions. */
19857
+ hasSponsorshipsEnabled: Scalars['Boolean']['output'];
19837
19858
  /** Indicates if the repository has wiki feature enabled. */
19838
19859
  hasWikiEnabled: Scalars['Boolean']['output'];
19839
19860
  /** The repository's URL. */
@@ -25835,6 +25856,8 @@ type UpdateRepositoryInput = {
25835
25856
  hasIssuesEnabled?: InputMaybe<Scalars['Boolean']['input']>;
25836
25857
  /** Indicates if the repository should have the project boards feature enabled. */
25837
25858
  hasProjectsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
25859
+ /** Indicates if the repository displays a Sponsor button for financial contributions. */
25860
+ hasSponsorshipsEnabled?: InputMaybe<Scalars['Boolean']['input']>;
25838
25861
  /** Indicates if the repository should have the wiki feature enabled. */
25839
25862
  hasWikiEnabled?: InputMaybe<Scalars['Boolean']['input']>;
25840
25863
  /** The URL for a web page about this repository. Pass an empty string to erase the existing URL. */
@@ -15485,6 +15485,11 @@ enum FundingPlatform {
15485
15485
  """
15486
15486
  PATREON
15487
15487
 
15488
+ """
15489
+ Polar funding platform.
15490
+ """
15491
+ POLAR
15492
+
15488
15493
  """
15489
15494
  Tidelift funding platform.
15490
15495
  """
@@ -34332,7 +34337,7 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
34332
34337
  """
34333
34338
  Identifies the primary key from the database.
34334
34339
  """
34335
- databaseId: Int
34340
+ databaseId: Int @deprecated(reason: "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC.")
34336
34341
 
34337
34342
  """
34338
34343
  The number of deletions in this pull request.
@@ -34369,6 +34374,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
34369
34374
  last: Int
34370
34375
  ): PullRequestChangedFileConnection
34371
34376
 
34377
+ """
34378
+ Identifies the primary key from the database as a BigInt.
34379
+ """
34380
+ fullDatabaseId: BigInt
34381
+
34372
34382
  """
34373
34383
  Identifies the head Ref associated with the pull request.
34374
34384
  """
@@ -35601,13 +35611,18 @@ type PullRequestReview implements Comment & Deletable & Minimizable & Node & Rea
35601
35611
  """
35602
35612
  Identifies the primary key from the database.
35603
35613
  """
35604
- databaseId: Int
35614
+ databaseId: Int @deprecated(reason: "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC.")
35605
35615
 
35606
35616
  """
35607
35617
  The actor who edited the comment.
35608
35618
  """
35609
35619
  editor: Actor
35610
35620
 
35621
+ """
35622
+ Identifies the primary key from the database as a BigInt.
35623
+ """
35624
+ fullDatabaseId: BigInt
35625
+
35611
35626
  """
35612
35627
  The Node ID of the PullRequestReview object
35613
35628
  """
@@ -35843,7 +35858,7 @@ type PullRequestReviewComment implements Comment & Deletable & Minimizable & Nod
35843
35858
  """
35844
35859
  Identifies the primary key from the database.
35845
35860
  """
35846
- databaseId: Int
35861
+ databaseId: Int @deprecated(reason: "`databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2024-07-01 UTC.")
35847
35862
 
35848
35863
  """
35849
35864
  The diff hunk to which the comment applies.
@@ -35860,6 +35875,11 @@ type PullRequestReviewComment implements Comment & Deletable & Minimizable & Nod
35860
35875
  """
35861
35876
  editor: Actor
35862
35877
 
35878
+ """
35879
+ Identifies the primary key from the database as a BigInt.
35880
+ """
35881
+ fullDatabaseId: BigInt
35882
+
35863
35883
  """
35864
35884
  The Node ID of the PullRequestReviewComment object
35865
35885
  """
@@ -42521,6 +42541,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
42521
42541
  """
42522
42542
  hasProjectsEnabled: Boolean!
42523
42543
 
42544
+ """
42545
+ Indicates if the repository displays a Sponsor button for financial contributions.
42546
+ """
42547
+ hasSponsorshipsEnabled: Boolean!
42548
+
42524
42549
  """
42525
42550
  Whether vulnerability alerts are enabled for the repository.
42526
42551
  """
@@ -44042,6 +44067,11 @@ interface RepositoryInfo {
44042
44067
  """
44043
44068
  hasProjectsEnabled: Boolean!
44044
44069
 
44070
+ """
44071
+ Indicates if the repository displays a Sponsor button for financial contributions.
44072
+ """
44073
+ hasSponsorshipsEnabled: Boolean!
44074
+
44045
44075
  """
44046
44076
  Indicates if the repository has wiki feature enabled.
44047
44077
  """
@@ -57319,6 +57349,11 @@ input UpdateRepositoryInput {
57319
57349
  """
57320
57350
  hasProjectsEnabled: Boolean
57321
57351
 
57352
+ """
57353
+ Indicates if the repository displays a Sponsor button for financial contributions.
57354
+ """
57355
+ hasSponsorshipsEnabled: Boolean
57356
+
57322
57357
  """
57323
57358
  Indicates if the repository should have the wiki feature enabled.
57324
57359
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-schema",
3
- "version": "1.7.0",
3
+ "version": "1.7.1",
4
4
  "description": "GitHub's GraphQL schema",
5
5
  "type": "module",
6
6
  "author": {