github-schema 1.7.5 → 1.7.8

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.
@@ -43097,6 +43097,11 @@ type Repository implements Node & PackageOwner & ProjectOwner & ProjectV2Recent
43097
43097
  last: Int
43098
43098
  ): PinnedIssueConnection
43099
43099
 
43100
+ """
43101
+ Returns information about the availability of certain features and limits based on the repository's billing plan.
43102
+ """
43103
+ planFeatures: RepositoryPlanFeatures!
43104
+
43100
43105
  """
43101
43106
  The primary language of the repository's code.
43102
43107
  """
@@ -44885,6 +44890,36 @@ enum RepositoryPermission {
44885
44890
  WRITE
44886
44891
  }
44887
44892
 
44893
+ """
44894
+ Information about the availability of features and limits for a repository based on its billing plan.
44895
+ """
44896
+ type RepositoryPlanFeatures {
44897
+ """
44898
+ Whether reviews can be automatically requested and enforced with a CODEOWNERS file
44899
+ """
44900
+ codeowners: Boolean!
44901
+
44902
+ """
44903
+ Whether pull requests can be created as or converted to draft
44904
+ """
44905
+ draftPullRequests: Boolean!
44906
+
44907
+ """
44908
+ Maximum number of users that can be assigned to an issue or pull request
44909
+ """
44910
+ maximumAssignees: Int!
44911
+
44912
+ """
44913
+ Maximum number of manually-requested reviews on a pull request
44914
+ """
44915
+ maximumManualReviewRequests: Int!
44916
+
44917
+ """
44918
+ Whether teams can be requested to review pull requests
44919
+ """
44920
+ teamReviewRequests: Boolean!
44921
+ }
44922
+
44888
44923
  """
44889
44924
  The privacy of a repository
44890
44925
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-schema",
3
- "version": "1.7.5",
3
+ "version": "1.7.8",
4
4
  "description": "GitHub's GraphQL schema",
5
5
  "type": "module",
6
6
  "author": {
@@ -8,7 +8,7 @@
8
8
  "email": "lucasnrgaard@gmail.com",
9
9
  "url": "https://luxass.dev"
10
10
  },
11
- "packageManager": "pnpm@8.15.4",
11
+ "packageManager": "pnpm@8.15.6",
12
12
  "license": "MIT",
13
13
  "homepage": "https://github.com/luxass/github-schema",
14
14
  "repository": {
@@ -95,11 +95,11 @@
95
95
  "@graphql-codegen/add": "^5.0.2",
96
96
  "@graphql-codegen/cli": "^5.0.2",
97
97
  "@graphql-codegen/typescript": "^4.0.6",
98
- "@luxass/eslint-config": "^4.2.10",
98
+ "@luxass/eslint-config": "^4.3.3",
99
99
  "@types/node": "^18.19.0",
100
- "eslint": "^8.57.0",
100
+ "eslint": "^9.0.0",
101
101
  "eslint-plugin-format": "^0.1.0",
102
102
  "tsup": "^8.0.2",
103
- "typescript": "^5.4.2"
103
+ "typescript": "^5.4.4"
104
104
  }
105
105
  }