github-schema 1.21.7 → 1.21.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.
- package/dist/{github-schema-C0EE5Ofk.d.mts → github-schema-Cf1ISwWI.d.cts} +12 -14
- package/dist/{github-schema-DZ90KXVf.d.cts → github-schema-p4QQ-PBy.d.mts} +12 -14
- package/dist/github-schema.d.cts +2 -2
- package/dist/github-schema.d.mts +2 -2
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/github-schema.graphql +7 -15
- package/package.json +1 -1
package/github-schema.graphql
CHANGED
|
@@ -39480,13 +39480,6 @@ type PullRequestParameters {
|
|
|
39480
39480
|
"""
|
|
39481
39481
|
allowedMergeMethods: [PullRequestAllowedMergeMethods!]
|
|
39482
39482
|
|
|
39483
|
-
"""
|
|
39484
|
-
Request Copilot code review for new pull requests automatically if the author
|
|
39485
|
-
has access to Copilot code review and their premium requests quota has not
|
|
39486
|
-
reached the limit.
|
|
39487
|
-
"""
|
|
39488
|
-
automaticCopilotCodeReviewEnabled: Boolean!
|
|
39489
|
-
|
|
39490
39483
|
"""
|
|
39491
39484
|
New, reviewable commits pushed will dismiss previous pull request review approvals.
|
|
39492
39485
|
"""
|
|
@@ -39530,13 +39523,6 @@ input PullRequestParametersInput {
|
|
|
39530
39523
|
"""
|
|
39531
39524
|
allowedMergeMethods: [PullRequestAllowedMergeMethods!]
|
|
39532
39525
|
|
|
39533
|
-
"""
|
|
39534
|
-
Request Copilot code review for new pull requests automatically if the author
|
|
39535
|
-
has access to Copilot code review and their premium requests quota has not
|
|
39536
|
-
reached the limit.
|
|
39537
|
-
"""
|
|
39538
|
-
automaticCopilotCodeReviewEnabled: Boolean
|
|
39539
|
-
|
|
39540
39526
|
"""
|
|
39541
39527
|
New, reviewable commits pushed will dismiss previous pull request review approvals.
|
|
39542
39528
|
"""
|
|
@@ -41318,6 +41304,8 @@ type PushAllowanceEdge {
|
|
|
41318
41304
|
The query root of GitHub's GraphQL interface.
|
|
41319
41305
|
"""
|
|
41320
41306
|
type Query implements Node {
|
|
41307
|
+
_entities(representations: [_Any!]!): [_Entity]!
|
|
41308
|
+
|
|
41321
41309
|
"""
|
|
41322
41310
|
Look up a code of conduct by its key
|
|
41323
41311
|
"""
|
|
@@ -43195,7 +43183,7 @@ input RemoveAssigneesFromAssignableInput {
|
|
|
43195
43183
|
assignableId: ID!
|
|
43196
43184
|
|
|
43197
43185
|
"""
|
|
43198
|
-
The
|
|
43186
|
+
The ids of actors to remove as assignees.
|
|
43199
43187
|
"""
|
|
43200
43188
|
assigneeIds: [ID!]!
|
|
43201
43189
|
|
|
@@ -66278,3 +66266,7 @@ input WorkflowsParametersInput {
|
|
|
66278
66266
|
A valid x509 certificate string
|
|
66279
66267
|
"""
|
|
66280
66268
|
scalar X509Certificate
|
|
66269
|
+
|
|
66270
|
+
scalar _Any
|
|
66271
|
+
|
|
66272
|
+
union _Entity = Issue
|