github-schema 1.22.2 → 1.22.3
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.d.cts +35 -1
- package/dist/github-schema.d.mts +35 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +2 -2
- package/github-schema.graphql +75 -0
- package/package.json +1 -1
package/github-schema.graphql
CHANGED
|
@@ -25737,6 +25737,16 @@ type Mutation {
|
|
|
25737
25737
|
input: RequestReviewsInput!
|
|
25738
25738
|
): RequestReviewsPayload
|
|
25739
25739
|
|
|
25740
|
+
"""
|
|
25741
|
+
Set review requests on a pull request using login strings instead of IDs.
|
|
25742
|
+
"""
|
|
25743
|
+
requestReviewsByLogin(
|
|
25744
|
+
"""
|
|
25745
|
+
Parameters for RequestReviewsByLogin
|
|
25746
|
+
"""
|
|
25747
|
+
input: RequestReviewsByLoginInput!
|
|
25748
|
+
): RequestReviewsByLoginPayload
|
|
25749
|
+
|
|
25740
25750
|
"""
|
|
25741
25751
|
Rerequests an existing check suite.
|
|
25742
25752
|
"""
|
|
@@ -38901,6 +38911,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
|
|
|
38901
38911
|
Returns the last _n_ elements from the list.
|
|
38902
38912
|
"""
|
|
38903
38913
|
last: Int
|
|
38914
|
+
|
|
38915
|
+
"""
|
|
38916
|
+
Search actors with query on user name and login.
|
|
38917
|
+
"""
|
|
38918
|
+
query: String
|
|
38904
38919
|
): SuggestedReviewerActorConnection!
|
|
38905
38920
|
|
|
38906
38921
|
"""
|
|
@@ -50938,6 +50953,66 @@ type ReprioritizeSubIssuePayload {
|
|
|
50938
50953
|
issue: Issue
|
|
50939
50954
|
}
|
|
50940
50955
|
|
|
50956
|
+
"""
|
|
50957
|
+
Autogenerated input type of RequestReviewsByLogin
|
|
50958
|
+
"""
|
|
50959
|
+
input RequestReviewsByLoginInput {
|
|
50960
|
+
"""
|
|
50961
|
+
The logins of the bots to request reviews from, including the [bot] suffix (e.g., 'copilot-pull-request-reviewer[bot]').
|
|
50962
|
+
"""
|
|
50963
|
+
botLogins: [String!]
|
|
50964
|
+
|
|
50965
|
+
"""
|
|
50966
|
+
A unique identifier for the client performing the mutation.
|
|
50967
|
+
"""
|
|
50968
|
+
clientMutationId: String
|
|
50969
|
+
|
|
50970
|
+
"""
|
|
50971
|
+
The Node ID of the pull request to modify.
|
|
50972
|
+
"""
|
|
50973
|
+
pullRequestId: ID!
|
|
50974
|
+
|
|
50975
|
+
"""
|
|
50976
|
+
The slugs of the teams to request reviews from (format: 'org/team-slug').
|
|
50977
|
+
"""
|
|
50978
|
+
teamSlugs: [String!]
|
|
50979
|
+
|
|
50980
|
+
"""
|
|
50981
|
+
Add users to the set rather than replace.
|
|
50982
|
+
"""
|
|
50983
|
+
union: Boolean = false
|
|
50984
|
+
|
|
50985
|
+
"""
|
|
50986
|
+
The login strings of the users to request reviews from.
|
|
50987
|
+
"""
|
|
50988
|
+
userLogins: [String!]
|
|
50989
|
+
}
|
|
50990
|
+
|
|
50991
|
+
"""
|
|
50992
|
+
Autogenerated return type of RequestReviewsByLogin.
|
|
50993
|
+
"""
|
|
50994
|
+
type RequestReviewsByLoginPayload {
|
|
50995
|
+
"""
|
|
50996
|
+
Identifies the actor who performed the event.
|
|
50997
|
+
"""
|
|
50998
|
+
actor: Actor
|
|
50999
|
+
|
|
51000
|
+
"""
|
|
51001
|
+
A unique identifier for the client performing the mutation.
|
|
51002
|
+
"""
|
|
51003
|
+
clientMutationId: String
|
|
51004
|
+
|
|
51005
|
+
"""
|
|
51006
|
+
The pull request that is getting requests.
|
|
51007
|
+
"""
|
|
51008
|
+
pullRequest: PullRequest
|
|
51009
|
+
|
|
51010
|
+
"""
|
|
51011
|
+
The edge from the pull request to the requested reviewers.
|
|
51012
|
+
"""
|
|
51013
|
+
requestedReviewersEdge: UserEdge
|
|
51014
|
+
}
|
|
51015
|
+
|
|
50941
51016
|
"""
|
|
50942
51017
|
Autogenerated input type of RequestReviews
|
|
50943
51018
|
"""
|