github-schema 1.22.8 → 1.22.10

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.
@@ -8677,6 +8677,11 @@ input CreateRepositoryCustomPropertyInput {
8677
8677
  """
8678
8678
  regex: String
8679
8679
 
8680
+ """
8681
+ Whether this repository custom property requires explicit values.
8682
+ """
8683
+ requireExplicitValues: Boolean
8684
+
8680
8685
  """
8681
8686
  Whether the custom property is required.
8682
8687
  """
@@ -20499,6 +20504,16 @@ enum IssueTimelineItemsItemType {
20499
20504
  """
20500
20505
  ISSUE_COMMENT
20501
20506
 
20507
+ """
20508
+ Represents a 'issue_comment_pinned' event on a given issue.
20509
+ """
20510
+ ISSUE_COMMENT_PINNED_EVENT
20511
+
20512
+ """
20513
+ Represents a 'issue_comment_unpinned' event on a given issue.
20514
+ """
20515
+ ISSUE_COMMENT_UNPINNED_EVENT
20516
+
20502
20517
  """
20503
20518
  Represents a 'issue_field_added' event on a given issue.
20504
20519
  """
@@ -39520,6 +39535,21 @@ type PullRequestContributionsByRepository {
39520
39535
  repository: Repository!
39521
39536
  }
39522
39537
 
39538
+ """
39539
+ The policy controlling who can create pull requests in a repository.
39540
+ """
39541
+ enum PullRequestCreationPolicy {
39542
+ """
39543
+ Anyone can create pull requests.
39544
+ """
39545
+ ALL
39546
+
39547
+ """
39548
+ Only collaborators can create pull requests.
39549
+ """
39550
+ COLLABORATORS_ONLY
39551
+ }
39552
+
39523
39553
  """
39524
39554
  An edge in a connection.
39525
39555
  """
@@ -41084,6 +41114,16 @@ enum PullRequestTimelineItemsItemType {
41084
41114
  """
41085
41115
  ISSUE_COMMENT
41086
41116
 
41117
+ """
41118
+ Represents a 'issue_comment_pinned' event on a given issue.
41119
+ """
41120
+ ISSUE_COMMENT_PINNED_EVENT
41121
+
41122
+ """
41123
+ Represents a 'issue_comment_unpinned' event on a given issue.
41124
+ """
41125
+ ISSUE_COMMENT_UNPINNED_EVENT
41126
+
41087
41127
  """
41088
41128
  Represents a 'issue_field_added' event on a given issue.
41089
41129
  """
@@ -47108,6 +47148,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
47108
47148
  """
47109
47149
  hasProjectsEnabled: Boolean!
47110
47150
 
47151
+ """
47152
+ Indicates if the repository has the pull requests feature enabled.
47153
+ """
47154
+ hasPullRequestsEnabled: Boolean!
47155
+
47111
47156
  """
47112
47157
  Indicates if the repository displays a Sponsor button for financial contributions.
47113
47158
  """
@@ -47803,6 +47848,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
47803
47848
  number: Int!
47804
47849
  ): PullRequest
47805
47850
 
47851
+ """
47852
+ The policy controlling who can create pull requests in this repository.
47853
+ """
47854
+ pullRequestCreationPolicy: PullRequestCreationPolicy
47855
+
47806
47856
  """
47807
47857
  Returns a list of pull request templates associated to the repository
47808
47858
  """
@@ -48663,6 +48713,11 @@ type RepositoryCustomProperty implements Node {
48663
48713
  """
48664
48714
  regex: String
48665
48715
 
48716
+ """
48717
+ Whether this repository custom property requires explicit values.
48718
+ """
48719
+ requireExplicitValues: Boolean
48720
+
48666
48721
  """
48667
48722
  Whether the custom property is required.
48668
48723
  """
@@ -48964,6 +49019,11 @@ interface RepositoryInfo {
48964
49019
  """
48965
49020
  hasProjectsEnabled: Boolean!
48966
49021
 
49022
+ """
49023
+ Indicates if the repository has the pull requests feature enabled.
49024
+ """
49025
+ hasPullRequestsEnabled: Boolean!
49026
+
48967
49027
  """
48968
49028
  Indicates if the repository displays a Sponsor button for financial contributions.
48969
49029
  """
@@ -49049,6 +49109,11 @@ interface RepositoryInfo {
49049
49109
  """
49050
49110
  owner: RepositoryOwner!
49051
49111
 
49112
+ """
49113
+ The policy controlling who can create pull requests in this repository.
49114
+ """
49115
+ pullRequestCreationPolicy: PullRequestCreationPolicy
49116
+
49052
49117
  """
49053
49118
  Identifies the date and time when the repository was last pushed to.
49054
49119
  """
@@ -62555,6 +62620,11 @@ input UpdateRepositoryCustomPropertyInput {
62555
62620
  """
62556
62621
  repositoryCustomPropertyId: ID!
62557
62622
 
62623
+ """
62624
+ Whether this repository custom property requires explicit values.
62625
+ """
62626
+ requireExplicitValues: Boolean
62627
+
62558
62628
  """
62559
62629
  Whether the updated custom property is required.
62560
62630
  """
@@ -62610,6 +62680,11 @@ input UpdateRepositoryInput {
62610
62680
  """
62611
62681
  hasProjectsEnabled: Boolean
62612
62682
 
62683
+ """
62684
+ Indicates if the repository should have the pull requests feature enabled.
62685
+ """
62686
+ hasPullRequestsEnabled: Boolean
62687
+
62613
62688
  """
62614
62689
  Indicates if the repository displays a Sponsor button for financial contributions.
62615
62690
  """
@@ -62630,6 +62705,11 @@ input UpdateRepositoryInput {
62630
62705
  """
62631
62706
  name: String
62632
62707
 
62708
+ """
62709
+ The policy controlling who can create pull requests in this repository.
62710
+ """
62711
+ pullRequestCreationPolicy: PullRequestCreationPolicy
62712
+
62633
62713
  """
62634
62714
  The ID of the repository to update.
62635
62715
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-schema",
3
- "version": "1.22.8",
3
+ "version": "1.22.10",
4
4
  "description": "GitHub's GraphQL schema",
5
5
  "type": "module",
6
6
  "author": {