github-schema 1.6.5 → 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.
@@ -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
  """
@@ -33972,6 +33977,36 @@ enum ProjectV2WorkflowsOrderField {
33972
33977
  UPDATED_AT
33973
33978
  }
33974
33979
 
33980
+ """
33981
+ A property that must match
33982
+ """
33983
+ type PropertyTargetDefinition {
33984
+ """
33985
+ The name of the property
33986
+ """
33987
+ name: String!
33988
+
33989
+ """
33990
+ The values to match for
33991
+ """
33992
+ propertyValues: [String!]!
33993
+ }
33994
+
33995
+ """
33996
+ A property that must match
33997
+ """
33998
+ input PropertyTargetDefinitionInput {
33999
+ """
34000
+ The name of the property
34001
+ """
34002
+ name: String!
34003
+
34004
+ """
34005
+ The values to match for
34006
+ """
34007
+ propertyValues: [String!]!
34008
+ }
34009
+
33975
34010
  """
33976
34011
  A user's public key.
33977
34012
  """
@@ -34302,7 +34337,7 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
34302
34337
  """
34303
34338
  Identifies the primary key from the database.
34304
34339
  """
34305
- 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.")
34306
34341
 
34307
34342
  """
34308
34343
  The number of deletions in this pull request.
@@ -34339,6 +34374,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
34339
34374
  last: Int
34340
34375
  ): PullRequestChangedFileConnection
34341
34376
 
34377
+ """
34378
+ Identifies the primary key from the database as a BigInt.
34379
+ """
34380
+ fullDatabaseId: BigInt
34381
+
34342
34382
  """
34343
34383
  Identifies the head Ref associated with the pull request.
34344
34384
  """
@@ -34394,6 +34434,16 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
34394
34434
  """
34395
34435
  isDraft: Boolean!
34396
34436
 
34437
+ """
34438
+ Indicates whether the pull request is in a merge queue
34439
+ """
34440
+ isInMergeQueue: Boolean!
34441
+
34442
+ """
34443
+ Indicates whether the pull request's base ref has a merge queue enabled.
34444
+ """
34445
+ isMergeQueueEnabled: Boolean!
34446
+
34397
34447
  """
34398
34448
  Is this pull request read by the viewer
34399
34449
  """
@@ -34504,6 +34554,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
34504
34554
  """
34505
34555
  mergeCommit: Commit
34506
34556
 
34557
+ """
34558
+ The merge queue for the pull request's base branch
34559
+ """
34560
+ mergeQueue: MergeQueue
34561
+
34507
34562
  """
34508
34563
  The merge queue entry of the pull request in the base branch's merge queue
34509
34564
  """
@@ -35556,13 +35611,18 @@ type PullRequestReview implements Comment & Deletable & Minimizable & Node & Rea
35556
35611
  """
35557
35612
  Identifies the primary key from the database.
35558
35613
  """
35559
- 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.")
35560
35615
 
35561
35616
  """
35562
35617
  The actor who edited the comment.
35563
35618
  """
35564
35619
  editor: Actor
35565
35620
 
35621
+ """
35622
+ Identifies the primary key from the database as a BigInt.
35623
+ """
35624
+ fullDatabaseId: BigInt
35625
+
35566
35626
  """
35567
35627
  The Node ID of the PullRequestReview object
35568
35628
  """
@@ -35798,7 +35858,7 @@ type PullRequestReviewComment implements Comment & Deletable & Minimizable & Nod
35798
35858
  """
35799
35859
  Identifies the primary key from the database.
35800
35860
  """
35801
- 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.")
35802
35862
 
35803
35863
  """
35804
35864
  The diff hunk to which the comment applies.
@@ -35815,6 +35875,11 @@ type PullRequestReviewComment implements Comment & Deletable & Minimizable & Nod
35815
35875
  """
35816
35876
  editor: Actor
35817
35877
 
