github-schema 1.22.1 → 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.
@@ -15634,42 +15634,7 @@ type EnterpriseOwnerInfo {
15634
15634
  """
15635
15635
  The setting value for whether team discussions are enabled for organizations in this enterprise.
15636
15636
  """
15637
- teamDiscussionsSetting: EnterpriseEnabledDisabledSettingValue!
15638
-
15639
- """
15640
- A list of enterprise organizations configured with the provided team discussions setting value.
15641
- """
15642
- teamDiscussionsSettingOrganizations(
15643
- """
15644
- Returns the elements in the list that come after the specified cursor.
15645
- """
15646
- after: String
15647
-
15648
- """
15649
- Returns the elements in the list that come before the specified cursor.
15650
- """
15651
- before: String
15652
-
15653
- """
15654
- Returns the first _n_ elements from the list.
15655
- """
15656
- first: Int
15657
-
15658
- """
15659
- Returns the last _n_ elements from the list.
15660
- """
15661
- last: Int
15662
-
15663
- """
15664
- Ordering options for organizations with this setting.
15665
- """
15666
- orderBy: OrganizationOrder = {field: LOGIN, direction: ASC}
15667
-
15668
- """
15669
- The setting value to find organizations for.
15670
- """
15671
- value: Boolean!
15672
- ): OrganizationConnection!
15637
+ teamDiscussionsSetting: EnterpriseEnabledDisabledSettingValue! @deprecated(reason: "The Team Discussions feature is deprecated in favor of Organization Discussions. Follow the guide at https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to find a suitable replacement. Removal on 2024-07-01 UTC.")
15673
15638
 
15674
15639
  """
15675
15640
  The setting value for what methods of two-factor authentication the enterprise prevents its users from having.
@@ -25772,6 +25737,16 @@ type Mutation {
25772
25737
  input: RequestReviewsInput!
25773
25738
  ): RequestReviewsPayload
25774
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
+
25775
25750
  """
25776
25751
  Rerequests an existing check suite.
25777
25752
  """
@@ -26292,16 +26267,6 @@ type Mutation {
26292
26267
  input: UpdateEnterpriseRepositoryProjectsSettingInput!
26293
26268
  ): UpdateEnterpriseRepositoryProjectsSettingPayload
26294
26269
 
26295
- """
26296
- Sets whether team discussions are enabled for an enterprise.
26297
- """
26298
- updateEnterpriseTeamDiscussionsSetting(
26299
- """
26300
- Parameters for UpdateEnterpriseTeamDiscussionsSetting
26301
- """
26302
- input: UpdateEnterpriseTeamDiscussionsSettingInput!
26303
- ): UpdateEnterpriseTeamDiscussionsSettingPayload
26304
-
26305
26270
  """
26306
26271
  Sets the two-factor authentication methods that users of an enterprise may not use.
26307
26272
  """
@@ -38946,6 +38911,11 @@ type PullRequest implements Assignable & Closable & Comment & Labelable & Lockab
38946
38911
  Returns the last _n_ elements from the list.
38947
38912
  """
38948
38913
  last: Int
38914
+
38915
+ """
38916
+ Search actors with query on user name and login.
38917
+ """
38918
+ query: String
38949
38919
  ): SuggestedReviewerActorConnection!
38950
38920
 
38951
38921
  """
@@ -50983,6 +50953,66 @@ type ReprioritizeSubIssuePayload {
50983
50953
  issue: Issue
50984
50954
  }
50985
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
+
50986
51016
  """
50987
51017
  Autogenerated input type of RequestReviews
50988
51018
  """
@@ -60976,46 +61006,6 @@ type UpdateEnterpriseRepositoryProjectsSettingPayload {
60976
61006
  message: String
60977
61007
  }
60978
61008
 
60979
- """
60980
- Autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting
60981
- """
60982
- input UpdateEnterpriseTeamDiscussionsSettingInput {
60983
- """
60984
- A unique identifier for the client performing the mutation.
60985
- """
60986
- clientMutationId: String
60987
-
60988
- """
60989
- The ID of the enterprise on which to set the team discussions setting.
60990
- """
60991
- enterpriseId: ID!
60992
-
60993
- """
60994
- The value for the team discussions setting on the enterprise.
60995
- """
60996
- settingValue: EnterpriseEnabledDisabledSettingValue!
60997
- }
60998
-
60999
- """
61000
- Autogenerated return type of UpdateEnterpriseTeamDiscussionsSetting.
61001
- """
61002
- type UpdateEnterpriseTeamDiscussionsSettingPayload {
61003
- """
61004
- A unique identifier for the client performing the mutation.
61005
- """
61006
- clientMutationId: String
61007
-
61008
- """
61009
- The enterprise with the updated team discussions setting.
61010
- """
61011
- enterprise: Enterprise
61012
-
61013
- """
61014
- A message confirming the result of updating the team discussions setting.
61015
- """
61016
- message: String
61017
- }
61018
-
61019
61009
  """
61020
61010
  Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationDisallowedMethodsSetting
61021
61011
  """
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "github-schema",
3
- "version": "1.22.1",
3
+ "version": "1.22.3",
4
4
  "description": "GitHub's GraphQL schema",
5
5
  "type": "module",
6
6
  "author": {