github-schema 1.22.2 → 1.22.4

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.
@@ -2521,7 +2521,7 @@ Parameters to be used for the branch_name_pattern rule
2521
2521
  """
2522
2522
  type BranchNamePatternParameters {
2523
2523
  """
2524
- How this rule will appear to users.
2524
+ How this rule appears when configuring it.
2525
2525
  """
2526
2526
  name: String
2527
2527
 
@@ -2546,7 +2546,7 @@ Parameters to be used for the branch_name_pattern rule
2546
2546
  """
2547
2547
  input BranchNamePatternParametersInput {
2548
2548
  """
2549
- How this rule will appear to users.
2549
+ How this rule appears when configuring it.
2550
2550
  """
2551
2551
  name: String
2552
2552
 
@@ -5559,7 +5559,7 @@ Parameters to be used for the commit_author_email_pattern rule
5559
5559
  """
5560
5560
  type CommitAuthorEmailPatternParameters {
5561
5561
  """
5562
- How this rule will appear to users.
5562
+ How this rule appears when configuring it.
5563
5563
  """
5564
5564
  name: String
5565
5565
 
@@ -5584,7 +5584,7 @@ Parameters to be used for the commit_author_email_pattern rule
5584
5584
  """
5585
5585
  input CommitAuthorEmailPatternParametersInput {
5586
5586
  """
5587
- How this rule will appear to users.
5587
+ How this rule appears when configuring it.
5588
5588
  """
5589
5589
  name: String
5590
5590
 
@@ -6081,7 +6081,7 @@ Parameters to be used for the commit_message_pattern rule
6081
6081
  """
6082
6082
  type CommitMessagePatternParameters {
6083
6083
  """
6084
- How this rule will appear to users.
6084
+ How this rule appears when configuring it.
6085
6085
  """
6086
6086
  name: String
6087
6087
 
@@ -6106,7 +6106,7 @@ Parameters to be used for the commit_message_pattern rule
6106
6106
  """
6107
6107
  input CommitMessagePatternParametersInput {
6108
6108
  """
6109
- How this rule will appear to users.
6109
+ How this rule appears when configuring it.
6110
6110
  """
6111
6111
  name: String
6112
6112
 
@@ -6171,7 +6171,7 @@ Parameters to be used for the committer_email_pattern rule
6171
6171
  """
6172
6172
  type CommitterEmailPatternParameters {
6173
6173
  """
6174
- How this rule will appear to users.
6174
+ How this rule appears when configuring it.
6175
6175
  """
6176
6176
  name: String
6177
6177
 
@@ -6196,7 +6196,7 @@ Parameters to be used for the committer_email_pattern rule
6196
6196
  """
6197
6197
  input CommitterEmailPatternParametersInput {
6198
6198
  """
6199
- How this rule will appear to users.
6199
+ How this rule appears when configuring it.
6200
6200
  """
6201
6201
  name: String
6202
6202
 
@@ -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
  """
@@ -44013,9 +44028,17 @@ Autogenerated input type of ReplaceActorsForAssignable
44013
44028
  """
44014
44029
  input ReplaceActorsForAssignableInput {
44015
44030
  """
44016
- The ids of the actors to replace the existing assignees.
44031
+ The ids of the actors to replace the existing assignees. May be used as an
44032
+ alternative to or in conjunction with actorLogins.
44033
+ """
44034
+ actorIds: [ID!]
44035
+
44036
+ """
44037
+ The usernames of the actors to replace the existing assignees. May be used as
44038
+ an alternative to or in conjunction with actorIds. For bots, use the login
44039
+ format with [bot] suffix (e.g., 'my-app[bot]').
44017
44040
  """
44018
- actorIds: [ID!]!
44041
+ actorLogins: [String!]
44019
44042
 
44020
44043
  """
44021
44044
  The id of the assignable object to replace the assignees for.
@@ -50938,6 +50961,66 @@ type ReprioritizeSubIssuePayload {
50938
50961
  issue: Issue
50939
50962
  }
50940
50963
 
50964
+ """
50965
+ Autogenerated input type of RequestReviewsByLogin
50966
+ """
50967
+ input RequestReviewsByLoginInput {
50968
+ """
50969
+ The logins of the bots to request reviews from, including the [bot] suffix (e.g., 'copilot-pull-request-reviewer[bot]').
50970
+ """
50971
+ botLogins: [String!]
50972
+
50973
+ """
50974
+ A unique identifier for the client performing the mutation.
50975
+ """
50976
+ clientMutationId: String
50977
+
50978
+ """
50979
+ The Node ID of the pull request to modify.
50980
+ """
50981
+ pullRequestId: ID!
50982
+
50983
+ """
50984
+ The slugs of the teams to request reviews from (format: 'org/team-slug').
50985
+ """
50986
+ teamSlugs: [String!]
50987
+
50988
+ """
50989
+ Add users to the set rather than replace.
50990
+ """
50991
+ union: Boolean = false
50992
+
50993
+ """
50994
+ The login strings of the users to request reviews from.
50995
+ """
50996
+ userLogins: [String!]
50997
+ }
50998
+
50999
+ """
51000
+ Autogenerated return type of RequestReviewsByLogin.
51001
+ """
51002
+ type RequestReviewsByLoginPayload {
51003
+ """
51004
+ Identifies the actor who performed the event.
51005
+ """
51006
+ actor: Actor
51007
+
51008
+ """
51009
+ A unique identifier for the client performing the mutation.
51010
+ """
51011
+ clientMutationId: String
51012
+
51013
+ """
51014
+ The pull request that is getting requests.
51015
+ """
51016
+ pullRequest: PullRequest
51017
+
51018
+ """
51019
+ The edge from the pull request to the requested reviewers.
51020
+ """
51021
+ requestedReviewersEdge: UserEdge
51022
+ }
51023
+
50941
51024
  """
50942
51025
  Autogenerated input type of RequestReviews
50943
51026
  """
@@ -57078,7 +57161,7 @@ Parameters to be used for the tag_name_pattern rule
57078
57161
  """
57079
57162
  type TagNamePatternParameters {
57080
57163
  """
57081
- How this rule will appear to users.
57164
+ How this rule appears when configuring it.
57082
57165
  """
57083
57166
  name: String
57084
57167
 
@@ -57103,7 +57186,7 @@ Parameters to be used for the tag_name_pattern rule
57103
57186
  """
57104
57187
  input TagNamePatternParametersInput {
57105
57188
  """
57106
- How this rule will appear to users.
57189
+ How this rule appears when configuring it.
57107
57190
  """
57108
57191
  name: String
57109
57192
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-schema",
3
- "version": "1.22.2",
3
+ "version": "1.22.4",
4
4
  "description": "GitHub's GraphQL schema",
5
5
  "type": "module",
6
6
  "author": {