35878
+ """
35879
+ Identifies the primary key from the database as a BigInt.
35880
+ """
35881
+ fullDatabaseId: BigInt
35882
+
35818
35883
  """
35819
35884
  The Node ID of the PullRequestReviewComment object
35820
35885
  """
@@ -42476,6 +42541,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
42476
42541
  """
42477
42542
  hasProjectsEnabled: Boolean!
42478
42543
 
42544
+ """
42545
+ Indicates if the repository displays a Sponsor button for financial contributions.
42546
+ """
42547
+ hasSponsorshipsEnabled: Boolean!
42548
+
42479
42549
  """
42480
42550
  Whether vulnerability alerts are enabled for the repository.
42481
42551
  """
@@ -43997,6 +44067,11 @@ interface RepositoryInfo {
43997
44067
  """
43998
44068
  hasProjectsEnabled: Boolean!
43999
44069
 
44070
+ """
44071
+ Indicates if the repository displays a Sponsor button for financial contributions.
44072
+ """
44073
+ hasSponsorshipsEnabled: Boolean!
44074
+
44000
44075
  """
44001
44076
  Indicates if the repository has wiki feature enabled.
44002
44077
  """
@@ -44764,6 +44839,36 @@ enum RepositoryPrivacy {
44764
44839
  PUBLIC
44765
44840
  }
44766
44841
 
44842
+ """
44843
+ Parameters to be used for the repository_property condition
44844
+ """
44845
+ type RepositoryPropertyConditionTarget {
44846
+ """
44847
+ Array of repository properties that must not match.
44848
+ """
44849
+ exclude: [PropertyTargetDefinition!]!
44850
+
44851
+ """
44852
+ Array of repository properties that must match
44853
+ """
44854
+ include: [PropertyTargetDefinition!]!
44855
+ }
44856
+
44857
+ """
44858
+ Parameters to be used for the repository_property condition
44859
+ """
44860
+ input RepositoryPropertyConditionTargetInput {
44861
+ """
44862
+ Array of repository properties that must not match.
44863
+ """
44864
+ exclude: [PropertyTargetDefinitionInput!]!
44865
+
44866
+ """
44867
+ Array of repository properties that must match
44868
+ """
44869
+ include: [PropertyTargetDefinitionInput!]!
44870
+ }
44871
+
44767
44872
  """
44768
44873
  A repository rule.
44769
44874
  """
@@ -44807,6 +44912,11 @@ type RepositoryRuleConditions {
44807
44912
  Configuration for the repository_name condition
44808
44913
  """
44809
44914
  repositoryName: RepositoryNameConditionTarget
44915
+
44916
+ """
44917
+ Configuration for the repository_property condition
44918
+ """
44919
+ repositoryProperty: RepositoryPropertyConditionTarget
44810
44920
  }
44811
44921
 
44812
44922
  """
@@ -44827,6 +44937,11 @@ input RepositoryRuleConditionsInput {
44827
44937
  Configuration for the repository_name condition
44828
44938
  """
44829
44939
  repositoryName: RepositoryNameConditionTargetInput
44940
+
44941
+ """
44942
+ Configuration for the repository_property condition
44943
+ """
44944
+ repositoryProperty: RepositoryPropertyConditionTargetInput
44830
44945
  }
44831
44946
 
44832
44947
  """
@@ -57234,6 +57349,11 @@ input UpdateRepositoryInput {
57234
57349
  """
57235
57350
  hasProjectsEnabled: Boolean
57236
57351
 
57352
+ """
57353
+ Indicates if the repository displays a Sponsor button for financial contributions.
57354
+ """
57355
+ hasSponsorshipsEnabled: Boolean
57356
+
57237
57357
  """
57238
57358
  Indicates if the repository should have the wiki feature enabled.
57239
57359
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-schema",
3
- "version": "1.6.5",
3
+ "version": "1.7.1",
4
4
  "description": "GitHub's GraphQL schema",
5
5
  "type": "module",
6
6
  "author": {