github-schema 1.22.8 → 1.22.9

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.
@@ -20499,6 +20499,16 @@ enum IssueTimelineItemsItemType {
20499
20499
  """
20500
20500
  ISSUE_COMMENT
20501
20501
 
20502
+ """
20503
+ Represents a 'issue_comment_pinned' event on a given issue.
20504
+ """
20505
+ ISSUE_COMMENT_PINNED_EVENT
20506
+
20507
+ """
20508
+ Represents a 'issue_comment_unpinned' event on a given issue.
20509
+ """
20510
+ ISSUE_COMMENT_UNPINNED_EVENT
20511
+
20502
20512
  """
20503
20513
  Represents a 'issue_field_added' event on a given issue.
20504
20514
  """
@@ -39520,6 +39530,21 @@ type PullRequestContributionsByRepository {
39520
39530
  repository: Repository!
39521
39531
  }
39522
39532
 
39533
+ """
39534
+ The policy controlling who can create pull requests in a repository.
39535
+ """
39536
+ enum PullRequestCreationPolicy {
39537
+ """
39538
+ Anyone can create pull requests.
39539
+ """
39540
+ ALL
39541
+
39542
+ """
39543
+ Only collaborators can create pull requests.
39544
+ """
39545
+ COLLABORATORS_ONLY
39546
+ }
39547
+
39523
39548
  """
39524
39549
  An edge in a connection.
39525
39550
  """
@@ -41084,6 +41109,16 @@ enum PullRequestTimelineItemsItemType {
41084
41109
  """
41085
41110
  ISSUE_COMMENT
41086
41111
 
41112
+ """
41113
+ Represents a 'issue_comment_pinned' event on a given issue.
41114
+ """
41115
+ ISSUE_COMMENT_PINNED_EVENT
41116
+
41117
+ """
41118
+ Represents a 'issue_comment_unpinned' event on a given issue.
41119
+ """
41120
+ ISSUE_COMMENT_UNPINNED_EVENT
41121
+
41087
41122
  """
41088
41123
  Represents a 'issue_field_added' event on a given issue.
41089
41124
  """
@@ -47108,6 +47143,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
47108
47143
  """
47109
47144
  hasProjectsEnabled: Boolean!
47110
47145
 
47146
+ """
47147
+ Indicates if the repository has the pull requests feature enabled.
47148
+ """
47149
+ hasPullRequestsEnabled: Boolean!
47150
+
47111
47151
  """
47112
47152
  Indicates if the repository displays a Sponsor button for financial contributions.
47113
47153
  """
@@ -47803,6 +47843,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
47803
47843
  number: Int!
47804
47844
  ): PullRequest
47805
47845
 
47846
+ """
47847
+ The policy controlling who can create pull requests in this repository.
47848
+ """
47849
+ pullRequestCreationPolicy: PullRequestCreationPolicy
47850
+
47806
47851
  """
47807
47852
  Returns a list of pull request templates associated to the repository
47808
47853
  """
@@ -48964,6 +49009,11 @@ interface RepositoryInfo {
48964
49009
  """
48965
49010
  hasProjectsEnabled: Boolean!
48966
49011
 
49012
+ """
49013
+ Indicates if the repository has the pull requests feature enabled.
49014
+ """
49015
+ hasPullRequestsEnabled: Boolean!
49016
+
48967
49017
  """
48968
49018
  Indicates if the repository displays a Sponsor button for financial contributions.
48969
49019
  """
@@ -49049,6 +49099,11 @@ interface RepositoryInfo {
49049
49099
  """
49050
49100
  owner: RepositoryOwner!
49051
49101
 
49102
+ """
49103
+ The policy controlling who can create pull requests in this repository.
49104
+ """
49105
+ pullRequestCreationPolicy: PullRequestCreationPolicy
49106
+
49052
49107
  """
49053
49108
  Identifies the date and time when the repository was last pushed to.
49054
49109
  """
@@ -62610,6 +62665,11 @@ input UpdateRepositoryInput {
62610
62665
  """
62611
62666
  hasProjectsEnabled: Boolean
62612
62667
 
62668
+ """
62669
+ Indicates if the repository should have the pull requests feature enabled.
62670
+ """
62671
+ hasPullRequestsEnabled: Boolean
62672
+
62613
62673
  """
62614
62674
  Indicates if the repository displays a Sponsor button for financial contributions.
62615
62675
  """
@@ -62630,6 +62690,11 @@ input UpdateRepositoryInput {
62630
62690
  """
62631
62691
  name: String
62632
62692
 
62693
+ """
62694
+ The policy controlling who can create pull requests in this repository.
62695
+ """
62696
+ pullRequestCreationPolicy: PullRequestCreationPolicy
62697
+
62633
62698
  """
62634
62699
  The ID of the repository to update.
62635
62700
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-schema",
3
- "version": "1.22.8",
3
+ "version": "1.22.9",
4
4
  "description": "GitHub's GraphQL schema",
5
5
  "type": "module",
6
6
  "author": {