github-schema 1.21.0 → 1.21.2

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.
@@ -8050,6 +8050,11 @@ input CreateIssueInput {
8050
8050
  """
8051
8051
  projectIds: [ID!]
8052
8052
 
8053
+ """
8054
+ An array of Node IDs for Projects V2 associated with this issue.
8055
+ """
8056
+ projectV2Ids: [ID!]
8057
+
8053
8058
  """
8054
8059
  The Node ID of the repository.
8055
8060
  """
@@ -39440,6 +39445,13 @@ type PullRequestParameters {
39440
39445
  All conversations on code must be resolved before a pull request can be merged.
39441
39446
  """
39442
39447
  requiredReviewThreadResolution: Boolean!
39448
+
39449
+ """
39450
+ This field is in beta and subject to change. A collection of reviewers and
39451
+ associated file patterns. Each reviewer has a list of file patterns which
39452
+ determine the files that reviewer is required to review.
39453
+ """
39454
+ requiredReviewers: [RequiredReviewerConfiguration!]
39443
39455
  }
39444
39456
 
39445
39457
  """
@@ -39481,6 +39493,13 @@ input PullRequestParametersInput {
39481
39493
  All conversations on code must be resolved before a pull request can be merged.
39482
39494
  """
39483
39495
  requiredReviewThreadResolution: Boolean!
39496
+
39497
+ """
39498
+ This argument is in beta and subject to change. A collection of reviewers and
39499
+ associated file patterns. Each reviewer has a list of file patterns which
39500
+ determine the files that reviewer is required to review.
39501
+ """
39502
+ requiredReviewers: [RequiredReviewerConfigurationInput!]
39484
39503
  }
39485
39504
 
39486
39505
  """
@@ -50786,6 +50805,50 @@ input RequiredDeploymentsParametersInput {
50786
50805
  requiredDeploymentEnvironments: [String!]!
50787
50806
  }
50788
50807
 
50808
+ """
50809
+ A reviewing team, and file patterns describing which files they must approve changes to.
50810
+ """
50811
+ type RequiredReviewerConfiguration {
50812
+ """
50813
+ Array of file patterns. Pull requests which change matching files must be
50814
+ approved by the specified team. File patterns use fnmatch syntax.
50815
+ """
50816
+ filePatterns: [String!]!
50817
+
50818
+ """
50819
+ Minimum number of approvals required from the specified team. If set to zero,
50820
+ the team will be added to the pull request but approval is optional.
50821
+ """
50822
+ minimumApprovals: Int!
50823
+
50824
+ """
50825
+ Node ID of the team which must review changes to matching files.
50826
+ """
50827
+ reviewerId: ID!
50828
+ }
50829
+
50830
+ """
50831
+ A reviewing team, and file patterns describing which files they must approve changes to.
50832
+ """
50833
+ input RequiredReviewerConfigurationInput {
50834
+ """
50835
+ Array of file patterns. Pull requests which change matching files must be
50836
+ approved by the specified team. File patterns use fnmatch syntax.
50837
+ """
50838
+ filePatterns: [String!]!
50839
+
50840
+ """
50841
+ Minimum number of approvals required from the specified team. If set to zero,
50842
+ the team will be added to the pull request but approval is optional.
50843
+ """
50844
+ minimumApprovals: Int!
50845
+
50846
+ """
50847
+ Node ID of the team which must review changes to matching files.
50848
+ """
50849
+ reviewerId: ID!
50850
+ }
50851
+
50789
50852
  """
50790
50853
  Represents a required status check for a protected branch, but not any specific run of that check.
50791
50854
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-schema",
3
- "version": "1.21.0",
3
+ "version": "1.21.2",
4
4
  "description": "GitHub's GraphQL schema",
5
5
  "type": "module",
6
6
  "author": {
@@ -58,7 +58,7 @@
58
58
  "@graphql-codegen/cli": "6.0.1",
59
59
  "@graphql-codegen/typescript": "5.0.2",
60
60
  "@luxass/eslint-config": "6.0.1",
61
- "@types/node": "20.19.17",
61
+ "@types/node": "24.9.2",
62
62
  "eslint": "9.39.1",
63
63
  "eslint-plugin-format": "1.0.2",
64
64
  "publint": "0.3.15",