github-schema 1.6.5 → 1.7.0

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.
@@ -33972,6 +33972,36 @@ enum ProjectV2WorkflowsOrderField {
33972
33972
  UPDATED_AT
33973
33973
  }
33974
33974
 
33975
+ """
33976
+ A property that must match
33977
+ """
33978
+ type PropertyTargetDefinition {
33979
+ """
33980
+ The name of the property
33981
+ """
33982
+ name: String!
33983
+
33984
+ """
33985
+ The values to match for
33986
+ """
33987
+ propertyValues: [String!]!
33988
+ }
33989
+
33990
+ """
33991
+ A property that must match
33992
+ """
33993
+ input PropertyTargetDefinitionInput {
33994
+ """
33995
+ The name of the property
33996
+ """
33997
+ name: String!
33998
+
33999
+ """
34000
+ The values to match for
34001
+ """
34002
+ propertyValues: [String!]!
34003
+ }
34004
+
33975
34005
  """
33976
34006
  A user's public key.
33977
34007
  """
@@ -34394,6 +34424,16 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
34394
34424
  """
34395
34425
  isDraft: Boolean!
34396
34426
 
34427
+ """
34428
+ Indicates whether the pull request is in a merge queue
34429
+ """
34430
+ isInMergeQueue: Boolean!
34431
+
34432
+ """
34433
+ Indicates whether the pull request's base ref has a merge queue enabled.
34434
+ """
34435
+ isMergeQueueEnabled: Boolean!
34436
+
34397
34437
  """
34398
34438
  Is this pull request read by the viewer
34399
34439
  """
@@ -34504,6 +34544,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
34504
34544
  """
34505
34545
  mergeCommit: Commit
34506
34546
 
34547
+ """
34548
+ The merge queue for the pull request's base branch
34549
+ """
34550
+ mergeQueue: MergeQueue
34551
+
34507
34552
  """
34508
34553
  The merge queue entry of the pull request in the base branch's merge queue
34509
34554
  """
@@ -44764,6 +44809,36 @@ enum RepositoryPrivacy {
44764
44809
  PUBLIC
44765
44810
  }
44766
44811
 
44812
+ """
44813
+ Parameters to be used for the repository_property condition
44814
+ """
44815
+ type RepositoryPropertyConditionTarget {
44816
+ """
44817
+ Array of repository properties that must not match.
44818
+ """
44819
+ exclude: [PropertyTargetDefinition!]!
44820
+
44821
+ """
44822
+ Array of repository properties that must match
44823
+ """
44824
+ include: [PropertyTargetDefinition!]!
44825
+ }
44826
+
44827
+ """
44828
+ Parameters to be used for the repository_property condition
44829
+ """
44830
+ input RepositoryPropertyConditionTargetInput {
44831
+ """
44832
+ Array of repository properties that must not match.
44833
+ """
44834
+ exclude: [PropertyTargetDefinitionInput!]!
44835
+
44836
+ """
44837
+ Array of repository properties that must match
44838
+ """
44839
+ include: [PropertyTargetDefinitionInput!]!
44840
+ }
44841
+
44767
44842
  """
44768
44843
  A repository rule.
44769
44844
  """
@@ -44807,6 +44882,11 @@ type RepositoryRuleConditions {
44807
44882
  Configuration for the repository_name condition
44808
44883
  """
44809
44884
  repositoryName: RepositoryNameConditionTarget
44885
+
44886
+ """
44887
+ Configuration for the repository_property condition
44888
+ """
44889
+ repositoryProperty: RepositoryPropertyConditionTarget
44810
44890
  }
44811
44891
 
44812
44892
  """
@@ -44827,6 +44907,11 @@ input RepositoryRuleConditionsInput {
44827
44907
  Configuration for the repository_name condition
44828
44908
  """
44829
44909
  repositoryName: RepositoryNameConditionTargetInput
44910
+
44911
+ """
44912
+ Configuration for the repository_property condition
44913
+ """
44914
+ repositoryProperty: RepositoryPropertyConditionTargetInput
44830
44915
  }
44831
44916
 
44832
44917
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-schema",
3
- "version": "1.6.5",
3
+ "version": "1.7.0",
4
4
  "description": "GitHub's GraphQL schema",
5
5
  "type": "module",
6
6
  "author": {