github-schema 1.21.7 → 1.21.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.
- package/dist/{github-schema-C0EE5Ofk.d.mts → github-schema-dr2QdOIm.d.cts} +12 -2
- package/dist/{github-schema-DZ90KXVf.d.cts → github-schema-hi3BSczE.d.mts} +12 -2
- 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 -1
- package/package.json +1 -1
package/github-schema.graphql
CHANGED
|
@@ -41318,6 +41318,8 @@ type PushAllowanceEdge {
|
|
|
41318
41318
|
The query root of GitHub's GraphQL interface.
|
|
41319
41319
|
"""
|
|
41320
41320
|
type Query implements Node {
|
|
41321
|
+
_entities(representations: [_Any!]!): [_Entity]!
|
|
41322
|
+
|
|
41321
41323
|
"""
|
|
41322
41324
|
Look up a code of conduct by its key
|
|
41323
41325
|
"""
|
|
@@ -43195,7 +43197,7 @@ input RemoveAssigneesFromAssignableInput {
|
|
|
43195
43197
|
assignableId: ID!
|
|
43196
43198
|
|
|
43197
43199
|
"""
|
|
43198
|
-
The
|
|
43200
|
+
The ids of actors to remove as assignees.
|
|
43199
43201
|
"""
|
|
43200
43202
|
assigneeIds: [ID!]!
|
|
43201
43203
|
|
|
@@ -66278,3 +66280,7 @@ input WorkflowsParametersInput {
|
|
|
66278
66280
|
A valid x509 certificate string
|
|
66279
66281
|
"""
|
|
66280
66282
|
scalar X509Certificate
|
|
66283
|
+
|
|
66284
|
+
scalar _Any
|
|
66285
|
+
|
|
66286
|
+
union _Entity = Issue
|