typescript-github-action-template 0.2.39 → 0.2.47

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.
@@ -1,6 +1,6 @@
1
1
  import type { DocumentTypeDecoration } from '@graphql-typed-document-node/core';
2
2
  export type Maybe<T> = T | null;
3
- export type InputMaybe<T> = Maybe<T>;
3
+ export type InputMaybe<T> = T | null | undefined;
4
4
  export type Exact<T extends {
5
5
  [key: string]: unknown;
6
6
  }> = {
@@ -55,6 +55,15 @@ export type Scalars = {
55
55
  input: any;
56
56
  output: any;
57
57
  };
58
+ /**
59
+ * A custom property value can be either a string or an array of strings. All
60
+ * property types support only a single string value, except for the multi-select
61
+ * type, which supports only a string array.
62
+ */
63
+ CustomPropertyValue: {
64
+ input: any;
65
+ output: any;
66
+ };
58
67
  /** An ISO-8601 encoded date string. */
59
68
  Date: {
60
69
  input: any;
@@ -278,9 +287,11 @@ export type ActorType =
278
287
  | 'USER';
279
288
  /** Autogenerated input type of AddAssigneesToAssignable */
280
289
  export type AddAssigneesToAssignableInput = {
290
+ /** Configuration for assigning Copilot to this issue. */
291
+ agentAssignment?: InputMaybe<AgentAssignmentInput>;
281
292
  /** The id of the assignable object to add assignees to. */
282
293
  assignableId: Scalars['ID']['input'];
283
- /** The id of users to add as assignees. */
294
+ /** The ids of actors (users or bots) to add as assignees. */
284
295
  assigneeIds: Array<Scalars['ID']['input']>;
285
296
  /** A unique identifier for the client performing the mutation. */
286
297
  clientMutationId?: InputMaybe<Scalars['String']['input']>;
@@ -813,6 +824,26 @@ export type AddedToProjectV2Event = Node & ProjectV2Event & {
813
824
  /** Did this event result from workflow automation? */
814
825
  wasAutomated: Scalars['Boolean']['output'];
815
826
  };
827
+ /** Represents configuration for assigning Copilot to an issue (public variant) */
828
+ export type AgentAssignmentInput = {
829
+ /** The base ref/branch for the repository. Defaults to the default branch if not provided. */
830
+ baseRef?: InputMaybe<Scalars['String']['input']>;
831
+ /** Custom agent for Copilot. */
832
+ customAgent?: InputMaybe<Scalars['String']['input']>;
833
+ /** Custom instructions for Copilot. */
834
+ customInstructions?: InputMaybe<Scalars['String']['input']>;
835
+ /** The Node ID of the target repository where Copilot should work. Defaults to the issue's repository if not provided. */
836
+ targetRepositoryId?: InputMaybe<Scalars['ID']['input']>;
837
+ };
838
+ /** Copilot Agentic fields in context of the current viewer. */
839
+ export type Agentic = {
840
+ /** Channel value for subscribing to live updates for session creations. */
841
+ viewerCopilotAgentCreatesChannel?: Maybe<Scalars['String']['output']>;
842
+ /** Channel value for subscribing to live updates for session log updates. */
843
+ viewerCopilotAgentLogUpdatesChannel?: Maybe<Scalars['String']['output']>;
844
+ /** Channel value for subscribing to live updates for session updates. */
845
+ viewerCopilotAgentUpdatesChannel?: Maybe<Scalars['String']['output']>;
846
+ };
816
847
  /** An announcement banner for an enterprise or organization. */
817
848
  export type AnnouncementBanner = {
818
849
  __typename: 'AnnouncementBanner';
@@ -1377,7 +1408,7 @@ export type BranchActorAllowanceActor = App | Team | User;
1377
1408
  /** Parameters to be used for the branch_name_pattern rule */
1378
1409
  export type BranchNamePatternParameters = {
1379
1410
  __typename: 'BranchNamePatternParameters';
1380
- /** How this rule will appear to users. */
1411
+ /** How this rule appears when configuring it. */
1381
1412
  name?: Maybe<Scalars['String']['output']>;
1382
1413
  /** If true, the rule will fail if the pattern matches. */
1383
1414
  negate: Scalars['Boolean']['output'];
@@ -1388,7 +1419,7 @@ export type BranchNamePatternParameters = {
1388
1419
  };
1389
1420
  /** Parameters to be used for the branch_name_pattern rule */
1390
1421
  export type BranchNamePatternParametersInput = {
1391
- /** How this rule will appear to users. */
1422
+ /** How this rule appears when configuring it. */
1392
1423
  name?: InputMaybe<Scalars['String']['input']>;
1393
1424
  /** If true, the rule will fail if the pattern matches. */
1394
1425
  negate?: InputMaybe<Scalars['Boolean']['input']>;
@@ -2743,7 +2774,7 @@ export type CommitAuthor = {
2743
2774
  /** Parameters to be used for the commit_author_email_pattern rule */
2744
2775
  export type CommitAuthorEmailPatternParameters = {
2745
2776
  __typename: 'CommitAuthorEmailPatternParameters';
2746
- /** How this rule will appear to users. */
2777
+ /** How this rule appears when configuring it. */
2747
2778
  name?: Maybe<Scalars['String']['output']>;
2748
2779
  /** If true, the rule will fail if the pattern matches. */
2749
2780
  negate: Scalars['Boolean']['output'];
@@ -2754,7 +2785,7 @@ export type CommitAuthorEmailPatternParameters = {
2754
2785
  };
2755
2786
  /** Parameters to be used for the commit_author_email_pattern rule */
2756
2787
  export type CommitAuthorEmailPatternParametersInput = {
2757
- /** How this rule will appear to users. */
2788
+ /** How this rule appears when configuring it. */
2758
2789
  name?: InputMaybe<Scalars['String']['input']>;
2759
2790
  /** If true, the rule will fail if the pattern matches. */
2760
2791
  negate?: InputMaybe<Scalars['Boolean']['input']>;
@@ -2969,7 +3000,7 @@ export type CommitMessage = {
2969
3000
  /** Parameters to be used for the commit_message_pattern rule */
2970
3001
  export type CommitMessagePatternParameters = {
2971
3002
  __typename: 'CommitMessagePatternParameters';
2972
- /** How this rule will appear to users. */
3003
+ /** How this rule appears when configuring it. */
2973
3004
  name?: Maybe<Scalars['String']['output']>;
2974
3005
  /** If true, the rule will fail if the pattern matches. */
2975
3006
  negate: Scalars['Boolean']['output'];
@@ -2980,7 +3011,7 @@ export type CommitMessagePatternParameters = {
2980
3011
  };
2981
3012
  /** Parameters to be used for the commit_message_pattern rule */
2982
3013
  export type CommitMessagePatternParametersInput = {
2983
- /** How this rule will appear to users. */
3014
+ /** How this rule appears when configuring it. */
2984
3015
  name?: InputMaybe<Scalars['String']['input']>;
2985
3016
  /** If true, the rule will fail if the pattern matches. */
2986
3017
  negate?: InputMaybe<Scalars['Boolean']['input']>;
@@ -3023,7 +3054,7 @@ export type CommittableBranch = {
3023
3054
  /** Parameters to be used for the committer_email_pattern rule */
3024
3055
  export type CommitterEmailPatternParameters = {
3025
3056
  __typename: 'CommitterEmailPatternParameters';
3026
- /** How this rule will appear to users. */
3057
+ /** How this rule appears when configuring it. */
3027
3058
  name?: Maybe<Scalars['String']['output']>;
3028
3059
  /** If true, the rule will fail if the pattern matches. */
3029
3060
  negate: Scalars['Boolean']['output'];
@@ -3034,7 +3065,7 @@ export type CommitterEmailPatternParameters = {
3034
3065
  };
3035
3066
  /** Parameters to be used for the committer_email_pattern rule */
3036
3067
  export type CommitterEmailPatternParametersInput = {
3037
- /** How this rule will appear to users. */
3068
+ /** How this rule appears when configuring it. */
3038
3069
  name?: InputMaybe<Scalars['String']['input']>;
3039
3070
  /** If true, the rule will fail if the pattern matches. */
3040
3071
  negate?: InputMaybe<Scalars['Boolean']['input']>;
@@ -3571,7 +3602,11 @@ export type ConvertedToDiscussionEvent = Node & {
3571
3602
  /** The Node ID of the ConvertedToDiscussionEvent object */
3572
3603
  id: Scalars['ID']['output'];
3573
3604
  };
3574
- /** Request Copilot code review for new pull requests automatically if the author has access to Copilot code review. */
3605
+ /**
3606
+ * Request Copilot code review for new pull requests automatically if the author
3607
+ * has access to Copilot code review and their premium requests quota has not
3608
+ * reached the limit.
3609
+ */
3575
3610
  export type CopilotCodeReviewParameters = {
3576
3611
  __typename: 'CopilotCodeReviewParameters';
3577
3612
  /** Copilot automatically reviews draft pull requests before they are marked as ready for review. */
@@ -3579,7 +3614,11 @@ export type CopilotCodeReviewParameters = {
3579
3614
  /** Copilot automatically reviews each new push to the pull request. */
3580
3615
  reviewOnPush: Scalars['Boolean']['output'];
3581
3616
  };
3582
- /** Request Copilot code review for new pull requests automatically if the author has access to Copilot code review. */
3617
+ /**
3618
+ * Request Copilot code review for new pull requests automatically if the author
3619
+ * has access to Copilot code review and their premium requests quota has not
3620
+ * reached the limit.
3621
+ */
3583
3622
  export type CopilotCodeReviewParametersInput = {
3584
3623
  /** Copilot automatically reviews draft pull requests before they are marked as ready for review. */
3585
3624
  reviewDraftPullRequests?: InputMaybe<Scalars['Boolean']['input']>;
@@ -3944,6 +3983,8 @@ export type CreateIpAllowListEntryPayload = {
3944
3983
  };
3945
3984
  /** Autogenerated input type of CreateIssue */
3946
3985
  export type CreateIssueInput = {
3986
+ /** Configuration for assigning Copilot to this issue. */
3987
+ agentAssignment?: InputMaybe<AgentAssignmentInput>;
3947
3988
  /** The Node ID of assignees for this issue. */
3948
3989
  assigneeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
3949
3990
  /** The body for the issue description. */
@@ -3962,6 +4003,8 @@ export type CreateIssueInput = {
3962
4003
  parentIssueId?: InputMaybe<Scalars['ID']['input']>;
3963
4004
  /** An array of Node IDs for projects associated with this issue. */
3964
4005
  projectIds?: InputMaybe<Array<Scalars['ID']['input']>>;
4006
+ /** An array of Node IDs for Projects V2 associated with this issue. */
4007
+ projectV2Ids?: InputMaybe<Array<Scalars['ID']['input']>>;
3965
4008
  /** The Node ID of the repository. */
3966
4009
  repositoryId: Scalars['ID']['input'];
3967
4010
  /** The title for the issue. */
@@ -4212,6 +4255,37 @@ export type CreateRefPayload = {
4212
4255
  /** The newly created ref. */
4213
4256
  ref?: Maybe<Ref>;
4214
4257
  };
4258
+ /** Autogenerated input type of CreateRepositoryCustomProperty */
4259
+ export type CreateRepositoryCustomPropertyInput = {
4260
+ /** The allowed values for the custom property. */
4261
+ allowedValues?: InputMaybe<Array<Scalars['String']['input']>>;
4262
+ /** A unique identifier for the client performing the mutation. */
4263
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
4264
+ /** The default value for the custom property if the property is required. */
4265
+ defaultValue?: InputMaybe<Scalars['String']['input']>;
4266
+ /** The description of the custom property. */
4267
+ description?: InputMaybe<Scalars['String']['input']>;
4268
+ /** The name of the custom property. */
4269
+ propertyName: Scalars['String']['input'];
4270
+ /** The regex pattern that the value of the custom property must match, if the `value_type` is `string`. */
4271
+ regex?: InputMaybe<Scalars['String']['input']>;
4272
+ /** Whether the custom property is required. */
4273
+ required?: InputMaybe<Scalars['Boolean']['input']>;
4274
+ /** The global relay id of the source in which a new custom property should be created in. */
4275
+ sourceId: Scalars['ID']['input'];
4276
+ /** The value type for the custom property. */
4277
+ valueType: CustomPropertyValueType;
4278
+ /** The allowed actors who can edit the values of a custom property. */
4279
+ valuesEditableBy?: InputMaybe<RepositoryCustomPropertyValuesEditableBy>;
4280
+ };
4281
+ /** Autogenerated return type of CreateRepositoryCustomProperty. */
4282
+ export type CreateRepositoryCustomPropertyPayload = {
4283
+ __typename: 'CreateRepositoryCustomPropertyPayload';
4284
+ /** A unique identifier for the client performing the mutation. */
4285
+ clientMutationId?: Maybe<Scalars['String']['output']>;
4286
+ /** The newly created repository custom property. */
4287
+ repositoryCustomProperty?: Maybe<RepositoryCustomProperty>;
4288
+ };
4215
4289
  /** Autogenerated input type of CreateRepository */
4216
4290
  export type CreateRepositoryInput = {
4217
4291
  /** A unique identifier for the client performing the mutation. */
@@ -4458,100 +4532,6 @@ export type CreateSponsorshipsPayload = {
4458
4532
  /** The users and organizations who received a sponsorship. */
4459
4533
  sponsorables?: Maybe<Array<Sponsorable>>;
4460
4534
  };
4461
- /** Autogenerated input type of CreateTeamDiscussionComment */
4462
- export type CreateTeamDiscussionCommentInput = {
4463
- /**
4464
- * The content of the comment. This field is required.
4465
- *
4466
- * **Upcoming Change on 2024-07-01 UTC**
4467
- * **Description:** `body` will be removed. Follow the guide at
4468
- * https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to
4469
- * find a suitable replacement.
4470
- * **Reason:** The Team Discussions feature is deprecated in favor of Organization Discussions.
4471
- */
4472
- body?: InputMaybe<Scalars['String']['input']>;
4473
- /** A unique identifier for the client performing the mutation. */
4474
- clientMutationId?: InputMaybe<Scalars['String']['input']>;
4475
- /**
4476
- * The ID of the discussion to which the comment belongs. This field is required.
4477
- *
4478
- * **Upcoming Change on 2024-07-01 UTC**
4479
- * **Description:** `discussionId` will be removed. Follow the guide at
4480
- * https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to
4481
- * find a suitable replacement.
4482
- * **Reason:** The Team Discussions feature is deprecated in favor of Organization Discussions.
4483
- */
4484
- discussionId?: InputMaybe<Scalars['ID']['input']>;
4485
- };
4486
- /** Autogenerated return type of CreateTeamDiscussionComment. */
4487
- export type CreateTeamDiscussionCommentPayload = {
4488
- __typename: 'CreateTeamDiscussionCommentPayload';
4489
- /** A unique identifier for the client performing the mutation. */
4490
- clientMutationId?: Maybe<Scalars['String']['output']>;
4491
- /**
4492
- * The new comment.
4493
- * @deprecated 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.
4494
- */
4495
- teamDiscussionComment?: Maybe<TeamDiscussionComment>;
4496
- };
4497
- /** Autogenerated input type of CreateTeamDiscussion */
4498
- export type CreateTeamDiscussionInput = {
4499
- /**
4500
- * The content of the discussion. This field is required.
4501
- *
4502
- * **Upcoming Change on 2024-07-01 UTC**
4503
- * **Description:** `body` will be removed. Follow the guide at
4504
- * https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to
4505
- * find a suitable replacement.
4506
- * **Reason:** The Team Discussions feature is deprecated in favor of Organization Discussions.
4507
- */
4508
- body?: InputMaybe<Scalars['String']['input']>;
4509
- /** A unique identifier for the client performing the mutation. */
4510
- clientMutationId?: InputMaybe<Scalars['String']['input']>;
4511
- /**
4512
- * If true, restricts the visibility of this discussion to team members and
4513
- * organization owners. If false or not specified, allows any organization member
4514
- * to view this discussion.
4515
- *
4516
- * **Upcoming Change on 2024-07-01 UTC**
4517
- * **Description:** `private` will be removed. Follow the guide at
4518
- * https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to
4519
- * find a suitable replacement.
4520
- * **Reason:** The Team Discussions feature is deprecated in favor of Organization Discussions.
4521
- */
4522
- private?: InputMaybe<Scalars['Boolean']['input']>;
4523
- /**
4524
- * The ID of the team to which the discussion belongs. This field is required.
4525
- *
4526
- * **Upcoming Change on 2024-07-01 UTC**
4527
- * **Description:** `teamId` will be removed. Follow the guide at
4528
- * https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to
4529
- * find a suitable replacement.
4530
- * **Reason:** The Team Discussions feature is deprecated in favor of Organization Discussions.
4531
- */
4532
- teamId?: InputMaybe<Scalars['ID']['input']>;
4533
- /**
4534
- * The title of the discussion. This field is required.
4535
- *
4536
- * **Upcoming Change on 2024-07-01 UTC**
4537
- * **Description:** `title` will be removed. Follow the guide at
4538
- * https://github.blog/changelog/2023-02-08-sunset-notice-team-discussions/ to
4539
- * find a suitable replacement.
4540
- * **Reason:** The Team Discussions feature is deprecated in favor of Organization Discussions.
4541
- */
4542
- title?: InputMaybe<Scalars['String']['input']>;
4543
- };
4544
- /** Autogenerated return type of CreateTeamDiscussion. */
4545
- export type CreateTeamDiscussionPayload = {
4546
- __typename: 'CreateTeamDiscussionPayload';
4547
- /** A unique identifier for the client performing the mutation. */
4548
- clientMutationId?: Maybe<Scalars['String']['output']>;
4549
- /**
4550
- * The new discussion.
4551
- * @deprecated 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.
4552
- */
4553
- teamDiscussion?: Maybe<TeamDiscussion>;
4554
- };
4555
4535
  /** Autogenerated input type of CreateUserList */
4556
4536
  export type CreateUserListInput = {
4557
4537
  /** A unique identifier for the client performing the mutation. */
@@ -4809,6 +4789,30 @@ export type CrossReferencedEvent = Node & UniformResourceLocatable & {
4809
4789
  /** Checks if the target will be closed when the source is merged. */
4810
4790
  willCloseTarget: Scalars['Boolean']['output'];
4811
4791
  };
4792
+ /** Sources which can have custom properties defined. */
4793
+ export type CustomPropertySource = Enterprise | Organization;
4794
+ /** The custom property name and value to be set. */
4795
+ export type CustomPropertyValueInput = {
4796
+ /** The name of the custom property. */
4797
+ propertyName: Scalars['String']['input'];
4798
+ /**
4799
+ * The value to set for the custom property. Using a value of null will unset the
4800
+ * property value, reverting to the default value if the property is required.
4801
+ */
4802
+ value?: InputMaybe<Scalars['CustomPropertyValue']['input']>;
4803
+ };
4804
+ /** The allowed value types for a custom property definition. */
4805
+ export type CustomPropertyValueType =
4806
+ /** A multi-select value. */
4807
+ 'MULTI_SELECT'
4808
+ /** A single-select value. */
4809
+ | 'SINGLE_SELECT'
4810
+ /** A string value. */
4811
+ | 'STRING'
4812
+ /** A true/false value. */
4813
+ | 'TRUE_FALSE'
4814
+ /** A URL value. */
4815
+ | 'URL';
4812
4816
  /** The Common Vulnerability Scoring System */
4813
4817
  export type CvssSeverities = {
4814
4818
  __typename: 'CvssSeverities';
@@ -5217,42 +5221,31 @@ export type DeleteRefPayload = {
5217
5221
  /** A unique identifier for the client performing the mutation. */
5218
5222
  clientMutationId?: Maybe<Scalars['String']['output']>;
5219
5223
  };
5220
- /** Autogenerated input type of DeleteRepositoryRuleset */
5221
- export type DeleteRepositoryRulesetInput = {
5222
- /** A unique identifier for the client performing the mutation. */
5223
- clientMutationId?: InputMaybe<Scalars['String']['input']>;
5224
- /** The global relay id of the repository ruleset to be deleted. */
5225
- repositoryRulesetId: Scalars['ID']['input'];
5226
- };
5227
- /** Autogenerated return type of DeleteRepositoryRuleset. */
5228
- export type DeleteRepositoryRulesetPayload = {
5229
- __typename: 'DeleteRepositoryRulesetPayload';
5230
- /** A unique identifier for the client performing the mutation. */
5231
- clientMutationId?: Maybe<Scalars['String']['output']>;
5232
- };
5233
- /** Autogenerated input type of DeleteTeamDiscussionComment */
5234
- export type DeleteTeamDiscussionCommentInput = {
5224
+ /** Autogenerated input type of DeleteRepositoryCustomProperty */
5225
+ export type DeleteRepositoryCustomPropertyInput = {
5235
5226
  /** A unique identifier for the client performing the mutation. */
5236
5227
  clientMutationId?: InputMaybe<Scalars['String']['input']>;
5237
- /** The ID of the comment to delete. */
5228
+ /** The global relay id of the custom property to be deleted. */
5238
5229
  id: Scalars['ID']['input'];
5239
5230
  };
5240
- /** Autogenerated return type of DeleteTeamDiscussionComment. */
5241
- export type DeleteTeamDiscussionCommentPayload = {
5242
- __typename: 'DeleteTeamDiscussionCommentPayload';
5231
+ /** Autogenerated return type of DeleteRepositoryCustomProperty. */
5232
+ export type DeleteRepositoryCustomPropertyPayload = {
5233
+ __typename: 'DeleteRepositoryCustomPropertyPayload';
5243
5234
  /** A unique identifier for the client performing the mutation. */
5244
5235
  clientMutationId?: Maybe<Scalars['String']['output']>;
5236
+ /** The deleted custom property. */
5237
+ repositoryCustomProperty?: Maybe<RepositoryCustomProperty>;
5245
5238
  };
5246
- /** Autogenerated input type of DeleteTeamDiscussion */
5247
- export type DeleteTeamDiscussionInput = {
5239
+ /** Autogenerated input type of DeleteRepositoryRuleset */
5240
+ export type DeleteRepositoryRulesetInput = {
5248
5241
  /** A unique identifier for the client performing the mutation. */
5249
5242
  clientMutationId?: InputMaybe<Scalars['String']['input']>;
5250
- /** The discussion ID to delete. */
5251
- id: Scalars['ID']['input'];
5243
+ /** The global relay id of the repository ruleset to be deleted. */
5244
+ repositoryRulesetId: Scalars['ID']['input'];
5252
5245
  };
5253
- /** Autogenerated return type of DeleteTeamDiscussion. */
5254
- export type DeleteTeamDiscussionPayload = {
5255
- __typename: 'DeleteTeamDiscussionPayload';
5246
+ /** Autogenerated return type of DeleteRepositoryRuleset. */
5247
+ export type DeleteRepositoryRulesetPayload = {
5248
+ __typename: 'DeleteRepositoryRulesetPayload';
5256
5249
  /** A unique identifier for the client performing the mutation. */
5257
5250
  clientMutationId?: Maybe<Scalars['String']['output']>;
5258
5251
  };
@@ -6536,6 +6529,10 @@ export type Enterprise = Node & {
6536
6529
  readme?: Maybe<Scalars['String']['output']>;
6537
6530
  /** The content of the enterprise README as HTML. */
6538
6531
  readmeHTML: Scalars['HTML']['output'];
6532
+ /** A list of repository custom properties for this enterprise. */
6533
+ repositoryCustomProperties?: Maybe<RepositoryCustomPropertyConnection>;
6534
+ /** Returns a single repository custom property for the current enterprise by name. */
6535
+ repositoryCustomProperty?: Maybe<RepositoryCustomProperty>;
6539
6536
  /** The HTTP path for this enterprise. */
6540
6537
  resourcePath: Scalars['URI']['output'];
6541
6538
  /** Returns a single ruleset from the current enterprise by ID. */
@@ -6586,6 +6583,17 @@ export type EnterpriseOrganizationsArgs = {
6586
6583
  viewerOrganizationRole?: InputMaybe<RoleInOrganization>;
6587
6584
  };
6588
6585
  /** An account to manage multiple organizations with consolidated policy and billing. */
6586
+ export type EnterpriseRepositoryCustomPropertiesArgs = {
6587
+ after?: InputMaybe<Scalars['String']['input']>;
6588
+ before?: InputMaybe<Scalars['String']['input']>;
6589
+ first?: InputMaybe<Scalars['Int']['input']>;
6590
+ last?: InputMaybe<Scalars['Int']['input']>;
6591
+ };
6592
+ /** An account to manage multiple organizations with consolidated policy and billing. */
6593
+ export type EnterpriseRepositoryCustomPropertyArgs = {
6594
+ propertyName: Scalars['String']['input'];
6595
+ };
6596
+ /** An account to manage multiple organizations with consolidated policy and billing. */
6589
6597
  export type EnterpriseRulesetArgs = {
6590
6598
  databaseId: Scalars['Int']['input'];
6591
6599
  };
@@ -7059,6 +7067,8 @@ export type EnterpriseOwnerInfo = {
7059
7067
  ipAllowListEntries: IpAllowListEntryConnection;
7060
7068
  /** The setting value for whether the enterprise has IP allow list configuration for installed GitHub Apps enabled. */
7061
7069
  ipAllowListForInstalledAppsEnabledSetting: IpAllowListForInstalledAppsEnabledSettingValue;
7070
+ /** The setting value for whether the enterprise has IP allow list user-level enforcement enabled. */
7071
+ ipAllowListUserLevelEnforcementEnabledSetting: IpAllowListUserLevelEnforcementEnabledSettingValue;
7062
7072
  /** Whether or not the base repository permission is currently being updated. */
7063
7073
  isUpdatingDefaultRepositoryPermission: Scalars['Boolean']['output'];
7064
7074
  /** Whether the two-factor authentication requirement is currently being enforced. */
@@ -7134,10 +7144,11 @@ export type EnterpriseOwnerInfo = {
7134
7144
  samlIdentityProviderSettingOrganizations: OrganizationConnection;
7135
7145
  /** A list of members with a support entitlement. */
7136
7146
  supportEntitlements: EnterpriseMemberConnection;
7137
- /** The setting value for whether team discussions are enabled for organizations in this enterprise. */
7147
+ /**
7148
+ * The setting value for whether team discussions are enabled for organizations in this enterprise.
7149
+ * @deprecated 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.
7150
+ */
7138
7151
  teamDiscussionsSetting: EnterpriseEnabledDisabledSettingValue;
7139
- /** A list of enterprise organizations configured with the provided team discussions setting value. */
7140
- teamDiscussionsSettingOrganizations: OrganizationConnection;
7141
7152
  /** The setting value for what methods of two-factor authentication the enterprise prevents its users from having. */
7142
7153
  twoFactorDisallowedMethodsSetting: EnterpriseDisallowedMethodsSettingValue;
7143
7154
  /** The setting value for whether the enterprise requires two-factor authentication for its organizations and users. */
@@ -7452,18 +7463,6 @@ export type EnterpriseOwnerInfoSupportEntitlementsArgs = {
7452
7463
  last?: InputMaybe<Scalars['Int']['input']>;
7453
7464
  orderBy?: InputMaybe<EnterpriseMemberOrder>;
7454
7465
  };
7455
- /**
7456
- * Enterprise information visible to enterprise owners or enterprise owners'
7457
- * personal access tokens (classic) with read:enterprise or admin:enterprise scope.
7458
- */
7459
- export type EnterpriseOwnerInfoTeamDiscussionsSettingOrganizationsArgs = {
7460
- after?: InputMaybe<Scalars['String']['input']>;
7461
- before?: InputMaybe<Scalars['String']['input']>;
7462
- first?: InputMaybe<Scalars['Int']['input']>;
7463
- last?: InputMaybe<Scalars['Int']['input']>;
7464
- orderBy?: InputMaybe<OrganizationOrder>;
7465
- value: Scalars['Boolean']['input'];
7466
- };
7467
7466
  /**
7468
7467
  * Enterprise information visible to enterprise owners or enterprise owners'
7469
7468
  * personal access tokens (classic) with read:enterprise or admin:enterprise scope.
@@ -8891,6 +8890,12 @@ export type IpAllowListForInstalledAppsEnabledSettingValue =
8891
8890
  | 'ENABLED';
8892
8891
  /** Types that can own an IP allow list. */
8893
8892
  export type IpAllowListOwner = App | Enterprise | Organization;
8893
+ /** The possible values for the IP allow list user-level enforcement enabled setting. */
8894
+ export type IpAllowListUserLevelEnforcementEnabledSettingValue =
8895
+ /** The setting is disabled for the owner. */
8896
+ 'DISABLED'
8897
+ /** The setting is enabled for the owner. */
8898
+ | 'ENABLED';
8894
8899
  /** An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project. */
8895
8900
  export type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lockable & Node & ProjectV2Owner & Reactable & RepositoryNode & Subscribable & SubscribableThread & UniformResourceLocatable & Updatable & UpdatableComment & {
8896
8901
  __typename: 'Issue';
@@ -8974,7 +8979,7 @@ export type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lo
8974
8979
  */
8975
8980
  projectCards: ProjectCardConnection;
8976
8981
  /** List of project items associated with this issue. */
8977
- projectItems: ProjectV2ItemConnection;
8982
+ projectItems?: Maybe<ProjectV2ItemConnection>;
8978
8983
  /** Find a project by number. */
8979
8984
  projectV2?: Maybe<ProjectV2>;
8980
8985
  /** A list of projects under the owner. */
@@ -9603,6 +9608,12 @@ export type IssueTimelineItemsItemType =
9603
9608
  | 'DISCONNECTED_EVENT'
9604
9609
  /** Represents a comment on an Issue. */
9605
9610
  | 'ISSUE_COMMENT'
9611
+ /** Represents a 'issue_field_added' event on a given issue. */
9612
+ | 'ISSUE_FIELD_ADDED_EVENT'
9613
+ /** Represents a 'issue_field_changed' event on a given issue. */
9614
+ | 'ISSUE_FIELD_CHANGED_EVENT'
9615
+ /** Represents a 'issue_field_removed' event on a given issue. */
9616
+ | 'ISSUE_FIELD_REMOVED_EVENT'
9606
9617
  /** Represents a 'issue_type_added' event on a given issue. */
9607
9618
  | 'ISSUE_TYPE_ADDED_EVENT'
9608
9619
  /** Represents a 'issue_type_changed' event on a given issue. */
@@ -11619,6 +11630,8 @@ export type Mutation = {
11619
11630
  createRef?: Maybe<CreateRefPayload>;
11620
11631
  /** Create a new repository. */
11621
11632
  createRepository?: Maybe<CreateRepositoryPayload>;
11633
+ /** Create a repository custom property. */
11634
+ createRepositoryCustomProperty?: Maybe<CreateRepositoryCustomPropertyPayload>;
11622
11635
  /** Create a repository ruleset */
11623
11636
  createRepositoryRuleset?: Maybe<CreateRepositoryRulesetPayload>;
11624
11637
  /** Create a GitHub Sponsors profile to allow others to sponsor you or your organization. */
@@ -11632,10 +11645,6 @@ export type Mutation = {
11632
11645
  * once. Can only sponsor those who have a public GitHub Sponsors profile.
11633
11646
  */
11634
11647
  createSponsorships?: Maybe<CreateSponsorshipsPayload>;
11635
- /** Creates a new team discussion. */
11636
- createTeamDiscussion?: Maybe<CreateTeamDiscussionPayload>;
11637
- /** Creates a new team discussion comment. */
11638
- createTeamDiscussionComment?: Maybe<CreateTeamDiscussionCommentPayload>;
11639
11648
  /** Creates a new user list. */
11640
11649
  createUserList?: Maybe<CreateUserListPayload>;
11641
11650
  /** Rejects a suggested topic for the repository. */
@@ -11695,12 +11704,10 @@ export type Mutation = {
11695
11704
  deletePullRequestReviewComment?: Maybe<DeletePullRequestReviewCommentPayload>;
11696
11705
  /** Delete a Git Ref. */
11697
11706
  deleteRef?: Maybe<DeleteRefPayload>;
11707
+ /** Delete a repository custom property. */
11708
+ deleteRepositoryCustomProperty?: Maybe<DeleteRepositoryCustomPropertyPayload>;
11698
11709
  /** Delete a repository ruleset */
11699
11710
  deleteRepositoryRuleset?: Maybe<DeleteRepositoryRulesetPayload>;
11700
- /** Deletes a team discussion. */
11701
- deleteTeamDiscussion?: Maybe<DeleteTeamDiscussionPayload>;
11702
- /** Deletes a team discussion comment. */
11703
- deleteTeamDiscussionComment?: Maybe<DeleteTeamDiscussionCommentPayload>;
11704
11711
  /** Deletes a user list. */
11705
11712
  deleteUserList?: Maybe<DeleteUserListPayload>;
11706
11713
  /** Deletes a verifiable domain. */
@@ -11773,6 +11780,8 @@ export type Mutation = {
11773
11780
  pinEnvironment?: Maybe<PinEnvironmentPayload>;
11774
11781
  /** Pin an issue to a repository */
11775
11782
  pinIssue?: Maybe<PinIssuePayload>;
11783
+ /** Promote a repository custom property to the enterprise level. */
11784
+ promoteRepositoryCustomProperty?: Maybe<PromoteRepositoryCustomPropertyPayload>;
11776
11785
  /** Publish an existing sponsorship tier that is currently still a draft to a GitHub Sponsors profile. */
11777
11786
  publishSponsorsTier?: Maybe<PublishSponsorsTierPayload>;
11778
11787
  /** Regenerates the identity provider recovery codes for an enterprise */
@@ -11824,6 +11833,8 @@ export type Mutation = {
11824
11833
  reprioritizeSubIssue?: Maybe<ReprioritizeSubIssuePayload>;
11825
11834
  /** Set review requests on a pull request. */
11826
11835
  requestReviews?: Maybe<RequestReviewsPayload>;
11836
+ /** Set review requests on a pull request using login strings instead of IDs. */
11837
+ requestReviewsByLogin?: Maybe<RequestReviewsByLoginPayload>;
11827
11838
  /** Rerequests an existing check suite. */
11828
11839
  rerequestCheckSuite?: Maybe<RerequestCheckSuitePayload>;
11829
11840
  /** Marks a review thread as resolved. */
@@ -11840,6 +11851,8 @@ export type Mutation = {
11840
11851
  setEnterpriseIdentityProvider?: Maybe<SetEnterpriseIdentityProviderPayload>;
11841
11852
  /** Set an organization level interaction limit for an organization's public repositories. */
11842
11853
  setOrganizationInteractionLimit?: Maybe<SetOrganizationInteractionLimitPayload>;
11854
+ /** Set repository custom property values for a repository. */
11855
+ setRepositoryCustomPropertyValues?: Maybe<SetRepositoryCustomPropertyValuesPayload>;
11843
11856
  /** Sets an interaction limit setting for a repository. */
11844
11857
  setRepositoryInteractionLimit?: Maybe<SetRepositoryInteractionLimitPayload>;
11845
11858
  /** Set a user level interaction limit for an user's public repositories. */
@@ -11929,8 +11942,6 @@ export type Mutation = {
11929
11942
  updateEnterpriseProfile?: Maybe<UpdateEnterpriseProfilePayload>;
11930
11943
  /** Sets whether repository projects are enabled for a enterprise. */
11931
11944
  updateEnterpriseRepositoryProjectsSetting?: Maybe<UpdateEnterpriseRepositoryProjectsSettingPayload>;
11932
- /** Sets whether team discussions are enabled for an enterprise. */
11933
- updateEnterpriseTeamDiscussionsSetting?: Maybe<UpdateEnterpriseTeamDiscussionsSettingPayload>;
11934
11945
  /** Sets the two-factor authentication methods that users of an enterprise may not use. */
11935
11946
  updateEnterpriseTwoFactorAuthenticationDisallowedMethodsSetting?: Maybe<UpdateEnterpriseTwoFactorAuthenticationDisallowedMethodsSettingPayload>;
11936
11947
  /** Sets whether two factor authentication is required for all users in an enterprise. */
@@ -11943,6 +11954,8 @@ export type Mutation = {
11943
11954
  updateIpAllowListEntry?: Maybe<UpdateIpAllowListEntryPayload>;
11944
11955
  /** Sets whether IP allow list configuration for installed GitHub Apps is enabled on an owner. */
11945
11956
  updateIpAllowListForInstalledAppsEnabledSetting?: Maybe<UpdateIpAllowListForInstalledAppsEnabledSettingPayload>;
11957
+ /** Sets whether IP allow list user-level enforcement is enabled on an enterprise. */
11958
+ updateIpAllowListUserLevelEnforcementEnabledSetting?: Maybe<UpdateIpAllowListUserLevelEnforcementEnabledSettingPayload>;
11946
11959
  /** Updates an Issue. */
11947
11960
  updateIssue?: Maybe<UpdateIssuePayload>;
11948
11961
  /** Updates an IssueComment object. */
@@ -12031,6 +12044,8 @@ export type Mutation = {
12031
12044
  updateRefs?: Maybe<UpdateRefsPayload>;
12032
12045
  /** Update information about a repository. */
12033
12046
  updateRepository?: Maybe<UpdateRepositoryPayload>;
12047
+ /** Update a repository custom property. */
12048
+ updateRepositoryCustomProperty?: Maybe<UpdateRepositoryCustomPropertyPayload>;
12034
12049
  /** Update a repository ruleset */
12035
12050
  updateRepositoryRuleset?: Maybe<UpdateRepositoryRulesetPayload>;
12036
12051
  /** Sets whether contributors are required to sign off on web-based commits for a repository. */
@@ -12039,10 +12054,6 @@ export type Mutation = {
12039
12054
  updateSponsorshipPreferences?: Maybe<UpdateSponsorshipPreferencesPayload>;
12040
12055
  /** Updates the state for subscribable subjects. */
12041
12056
  updateSubscription?: Maybe<UpdateSubscriptionPayload>;
12042
- /** Updates a team discussion. */
12043
- updateTeamDiscussion?: Maybe<UpdateTeamDiscussionPayload>;
12044
- /** Updates a discussion comment. */
12045
- updateTeamDiscussionComment?: Maybe<UpdateTeamDiscussionCommentPayload>;
12046
12057
  /** Updates team review assignment. */
12047
12058
  updateTeamReviewAssignment?: Maybe<UpdateTeamReviewAssignmentPayload>;
12048
12059
  /** Update team repository. */
@@ -12333,6 +12344,10 @@ export type MutationCreateRepositoryArgs = {
12333
12344
  input: CreateRepositoryInput;
12334
12345
  };
12335
12346
  /** The root query for implementing GraphQL mutations. */
12347
+ export type MutationCreateRepositoryCustomPropertyArgs = {
12348
+ input: CreateRepositoryCustomPropertyInput;
12349
+ };
12350
+ /** The root query for implementing GraphQL mutations. */
12336
12351
  export type MutationCreateRepositoryRulesetArgs = {
12337
12352
  input: CreateRepositoryRulesetInput;
12338
12353
  };
@@ -12353,14 +12368,6 @@ export type MutationCreateSponsorshipsArgs = {
12353
12368
  input: CreateSponsorshipsInput;
12354
12369
  };
12355
12370
  /** The root query for implementing GraphQL mutations. */
12356
- export type MutationCreateTeamDiscussionArgs = {
12357
- input: CreateTeamDiscussionInput;
12358
- };
12359
- /** The root query for implementing GraphQL mutations. */
12360
- export type MutationCreateTeamDiscussionCommentArgs = {
12361
- input: CreateTeamDiscussionCommentInput;
12362
- };
12363
- /** The root query for implementing GraphQL mutations. */
12364
12371
  export type MutationCreateUserListArgs = {
12365
12372
  input: CreateUserListInput;
12366
12373
  };
@@ -12461,16 +12468,12 @@ export type MutationDeleteRefArgs = {
12461
12468
  input: DeleteRefInput;
12462
12469
  };
12463
12470
  /** The root query for implementing GraphQL mutations. */
12464
- export type MutationDeleteRepositoryRulesetArgs = {
12465
- input: DeleteRepositoryRulesetInput;
12466
- };
12467
- /** The root query for implementing GraphQL mutations. */
12468
- export type MutationDeleteTeamDiscussionArgs = {
12469
- input: DeleteTeamDiscussionInput;
12471
+ export type MutationDeleteRepositoryCustomPropertyArgs = {
12472
+ input: DeleteRepositoryCustomPropertyInput;
12470
12473
  };
12471
12474
  /** The root query for implementing GraphQL mutations. */
12472
- export type MutationDeleteTeamDiscussionCommentArgs = {
12473
- input: DeleteTeamDiscussionCommentInput;
12475
+ export type MutationDeleteRepositoryRulesetArgs = {
12476
+ input: DeleteRepositoryRulesetInput;
12474
12477
  };
12475
12478
  /** The root query for implementing GraphQL mutations. */
12476
12479
  export type MutationDeleteUserListArgs = {
@@ -12593,6 +12596,10 @@ export type MutationPinIssueArgs = {
12593
12596
  input: PinIssueInput;
12594
12597
  };
12595
12598
  /** The root query for implementing GraphQL mutations. */
12599
+ export type MutationPromoteRepositoryCustomPropertyArgs = {
12600
+ input: PromoteRepositoryCustomPropertyInput;
12601
+ };
12602
+ /** The root query for implementing GraphQL mutations. */
12596
12603
  export type MutationPublishSponsorsTierArgs = {
12597
12604
  input: PublishSponsorsTierInput;
12598
12605
  };
@@ -12689,6 +12696,10 @@ export type MutationRequestReviewsArgs = {
12689
12696
  input: RequestReviewsInput;
12690
12697
  };
12691
12698
  /** The root query for implementing GraphQL mutations. */
12699
+ export type MutationRequestReviewsByLoginArgs = {
12700
+ input: RequestReviewsByLoginInput;
12701
+ };
12702
+ /** The root query for implementing GraphQL mutations. */
12692
12703
  export type MutationRerequestCheckSuiteArgs = {
12693
12704
  input: RerequestCheckSuiteInput;
12694
12705
  };
@@ -12721,6 +12732,10 @@ export type MutationSetOrganizationInteractionLimitArgs = {
12721
12732
  input: SetOrganizationInteractionLimitInput;
12722
12733
  };
12723
12734
  /** The root query for implementing GraphQL mutations. */
12735
+ export type MutationSetRepositoryCustomPropertyValuesArgs = {
12736
+ input: SetRepositoryCustomPropertyValuesInput;
12737
+ };
12738
+ /** The root query for implementing GraphQL mutations. */
12724
12739
  export type MutationSetRepositoryInteractionLimitArgs = {
12725
12740
  input: SetRepositoryInteractionLimitInput;
12726
12741
  };
@@ -12893,10 +12908,6 @@ export type MutationUpdateEnterpriseRepositoryProjectsSettingArgs = {
12893
12908
  input: UpdateEnterpriseRepositoryProjectsSettingInput;
12894
12909
  };
12895
12910
  /** The root query for implementing GraphQL mutations. */
12896
- export type MutationUpdateEnterpriseTeamDiscussionsSettingArgs = {
12897
- input: UpdateEnterpriseTeamDiscussionsSettingInput;
12898
- };
12899
- /** The root query for implementing GraphQL mutations. */
12900
12911
  export type MutationUpdateEnterpriseTwoFactorAuthenticationDisallowedMethodsSettingArgs = {
12901
12912
  input: UpdateEnterpriseTwoFactorAuthenticationDisallowedMethodsSettingInput;
12902
12913
  };
@@ -12921,6 +12932,10 @@ export type MutationUpdateIpAllowListForInstalledAppsEnabledSettingArgs = {
12921
12932
  input: UpdateIpAllowListForInstalledAppsEnabledSettingInput;
12922
12933
  };
12923
12934
  /** The root query for implementing GraphQL mutations. */
12935
+ export type MutationUpdateIpAllowListUserLevelEnforcementEnabledSettingArgs = {
12936
+ input: UpdateIpAllowListUserLevelEnforcementEnabledSettingInput;
12937
+ };
12938
+ /** The root query for implementing GraphQL mutations. */
12924
12939
  export type MutationUpdateIssueArgs = {
12925
12940
  input: UpdateIssueInput;
12926
12941
  };
@@ -13025,6 +13040,10 @@ export type MutationUpdateRepositoryArgs = {
13025
13040
  input: UpdateRepositoryInput;
13026
13041
  };
13027
13042
  /** The root query for implementing GraphQL mutations. */
13043
+ export type MutationUpdateRepositoryCustomPropertyArgs = {
13044
+ input: UpdateRepositoryCustomPropertyInput;
13045
+ };
13046
+ /** The root query for implementing GraphQL mutations. */
13028
13047
  export type MutationUpdateRepositoryRulesetArgs = {
13029
13048
  input: UpdateRepositoryRulesetInput;
13030
13049
  };
@@ -13041,14 +13060,6 @@ export type MutationUpdateSubscriptionArgs = {
13041
13060
  input: UpdateSubscriptionInput;
13042
13061
  };
13043
13062
  /** The root query for implementing GraphQL mutations. */
13044
- export type MutationUpdateTeamDiscussionArgs = {
13045
- input: UpdateTeamDiscussionInput;
13046
- };
13047
- /** The root query for implementing GraphQL mutations. */
13048
- export type MutationUpdateTeamDiscussionCommentArgs = {
13049
- input: UpdateTeamDiscussionCommentInput;
13050
- };
13051
- /** The root query for implementing GraphQL mutations. */
13052
13063
  export type MutationUpdateTeamReviewAssignmentArgs = {
13053
13064
  input: UpdateTeamReviewAssignmentInput;
13054
13065
  };
@@ -16359,6 +16370,10 @@ export type Organization = Actor & MemberStatusable & Node & PackageOwner & Prof
16359
16370
  repositories: RepositoryConnection;
16360
16371
  /** Find Repository. */
16361
16372
  repository?: Maybe<Repository>;
16373
+ /** A list of custom properties for this organization. */
16374
+ repositoryCustomProperties?: Maybe<RepositoryCustomPropertyConnection>;
16375
+ /** Returns a single custom property from the current organization by name. */
16376
+ repositoryCustomProperty?: Maybe<RepositoryCustomProperty>;
16362
16377
  /** Discussion comments this user has authored. */
16363
16378
  repositoryDiscussionComments: DiscussionCommentConnection;
16364
16379
  /** Discussions this user has started. */
@@ -16627,6 +16642,17 @@ export type OrganizationRepositoryArgs = {
16627
16642
  name: Scalars['String']['input'];
16628
16643
  };
16629
16644
  /** An account on GitHub, with one or more owners, that has repositories, members and teams. */
16645
+ export type OrganizationRepositoryCustomPropertiesArgs = {
16646
+ after?: InputMaybe<Scalars['String']['input']>;
16647
+ before?: InputMaybe<Scalars['String']['input']>;
16648
+ first?: InputMaybe<Scalars['Int']['input']>;
16649
+ last?: InputMaybe<Scalars['Int']['input']>;
16650
+ };
16651
+ /** An account on GitHub, with one or more owners, that has repositories, members and teams. */
16652
+ export type OrganizationRepositoryCustomPropertyArgs = {
16653
+ propertyName: Scalars['String']['input'];
16654
+ };
16655
+ /** An account on GitHub, with one or more owners, that has repositories, members and teams. */
16630
16656
  export type OrganizationRepositoryDiscussionCommentsArgs = {
16631
16657
  after?: InputMaybe<Scalars['String']['input']>;
16632
16658
  before?: InputMaybe<Scalars['String']['input']>;
@@ -19677,6 +19703,21 @@ export type ProjectV2WorkflowsOrderField =
19677
19703
  | 'NUMBER'
19678
19704
  /** The date and time of the workflow update */
19679
19705
  | 'UPDATED_AT';
19706
+ /** Autogenerated input type of PromoteRepositoryCustomProperty */
19707
+ export type PromoteRepositoryCustomPropertyInput = {
19708
+ /** A unique identifier for the client performing the mutation. */
19709
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
19710
+ /** The ID of the repository custom property to be promoted. */
19711
+ repositoryCustomPropertyId: Scalars['ID']['input'];
19712
+ };
19713
+ /** Autogenerated return type of PromoteRepositoryCustomProperty. */
19714
+ export type PromoteRepositoryCustomPropertyPayload = {
19715
+ __typename: 'PromoteRepositoryCustomPropertyPayload';
19716
+ /** A unique identifier for the client performing the mutation. */
19717
+ clientMutationId?: Maybe<Scalars['String']['output']>;
19718
+ /** The repository custom property that has been promoted. */
19719
+ repositoryCustomProperty?: Maybe<RepositoryCustomProperty>;
19720
+ };
19680
19721
  /** A property that must match */
19681
19722
  export type PropertyTargetDefinition = {
19682
19723
  __typename: 'PropertyTargetDefinition';
@@ -19897,7 +19938,7 @@ export type PullRequest = Assignable & Closable & Comment & Labelable & Lockable
19897
19938
  */
19898
19939
  projectCards: ProjectCardConnection;
19899
19940
  /** List of project items associated with this pull request. */
19900
- projectItems: ProjectV2ItemConnection;
19941
+ projectItems?: Maybe<ProjectV2ItemConnection>;
19901
19942
  /** Find a project by number. */
19902
19943
  projectV2?: Maybe<ProjectV2>;
19903
19944
  /** A list of projects under the owner. */
@@ -19930,6 +19971,8 @@ export type PullRequest = Assignable & Closable & Comment & Labelable & Lockable
19930
19971
  statusCheckRollup?: Maybe<StatusCheckRollup>;
19931
19972
  /** A list of suggested actors to assign to this object */
19932
19973
  suggestedActors: AssigneeConnection;
19974
+ /** Reviewer actor suggestions based on commit history, past review comments, and integrations. */
19975
+ suggestedReviewerActors: SuggestedReviewerActorConnection;
19933
19976
  /** A list of reviewer suggestions based on commit history and past review comments. */
19934
19977
  suggestedReviewers: Array<Maybe<SuggestedReviewer>>;
19935
19978
  /**
@@ -20145,6 +20188,14 @@ export type PullRequestSuggestedActorsArgs = {
20145
20188
  query?: InputMaybe<Scalars['String']['input']>;
20146
20189
  };
20147
20190
  /** A repository pull request. */
20191
+ export type PullRequestSuggestedReviewerActorsArgs = {
20192
+ after?: InputMaybe<Scalars['String']['input']>;
20193
+ before?: InputMaybe<Scalars['String']['input']>;
20194
+ first?: InputMaybe<Scalars['Int']['input']>;
20195
+ last?: InputMaybe<Scalars['Int']['input']>;
20196
+ query?: InputMaybe<Scalars['String']['input']>;
20197
+ };
20198
+ /** A repository pull request. */
20148
20199
  export type PullRequestTimelineArgs = {
20149
20200
  after?: InputMaybe<Scalars['String']['input']>;
20150
20201
  before?: InputMaybe<Scalars['String']['input']>;
@@ -20349,8 +20400,6 @@ export type PullRequestParameters = {
20349
20400
  * `rebase`. At least one option must be enabled.
20350
20401
  */
20351
20402
  allowedMergeMethods?: Maybe<Array<PullRequestAllowedMergeMethods>>;
20352
- /** Request Copilot code review for new pull requests automatically if the author has access to Copilot code review. */
20353
- automaticCopilotCodeReviewEnabled: Scalars['Boolean']['output'];
20354
20403
  /** New, reviewable commits pushed will dismiss previous pull request review approvals. */
20355
20404
  dismissStaleReviewsOnPush: Scalars['Boolean']['output'];
20356
20405
  /** Require an approving review in pull requests that modify files that have a designated code owner. */
@@ -20361,6 +20410,12 @@ export type PullRequestParameters = {
20361
20410
  requiredApprovingReviewCount: Scalars['Int']['output'];
20362
20411
  /** All conversations on code must be resolved before a pull request can be merged. */
20363
20412
  requiredReviewThreadResolution: Scalars['Boolean']['output'];
20413
+ /**
20414
+ * This field is in beta and subject to change. A collection of reviewers and
20415
+ * associated file patterns. Each reviewer has a list of file patterns which
20416
+ * determine the files that reviewer is required to review.
20417
+ */
20418
+ requiredReviewers?: Maybe<Array<RequiredReviewerConfiguration>>;
20364
20419
  };
20365
20420
  /** Require all commits be made to a non-target branch and submitted via a pull request before they can be merged. */
20366
20421
  export type PullRequestParametersInput = {
@@ -20369,8 +20424,6 @@ export type PullRequestParametersInput = {
20369
20424
  * `rebase`. At least one option must be enabled.
20370
20425
  */
20371
20426
  allowedMergeMethods?: InputMaybe<Array<PullRequestAllowedMergeMethods>>;
20372
- /** Request Copilot code review for new pull requests automatically if the author has access to Copilot code review. */
20373
- automaticCopilotCodeReviewEnabled?: InputMaybe<Scalars['Boolean']['input']>;
20374
20427
  /** New, reviewable commits pushed will dismiss previous pull request review approvals. */
20375
20428
  dismissStaleReviewsOnPush: Scalars['Boolean']['input'];
20376
20429
  /** Require an approving review in pull requests that modify files that have a designated code owner. */
@@ -20381,6 +20434,12 @@ export type PullRequestParametersInput = {
20381
20434
  requiredApprovingReviewCount: Scalars['Int']['input'];
20382
20435
  /** All conversations on code must be resolved before a pull request can be merged. */
20383
20436
  requiredReviewThreadResolution: Scalars['Boolean']['input'];
20437
+ /**
20438
+ * This argument is in beta and subject to change. A collection of reviewers and
20439
+ * associated file patterns. Each reviewer has a list of file patterns which
20440
+ * determine the files that reviewer is required to review.
20441
+ */
20442
+ requiredReviewers?: InputMaybe<Array<RequiredReviewerConfigurationInput>>;
20384
20443
  };
20385
20444
  /** A review object for a given pull request. */
20386
20445
  export type PullRequestReview = Comment & Deletable & Minimizable & Node & Reactable & RepositoryNode & Updatable & UpdatableComment & {
@@ -20984,6 +21043,12 @@ export type PullRequestTimelineItemsItemType =
20984
21043
  | 'HEAD_REF_RESTORED_EVENT'
20985
21044
  /** Represents a comment on an Issue. */
20986
21045
  | 'ISSUE_COMMENT'
21046
+ /** Represents a 'issue_field_added' event on a given issue. */
21047
+ | 'ISSUE_FIELD_ADDED_EVENT'
21048
+ /** Represents a 'issue_field_changed' event on a given issue. */
21049
+ | 'ISSUE_FIELD_CHANGED_EVENT'
21050
+ /** Represents a 'issue_field_removed' event on a given issue. */
21051
+ | 'ISSUE_FIELD_REMOVED_EVENT'
20987
21052
  /** Represents a 'issue_type_added' event on a given issue. */
20988
21053
  | 'ISSUE_TYPE_ADDED_EVENT'
20989
21054
  /** Represents a 'issue_type_changed' event on a given issue. */
@@ -21919,7 +21984,7 @@ export type ReleaseOrderField =
21919
21984
  export type RemoveAssigneesFromAssignableInput = {
21920
21985
  /** The id of the assignable object to remove assignees from. */
21921
21986
  assignableId: Scalars['ID']['input'];
21922
- /** The id of users to remove as assignees. */
21987
+ /** The ids of actors to remove as assignees. */
21923
21988
  assigneeIds: Array<Scalars['ID']['input']>;
21924
21989
  /** A unique identifier for the client performing the mutation. */
21925
21990
  clientMutationId?: InputMaybe<Scalars['String']['input']>;
@@ -22307,8 +22372,19 @@ export type ReorderEnvironmentPayload = {
22307
22372
  };
22308
22373
  /** Autogenerated input type of ReplaceActorsForAssignable */
22309
22374
  export type ReplaceActorsForAssignableInput = {
22310
- /** The ids of the actors to replace the existing assignees. */
22311
- actorIds: Array<Scalars['ID']['input']>;
22375
+ /**
22376
+ * The ids of the actors to replace the existing assignees. May be used as an
22377
+ * alternative to or in conjunction with actorLogins.
22378
+ */
22379
+ actorIds?: InputMaybe<Array<Scalars['ID']['input']>>;
22380
+ /**
22381
+ * The usernames of the actors to replace the existing assignees. May be used as
22382
+ * an alternative to or in conjunction with actorIds. For bots, use the login
22383
+ * format with [bot] suffix (e.g., 'my-app[bot]').
22384
+ */
22385
+ actorLogins?: InputMaybe<Array<Scalars['String']['input']>>;
22386
+ /** Configuration for assigning an AI agent to this issue. */
22387
+ agentAssignment?: InputMaybe<AgentAssignmentInput>;
22312
22388
  /** The id of the assignable object to replace the assignees for. */
22313
22389
  assignableId: Scalars['ID']['input'];
22314
22390
  /** A unique identifier for the client performing the mutation. */
@@ -24543,6 +24619,10 @@ export type Repository = Node & PackageOwner & ProjectOwner & ProjectV2Recent &
24543
24619
  release?: Maybe<Release>;
24544
24620
  /** List of releases which are dependent on this repository. */
24545
24621
  releases: ReleaseConnection;
24622
+ /** A custom property value for the repository. */
24623
+ repositoryCustomPropertyValue?: Maybe<RepositoryCustomPropertyValue>;
24624
+ /** A list of custom properties and their associated values for a repository. */
24625
+ repositoryCustomPropertyValues?: Maybe<RepositoryCustomPropertyValueConnection>;
24546
24626
  /** A list of applied repository-topic associations for this repository. */
24547
24627
  repositoryTopics: RepositoryTopicConnection;
24548
24628
  /** The HTTP path for this repository */
@@ -24937,6 +25017,17 @@ export type RepositoryReleasesArgs = {
24937
25017
  orderBy?: InputMaybe<ReleaseOrder>;
24938
25018
  };
24939
25019
  /** A repository contains the content for a project. */
25020
+ export type RepositoryRepositoryCustomPropertyValueArgs = {
25021
+ propertyName: Scalars['String']['input'];
25022
+ };
25023
+ /** A repository contains the content for a project. */
25024
+ export type RepositoryRepositoryCustomPropertyValuesArgs = {
25025
+ after?: InputMaybe<Scalars['String']['input']>;
25026
+ before?: InputMaybe<Scalars['String']['input']>;
25027
+ first?: InputMaybe<Scalars['Int']['input']>;
25028
+ last?: InputMaybe<Scalars['Int']['input']>;
25029
+ };
25030
+ /** A repository contains the content for a project. */
24940
25031
  export type RepositoryRepositoryTopicsArgs = {
24941
25032
  after?: InputMaybe<Scalars['String']['input']>;
24942
25033
  before?: InputMaybe<Scalars['String']['input']>;
@@ -25114,6 +25205,84 @@ export type RepositoryContributionType =
25114
25205
  | 'PULL_REQUEST_REVIEW'
25115
25206
  /** Created the repository */
25116
25207
  | 'REPOSITORY';
25208
+ /** A repository custom property. */
25209
+ export type RepositoryCustomProperty = Node & {
25210
+ __typename: 'RepositoryCustomProperty';
25211
+ /** The allowed values for the custom property. Required if `value_type` is `single_select` or `multi_select`. */
25212
+ allowedValues?: Maybe<Array<Scalars['String']['output']>>;
25213
+ /** The default value of the custom property, if the property is `required`. */
25214
+ defaultValue?: Maybe<Scalars['CustomPropertyValue']['output']>;
25215
+ /** The description of the custom property. */
25216
+ description?: Maybe<Scalars['String']['output']>;
25217
+ /** The Node ID of the RepositoryCustomProperty object */
25218
+ id: Scalars['ID']['output'];
25219
+ /** The name of the custom property. */
25220
+ propertyName: Scalars['String']['output'];
25221
+ /** The regex pattern that the value of the custom property must match, if the `value_type` is `string`. */
25222
+ regex?: Maybe<Scalars['String']['output']>;
25223
+ /** Whether the custom property is required. */
25224
+ required?: Maybe<Scalars['Boolean']['output']>;
25225
+ /** The source type of the custom property. */
25226
+ source: CustomPropertySource;
25227
+ /** The value type of the custom property. */
25228
+ valueType: CustomPropertyValueType;
25229
+ /** Who can edit the values of this repository custom property. */
25230
+ valuesEditableBy: RepositoryCustomPropertyValuesEditableBy;
25231
+ };
25232
+ /** The connection type for RepositoryCustomProperty. */
25233
+ export type RepositoryCustomPropertyConnection = {
25234
+ __typename: 'RepositoryCustomPropertyConnection';
25235
+ /** A list of edges. */
25236
+ edges?: Maybe<Array<Maybe<RepositoryCustomPropertyEdge>>>;
25237
+ /** A list of nodes. */
25238
+ nodes?: Maybe<Array<Maybe<RepositoryCustomProperty>>>;
25239
+ /** Information to aid in pagination. */
25240
+ pageInfo: PageInfo;
25241
+ /** Identifies the total count of items in the connection. */
25242
+ totalCount: Scalars['Int']['output'];
25243
+ };
25244
+ /** An edge in a connection. */
25245
+ export type RepositoryCustomPropertyEdge = {
25246
+ __typename: 'RepositoryCustomPropertyEdge';
25247
+ /** A cursor for use in pagination. */
25248
+ cursor: Scalars['String']['output'];
25249
+ /** The item at the end of the edge. */
25250
+ node?: Maybe<RepositoryCustomProperty>;
25251
+ };
25252
+ /** A value associated with a repository custom property. */
25253
+ export type RepositoryCustomPropertyValue = {
25254
+ __typename: 'RepositoryCustomPropertyValue';
25255
+ /** The name of the custom property. */
25256
+ propertyName: Scalars['String']['output'];
25257
+ /** The value of the custom property. */
25258
+ value: Scalars['CustomPropertyValue']['output'];
25259
+ };
25260
+ /** The connection type for RepositoryCustomPropertyValue. */
25261
+ export type RepositoryCustomPropertyValueConnection = {
25262
+ __typename: 'RepositoryCustomPropertyValueConnection';
25263
+ /** A list of edges. */
25264
+ edges?: Maybe<Array<Maybe<RepositoryCustomPropertyValueEdge>>>;
25265
+ /** A list of nodes. */
25266
+ nodes?: Maybe<Array<Maybe<RepositoryCustomPropertyValue>>>;
25267
+ /** Information to aid in pagination. */
25268
+ pageInfo: PageInfo;
25269
+ /** Identifies the total count of items in the connection. */
25270
+ totalCount: Scalars['Int']['output'];
25271
+ };
25272
+ /** An edge in a connection. */
25273
+ export type RepositoryCustomPropertyValueEdge = {
25274
+ __typename: 'RepositoryCustomPropertyValueEdge';
25275
+ /** A cursor for use in pagination. */
25276
+ cursor: Scalars['String']['output'];
25277
+ /** The item at the end of the edge. */
25278
+ node?: Maybe<RepositoryCustomPropertyValue>;
25279
+ };
25280
+ /** The allowed actors who can edit the values of a custom property. */
25281
+ export type RepositoryCustomPropertyValuesEditableBy =
25282
+ /** The organization actors. */
25283
+ 'ORG_ACTORS'
25284
+ /** The organization and repository actors. */
25285
+ | 'ORG_AND_REPO_ACTORS';
25117
25286
  /** Represents an author of discussions in repositories. */
25118
25287
  export type RepositoryDiscussionAuthor = {
25119
25288
  /** Discussions this user has started. */
@@ -25645,7 +25814,11 @@ export type RepositoryRuleType =
25645
25814
  | 'COMMIT_AUTHOR_EMAIL_PATTERN'
25646
25815
  /** Commit message pattern */
25647
25816
  | 'COMMIT_MESSAGE_PATTERN'
25648
- /** Request Copilot code review for new pull requests automatically if the author has access to Copilot code review. */
25817
+ /**
25818
+ * Request Copilot code review for new pull requests automatically if the author
25819
+ * has access to Copilot code review and their premium requests quota has not
25820
+ * reached the limit.
25821
+ */
25649
25822
  | 'COPILOT_CODE_REVIEW'
25650
25823
  /** Only allow users with bypass permission to create matching refs. */
25651
25824
  | 'CREATION'
@@ -26196,6 +26369,33 @@ export type ReprioritizeSubIssuePayload = {
26196
26369
  /** The parent issue that the sub-issue was reprioritized in. */
26197
26370
  issue?: Maybe<Issue>;
26198
26371
  };
26372
+ /** Autogenerated input type of RequestReviewsByLogin */
26373
+ export type RequestReviewsByLoginInput = {
26374
+ /** The logins of the bots to request reviews from, including the [bot] suffix (e.g., 'copilot-pull-request-reviewer[bot]'). */
26375
+ botLogins?: InputMaybe<Array<Scalars['String']['input']>>;
26376
+ /** A unique identifier for the client performing the mutation. */
26377
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
26378
+ /** The Node ID of the pull request to modify. */
26379
+ pullRequestId: Scalars['ID']['input'];
26380
+ /** The slugs of the teams to request reviews from (format: 'org/team-slug'). */
26381
+ teamSlugs?: InputMaybe<Array<Scalars['String']['input']>>;
26382
+ /** Add users to the set rather than replace. */
26383
+ union?: InputMaybe<Scalars['Boolean']['input']>;
26384
+ /** The login strings of the users to request reviews from. */
26385
+ userLogins?: InputMaybe<Array<Scalars['String']['input']>>;
26386
+ };
26387
+ /** Autogenerated return type of RequestReviewsByLogin. */
26388
+ export type RequestReviewsByLoginPayload = {
26389
+ __typename: 'RequestReviewsByLoginPayload';
26390
+ /** Identifies the actor who performed the event. */
26391
+ actor?: Maybe<Actor>;
26392
+ /** A unique identifier for the client performing the mutation. */
26393
+ clientMutationId?: Maybe<Scalars['String']['output']>;
26394
+ /** The pull request that is getting requests. */
26395
+ pullRequest?: Maybe<PullRequest>;
26396
+ /** The edge from the pull request to the requested reviewers. */
26397
+ requestedReviewersEdge?: Maybe<UserEdge>;
26398
+ };
26199
26399
  /** Autogenerated input type of RequestReviews */
26200
26400
  export type RequestReviewsInput = {
26201
26401
  /** The Node IDs of the bot to request. */
@@ -26278,6 +26478,37 @@ export type RequiredDeploymentsParametersInput = {
26278
26478
  /** The environments that must be successfully deployed to before branches can be merged. */
26279
26479
  requiredDeploymentEnvironments: Array<Scalars['String']['input']>;
26280
26480
  };
26481
+ /** A reviewing team, and file patterns describing which files they must approve changes to. */
26482
+ export type RequiredReviewerConfiguration = {
26483
+ __typename: 'RequiredReviewerConfiguration';
26484
+ /**
26485
+ * Array of file patterns. Pull requests which change matching files must be
26486
+ * approved by the specified team. File patterns use fnmatch syntax.
26487
+ */
26488
+ filePatterns: Array<Scalars['String']['output']>;
26489
+ /**
26490
+ * Minimum number of approvals required from the specified team. If set to zero,
26491
+ * the team will be added to the pull request but approval is optional.
26492
+ */
26493
+ minimumApprovals: Scalars['Int']['output'];
26494
+ /** Node ID of the team which must review changes to matching files. */
26495
+ reviewerId: Scalars['ID']['output'];
26496
+ };
26497
+ /** A reviewing team, and file patterns describing which files they must approve changes to. */
26498
+ export type RequiredReviewerConfigurationInput = {
26499
+ /**
26500
+ * Array of file patterns. Pull requests which change matching files must be
26501
+ * approved by the specified team. File patterns use fnmatch syntax.
26502
+ */
26503
+ filePatterns: Array<Scalars['String']['input']>;
26504
+ /**
26505
+ * Minimum number of approvals required from the specified team. If set to zero,
26506
+ * the team will be added to the pull request but approval is optional.
26507
+ */
26508
+ minimumApprovals: Scalars['Int']['input'];
26509
+ /** Node ID of the team which must review changes to matching files. */
26510
+ reviewerId: Scalars['ID']['input'];
26511
+ };
26281
26512
  /** Represents a required status check for a protected branch, but not any specific run of that check. */
26282
26513
  export type RequiredStatusCheckDescription = {
26283
26514
  __typename: 'RequiredStatusCheckDescription';
@@ -27080,6 +27311,23 @@ export type SetOrganizationInteractionLimitPayload = {
27080
27311
  /** The organization that the interaction limit was set for. */
27081
27312
  organization?: Maybe<Organization>;
27082
27313
  };
27314
+ /** Autogenerated input type of SetRepositoryCustomPropertyValues */
27315
+ export type SetRepositoryCustomPropertyValuesInput = {
27316
+ /** A unique identifier for the client performing the mutation. */
27317
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
27318
+ /** A list of custom property names and associated values to apply. */
27319
+ properties: Array<CustomPropertyValueInput>;
27320
+ /** The ID of the repository to set properties for. */
27321
+ repositoryId: Scalars['ID']['input'];
27322
+ };
27323
+ /** Autogenerated return type of SetRepositoryCustomPropertyValues. */
27324
+ export type SetRepositoryCustomPropertyValuesPayload = {
27325
+ __typename: 'SetRepositoryCustomPropertyValuesPayload';
27326
+ /** A unique identifier for the client performing the mutation. */
27327
+ clientMutationId?: Maybe<Scalars['String']['output']>;
27328
+ /** The repository that the custom properties were set for. */
27329
+ repository?: Maybe<Repository>;
27330
+ };
27083
27331
  /** Autogenerated input type of SetRepositoryInteractionLimit */
27084
27332
  export type SetRepositoryInteractionLimitInput = {
27085
27333
  /** A unique identifier for the client performing the mutation. */
@@ -28891,6 +29139,36 @@ export type SuggestedReviewer = {
28891
29139
  /** Identifies the user suggested to review the pull request. */
28892
29140
  reviewer: User;
28893
29141
  };
29142
+ /** A suggestion to review a pull request based on an actor's commit history, review comments, and integrations. */
29143
+ export type SuggestedReviewerActor = {
29144
+ __typename: 'SuggestedReviewerActor';
29145
+ /** Is this suggestion based on past commits? */
29146
+ isAuthor: Scalars['Boolean']['output'];
29147
+ /** Is this suggestion based on past review comments? */
29148
+ isCommenter: Scalars['Boolean']['output'];
29149
+ /** Identifies the actor suggested to review the pull request. */
29150
+ reviewer: Actor;
29151
+ };
29152
+ /** A suggestion to review a pull request based on an actor's commit history, review comments, and integrations. */
29153
+ export type SuggestedReviewerActorConnection = {
29154
+ __typename: 'SuggestedReviewerActorConnection';
29155
+ /** A list of edges. */
29156
+ edges?: Maybe<Array<Maybe<SuggestedReviewerActorEdge>>>;
29157
+ /** A list of nodes. */
29158
+ nodes?: Maybe<Array<Maybe<SuggestedReviewerActor>>>;
29159
+ /** Information to aid in pagination. */
29160
+ pageInfo: PageInfo;
29161
+ /** Identifies the total count of items in the connection. */
29162
+ totalCount: Scalars['Int']['output'];
29163
+ };
29164
+ /** An edge in a connection. */
29165
+ export type SuggestedReviewerActorEdge = {
29166
+ __typename: 'SuggestedReviewerActorEdge';
29167
+ /** A cursor for use in pagination. */
29168
+ cursor: Scalars['String']['output'];
29169
+ /** The item at the end of the edge. */
29170
+ node?: Maybe<SuggestedReviewerActor>;
29171
+ };
28894
29172
  /** Represents a Git tag. */
28895
29173
  export type Tag = GitObject & Node & {
28896
29174
  __typename: 'Tag';
@@ -28918,7 +29196,7 @@ export type Tag = GitObject & Node & {
28918
29196
  /** Parameters to be used for the tag_name_pattern rule */
28919
29197
  export type TagNamePatternParameters = {
28920
29198
  __typename: 'TagNamePatternParameters';
28921
- /** How this rule will appear to users. */
29199
+ /** How this rule appears when configuring it. */
28922
29200
  name?: Maybe<Scalars['String']['output']>;
28923
29201
  /** If true, the rule will fail if the pattern matches. */
28924
29202
  negate: Scalars['Boolean']['output'];
@@ -28929,7 +29207,7 @@ export type TagNamePatternParameters = {
28929
29207
  };
28930
29208
  /** Parameters to be used for the tag_name_pattern rule */
28931
29209
  export type TagNamePatternParametersInput = {
28932
- /** How this rule will appear to users. */
29210
+ /** How this rule appears when configuring it. */
28933
29211
  name?: InputMaybe<Scalars['String']['input']>;
28934
29212
  /** If true, the rule will fail if the pattern matches. */
28935
29213
  negate?: InputMaybe<Scalars['Boolean']['input']>;
@@ -28955,14 +29233,6 @@ export type Team = MemberStatusable & Node & Subscribable & {
28955
29233
  databaseId?: Maybe<Scalars['Int']['output']>;
28956
29234
  /** The description of the team. */
28957
29235
  description?: Maybe<Scalars['String']['output']>;
28958
- /** Find a team discussion by its number. */
28959
- discussion?: Maybe<TeamDiscussion>;
28960
- /** A list of team discussions. */
28961
- discussions: TeamDiscussionConnection;
28962
- /** The HTTP path for team discussions */
28963
- discussionsResourcePath: Scalars['URI']['output'];
28964
- /** The HTTP URL for team discussions */
28965
- discussionsUrl: Scalars['URI']['output'];
28966
29236
  /** The HTTP path for editing this team */
28967
29237
  editTeamResourcePath: Scalars['URI']['output'];
28968
29238
  /** The HTTP URL for editing this team */
@@ -29052,20 +29322,7 @@ export type TeamChildTeamsArgs = {
29052
29322
  userLogins?: InputMaybe<Array<Scalars['String']['input']>>;
29053
29323
  };
29054
29324
  /** A team of users in an organization. */
29055
- export type TeamDiscussionArgs = {
29056
- number: Scalars['Int']['input'];
29057
- };
29058
- /** A team of users in an organization. */
29059
- export type TeamDiscussionsArgs = {
29060
- after?: InputMaybe<Scalars['String']['input']>;
29061
- before?: InputMaybe<Scalars['String']['input']>;
29062
- first?: InputMaybe<Scalars['Int']['input']>;
29063
- isPinned?: InputMaybe<Scalars['Boolean']['input']>;
29064
- last?: InputMaybe<Scalars['Int']['input']>;
29065
- orderBy?: InputMaybe<TeamDiscussionOrder>;
29066
- };
29067
- /** A team of users in an organization. */
29068
- export type TeamInvitationsArgs = {
29325
+ export type TeamInvitationsArgs = {
29069
29326
  after?: InputMaybe<Scalars['String']['input']>;
29070
29327
  before?: InputMaybe<Scalars['String']['input']>;
29071
29328
  first?: InputMaybe<Scalars['Int']['input']>;
@@ -29497,300 +29754,6 @@ export type TeamConnection = {
29497
29754
  /** Identifies the total count of items in the connection. */
29498
29755
  totalCount: Scalars['Int']['output'];
29499
29756
  };
29500
- /** A team discussion. */
29501
- export type TeamDiscussion = Comment & Deletable & Node & Reactable & Subscribable & UniformResourceLocatable & Updatable & UpdatableComment & {
29502
- __typename: 'TeamDiscussion';
29503
- /** The actor who authored the comment. */
29504
- author?: Maybe<Actor>;
29505
- /**
29506
- * Author's association with the discussion's team.
29507
- * @deprecated 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.
29508
- */
29509
- authorAssociation: CommentAuthorAssociation;
29510
- /** The body as Markdown. */
29511
- body: Scalars['String']['output'];
29512
- /** The body rendered to HTML. */
29513
- bodyHTML: Scalars['HTML']['output'];
29514
- /** The body rendered to text. */
29515
- bodyText: Scalars['String']['output'];
29516
- /**
29517
- * Identifies the discussion body hash.
29518
- * @deprecated 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.
29519
- */
29520
- bodyVersion: Scalars['String']['output'];
29521
- /**
29522
- * A list of comments on this discussion.
29523
- * @deprecated 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.
29524
- */
29525
- comments: TeamDiscussionCommentConnection;
29526
- /**
29527
- * The HTTP path for discussion comments
29528
- * @deprecated 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.
29529
- */
29530
- commentsResourcePath: Scalars['URI']['output'];
29531
- /**
29532
- * The HTTP URL for discussion comments
29533
- * @deprecated 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.
29534
- */
29535
- commentsUrl: Scalars['URI']['output'];
29536
- /** Identifies the date and time when the object was created. */
29537
- createdAt: Scalars['DateTime']['output'];
29538
- /** Check if this comment was created via an email reply. */
29539
- createdViaEmail: Scalars['Boolean']['output'];
29540
- /** Identifies the primary key from the database. */
29541
- databaseId?: Maybe<Scalars['Int']['output']>;
29542
- /** The actor who edited the comment. */
29543
- editor?: Maybe<Actor>;
29544
- /** The Node ID of the TeamDiscussion object */
29545
- id: Scalars['ID']['output'];
29546
- /** Check if this comment was edited and includes an edit with the creation data */
29547
- includesCreatedEdit: Scalars['Boolean']['output'];
29548
- /**
29549
- * Whether or not the discussion is pinned.
29550
- * @deprecated 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.
29551
- */
29552
- isPinned: Scalars['Boolean']['output'];
29553
- /**
29554
- * Whether or not the discussion is only visible to team members and organization owners.
29555
- * @deprecated 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.
29556
- */
29557
- isPrivate: Scalars['Boolean']['output'];
29558
- /** The moment the editor made the last edit */
29559
- lastEditedAt?: Maybe<Scalars['DateTime']['output']>;
29560
- /**
29561
- * Identifies the discussion within its team.
29562
- * @deprecated 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.
29563
- */
29564
- number: Scalars['Int']['output'];
29565
- /** Identifies when the comment was published at. */
29566
- publishedAt?: Maybe<Scalars['DateTime']['output']>;
29567
- /** A list of reactions grouped by content left on the subject. */
29568
- reactionGroups?: Maybe<Array<ReactionGroup>>;
29569
- /** A list of Reactions left on the Issue. */
29570
- reactions: ReactionConnection;
29571
- /**
29572
- * The HTTP path for this discussion
29573
- * @deprecated 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.
29574
- */
29575
- resourcePath: Scalars['URI']['output'];
29576
- /**
29577
- * The team that defines the context of this discussion.
29578
- * @deprecated 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.
29579
- */
29580
- team: Team;
29581
- /**
29582
- * The title of the discussion
29583
- * @deprecated 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.
29584
- */
29585
- title: Scalars['String']['output'];
29586
- /** Identifies the date and time when the object was last updated. */
29587
- updatedAt: Scalars['DateTime']['output'];
29588
- /**
29589
- * The HTTP URL for this discussion
29590
- * @deprecated 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.
29591
- */
29592
- url: Scalars['URI']['output'];
29593
- /** A list of edits to this content. */
29594
- userContentEdits?: Maybe<UserContentEditConnection>;
29595
- /** Check if the current viewer can delete this object. */
29596
- viewerCanDelete: Scalars['Boolean']['output'];
29597
- /**
29598
- * Whether or not the current viewer can pin this discussion.
29599
- * @deprecated 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.
29600
- */
29601
- viewerCanPin: Scalars['Boolean']['output'];
29602
- /** Can user react to this subject */
29603
- viewerCanReact: Scalars['Boolean']['output'];
29604
- /** Check if the viewer is able to change their subscription status for the repository. */
29605
- viewerCanSubscribe: Scalars['Boolean']['output'];
29606
- /** Check if the current viewer can update this object. */
29607
- viewerCanUpdate: Scalars['Boolean']['output'];
29608
- /** Reasons why the current viewer can not update this comment. */
29609
- viewerCannotUpdateReasons: Array<CommentCannotUpdateReason>;
29610
- /** Did the viewer author this comment. */
29611
- viewerDidAuthor: Scalars['Boolean']['output'];
29612
- /** Identifies if the viewer is watching, not watching, or ignoring the subscribable entity. */
29613
- viewerSubscription?: Maybe<SubscriptionState>;
29614
- };
29615
- /** A team discussion. */
29616
- export type TeamDiscussionCommentsArgs = {
29617
- after?: InputMaybe<Scalars['String']['input']>;
29618
- before?: InputMaybe<Scalars['String']['input']>;
29619
- first?: InputMaybe<Scalars['Int']['input']>;
29620
- fromComment?: InputMaybe<Scalars['Int']['input']>;
29621
- last?: InputMaybe<Scalars['Int']['input']>;
29622
- orderBy?: InputMaybe<TeamDiscussionCommentOrder>;
29623
- };
29624
- /** A team discussion. */
29625
- export type TeamDiscussionReactionsArgs = {
29626
- after?: InputMaybe<Scalars['String']['input']>;
29627
- before?: InputMaybe<Scalars['String']['input']>;
29628
- content?: InputMaybe<ReactionContent>;
29629
- first?: InputMaybe<Scalars['Int']['input']>;
29630
- last?: InputMaybe<Scalars['Int']['input']>;
29631
- orderBy?: InputMaybe<ReactionOrder>;
29632
- };
29633
- /** A team discussion. */
29634
- export type TeamDiscussionUserContentEditsArgs = {
29635
- after?: InputMaybe<Scalars['String']['input']>;
29636
- before?: InputMaybe<Scalars['String']['input']>;
29637
- first?: InputMaybe<Scalars['Int']['input']>;
29638
- last?: InputMaybe<Scalars['Int']['input']>;
29639
- };
29640
- /** A comment on a team discussion. */
29641
- export type TeamDiscussionComment = Comment & Deletable & Node & Reactable & UniformResourceLocatable & Updatable & UpdatableComment & {
29642
- __typename: 'TeamDiscussionComment';
29643
- /** The actor who authored the comment. */
29644
- author?: Maybe<Actor>;
29645
- /**
29646
- * Author's association with the comment's team.
29647
- * @deprecated 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.
29648
- */
29649
- authorAssociation: CommentAuthorAssociation;
29650
- /** The body as Markdown. */
29651
- body: Scalars['String']['output'];
29652
- /** The body rendered to HTML. */
29653
- bodyHTML: Scalars['HTML']['output'];
29654
- /** The body rendered to text. */
29655
- bodyText: Scalars['String']['output'];
29656
- /**
29657
- * The current version of the body content.
29658
- * @deprecated 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.
29659
- */
29660
- bodyVersion: Scalars['String']['output'];
29661
- /** Identifies the date and time when the object was created. */
29662
- createdAt: Scalars['DateTime']['output'];
29663
- /** Check if this comment was created via an email reply. */
29664
- createdViaEmail: Scalars['Boolean']['output'];
29665
- /** Identifies the primary key from the database. */
29666
- databaseId?: Maybe<Scalars['Int']['output']>;
29667
- /**
29668
- * The discussion this comment is about.
29669
- * @deprecated 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.
29670
- */
29671
- discussion: TeamDiscussion;
29672
- /** The actor who edited the comment. */
29673
- editor?: Maybe<Actor>;
29674
- /** The Node ID of the TeamDiscussionComment object */
29675
- id: Scalars['ID']['output'];
29676
- /** Check if this comment was edited and includes an edit with the creation data */
29677
- includesCreatedEdit: Scalars['Boolean']['output'];
29678
- /** The moment the editor made the last edit */
29679
- lastEditedAt?: Maybe<Scalars['DateTime']['output']>;
29680
- /**
29681
- * Identifies the comment number.
29682
- * @deprecated 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.
29683
- */
29684
- number: Scalars['Int']['output'];
29685
- /** Identifies when the comment was published at. */
29686
- publishedAt?: Maybe<Scalars['DateTime']['output']>;
29687
- /** A list of reactions grouped by content left on the subject. */
29688
- reactionGroups?: Maybe<Array<ReactionGroup>>;
29689
- /** A list of Reactions left on the Issue. */
29690
- reactions: ReactionConnection;
29691
- /**
29692
- * The HTTP path for this comment
29693
- * @deprecated 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.
29694
- */
29695
- resourcePath: Scalars['URI']['output'];
29696
- /** Identifies the date and time when the object was last updated. */
29697
- updatedAt: Scalars['DateTime']['output'];
29698
- /**
29699
- * The HTTP URL for this comment
29700
- * @deprecated 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.
29701
- */
29702
- url: Scalars['URI']['output'];
29703
- /** A list of edits to this content. */
29704
- userContentEdits?: Maybe<UserContentEditConnection>;
29705
- /** Check if the current viewer can delete this object. */
29706
- viewerCanDelete: Scalars['Boolean']['output'];
29707
- /** Can user react to this subject */
29708
- viewerCanReact: Scalars['Boolean']['output'];
29709
- /** Check if the current viewer can update this object. */
29710
- viewerCanUpdate: Scalars['Boolean']['output'];
29711
- /** Reasons why the current viewer can not update this comment. */
29712
- viewerCannotUpdateReasons: Array<CommentCannotUpdateReason>;
29713
- /** Did the viewer author this comment. */
29714
- viewerDidAuthor: Scalars['Boolean']['output'];
29715
- };
29716
- /** A comment on a team discussion. */
29717
- export type TeamDiscussionCommentReactionsArgs = {
29718
- after?: InputMaybe<Scalars['String']['input']>;
29719
- before?: InputMaybe<Scalars['String']['input']>;
29720
- content?: InputMaybe<ReactionContent>;
29721
- first?: InputMaybe<Scalars['Int']['input']>;
29722
- last?: InputMaybe<Scalars['Int']['input']>;
29723
- orderBy?: InputMaybe<ReactionOrder>;
29724
- };
29725
- /** A comment on a team discussion. */
29726
- export type TeamDiscussionCommentUserContentEditsArgs = {
29727
- after?: InputMaybe<Scalars['String']['input']>;
29728
- before?: InputMaybe<Scalars['String']['input']>;
29729
- first?: InputMaybe<Scalars['Int']['input']>;
29730
- last?: InputMaybe<Scalars['Int']['input']>;
29731
- };
29732
- /** The connection type for TeamDiscussionComment. */
29733
- export type TeamDiscussionCommentConnection = {
29734
- __typename: 'TeamDiscussionCommentConnection';
29735
- /** A list of edges. */
29736
- edges?: Maybe<Array<Maybe<TeamDiscussionCommentEdge>>>;
29737
- /** A list of nodes. */
29738
- nodes?: Maybe<Array<Maybe<TeamDiscussionComment>>>;
29739
- /** Information to aid in pagination. */
29740
- pageInfo: PageInfo;
29741
- /** Identifies the total count of items in the connection. */
29742
- totalCount: Scalars['Int']['output'];
29743
- };
29744
- /** An edge in a connection. */
29745
- export type TeamDiscussionCommentEdge = {
29746
- __typename: 'TeamDiscussionCommentEdge';
29747
- /** A cursor for use in pagination. */
29748
- cursor: Scalars['String']['output'];
29749
- /** The item at the end of the edge. */
29750
- node?: Maybe<TeamDiscussionComment>;
29751
- };
29752
- /** Ways in which team discussion comment connections can be ordered. */
29753
- export type TeamDiscussionCommentOrder = {
29754
- /** The direction in which to order nodes. */
29755
- direction: OrderDirection;
29756
- /** The field by which to order nodes. */
29757
- field: TeamDiscussionCommentOrderField;
29758
- };
29759
- /** Properties by which team discussion comment connections can be ordered. */
29760
- export type TeamDiscussionCommentOrderField =
29761
- /** Allows sequential ordering of team discussion comments (which is equivalent to chronological ordering). */
29762
- 'NUMBER';
29763
- /** The connection type for TeamDiscussion. */
29764
- export type TeamDiscussionConnection = {
29765
- __typename: 'TeamDiscussionConnection';
29766
- /** A list of edges. */
29767
- edges?: Maybe<Array<Maybe<TeamDiscussionEdge>>>;
29768
- /** A list of nodes. */
29769
- nodes?: Maybe<Array<Maybe<TeamDiscussion>>>;
29770
- /** Information to aid in pagination. */
29771
- pageInfo: PageInfo;
29772
- /** Identifies the total count of items in the connection. */
29773
- totalCount: Scalars['Int']['output'];
29774
- };
29775
- /** An edge in a connection. */
29776
- export type TeamDiscussionEdge = {
29777
- __typename: 'TeamDiscussionEdge';
29778
- /** A cursor for use in pagination. */
29779
- cursor: Scalars['String']['output'];
29780
- /** The item at the end of the edge. */
29781
- node?: Maybe<TeamDiscussion>;
29782
- };
29783
- /** Ways in which team discussion connections can be ordered. */
29784
- export type TeamDiscussionOrder = {
29785
- /** The direction in which to order nodes. */
29786
- direction: OrderDirection;
29787
- /** The field by which to order nodes. */
29788
- field: TeamDiscussionOrderField;
29789
- };
29790
- /** Properties by which team discussion connections can be ordered. */
29791
- export type TeamDiscussionOrderField =
29792
- /** Allows chronological ordering of team discussions. */
29793
- 'CREATED_AT';
29794
29757
  /** An edge in a connection. */
29795
29758
  export type TeamEdge = {
29796
29759
  __typename: 'TeamEdge';
@@ -31226,25 +31189,6 @@ export type UpdateEnterpriseRepositoryProjectsSettingPayload = {
31226
31189
  /** A message confirming the result of updating the repository projects setting. */
31227
31190
  message?: Maybe<Scalars['String']['output']>;
31228
31191
  };
31229
- /** Autogenerated input type of UpdateEnterpriseTeamDiscussionsSetting */
31230
- export type UpdateEnterpriseTeamDiscussionsSettingInput = {
31231
- /** A unique identifier for the client performing the mutation. */
31232
- clientMutationId?: InputMaybe<Scalars['String']['input']>;
31233
- /** The ID of the enterprise on which to set the team discussions setting. */
31234
- enterpriseId: Scalars['ID']['input'];
31235
- /** The value for the team discussions setting on the enterprise. */
31236
- settingValue: EnterpriseEnabledDisabledSettingValue;
31237
- };
31238
- /** Autogenerated return type of UpdateEnterpriseTeamDiscussionsSetting. */
31239
- export type UpdateEnterpriseTeamDiscussionsSettingPayload = {
31240
- __typename: 'UpdateEnterpriseTeamDiscussionsSettingPayload';
31241
- /** A unique identifier for the client performing the mutation. */
31242
- clientMutationId?: Maybe<Scalars['String']['output']>;
31243
- /** The enterprise with the updated team discussions setting. */
31244
- enterprise?: Maybe<Enterprise>;
31245
- /** A message confirming the result of updating the team discussions setting. */
31246
- message?: Maybe<Scalars['String']['output']>;
31247
- };
31248
31192
  /** Autogenerated input type of UpdateEnterpriseTwoFactorAuthenticationDisallowedMethodsSetting */
31249
31193
  export type UpdateEnterpriseTwoFactorAuthenticationDisallowedMethodsSettingInput = {
31250
31194
  /** A unique identifier for the client performing the mutation. */
@@ -31359,6 +31303,23 @@ export type UpdateIpAllowListForInstalledAppsEnabledSettingPayload = {
31359
31303
  /** The IP allow list owner on which the setting was updated. */
31360
31304
  owner?: Maybe<IpAllowListOwner>;
31361
31305
  };
31306
+ /** Autogenerated input type of UpdateIpAllowListUserLevelEnforcementEnabledSetting */
31307
+ export type UpdateIpAllowListUserLevelEnforcementEnabledSettingInput = {
31308
+ /** A unique identifier for the client performing the mutation. */
31309
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
31310
+ /** The ID of the owner. */
31311
+ ownerId: Scalars['ID']['input'];
31312
+ /** The value for the IP allow list user-level enforcement enabled setting. */
31313
+ settingValue: IpAllowListUserLevelEnforcementEnabledSettingValue;
31314
+ };
31315
+ /** Autogenerated return type of UpdateIpAllowListUserLevelEnforcementEnabledSetting. */
31316
+ export type UpdateIpAllowListUserLevelEnforcementEnabledSettingPayload = {
31317
+ __typename: 'UpdateIpAllowListUserLevelEnforcementEnabledSettingPayload';
31318
+ /** A unique identifier for the client performing the mutation. */
31319
+ clientMutationId?: Maybe<Scalars['String']['output']>;
31320
+ /** The IP allow list owner on which the setting was updated. */
31321
+ owner?: Maybe<IpAllowListOwner>;
31322
+ };
31362
31323
  /** Autogenerated input type of UpdateIssueComment */
31363
31324
  export type UpdateIssueCommentInput = {
31364
31325
  /** The updated text of the comment. */
@@ -31378,7 +31339,9 @@ export type UpdateIssueCommentPayload = {
31378
31339
  };
31379
31340
  /** Autogenerated input type of UpdateIssue */
31380
31341
  export type UpdateIssueInput = {
31381
- /** An array of Node IDs of users for this issue. */
31342
+ /** Configuration for assigning an AI agent to this issue. */
31343
+ agentAssignment?: InputMaybe<AgentAssignmentInput>;
31344
+ /** An array of Node IDs of users or bots for this issue. */
31382
31345
  assigneeIds?: InputMaybe<Array<Scalars['ID']['input']>>;
31383
31346
  /** The body for the issue description. */
31384
31347
  body?: InputMaybe<Scalars['String']['input']>;
@@ -31912,6 +31875,33 @@ export type UpdateRefsPayload = {
31912
31875
  /** A unique identifier for the client performing the mutation. */
31913
31876
  clientMutationId?: Maybe<Scalars['String']['output']>;
31914
31877
  };
31878
+ /** Autogenerated input type of UpdateRepositoryCustomProperty */
31879
+ export type UpdateRepositoryCustomPropertyInput = {
31880
+ /** The updated allowed values for the custom property. */
31881
+ allowedValues?: InputMaybe<Array<Scalars['String']['input']>>;
31882
+ /** A unique identifier for the client performing the mutation. */
31883
+ clientMutationId?: InputMaybe<Scalars['String']['input']>;
31884
+ /** The updated default value for the custom property if the property is required. */
31885
+ defaultValue?: InputMaybe<Scalars['String']['input']>;
31886
+ /** The updated description of the custom property. */
31887
+ description?: InputMaybe<Scalars['String']['input']>;
31888
+ /** The regex pattern that the value of the custom property must match, if the `value_type` is `string`. */
31889
+ regex?: InputMaybe<Scalars['String']['input']>;
31890
+ /** The global relay id of the source of the custom property. */
31891
+ repositoryCustomPropertyId: Scalars['ID']['input'];
31892
+ /** Whether the updated custom property is required. */
31893
+ required?: InputMaybe<Scalars['Boolean']['input']>;
31894
+ /** The updated actors who can edit the values of the custom property. */
31895
+ valuesEditableBy?: InputMaybe<RepositoryCustomPropertyValuesEditableBy>;
31896
+ };
31897
+ /** Autogenerated return type of UpdateRepositoryCustomProperty. */
31898
+ export type UpdateRepositoryCustomPropertyPayload = {
31899
+ __typename: 'UpdateRepositoryCustomPropertyPayload';
31900
+ /** A unique identifier for the client performing the mutation. */
31901
+ clientMutationId?: Maybe<Scalars['String']['output']>;
31902
+ /** The updated repository custom property. */
31903
+ repositoryCustomProperty?: Maybe<RepositoryCustomProperty>;
31904
+ };
31915
31905
  /** Autogenerated input type of UpdateRepository */
31916
31906
  export type UpdateRepositoryInput = {
31917
31907
  /** A unique identifier for the client performing the mutation. */
@@ -32045,51 +32035,6 @@ export type UpdateSubscriptionPayload = {
32045
32035
  /** The input subscribable entity. */
32046
32036
  subscribable?: Maybe<Subscribable>;
32047
32037
  };
32048
- /** Autogenerated input type of UpdateTeamDiscussionComment */
32049
- export type UpdateTeamDiscussionCommentInput = {
32050
- /** The updated text of the comment. */
32051
- body: Scalars['String']['input'];
32052
- /** The current version of the body content. */
32053
- bodyVersion?: InputMaybe<Scalars['String']['input']>;
32054
- /** A unique identifier for the client performing the mutation. */
32055
- clientMutationId?: InputMaybe<Scalars['String']['input']>;
32056
- /** The ID of the comment to modify. */
32057
- id: Scalars['ID']['input'];
32058
- };
32059
- /** Autogenerated return type of UpdateTeamDiscussionComment. */
32060
- export type UpdateTeamDiscussionCommentPayload = {
32061
- __typename: 'UpdateTeamDiscussionCommentPayload';
32062
- /** A unique identifier for the client performing the mutation. */
32063
- clientMutationId?: Maybe<Scalars['String']['output']>;
32064
- /** The updated comment. */
32065
- teamDiscussionComment?: Maybe<TeamDiscussionComment>;
32066
- };
32067
- /** Autogenerated input type of UpdateTeamDiscussion */
32068
- export type UpdateTeamDiscussionInput = {
32069
- /** The updated text of the discussion. */
32070
- body?: InputMaybe<Scalars['String']['input']>;
32071
- /**
32072
- * The current version of the body content. If provided, this update operation
32073
- * will be rejected if the given version does not match the latest version on the server.
32074
- */
32075
- bodyVersion?: InputMaybe<Scalars['String']['input']>;
32076
- /** A unique identifier for the client performing the mutation. */
32077
- clientMutationId?: InputMaybe<Scalars['String']['input']>;
32078
- /** The Node ID of the discussion to modify. */
32079
- id: Scalars['ID']['input'];
32080
- /** If provided, sets the pinned state of the updated discussion. */
32081
- pinned?: InputMaybe<Scalars['Boolean']['input']>;
32082
- /** The updated title of the discussion. */
32083
- title?: InputMaybe<Scalars['String']['input']>;
32084
- };
32085
- /** Autogenerated return type of UpdateTeamDiscussion. */
32086
- export type UpdateTeamDiscussionPayload = {
32087
- __typename: 'UpdateTeamDiscussionPayload';
32088
- /** A unique identifier for the client performing the mutation. */
32089
- clientMutationId?: Maybe<Scalars['String']['output']>;
32090
- /** The updated discussion. */
32091
- teamDiscussion?: Maybe<TeamDiscussion>;
32092
- };
32093
32038
  /** Autogenerated input type of UpdateTeamReviewAssignment */
32094
32039
  export type UpdateTeamReviewAssignmentInput = {
32095
32040
  /** The algorithm to use for review assignment */
@@ -32206,7 +32151,7 @@ export type UpdateUserListsForItemPayload = {
32206
32151
  user?: Maybe<User>;
32207
32152
  };
32208
32153
  /** A user is an individual's account on GitHub that owns repositories and can make new content. */
32209
- export type User = Actor & Node & PackageOwner & ProfileOwner & ProjectOwner & ProjectV2Owner & ProjectV2Recent & RepositoryDiscussionAuthor & RepositoryDiscussionCommentAuthor & RepositoryOwner & Sponsorable & UniformResourceLocatable & {
32154
+ export type User = Actor & Agentic & Node & PackageOwner & ProfileOwner & ProjectOwner & ProjectV2Owner & ProjectV2Recent & RepositoryDiscussionAuthor & RepositoryDiscussionCommentAuthor & RepositoryOwner & Sponsorable & UniformResourceLocatable & {
32210
32155
  __typename: 'User';
32211
32156
  /** Determine if this repository owner has any items that can be pinned to their profile. */
32212
32157
  anyPinnableItems: Scalars['Boolean']['output'];
@@ -32409,6 +32354,12 @@ export type User = Actor & Node & PackageOwner & ProfileOwner & ProjectOwner & P
32409
32354
  viewerCanFollow: Scalars['Boolean']['output'];
32410
32355
  /** Whether or not the viewer is able to sponsor this user/organization. */
32411
32356
  viewerCanSponsor: Scalars['Boolean']['output'];
32357
+ /** Channel value for subscribing to live updates for session creations. */
32358
+ viewerCopilotAgentCreatesChannel?: Maybe<Scalars['String']['output']>;
32359
+ /** Channel value for subscribing to live updates for session log updates. */
32360
+ viewerCopilotAgentLogUpdatesChannel?: Maybe<Scalars['String']['output']>;
32361
+ /** Channel value for subscribing to live updates for session updates. */
32362
+ viewerCopilotAgentUpdatesChannel?: Maybe<Scalars['String']['output']>;
32412
32363
  /** Whether or not this user is followed by the viewer. Inverse of isFollowingViewer. */
32413
32364
  viewerIsFollowing: Scalars['Boolean']['output'];
32414
32365
  /** True if the viewer is sponsoring this user/organization. */