@tomsd/github-repo-js 0.4.1 → 0.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -912,7 +912,7 @@ export interface BranchProtectionRuleEdge {
912
912
  __typename: 'BranchProtectionRuleEdge';
913
913
  }
914
914
  /** Types that can represent a repository ruleset bypass actor. */
915
- export type BypassActor = (App | Team | User) & {
915
+ export type BypassActor = (App | EnterpriseTeam | Team | User) & {
916
916
  __isUnion?: true;
917
917
  };
918
918
  /** A user, team, or app who has the ability to bypass a force push requirement on a protected branch. */
@@ -1790,6 +1790,22 @@ export interface ConnectedEvent {
1790
1790
  subject: ReferencedSubject;
1791
1791
  __typename: 'ConnectedEvent';
1792
1792
  }
1793
+ /** The content warning for a repository */
1794
+ export interface ContentWarning {
1795
+ /** The content warning' category. E.g. 'mis_dis_information' */
1796
+ category: Scalars['String'];
1797
+ /** The content warning's custom sub category text. E.g. 'dangerous stuff.' */
1798
+ customSubCategory: (Scalars['String'] | null);
1799
+ /** The content warning's sub category. E.g. 'medical_scientific' */
1800
+ subCategory: (Scalars['String'] | null);
1801
+ /** The content warning's sub title. E.g. 'The information contained in this page has not been verified.' */
1802
+ subTitle: (Scalars['String'] | null);
1803
+ /** The content warning's title. E.g. 'This page may contain false or misleading information.' */
1804
+ title: Scalars['String'];
1805
+ /** The type of content warning. E.g. 'interstitial' */
1806
+ type: Scalars['String'];
1807
+ __typename: 'ContentWarning';
1808
+ }
1793
1809
  /** The Contributing Guidelines for a repository. */
1794
1810
  export interface ContributingGuidelines {
1795
1811
  /** The body of the Contributing Guidelines. */
@@ -3764,6 +3780,10 @@ export interface Enterprise {
3764
3780
  description: (Scalars['String'] | null);
3765
3781
  /** The description of the enterprise as HTML. */
3766
3782
  descriptionHTML: Scalars['HTML'];
3783
+ /** Find an enterprise team by its slug. */
3784
+ enterpriseTeam: (EnterpriseTeam | null);
3785
+ /** A list of enterprise teams in this enterprise. */
3786
+ enterpriseTeams: EnterpriseTeamConnection;
3767
3787
  /** The Node ID of the Enterprise object */
3768
3788
  id: Scalars['ID'];
3769
3789
  /** The location of the enterprise. */
@@ -3880,7 +3900,10 @@ export type EnterpriseAuditEntryData = (MembersCanDeleteReposClearAuditEntry | M
3880
3900
  export interface EnterpriseBillingInfo {
3881
3901
  /** The number of licenseable users/emails across the enterprise. */
3882
3902
  allLicensableUsersCount: Scalars['Int'];
3883
- /** The number of data packs used by all organizations owned by the enterprise. */
3903
+ /**
3904
+ * @deprecated LFS data packs have been removed. Always returns 0.
3905
+ * The number of data packs used by all organizations owned by the enterprise. Data packs are deprecated, always returns 0.
3906
+ */
3884
3907
  assetPacks: Scalars['Int'];
3885
3908
  /** The bandwidth quota in GB for all organizations owned by the enterprise. */
3886
3909
  bandwidthQuota: Scalars['Float'];
@@ -4449,6 +4472,108 @@ export interface EnterpriseServerUserAccountsUploadEdge {
4449
4472
  export type EnterpriseServerUserAccountsUploadOrderField = 'CREATED_AT';
4450
4473
  /** Synchronization state of the Enterprise Server user accounts upload */
4451
4474
  export type EnterpriseServerUserAccountsUploadSyncState = 'PENDING' | 'SUCCESS' | 'FAILURE';
4475
+ /** A team that belongs to an enterprise and can be assigned to multiple organizations. */
4476
+ export interface EnterpriseTeam {
4477
+ /** Organizations this team is assigned to. */
4478
+ assignedOrganizations: EnterpriseTeamAssignedOrganizationConnection;
4479
+ /** The human-readable, unique identifier for the enterprise and team. */
4480
+ combinedSlug: Scalars['String'];
4481
+ /** Identifies the date and time when the object was created. */
4482
+ createdAt: Scalars['DateTime'];
4483
+ /** The description of the team. */
4484
+ description: (Scalars['String'] | null);
4485
+ /** The enterprise this team belongs to. */
4486
+ enterprise: (Enterprise | null);
4487
+ /** A list of users who are members of this enterprise team. */
4488
+ enterpriseTeamMembers: EnterpriseTeamMemberConnection;
4489
+ /** Identifies the primary key from the database as a BigInt. */
4490
+ fullDatabaseId: (Scalars['BigInt'] | null);
4491
+ /** The Node ID of the EnterpriseTeam object */
4492
+ id: Scalars['ID'];
4493
+ /** Whether the viewer is a member of this team. */
4494
+ isViewerMember: Scalars['Boolean'];
4495
+ /** The name of the team. */
4496
+ name: Scalars['String'];
4497
+ /** Whether the team will receive notifications when mentioned. */
4498
+ notificationSetting: TeamNotificationSetting;
4499
+ /** How this team selects its associated organizations. */
4500
+ organizationSelectionType: EnterpriseTeamOrganizationSelectionType;
4501
+ /** The level of privacy the team has. */
4502
+ privacy: TeamPrivacy;
4503
+ /** The slug corresponding to the team. */
4504
+ slug: Scalars['String'];
4505
+ /** Identifies the date and time when the object was last updated. */
4506
+ updatedAt: Scalars['DateTime'];
4507
+ /** Whether the viewer can administer this team. */
4508
+ viewerCanAdminister: Scalars['Boolean'];
4509
+ __typename: 'EnterpriseTeam';
4510
+ }
4511
+ /** The connection type for Organization. */
4512
+ export interface EnterpriseTeamAssignedOrganizationConnection {
4513
+ /** A list of edges. */
4514
+ edges: ((EnterpriseTeamAssignedOrganizationEdge | null)[] | null);
4515
+ /** A list of nodes. */
4516
+ nodes: ((Organization | null)[] | null);
4517
+ /** Information to aid in pagination. */
4518
+ pageInfo: PageInfo;
4519
+ /** Identifies the total count of items in the connection. */
4520
+ totalCount: Scalars['Int'];
4521
+ __typename: 'EnterpriseTeamAssignedOrganizationConnection';
4522
+ }
4523
+ /** Represents an organization that an enterprise team is assigned to. */
4524
+ export interface EnterpriseTeamAssignedOrganizationEdge {
4525
+ /** A cursor for use in pagination. */
4526
+ cursor: Scalars['String'];
4527
+ node: (Organization | null);
4528
+ __typename: 'EnterpriseTeamAssignedOrganizationEdge';
4529
+ }
4530
+ /** A list of enterprise teams owned by the enterprise. */
4531
+ export interface EnterpriseTeamConnection {
4532
+ /** A list of edges. */
4533
+ edges: ((EnterpriseTeamEdge | null)[] | null);
4534
+ /** A list of nodes. */
4535
+ nodes: ((EnterpriseTeam | null)[] | null);
4536
+ /** Information to aid in pagination. */
4537
+ pageInfo: PageInfo;
4538
+ /** Identifies the total count of items in the connection. */
4539
+ totalCount: Scalars['Int'];
4540
+ __typename: 'EnterpriseTeamConnection';
4541
+ }
4542
+ /** An edge in a connection. */
4543
+ export interface EnterpriseTeamEdge {
4544
+ /** A cursor for use in pagination. */
4545
+ cursor: Scalars['String'];
4546
+ /** The item at the end of the edge. */
4547
+ node: (EnterpriseTeam | null);
4548
+ __typename: 'EnterpriseTeamEdge';
4549
+ }
4550
+ /** The connection type for User. */
4551
+ export interface EnterpriseTeamMemberConnection {
4552
+ /** A list of edges. */
4553
+ edges: ((EnterpriseTeamMemberEdge | null)[] | null);
4554
+ /** A list of nodes. */
4555
+ nodes: ((User | null)[] | null);
4556
+ /** Information to aid in pagination. */
4557
+ pageInfo: PageInfo;
4558
+ /** Identifies the total count of items in the connection. */
4559
+ totalCount: Scalars['Int'];
4560
+ __typename: 'EnterpriseTeamMemberConnection';
4561
+ }
4562
+ /** Represents a user who is a member of an enterprise team. */
4563
+ export interface EnterpriseTeamMemberEdge {
4564
+ /** A cursor for use in pagination. */
4565
+ cursor: Scalars['String'];
4566
+ node: (User | null);
4567
+ __typename: 'EnterpriseTeamMemberEdge';
4568
+ }
4569
+ /** Properties by which enterprise team member connections can be ordered. */
4570
+ export type EnterpriseTeamMemberOrderField = 'ID' | 'LOGIN' | 'CREATED_AT';
4571
+ /** Properties by which enterprise team connections can be ordered. */
4572
+ export type EnterpriseTeamOrderField = 'ID' | 'NAME' | 'CREATED_AT';
4573
+ /** Properties by which enterprise team organization connections can be ordered. */
4574
+ export type EnterpriseTeamOrganizationOrderField = 'ID' | 'LOGIN' | 'CREATED_AT';
4575
+ /** The possible organization selection types for an enterprise team. */
4576
+ export type EnterpriseTeamOrganizationSelectionType = 'DISABLED' | 'ALL' | 'SELECTED';
4452
4577
  /** An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations. */
4453
4578
  export interface EnterpriseUserAccount {
4454
4579
  /** A URL pointing to the enterprise user account's public avatar. */
@@ -5439,7 +5564,7 @@ export type IssueFieldCommon = (IssueFieldDate | IssueFieldNumber | IssueFieldSi
5439
5564
  __isUnion?: true;
5440
5565
  };
5441
5566
  /** The type of an issue field. */
5442
- export type IssueFieldDataType = 'TEXT' | 'SINGLE_SELECT' | 'DATE' | 'NUMBER';
5567
+ export type IssueFieldDataType = 'TEXT' | 'SINGLE_SELECT' | 'DATE' | 'NUMBER' | 'MULTI_SELECT';
5443
5568
  /** Represents a date issue field. */
5444
5569
  export interface IssueFieldDate {
5445
5570
  /** The issue field's creation timestamp. */
@@ -7656,7 +7781,7 @@ export interface Mutation {
7656
7781
  __typename: 'Mutation';
7657
7782
  }
7658
7783
  /** An object with an ID. */
7659
- export type Node = (AddedToMergeQueueEvent | AddedToProjectEvent | AddedToProjectV2Event | App | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | Blob | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | Bot | BranchProtectionRule | BypassForcePushAllowance | BypassPullRequestAllowance | CWE | CheckRun | CheckSuite | ClosedEvent | CodeOfConduct | CommentDeletedEvent | Commit | CommitComment | CommitCommentThread | Comparison | ConnectedEvent | ConvertToDraftEvent | ConvertedFromDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DependencyGraphManifest | DeployKey | DeployedEvent | Deployment | DeploymentEnvironmentChangedEvent | DeploymentReview | DeploymentStatus | DisconnectedEvent | Discussion | DiscussionCategory | DiscussionComment | DiscussionPoll | DiscussionPollOption | DraftIssue | Enterprise | EnterpriseAdministratorInvitation | EnterpriseIdentityProvider | EnterpriseMemberInvitation | EnterpriseRepositoryInfo | EnterpriseServerInstallation | EnterpriseServerUserAccount | EnterpriseServerUserAccountEmail | EnterpriseServerUserAccountsUpload | EnterpriseUserAccount | Environment | ExternalIdentity | Gist | GistComment | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IpAllowListEntry | Issue | IssueComment | IssueCommentPinnedEvent | IssueCommentUnpinnedEvent | IssueFieldAddedEvent | IssueFieldChangedEvent | IssueFieldDate | IssueFieldDateValue | IssueFieldNumber | IssueFieldNumberValue | IssueFieldRemovedEvent | IssueFieldSingleSelect | IssueFieldSingleSelectOption | IssueFieldSingleSelectValue | IssueFieldText | IssueFieldTextValue | IssueType | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | Label | LabeledEvent | Language | License | LinkedBranch | LockedEvent | Mannequin | MarkedAsDuplicateEvent | MarketplaceCategory | MarketplaceListing | MemberFeatureRequestNotification | MembersCanDeleteReposClearAuditEntry | MembersCanDeleteReposDisableAuditEntry | MembersCanDeleteReposEnableAuditEntry | MentionedEvent | MergeQueue | MergeQueueEntry | MergedEvent | MigrationSource | Milestone | MilestonedEvent | MovedColumnsInProjectEvent | OIDCProvider | OauthApplicationCreateAuditEntry | OrgAddBillingManagerAuditEntry | OrgAddMemberAuditEntry | OrgBlockUserAuditEntry | OrgConfigDisableCollaboratorsOnlyAuditEntry | OrgConfigEnableCollaboratorsOnlyAuditEntry | OrgCreateAuditEntry | OrgDisableOauthAppRestrictionsAuditEntry | OrgDisableSamlAuditEntry | OrgDisableTwoFactorRequirementAuditEntry | OrgEnableOauthAppRestrictionsAuditEntry | OrgEnableSamlAuditEntry | OrgEnableTwoFactorRequirementAuditEntry | OrgInviteMemberAuditEntry | OrgInviteToBusinessAuditEntry | OrgOauthAppAccessApprovedAuditEntry | OrgOauthAppAccessBlockedAuditEntry | OrgOauthAppAccessDeniedAuditEntry | OrgOauthAppAccessRequestedAuditEntry | OrgOauthAppAccessUnblockedAuditEntry | OrgRemoveBillingManagerAuditEntry | OrgRemoveMemberAuditEntry | OrgRemoveOutsideCollaboratorAuditEntry | OrgRestoreMemberAuditEntry | OrgUnblockUserAuditEntry | OrgUpdateDefaultRepositoryPermissionAuditEntry | OrgUpdateMemberAuditEntry | OrgUpdateMemberRepositoryCreationPermissionAuditEntry | OrgUpdateMemberRepositoryInvitationPermissionAuditEntry | Organization | OrganizationIdentityProvider | OrganizationInvitation | OrganizationMigration | Package | PackageFile | PackageTag | PackageVersion | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedDiscussion | PinnedEnvironment | PinnedEvent | PinnedIssue | PinnedIssueComment | PrivateRepositoryForkingDisableAuditEntry | PrivateRepositoryForkingEnableAuditEntry | Project | ProjectCard | ProjectColumn | ProjectV2 | ProjectV2Field | ProjectV2Item | ProjectV2ItemFieldDateValue | ProjectV2ItemFieldIterationValue | ProjectV2ItemFieldNumberValue | ProjectV2ItemFieldSingleSelectValue | ProjectV2ItemFieldTextValue | ProjectV2ItemStatusChangedEvent | ProjectV2IterationField | ProjectV2SingleSelectField | ProjectV2StatusUpdate | ProjectV2View | ProjectV2Workflow | PublicKey | PullRequest | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewComment | PullRequestReviewThread | PullRequestThread | Push | PushAllowance | Query | Reaction | ReadyForReviewEvent | Ref | ReferencedEvent | Release | ReleaseAsset | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RemovedFromProjectV2Event | RenamedTitleEvent | ReopenedEvent | RepoAccessAuditEntry | RepoAddMemberAuditEntry | RepoAddTopicAuditEntry | RepoArchivedAuditEntry | RepoChangeMergeSettingAuditEntry | RepoConfigDisableAnonymousGitAccessAuditEntry | RepoConfigDisableCollaboratorsOnlyAuditEntry | RepoConfigDisableContributorsOnlyAuditEntry | RepoConfigDisableSockpuppetDisallowedAuditEntry | RepoConfigEnableAnonymousGitAccessAuditEntry | RepoConfigEnableCollaboratorsOnlyAuditEntry | RepoConfigEnableContributorsOnlyAuditEntry | RepoConfigEnableSockpuppetDisallowedAuditEntry | RepoConfigLockAnonymousGitAccessAuditEntry | RepoConfigUnlockAnonymousGitAccessAuditEntry | RepoCreateAuditEntry | RepoDestroyAuditEntry | RepoRemoveMemberAuditEntry | RepoRemoveTopicAuditEntry | Repository | RepositoryCustomProperty | RepositoryInvitation | RepositoryMigration | RepositoryRule | RepositoryRuleset | RepositoryRulesetBypassActor | RepositoryTopic | RepositoryVisibilityChangeDisableAuditEntry | RepositoryVisibilityChangeEnableAuditEntry | RepositoryVulnerabilityAlert | ReviewDismissalAllowance | ReviewDismissedEvent | ReviewRequest | ReviewRequestRemovedEvent | ReviewRequestedEvent | SavedReply | SecurityAdvisory | SponsorsActivity | SponsorsListing | SponsorsListingFeaturedItem | SponsorsTier | Sponsorship | SponsorshipNewsletter | Status | StatusCheckRollup | StatusContext | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | Tag | Team | TeamAddMemberAuditEntry | TeamAddRepositoryAuditEntry | TeamChangeParentTeamAuditEntry | TeamRemoveMemberAuditEntry | TeamRemoveRepositoryAuditEntry | Topic | TransferredEvent | Tree | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | User | UserBlockedEvent | UserContentEdit | UserList | UserNamespaceRepository | UserStatus | VerifiableDomain | Workflow | WorkflowRun | WorkflowRunFile) & {
7784
+ export type Node = (AddedToMergeQueueEvent | AddedToProjectEvent | AddedToProjectV2Event | App | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | Blob | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | Bot | BranchProtectionRule | BypassForcePushAllowance | BypassPullRequestAllowance | CWE | CheckRun | CheckSuite | ClosedEvent | CodeOfConduct | CommentDeletedEvent | Commit | CommitComment | CommitCommentThread | Comparison | ConnectedEvent | ConvertToDraftEvent | ConvertedFromDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DependencyGraphManifest | DeployKey | DeployedEvent | Deployment | DeploymentEnvironmentChangedEvent | DeploymentReview | DeploymentStatus | DisconnectedEvent | Discussion | DiscussionCategory | DiscussionComment | DiscussionPoll | DiscussionPollOption | DraftIssue | Enterprise | EnterpriseAdministratorInvitation | EnterpriseIdentityProvider | EnterpriseMemberInvitation | EnterpriseRepositoryInfo | EnterpriseServerInstallation | EnterpriseServerUserAccount | EnterpriseServerUserAccountEmail | EnterpriseServerUserAccountsUpload | EnterpriseTeam | EnterpriseUserAccount | Environment | ExternalIdentity | Gist | GistComment | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IpAllowListEntry | Issue | IssueComment | IssueCommentPinnedEvent | IssueCommentUnpinnedEvent | IssueFieldAddedEvent | IssueFieldChangedEvent | IssueFieldDate | IssueFieldDateValue | IssueFieldNumber | IssueFieldNumberValue | IssueFieldRemovedEvent | IssueFieldSingleSelect | IssueFieldSingleSelectOption | IssueFieldSingleSelectValue | IssueFieldText | IssueFieldTextValue | IssueType | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | Label | LabeledEvent | Language | License | LinkedBranch | LockedEvent | Mannequin | MarkedAsDuplicateEvent | MarketplaceCategory | MarketplaceListing | MemberFeatureRequestNotification | MembersCanDeleteReposClearAuditEntry | MembersCanDeleteReposDisableAuditEntry | MembersCanDeleteReposEnableAuditEntry | MentionedEvent | MergeQueue | MergeQueueEntry | MergedEvent | MigrationSource | Milestone | MilestonedEvent | MovedColumnsInProjectEvent | OIDCProvider | OauthApplicationCreateAuditEntry | OrgAddBillingManagerAuditEntry | OrgAddMemberAuditEntry | OrgBlockUserAuditEntry | OrgConfigDisableCollaboratorsOnlyAuditEntry | OrgConfigEnableCollaboratorsOnlyAuditEntry | OrgCreateAuditEntry | OrgDisableOauthAppRestrictionsAuditEntry | OrgDisableSamlAuditEntry | OrgDisableTwoFactorRequirementAuditEntry | OrgEnableOauthAppRestrictionsAuditEntry | OrgEnableSamlAuditEntry | OrgEnableTwoFactorRequirementAuditEntry | OrgInviteMemberAuditEntry | OrgInviteToBusinessAuditEntry | OrgOauthAppAccessApprovedAuditEntry | OrgOauthAppAccessBlockedAuditEntry | OrgOauthAppAccessDeniedAuditEntry | OrgOauthAppAccessRequestedAuditEntry | OrgOauthAppAccessUnblockedAuditEntry | OrgRemoveBillingManagerAuditEntry | OrgRemoveMemberAuditEntry | OrgRemoveOutsideCollaboratorAuditEntry | OrgRestoreMemberAuditEntry | OrgUnblockUserAuditEntry | OrgUpdateDefaultRepositoryPermissionAuditEntry | OrgUpdateMemberAuditEntry | OrgUpdateMemberRepositoryCreationPermissionAuditEntry | OrgUpdateMemberRepositoryInvitationPermissionAuditEntry | Organization | OrganizationIdentityProvider | OrganizationInvitation | OrganizationMigration | Package | PackageFile | PackageTag | PackageVersion | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedDiscussion | PinnedEnvironment | PinnedEvent | PinnedIssue | PinnedIssueComment | PrivateRepositoryForkingDisableAuditEntry | PrivateRepositoryForkingEnableAuditEntry | Project | ProjectCard | ProjectColumn | ProjectV2 | ProjectV2Field | ProjectV2Item | ProjectV2ItemFieldDateValue | ProjectV2ItemFieldIterationValue | ProjectV2ItemFieldNumberValue | ProjectV2ItemFieldSingleSelectValue | ProjectV2ItemFieldTextValue | ProjectV2ItemStatusChangedEvent | ProjectV2IterationField | ProjectV2SingleSelectField | ProjectV2StatusUpdate | ProjectV2View | ProjectV2Workflow | PublicKey | PullRequest | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewComment | PullRequestReviewThread | PullRequestThread | Push | PushAllowance | Query | Reaction | ReadyForReviewEvent | Ref | ReferencedEvent | Release | ReleaseAsset | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RemovedFromProjectV2Event | RenamedTitleEvent | ReopenedEvent | RepoAccessAuditEntry | RepoAddMemberAuditEntry | RepoAddTopicAuditEntry | RepoArchivedAuditEntry | RepoChangeMergeSettingAuditEntry | RepoConfigDisableAnonymousGitAccessAuditEntry | RepoConfigDisableCollaboratorsOnlyAuditEntry | RepoConfigDisableContributorsOnlyAuditEntry | RepoConfigDisableSockpuppetDisallowedAuditEntry | RepoConfigEnableAnonymousGitAccessAuditEntry | RepoConfigEnableCollaboratorsOnlyAuditEntry | RepoConfigEnableContributorsOnlyAuditEntry | RepoConfigEnableSockpuppetDisallowedAuditEntry | RepoConfigLockAnonymousGitAccessAuditEntry | RepoConfigUnlockAnonymousGitAccessAuditEntry | RepoCreateAuditEntry | RepoDestroyAuditEntry | RepoRemoveMemberAuditEntry | RepoRemoveTopicAuditEntry | Repository | RepositoryCustomProperty | RepositoryInvitation | RepositoryMigration | RepositoryRule | RepositoryRuleset | RepositoryRulesetBypassActor | RepositoryTopic | RepositoryVisibilityChangeDisableAuditEntry | RepositoryVisibilityChangeEnableAuditEntry | RepositoryVulnerabilityAlert | ReviewDismissalAllowance | ReviewDismissedEvent | ReviewRequest | ReviewRequestRemovedEvent | ReviewRequestedEvent | SavedReply | SecurityAdvisory | SponsorsActivity | SponsorsListing | SponsorsListingFeaturedItem | SponsorsTier | Sponsorship | SponsorshipNewsletter | Status | StatusCheckRollup | StatusContext | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | Tag | Team | TeamAddMemberAuditEntry | TeamAddRepositoryAuditEntry | TeamChangeParentTeamAuditEntry | TeamRemoveMemberAuditEntry | TeamRemoveRepositoryAuditEntry | Topic | TransferredEvent | Tree | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | User | UserBlockedEvent | UserContentEdit | UserList | UserNamespaceRepository | UserStatus | VerifiableDomain | Workflow | WorkflowRun | WorkflowRunFile) & {
7660
7785
  __isUnion?: true;
7661
7786
  };
7662
7787
  /** The possible values for the notification restriction setting. */
@@ -11304,7 +11429,7 @@ export interface ParentIssueRemovedEvent {
11304
11429
  /** The possible types of patch statuses. */
11305
11430
  export type PatchStatus = 'ADDED' | 'DELETED' | 'RENAMED' | 'COPIED' | 'MODIFIED' | 'CHANGED';
11306
11431
  /** Types that can grant permissions on a repository to a user */
11307
- export type PermissionGranter = (Organization | Repository | Team) & {
11432
+ export type PermissionGranter = (EnterpriseTeam | Organization | Repository | Team) & {
11308
11433
  __isUnion?: true;
11309
11434
  };
11310
11435
  /** A level of permission and source for a user's access to a repository. */
@@ -12275,7 +12400,7 @@ export interface ProjectV2FieldEdge {
12275
12400
  /** Properties by which project v2 field connections can be ordered. */
12276
12401
  export type ProjectV2FieldOrderField = 'POSITION' | 'CREATED_AT' | 'NAME';
12277
12402
  /** The type of a project field. */
12278
- export type ProjectV2FieldType = 'ASSIGNEES' | 'LINKED_PULL_REQUESTS' | 'REVIEWERS' | 'LABELS' | 'MILESTONE' | 'REPOSITORY' | 'TITLE' | 'TEXT' | 'SINGLE_SELECT' | 'NUMBER' | 'DATE' | 'ITERATION' | 'TRACKS' | 'TRACKED_BY' | 'ISSUE_TYPE' | 'PARENT_ISSUE' | 'SUB_ISSUES_PROGRESS';
12403
+ export type ProjectV2FieldType = 'ASSIGNEES' | 'LINKED_PULL_REQUESTS' | 'REVIEWERS' | 'LABELS' | 'MILESTONE' | 'REPOSITORY' | 'TITLE' | 'TEXT' | 'SINGLE_SELECT' | 'NUMBER' | 'DATE' | 'ITERATION' | 'TRACKS' | 'TRACKED_BY' | 'ISSUE_TYPE' | 'PARENT_ISSUE' | 'SUB_ISSUES_PROGRESS' | 'CREATED' | 'UPDATED' | 'CLOSED';
12279
12404
  /** Possible issue field values for a Project item. */
12280
12405
  export type ProjectV2IssueFieldValues = (IssueFieldDateValue | IssueFieldNumberValue | IssueFieldSingleSelectValue | IssueFieldTextValue) & {
12281
12406
  __isUnion?: true;
@@ -16606,6 +16731,8 @@ export interface Repository {
16606
16731
  isUserConfigurationRepository: Scalars['Boolean'];
16607
16732
  /** Returns a single issue from the current repository by number. */
16608
16733
  issue: (Issue | null);
16734
+ /** A list of the repository's issue fields, inherited from the organization */
16735
+ issueFields: (IssueFieldsConnection | null);
16609
16736
  /** Returns a single issue-like object from the current repository by number. */
16610
16737
  issueOrPullRequest: (IssueOrPullRequest | null);
16611
16738
  /** Returns a list of issue templates associated to the repository */
@@ -16771,6 +16898,8 @@ export interface Repository {
16771
16898
  viewerCanSubscribe: Scalars['Boolean'];
16772
16899
  /** Indicates whether the viewer can update the topics of this repository. */
16773
16900
  viewerCanUpdateTopics: Scalars['Boolean'];
16901
+ /** The content warning for this repository for the viewer. */
16902
+ viewerContentWarning: (ContentWarning | null);
16774
16903
  /** The last commit email for the viewer. */
16775
16904
  viewerDefaultCommitEmail: (Scalars['String'] | null);
16776
16905
  /** The last used merge method by the viewer or the default for the repository. */
@@ -17179,7 +17308,7 @@ export interface RepositoryRuleEdge {
17179
17308
  /** Properties by which repository rule connections can be ordered. */
17180
17309
  export type RepositoryRuleOrderField = 'UPDATED_AT' | 'CREATED_AT' | 'TYPE';
17181
17310
  /** The rule types supported in rulesets */
17182
- export type RepositoryRuleType = 'CREATION' | 'UPDATE' | 'DELETION' | 'REQUIRED_LINEAR_HISTORY' | 'MERGE_QUEUE' | 'REQUIRED_REVIEW_THREAD_RESOLUTION' | 'REQUIRED_DEPLOYMENTS' | 'REQUIRED_SIGNATURES' | 'PULL_REQUEST' | 'REQUIRED_STATUS_CHECKS' | 'REQUIRED_WORKFLOW_STATUS_CHECKS' | 'NON_FAST_FORWARD' | 'AUTHORIZATION' | 'TAG' | 'MERGE_QUEUE_LOCKED_REF' | 'LOCK_BRANCH' | 'MAX_REF_UPDATES' | 'COMMIT_MESSAGE_PATTERN' | 'COMMIT_AUTHOR_EMAIL_PATTERN' | 'COMMITTER_EMAIL_PATTERN' | 'BRANCH_NAME_PATTERN' | 'TAG_NAME_PATTERN' | 'FILE_PATH_RESTRICTION' | 'MAX_FILE_PATH_LENGTH' | 'FILE_EXTENSION_RESTRICTION' | 'MAX_FILE_SIZE' | 'WORKFLOWS' | 'SECRET_SCANNING' | 'WORKFLOW_UPDATES' | 'CODE_SCANNING' | 'COPILOT_CODE_REVIEW';
17311
+ export type RepositoryRuleType = 'CREATION' | 'UPDATE' | 'DELETION' | 'REQUIRED_LINEAR_HISTORY' | 'MERGE_QUEUE' | 'REQUIRED_REVIEW_THREAD_RESOLUTION' | 'REQUIRED_DEPLOYMENTS' | 'REQUIRED_SIGNATURES' | 'PULL_REQUEST' | 'REQUIRED_STATUS_CHECKS' | 'REQUIRED_WORKFLOW_STATUS_CHECKS' | 'NON_FAST_FORWARD' | 'AUTHORIZATION' | 'TAG' | 'MERGE_QUEUE_LOCKED_REF' | 'LOCK_BRANCH' | 'MAX_REF_UPDATES' | 'COMMIT_MESSAGE_PATTERN' | 'COMMIT_AUTHOR_EMAIL_PATTERN' | 'COMMITTER_EMAIL_PATTERN' | 'BRANCH_NAME_PATTERN' | 'TAG_NAME_PATTERN' | 'WORKFLOWS' | 'WORKFLOW_UPDATES' | 'CODE_SCANNING' | 'COPILOT_CODE_REVIEW' | 'FILE_PATH_RESTRICTION' | 'MAX_FILE_PATH_LENGTH' | 'FILE_EXTENSION_RESTRICTION' | 'MAX_FILE_SIZE' | 'SECRET_SCANNING';
17183
17312
  /** A repository ruleset. */
17184
17313
  export interface RepositoryRuleset {
17185
17314
  /** The actors that can bypass this ruleset */
@@ -17607,7 +17736,7 @@ export interface RequestReviewsPayload {
17607
17736
  /** The possible states that can be requested when creating a check run. */
17608
17737
  export type RequestableCheckStatusState = 'QUEUED' | 'IN_PROGRESS' | 'COMPLETED' | 'WAITING' | 'PENDING';
17609
17738
  /** Types that can be requested reviewers. */
17610
- export type RequestedReviewer = (Bot | Mannequin | Team | User) & {
17739
+ export type RequestedReviewer = (Bot | EnterpriseTeam | Mannequin | Team | User) & {
17611
17740
  __isUnion?: true;
17612
17741
  };
17613
17742
  /** The connection type for RequestedReviewer. */
@@ -19771,7 +19900,7 @@ export type TeamRepositoryOrderField = 'CREATED_AT' | 'UPDATED_AT' | 'PUSHED_AT'
19771
19900
  /** The possible team review assignment algorithms */
19772
19901
  export type TeamReviewAssignmentAlgorithm = 'ROUND_ROBIN' | 'LOAD_BALANCE';
19773
19902
  /** Represents a team that can be requested to review a pull request. */
19774
- export type TeamReviewRequestable = (Team) & {
19903
+ export type TeamReviewRequestable = (EnterpriseTeam | Team) & {
19775
19904
  __isUnion?: true;
19776
19905
  };
19777
19906
  /** The role of a user on a team. */
@@ -21414,7 +21543,7 @@ export interface WorkflowsParameters {
21414
21543
  workflows: WorkflowFileReference[];
21415
21544
  __typename: 'WorkflowsParameters';
21416
21545
  }
21417
- export type _Entity = (AddedToMergeQueueEvent | AddedToProjectEvent | AddedToProjectV2Event | App | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | Blob | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | Bot | BranchProtectionRule | BypassForcePushAllowance | BypassPullRequestAllowance | CWE | CheckRun | CheckSuite | ClosedEvent | CodeOfConduct | CommentDeletedEvent | Commit | CommitComment | CommitCommentThread | Comparison | ConnectedEvent | ConvertToDraftEvent | ConvertedFromDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DependencyGraphManifest | DeployKey | DeployedEvent | Deployment | DeploymentEnvironmentChangedEvent | DeploymentReview | DeploymentStatus | DisconnectedEvent | Discussion | DiscussionCategory | DiscussionComment | DiscussionPoll | DiscussionPollOption | DraftIssue | Enterprise | EnterpriseAdministratorInvitation | EnterpriseIdentityProvider | EnterpriseMemberInvitation | EnterpriseRepositoryInfo | EnterpriseServerInstallation | EnterpriseServerUserAccount | EnterpriseServerUserAccountEmail | EnterpriseServerUserAccountsUpload | EnterpriseUserAccount | Environment | ExternalIdentity | Gist | GistComment | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IpAllowListEntry | Issue | IssueComment | IssueCommentPinnedEvent | IssueCommentUnpinnedEvent | IssueFieldAddedEvent | IssueFieldChangedEvent | IssueFieldDate | IssueFieldDateValue | IssueFieldNumber | IssueFieldNumberValue | IssueFieldRemovedEvent | IssueFieldSingleSelect | IssueFieldSingleSelectOption | IssueFieldSingleSelectValue | IssueFieldText | IssueFieldTextValue | IssueType | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | Label | LabeledEvent | Language | License | LinkedBranch | LockedEvent | Mannequin | MarkedAsDuplicateEvent | MarketplaceCategory | MarketplaceListing | MemberFeatureRequestNotification | MembersCanDeleteReposClearAuditEntry | MembersCanDeleteReposDisableAuditEntry | MembersCanDeleteReposEnableAuditEntry | MentionedEvent | MergeQueue | MergeQueueEntry | MergedEvent | MigrationSource | Milestone | MilestonedEvent | MovedColumnsInProjectEvent | OIDCProvider | OauthApplicationCreateAuditEntry | OrgAddBillingManagerAuditEntry | OrgAddMemberAuditEntry | OrgBlockUserAuditEntry | OrgConfigDisableCollaboratorsOnlyAuditEntry | OrgConfigEnableCollaboratorsOnlyAuditEntry | OrgCreateAuditEntry | OrgDisableOauthAppRestrictionsAuditEntry | OrgDisableSamlAuditEntry | OrgDisableTwoFactorRequirementAuditEntry | OrgEnableOauthAppRestrictionsAuditEntry | OrgEnableSamlAuditEntry | OrgEnableTwoFactorRequirementAuditEntry | OrgInviteMemberAuditEntry | OrgInviteToBusinessAuditEntry | OrgOauthAppAccessApprovedAuditEntry | OrgOauthAppAccessBlockedAuditEntry | OrgOauthAppAccessDeniedAuditEntry | OrgOauthAppAccessRequestedAuditEntry | OrgOauthAppAccessUnblockedAuditEntry | OrgRemoveBillingManagerAuditEntry | OrgRemoveMemberAuditEntry | OrgRemoveOutsideCollaboratorAuditEntry | OrgRestoreMemberAuditEntry | OrgUnblockUserAuditEntry | OrgUpdateDefaultRepositoryPermissionAuditEntry | OrgUpdateMemberAuditEntry | OrgUpdateMemberRepositoryCreationPermissionAuditEntry | OrgUpdateMemberRepositoryInvitationPermissionAuditEntry | Organization | OrganizationIdentityProvider | OrganizationInvitation | Package | PackageFile | PackageTag | PackageVersion | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedDiscussion | PinnedEnvironment | PinnedEvent | PinnedIssue | PinnedIssueComment | PrivateRepositoryForkingDisableAuditEntry | PrivateRepositoryForkingEnableAuditEntry | Project | ProjectCard | ProjectColumn | ProjectV2 | ProjectV2Field | ProjectV2Item | ProjectV2ItemFieldDateValue | ProjectV2ItemFieldIterationValue | ProjectV2ItemFieldNumberValue | ProjectV2ItemFieldSingleSelectValue | ProjectV2ItemFieldTextValue | ProjectV2ItemStatusChangedEvent | ProjectV2IterationField | ProjectV2SingleSelectField | ProjectV2StatusUpdate | ProjectV2View | ProjectV2Workflow | PublicKey | PullRequest | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewComment | PullRequestReviewThread | PullRequestThread | Push | PushAllowance | Query | Reaction | ReadyForReviewEvent | Ref | ReferencedEvent | Release | ReleaseAsset | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RemovedFromProjectV2Event | RenamedTitleEvent | ReopenedEvent | RepoAccessAuditEntry | RepoAddMemberAuditEntry | RepoAddTopicAuditEntry | RepoArchivedAuditEntry | RepoChangeMergeSettingAuditEntry | RepoConfigDisableAnonymousGitAccessAuditEntry | RepoConfigDisableCollaboratorsOnlyAuditEntry | RepoConfigDisableContributorsOnlyAuditEntry | RepoConfigDisableSockpuppetDisallowedAuditEntry | RepoConfigEnableAnonymousGitAccessAuditEntry | RepoConfigEnableCollaboratorsOnlyAuditEntry | RepoConfigEnableContributorsOnlyAuditEntry | RepoConfigEnableSockpuppetDisallowedAuditEntry | RepoConfigLockAnonymousGitAccessAuditEntry | RepoConfigUnlockAnonymousGitAccessAuditEntry | RepoCreateAuditEntry | RepoDestroyAuditEntry | RepoRemoveMemberAuditEntry | RepoRemoveTopicAuditEntry | Repository | RepositoryCustomProperty | RepositoryInvitation | RepositoryMigration | RepositoryRule | RepositoryRuleset | RepositoryRulesetBypassActor | RepositoryTopic | RepositoryVisibilityChangeDisableAuditEntry | RepositoryVisibilityChangeEnableAuditEntry | RepositoryVulnerabilityAlert | ReviewDismissalAllowance | ReviewDismissedEvent | ReviewRequest | ReviewRequestRemovedEvent | ReviewRequestedEvent | SavedReply | SecurityAdvisory | SponsorsActivity | SponsorsListing | SponsorsListingFeaturedItem | SponsorsTier | Sponsorship | SponsorshipNewsletter | Status | StatusCheckRollup | StatusContext | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | Team | TeamAddMemberAuditEntry | TeamAddRepositoryAuditEntry | TeamChangeParentTeamAuditEntry | TeamRemoveMemberAuditEntry | TeamRemoveRepositoryAuditEntry | Topic | TransferredEvent | Tree | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | User | UserBlockedEvent | UserContentEdit | UserList | UserNamespaceRepository | UserStatus | VerifiableDomain | Workflow | WorkflowRun | WorkflowRunFile) & {
21546
+ export type _Entity = (AddedToMergeQueueEvent | AddedToProjectEvent | AddedToProjectV2Event | App | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | Blob | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | Bot | BranchProtectionRule | BypassForcePushAllowance | BypassPullRequestAllowance | CWE | CheckRun | CheckSuite | ClosedEvent | CodeOfConduct | CommentDeletedEvent | Commit | CommitComment | CommitCommentThread | Comparison | ConnectedEvent | ConvertToDraftEvent | ConvertedFromDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DependencyGraphManifest | DeployKey | DeployedEvent | Deployment | DeploymentEnvironmentChangedEvent | DeploymentReview | DeploymentStatus | DisconnectedEvent | Discussion | DiscussionCategory | DiscussionComment | DiscussionPoll | DiscussionPollOption | DraftIssue | Enterprise | EnterpriseAdministratorInvitation | EnterpriseIdentityProvider | EnterpriseMemberInvitation | EnterpriseRepositoryInfo | EnterpriseServerInstallation | EnterpriseServerUserAccount | EnterpriseServerUserAccountEmail | EnterpriseServerUserAccountsUpload | EnterpriseTeam | EnterpriseUserAccount | Environment | ExternalIdentity | Gist | GistComment | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IpAllowListEntry | Issue | IssueComment | IssueCommentPinnedEvent | IssueCommentUnpinnedEvent | IssueFieldAddedEvent | IssueFieldChangedEvent | IssueFieldDate | IssueFieldDateValue | IssueFieldNumber | IssueFieldNumberValue | IssueFieldRemovedEvent | IssueFieldSingleSelect | IssueFieldSingleSelectOption | IssueFieldSingleSelectValue | IssueFieldText | IssueFieldTextValue | IssueType | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | Label | LabeledEvent | Language | License | LinkedBranch | LockedEvent | Mannequin | MarkedAsDuplicateEvent | MarketplaceCategory | MarketplaceListing | MemberFeatureRequestNotification | MembersCanDeleteReposClearAuditEntry | MembersCanDeleteReposDisableAuditEntry | MembersCanDeleteReposEnableAuditEntry | MentionedEvent | MergeQueue | MergeQueueEntry | MergedEvent | MigrationSource | Milestone | MilestonedEvent | MovedColumnsInProjectEvent | OIDCProvider | OauthApplicationCreateAuditEntry | OrgAddBillingManagerAuditEntry | OrgAddMemberAuditEntry | OrgBlockUserAuditEntry | OrgConfigDisableCollaboratorsOnlyAuditEntry | OrgConfigEnableCollaboratorsOnlyAuditEntry | OrgCreateAuditEntry | OrgDisableOauthAppRestrictionsAuditEntry | OrgDisableSamlAuditEntry | OrgDisableTwoFactorRequirementAuditEntry | OrgEnableOauthAppRestrictionsAuditEntry | OrgEnableSamlAuditEntry | OrgEnableTwoFactorRequirementAuditEntry | OrgInviteMemberAuditEntry | OrgInviteToBusinessAuditEntry | OrgOauthAppAccessApprovedAuditEntry | OrgOauthAppAccessBlockedAuditEntry | OrgOauthAppAccessDeniedAuditEntry | OrgOauthAppAccessRequestedAuditEntry | OrgOauthAppAccessUnblockedAuditEntry | OrgRemoveBillingManagerAuditEntry | OrgRemoveMemberAuditEntry | OrgRemoveOutsideCollaboratorAuditEntry | OrgRestoreMemberAuditEntry | OrgUnblockUserAuditEntry | OrgUpdateDefaultRepositoryPermissionAuditEntry | OrgUpdateMemberAuditEntry | OrgUpdateMemberRepositoryCreationPermissionAuditEntry | OrgUpdateMemberRepositoryInvitationPermissionAuditEntry | Organization | OrganizationIdentityProvider | OrganizationInvitation | Package | PackageFile | PackageTag | PackageVersion | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedDiscussion | PinnedEnvironment | PinnedEvent | PinnedIssue | PinnedIssueComment | PrivateRepositoryForkingDisableAuditEntry | PrivateRepositoryForkingEnableAuditEntry | Project | ProjectCard | ProjectColumn | ProjectV2 | ProjectV2Field | ProjectV2Item | ProjectV2ItemFieldDateValue | ProjectV2ItemFieldIterationValue | ProjectV2ItemFieldNumberValue | ProjectV2ItemFieldSingleSelectValue | ProjectV2ItemFieldTextValue | ProjectV2ItemStatusChangedEvent | ProjectV2IterationField | ProjectV2SingleSelectField | ProjectV2StatusUpdate | ProjectV2View | ProjectV2Workflow | PublicKey | PullRequest | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewComment | PullRequestReviewThread | PullRequestThread | Push | PushAllowance | Query | Reaction | ReadyForReviewEvent | Ref | ReferencedEvent | Release | ReleaseAsset | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RemovedFromProjectV2Event | RenamedTitleEvent | ReopenedEvent | RepoAccessAuditEntry | RepoAddMemberAuditEntry | RepoAddTopicAuditEntry | RepoArchivedAuditEntry | RepoChangeMergeSettingAuditEntry | RepoConfigDisableAnonymousGitAccessAuditEntry | RepoConfigDisableCollaboratorsOnlyAuditEntry | RepoConfigDisableContributorsOnlyAuditEntry | RepoConfigDisableSockpuppetDisallowedAuditEntry | RepoConfigEnableAnonymousGitAccessAuditEntry | RepoConfigEnableCollaboratorsOnlyAuditEntry | RepoConfigEnableContributorsOnlyAuditEntry | RepoConfigEnableSockpuppetDisallowedAuditEntry | RepoConfigLockAnonymousGitAccessAuditEntry | RepoConfigUnlockAnonymousGitAccessAuditEntry | RepoCreateAuditEntry | RepoDestroyAuditEntry | RepoRemoveMemberAuditEntry | RepoRemoveTopicAuditEntry | Repository | RepositoryCustomProperty | RepositoryInvitation | RepositoryMigration | RepositoryRule | RepositoryRuleset | RepositoryRulesetBypassActor | RepositoryTopic | RepositoryVisibilityChangeDisableAuditEntry | RepositoryVisibilityChangeEnableAuditEntry | RepositoryVulnerabilityAlert | ReviewDismissalAllowance | ReviewDismissedEvent | ReviewRequest | ReviewRequestRemovedEvent | ReviewRequestedEvent | SavedReply | SecurityAdvisory | SponsorsActivity | SponsorsListing | SponsorsListingFeaturedItem | SponsorsTier | Sponsorship | SponsorshipNewsletter | Status | StatusCheckRollup | StatusContext | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | Team | TeamAddMemberAuditEntry | TeamAddRepositoryAuditEntry | TeamChangeParentTeamAuditEntry | TeamRemoveMemberAuditEntry | TeamRemoveRepositoryAuditEntry | Topic | TransferredEvent | Tree | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | User | UserBlockedEvent | UserContentEdit | UserList | UserNamespaceRepository | UserStatus | VerifiableDomain | Workflow | WorkflowRun | WorkflowRunFile) & {
21418
21547
  __isUnion?: true;
21419
21548
  };
21420
21549
  /** Autogenerated input type of AbortQueuedMigrations */
@@ -23150,12 +23279,13 @@ export interface BulkSponsorship {
23150
23279
  /** Types that can represent a repository ruleset bypass actor. */
23151
23280
  export interface BypassActorGenqlSelection {
23152
23281
  on_App?: AppGenqlSelection;
23282
+ on_EnterpriseTeam?: EnterpriseTeamGenqlSelection;
23153
23283
  on_Team?: TeamGenqlSelection;
23154
23284
  on_User?: UserGenqlSelection;
23155
23285
  on_Node?: NodeGenqlSelection;
23286
+ on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
23156
23287
  on_MemberStatusable?: MemberStatusableGenqlSelection;
23157
23288
  on_Subscribable?: SubscribableGenqlSelection;
23158
- on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
23159
23289
  on_Actor?: ActorGenqlSelection;
23160
23290
  on_Agentic?: AgenticGenqlSelection;
23161
23291
  on_PackageOwner?: PackageOwnerGenqlSelection;
@@ -24727,6 +24857,23 @@ export interface ConnectedEventGenqlSelection {
24727
24857
  __typename?: boolean | number;
24728
24858
  __scalar?: boolean | number;
24729
24859
  }
24860
+ /** The content warning for a repository */
24861
+ export interface ContentWarningGenqlSelection {
24862
+ /** The content warning' category. E.g. 'mis_dis_information' */
24863
+ category?: boolean | number;
24864
+ /** The content warning's custom sub category text. E.g. 'dangerous stuff.' */
24865
+ customSubCategory?: boolean | number;
24866
+ /** The content warning's sub category. E.g. 'medical_scientific' */
24867
+ subCategory?: boolean | number;
24868
+ /** The content warning's sub title. E.g. 'The information contained in this page has not been verified.' */
24869
+ subTitle?: boolean | number;
24870
+ /** The content warning's title. E.g. 'This page may contain false or misleading information.' */
24871
+ title?: boolean | number;
24872
+ /** The type of content warning. E.g. 'interstitial' */
24873
+ type?: boolean | number;
24874
+ __typename?: boolean | number;
24875
+ __scalar?: boolean | number;
24876
+ }
24730
24877
  /** The Contributing Guidelines for a repository. */
24731
24878
  export interface ContributingGuidelinesGenqlSelection {
24732
24879
  /** The body of the Contributing Guidelines. */
@@ -28212,6 +28359,30 @@ export interface EnterpriseGenqlSelection {
28212
28359
  description?: boolean | number;
28213
28360
  /** The description of the enterprise as HTML. */
28214
28361
  descriptionHTML?: boolean | number;
28362
+ /** Find an enterprise team by its slug. */
28363
+ enterpriseTeam?: (EnterpriseTeamGenqlSelection & {
28364
+ __args: {
28365
+ /** The slug of the enterprise team to find. */
28366
+ slug: Scalars['String'];
28367
+ };
28368
+ });
28369
+ /** A list of enterprise teams in this enterprise. */
28370
+ enterpriseTeams?: (EnterpriseTeamConnectionGenqlSelection & {
28371
+ __args?: {
28372
+ /** The search string to look for. */
28373
+ query?: (Scalars['String'] | null);
28374
+ /** Ordering options for enterprise teams returned from the connection. */
28375
+ orderBy?: (EnterpriseTeamOrder | null);
28376
+ /** Returns the elements in the list that come after the specified cursor. */
28377
+ after?: (Scalars['String'] | null);
28378
+ /** Returns the elements in the list that come before the specified cursor. */
28379
+ before?: (Scalars['String'] | null);
28380
+ /** Returns the first _n_ elements from the list. */
28381
+ first?: (Scalars['Int'] | null);
28382
+ /** Returns the last _n_ elements from the list. */
28383
+ last?: (Scalars['Int'] | null);
28384
+ };
28385
+ });
28215
28386
  /** The Node ID of the Enterprise object */
28216
28387
  id?: boolean | number;
28217
28388
  /** The location of the enterprise. */
@@ -28446,7 +28617,10 @@ export interface EnterpriseAuditEntryDataGenqlSelection {
28446
28617
  export interface EnterpriseBillingInfoGenqlSelection {
28447
28618
  /** The number of licenseable users/emails across the enterprise. */
28448
28619
  allLicensableUsersCount?: boolean | number;
28449
- /** The number of data packs used by all organizations owned by the enterprise. */
28620
+ /**
28621
+ * @deprecated LFS data packs have been removed. Always returns 0.
28622
+ * The number of data packs used by all organizations owned by the enterprise. Data packs are deprecated, always returns 0.
28623
+ */
28450
28624
  assetPacks?: boolean | number;
28451
28625
  /** The bandwidth quota in GB for all organizations owned by the enterprise. */
28452
28626
  bandwidthQuota?: boolean | number;
@@ -29571,6 +29745,156 @@ export interface EnterpriseServerUserAccountsUploadOrder {
29571
29745
  /** The ordering direction. */
29572
29746
  direction: OrderDirection;
29573
29747
  }
29748
+ /** A team that belongs to an enterprise and can be assigned to multiple organizations. */
29749
+ export interface EnterpriseTeamGenqlSelection {
29750
+ /** Organizations this team is assigned to. */
29751
+ assignedOrganizations?: (EnterpriseTeamAssignedOrganizationConnectionGenqlSelection & {
29752
+ __args?: {
29753
+ /** Returns the elements in the list that come after the specified cursor. */
29754
+ after?: (Scalars['String'] | null);
29755
+ /** Returns the elements in the list that come before the specified cursor. */
29756
+ before?: (Scalars['String'] | null);
29757
+ /** Returns the first _n_ elements from the list. */
29758
+ first?: (Scalars['Int'] | null);
29759
+ /** Returns the last _n_ elements from the list. */
29760
+ last?: (Scalars['Int'] | null);
29761
+ /** Ordering options for organizations returned from the connection. */
29762
+ orderBy?: (EnterpriseTeamOrganizationOrder | null);
29763
+ };
29764
+ });
29765
+ /** The human-readable, unique identifier for the enterprise and team. */
29766
+ combinedSlug?: boolean | number;
29767
+ /** Identifies the date and time when the object was created. */
29768
+ createdAt?: boolean | number;
29769
+ /** The description of the team. */
29770
+ description?: boolean | number;
29771
+ /** The enterprise this team belongs to. */
29772
+ enterprise?: EnterpriseGenqlSelection;
29773
+ /** A list of users who are members of this enterprise team. */
29774
+ enterpriseTeamMembers?: (EnterpriseTeamMemberConnectionGenqlSelection & {
29775
+ __args?: {
29776
+ /** Returns the elements in the list that come after the specified cursor. */
29777
+ after?: (Scalars['String'] | null);
29778
+ /** Returns the elements in the list that come before the specified cursor. */
29779
+ before?: (Scalars['String'] | null);
29780
+ /** Returns the first _n_ elements from the list. */
29781
+ first?: (Scalars['Int'] | null);
29782
+ /** Returns the last _n_ elements from the list. */
29783
+ last?: (Scalars['Int'] | null);
29784
+ /** The search string to look for. */
29785
+ query?: (Scalars['String'] | null);
29786
+ /** Order for the connection. */
29787
+ orderBy?: (EnterpriseTeamMemberOrder | null);
29788
+ };
29789
+ });
29790
+ /** Identifies the primary key from the database as a BigInt. */
29791
+ fullDatabaseId?: boolean | number;
29792
+ /** The Node ID of the EnterpriseTeam object */
29793
+ id?: boolean | number;
29794
+ /** Whether the viewer is a member of this team. */
29795
+ isViewerMember?: boolean | number;
29796
+ /** The name of the team. */
29797
+ name?: boolean | number;
29798
+ /** Whether the team will receive notifications when mentioned. */
29799
+ notificationSetting?: boolean | number;
29800
+ /** How this team selects its associated organizations. */
29801
+ organizationSelectionType?: boolean | number;
29802
+ /** The level of privacy the team has. */
29803
+ privacy?: boolean | number;
29804
+ /** The slug corresponding to the team. */
29805
+ slug?: boolean | number;
29806
+ /** Identifies the date and time when the object was last updated. */
29807
+ updatedAt?: boolean | number;
29808
+ /** Whether the viewer can administer this team. */
29809
+ viewerCanAdminister?: boolean | number;
29810
+ __typename?: boolean | number;
29811
+ __scalar?: boolean | number;
29812
+ }
29813
+ /** The connection type for Organization. */
29814
+ export interface EnterpriseTeamAssignedOrganizationConnectionGenqlSelection {
29815
+ /** A list of edges. */
29816
+ edges?: EnterpriseTeamAssignedOrganizationEdgeGenqlSelection;
29817
+ /** A list of nodes. */
29818
+ nodes?: OrganizationGenqlSelection;
29819
+ /** Information to aid in pagination. */
29820
+ pageInfo?: PageInfoGenqlSelection;
29821
+ /** Identifies the total count of items in the connection. */
29822
+ totalCount?: boolean | number;
29823
+ __typename?: boolean | number;
29824
+ __scalar?: boolean | number;
29825
+ }
29826
+ /** Represents an organization that an enterprise team is assigned to. */
29827
+ export interface EnterpriseTeamAssignedOrganizationEdgeGenqlSelection {
29828
+ /** A cursor for use in pagination. */
29829
+ cursor?: boolean | number;
29830
+ node?: OrganizationGenqlSelection;
29831
+ __typename?: boolean | number;
29832
+ __scalar?: boolean | number;
29833
+ }
29834
+ /** A list of enterprise teams owned by the enterprise. */
29835
+ export interface EnterpriseTeamConnectionGenqlSelection {
29836
+ /** A list of edges. */
29837
+ edges?: EnterpriseTeamEdgeGenqlSelection;
29838
+ /** A list of nodes. */
29839
+ nodes?: EnterpriseTeamGenqlSelection;
29840
+ /** Information to aid in pagination. */
29841
+ pageInfo?: PageInfoGenqlSelection;
29842
+ /** Identifies the total count of items in the connection. */
29843
+ totalCount?: boolean | number;
29844
+ __typename?: boolean | number;
29845
+ __scalar?: boolean | number;
29846
+ }
29847
+ /** An edge in a connection. */
29848
+ export interface EnterpriseTeamEdgeGenqlSelection {
29849
+ /** A cursor for use in pagination. */
29850
+ cursor?: boolean | number;
29851
+ /** The item at the end of the edge. */
29852
+ node?: EnterpriseTeamGenqlSelection;
29853
+ __typename?: boolean | number;
29854
+ __scalar?: boolean | number;
29855
+ }
29856
+ /** The connection type for User. */
29857
+ export interface EnterpriseTeamMemberConnectionGenqlSelection {
29858
+ /** A list of edges. */
29859
+ edges?: EnterpriseTeamMemberEdgeGenqlSelection;
29860
+ /** A list of nodes. */
29861
+ nodes?: UserGenqlSelection;
29862
+ /** Information to aid in pagination. */
29863
+ pageInfo?: PageInfoGenqlSelection;
29864
+ /** Identifies the total count of items in the connection. */
29865
+ totalCount?: boolean | number;
29866
+ __typename?: boolean | number;
29867
+ __scalar?: boolean | number;
29868
+ }
29869
+ /** Represents a user who is a member of an enterprise team. */
29870
+ export interface EnterpriseTeamMemberEdgeGenqlSelection {
29871
+ /** A cursor for use in pagination. */
29872
+ cursor?: boolean | number;
29873
+ node?: UserGenqlSelection;
29874
+ __typename?: boolean | number;
29875
+ __scalar?: boolean | number;
29876
+ }
29877
+ /** Ordering options for enterprise team member connections. */
29878
+ export interface EnterpriseTeamMemberOrder {
29879
+ /** The field to order enterprise team members by. */
29880
+ field: EnterpriseTeamMemberOrderField;
29881
+ /** The ordering direction. */
29882
+ direction: OrderDirection;
29883
+ }
29884
+ /** Ordering options for enterprise team connections. */
29885
+ export interface EnterpriseTeamOrder {
29886
+ /** The field to order enterprise teams by. */
29887
+ field: EnterpriseTeamOrderField;
29888
+ /** The ordering direction. */
29889
+ direction: OrderDirection;
29890
+ }
29891
+ /** Ordering options for enterprise team organization connections. */
29892
+ export interface EnterpriseTeamOrganizationOrder {
29893
+ /** The field to order organizations by. */
29894
+ field: EnterpriseTeamOrganizationOrderField;
29895
+ /** The ordering direction. */
29896
+ direction: OrderDirection;
29897
+ }
29574
29898
  /** An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations. */
29575
29899
  export interface EnterpriseUserAccountGenqlSelection {
29576
29900
  /** A URL pointing to the enterprise user account's public avatar. */
@@ -35641,6 +35965,7 @@ export interface NodeGenqlSelection {
35641
35965
  on_EnterpriseServerUserAccount?: EnterpriseServerUserAccountGenqlSelection;
35642
35966
  on_EnterpriseServerUserAccountEmail?: EnterpriseServerUserAccountEmailGenqlSelection;
35643
35967
  on_EnterpriseServerUserAccountsUpload?: EnterpriseServerUserAccountsUploadGenqlSelection;
35968
+ on_EnterpriseTeam?: EnterpriseTeamGenqlSelection;
35644
35969
  on_EnterpriseUserAccount?: EnterpriseUserAccountGenqlSelection;
35645
35970
  on_Environment?: EnvironmentGenqlSelection;
35646
35971
  on_ExternalIdentity?: ExternalIdentityGenqlSelection;
@@ -40404,12 +40729,14 @@ export interface ParentIssueRemovedEventGenqlSelection {
40404
40729
  }
40405
40730
  /** Types that can grant permissions on a repository to a user */
40406
40731
  export interface PermissionGranterGenqlSelection {
40732
+ on_EnterpriseTeam?: EnterpriseTeamGenqlSelection;
40407
40733
  on_Organization?: OrganizationGenqlSelection;
40408
40734
  on_Repository?: RepositoryGenqlSelection;
40409
40735
  on_Team?: TeamGenqlSelection;
40736
+ on_Node?: NodeGenqlSelection;
40737
+ on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
40410
40738
  on_Actor?: ActorGenqlSelection;
40411
40739
  on_MemberStatusable?: MemberStatusableGenqlSelection;
40412
- on_Node?: NodeGenqlSelection;
40413
40740
  on_PackageOwner?: PackageOwnerGenqlSelection;
40414
40741
  on_ProfileOwner?: ProfileOwnerGenqlSelection;
40415
40742
  on_ProjectOwner?: ProjectOwnerGenqlSelection;
@@ -40423,7 +40750,6 @@ export interface PermissionGranterGenqlSelection {
40423
40750
  on_RepositoryInfo?: RepositoryInfoGenqlSelection;
40424
40751
  on_Starrable?: StarrableGenqlSelection;
40425
40752
  on_Subscribable?: SubscribableGenqlSelection;
40426
- on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
40427
40753
  __typename?: boolean | number;
40428
40754
  }
40429
40755
  /** A level of permission and source for a user's access to a repository. */
@@ -48093,6 +48419,21 @@ export interface RepositoryGenqlSelection {
48093
48419
  number: Scalars['Int'];
48094
48420
  };
48095
48421
  });
48422
+ /** A list of the repository's issue fields, inherited from the organization */
48423
+ issueFields?: (IssueFieldsConnectionGenqlSelection & {
48424
+ __args?: {
48425
+ /** Returns the elements in the list that come after the specified cursor. */
48426
+ after?: (Scalars['String'] | null);
48427
+ /** Returns the elements in the list that come before the specified cursor. */
48428
+ before?: (Scalars['String'] | null);
48429
+ /** Returns the first _n_ elements from the list. */
48430
+ first?: (Scalars['Int'] | null);
48431
+ /** Returns the last _n_ elements from the list. */
48432
+ last?: (Scalars['Int'] | null);
48433
+ /** Ordering options for issue fields returned from the connection. */
48434
+ orderBy?: (IssueFieldOrder | null);
48435
+ };
48436
+ });
48096
48437
  /** Returns a single issue-like object from the current repository by number. */
48097
48438
  issueOrPullRequest?: (IssueOrPullRequestGenqlSelection & {
48098
48439
  __args: {
@@ -48652,6 +48993,8 @@ export interface RepositoryGenqlSelection {
48652
48993
  viewerCanSubscribe?: boolean | number;
48653
48994
  /** Indicates whether the viewer can update the topics of this repository. */
48654
48995
  viewerCanUpdateTopics?: boolean | number;
48996
+ /** The content warning for this repository for the viewer. */
48997
+ viewerContentWarning?: ContentWarningGenqlSelection;
48655
48998
  /** The last commit email for the viewer. */
48656
48999
  viewerDefaultCommitEmail?: boolean | number;
48657
49000
  /** The last used merge method by the viewer or the default for the repository. */
@@ -49488,7 +49831,7 @@ export interface RepositoryRulesetBypassActorEdgeGenqlSelection {
49488
49831
  __typename?: boolean | number;
49489
49832
  __scalar?: boolean | number;
49490
49833
  }
49491
- /** Specifies the attributes for a new or updated ruleset bypass actor. Only one of `actor_id`, `repository_role_database_id`, `organization_admin`, or `deploy_key` should be specified. */
49834
+ /** Specifies the attributes for a new or updated ruleset bypass actor. Only one of `actor_id`, `repository_role_database_id`, `organization_admin`, `enterprise_owner`, or `deploy_key` should be specified. */
49492
49835
  export interface RepositoryRulesetBypassActorInput {
49493
49836
  /** For Team, Integration and User bypasses, the Team, Integration, or User ID */
49494
49837
  actorId?: (Scalars['ID'] | null);
@@ -49904,15 +50247,16 @@ export interface RequestReviewsPayloadGenqlSelection {
49904
50247
  /** Types that can be requested reviewers. */
49905
50248
  export interface RequestedReviewerGenqlSelection {
49906
50249
  on_Bot?: BotGenqlSelection;
50250
+ on_EnterpriseTeam?: EnterpriseTeamGenqlSelection;
49907
50251
  on_Mannequin?: MannequinGenqlSelection;
49908
50252
  on_Team?: TeamGenqlSelection;
49909
50253
  on_User?: UserGenqlSelection;
49910
50254
  on_Actor?: ActorGenqlSelection;
49911
50255
  on_Node?: NodeGenqlSelection;
49912
50256
  on_UniformResourceLocatable?: UniformResourceLocatableGenqlSelection;
50257
+ on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
49913
50258
  on_MemberStatusable?: MemberStatusableGenqlSelection;
49914
50259
  on_Subscribable?: SubscribableGenqlSelection;
49915
- on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
49916
50260
  on_Agentic?: AgenticGenqlSelection;
49917
50261
  on_PackageOwner?: PackageOwnerGenqlSelection;
49918
50262
  on_ProfileOwner?: ProfileOwnerGenqlSelection;
@@ -50387,6 +50731,12 @@ export interface RuleParametersInput {
50387
50731
  branchNamePattern?: (BranchNamePatternParametersInput | null);
50388
50732
  /** Parameters used for the `tag_name_pattern` rule type */
50389
50733
  tagNamePattern?: (TagNamePatternParametersInput | null);
50734
+ /** Parameters used for the `workflows` rule type */
50735
+ workflows?: (WorkflowsParametersInput | null);
50736
+ /** Parameters used for the `code_scanning` rule type */
50737
+ codeScanning?: (CodeScanningParametersInput | null);
50738
+ /** Parameters used for the `copilot_code_review` rule type */
50739
+ copilotCodeReview?: (CopilotCodeReviewParametersInput | null);
50390
50740
  /** Parameters used for the `file_path_restriction` rule type */
50391
50741
  filePathRestriction?: (FilePathRestrictionParametersInput | null);
50392
50742
  /** Parameters used for the `max_file_path_length` rule type */
@@ -50395,12 +50745,6 @@ export interface RuleParametersInput {
50395
50745
  fileExtensionRestriction?: (FileExtensionRestrictionParametersInput | null);
50396
50746
  /** Parameters used for the `max_file_size` rule type */
50397
50747
  maxFileSize?: (MaxFileSizeParametersInput | null);
50398
- /** Parameters used for the `workflows` rule type */
50399
- workflows?: (WorkflowsParametersInput | null);
50400
- /** Parameters used for the `code_scanning` rule type */
50401
- codeScanning?: (CodeScanningParametersInput | null);
50402
- /** Parameters used for the `copilot_code_review` rule type */
50403
- copilotCodeReview?: (CopilotCodeReviewParametersInput | null);
50404
50748
  }
50405
50749
  /** Types which can have `RepositoryRule` objects. */
50406
50750
  export interface RuleSourceGenqlSelection {
@@ -53125,6 +53469,7 @@ export interface TeamReviewRequestableGenqlSelection {
53125
53469
  name?: boolean | number;
53126
53470
  /** A unique, human-readable identifier for the team. */
53127
53471
  slug?: boolean | number;
53472
+ on_EnterpriseTeam?: EnterpriseTeamGenqlSelection;
53128
53473
  on_Team?: TeamGenqlSelection;
53129
53474
  __typename?: boolean | number;
53130
53475
  __scalar?: boolean | number;
@@ -56825,6 +57170,7 @@ export interface _EntityGenqlSelection {
56825
57170
  on_EnterpriseServerUserAccount?: EnterpriseServerUserAccountGenqlSelection;
56826
57171
  on_EnterpriseServerUserAccountEmail?: EnterpriseServerUserAccountEmailGenqlSelection;
56827
57172
  on_EnterpriseServerUserAccountsUpload?: EnterpriseServerUserAccountsUploadGenqlSelection;
57173
+ on_EnterpriseTeam?: EnterpriseTeamGenqlSelection;
56828
57174
  on_EnterpriseUserAccount?: EnterpriseUserAccountGenqlSelection;
56829
57175
  on_Environment?: EnvironmentGenqlSelection;
56830
57176
  on_ExternalIdentity?: ExternalIdentityGenqlSelection;
@@ -57053,6 +57399,7 @@ export interface _EntityGenqlSelection {
57053
57399
  on_Labelable?: LabelableGenqlSelection;
57054
57400
  on_Lockable?: LockableGenqlSelection;
57055
57401
  on_Votable?: VotableGenqlSelection;
57402
+ on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
57056
57403
  on_Starrable?: StarrableGenqlSelection;
57057
57404
  on_Assignable?: AssignableGenqlSelection;
57058
57405
  on_ProjectV2Owner?: ProjectV2OwnerGenqlSelection;
@@ -57079,7 +57426,6 @@ export interface _EntityGenqlSelection {
57079
57426
  on_TopicAuditEntryData?: TopicAuditEntryDataGenqlSelection;
57080
57427
  on_RepositoryInfo?: RepositoryInfoGenqlSelection;
57081
57428
  on_Migration?: MigrationGenqlSelection;
57082
- on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
57083
57429
  on_TeamAuditEntryData?: TeamAuditEntryDataGenqlSelection;
57084
57430
  on_Agentic?: AgenticGenqlSelection;
57085
57431
  __typename?: boolean | number;
@@ -57492,6 +57838,9 @@ export declare const isComparisonCommitConnection: (obj?: {
57492
57838
  export declare const isConnectedEvent: (obj?: {
57493
57839
  __typename?: any;
57494
57840
  } | null) => obj is ConnectedEvent;
57841
+ export declare const isContentWarning: (obj?: {
57842
+ __typename?: any;
57843
+ } | null) => obj is ContentWarning;
57495
57844
  export declare const isContributingGuidelines: (obj?: {
57496
57845
  __typename?: any;
57497
57846
  } | null) => obj is ContributingGuidelines;
@@ -58089,6 +58438,27 @@ export declare const isEnterpriseServerUserAccountsUploadConnection: (obj?: {
58089
58438
  export declare const isEnterpriseServerUserAccountsUploadEdge: (obj?: {
58090
58439
  __typename?: any;
58091
58440
  } | null) => obj is EnterpriseServerUserAccountsUploadEdge;
58441
+ export declare const isEnterpriseTeam: (obj?: {
58442
+ __typename?: any;
58443
+ } | null) => obj is EnterpriseTeam;
58444
+ export declare const isEnterpriseTeamAssignedOrganizationConnection: (obj?: {
58445
+ __typename?: any;
58446
+ } | null) => obj is EnterpriseTeamAssignedOrganizationConnection;
58447
+ export declare const isEnterpriseTeamAssignedOrganizationEdge: (obj?: {
58448
+ __typename?: any;
58449
+ } | null) => obj is EnterpriseTeamAssignedOrganizationEdge;
58450
+ export declare const isEnterpriseTeamConnection: (obj?: {
58451
+ __typename?: any;
58452
+ } | null) => obj is EnterpriseTeamConnection;
58453
+ export declare const isEnterpriseTeamEdge: (obj?: {
58454
+ __typename?: any;
58455
+ } | null) => obj is EnterpriseTeamEdge;
58456
+ export declare const isEnterpriseTeamMemberConnection: (obj?: {
58457
+ __typename?: any;
58458
+ } | null) => obj is EnterpriseTeamMemberConnection;
58459
+ export declare const isEnterpriseTeamMemberEdge: (obj?: {
58460
+ __typename?: any;
58461
+ } | null) => obj is EnterpriseTeamMemberEdge;
58092
58462
  export declare const isEnterpriseUserAccount: (obj?: {
58093
58463
  __typename?: any;
58094
58464
  } | null) => obj is EnterpriseUserAccount;
@@ -60615,6 +60985,26 @@ export declare const enumEnterpriseServerUserAccountsUploadSyncState: {
60615
60985
  SUCCESS: "SUCCESS";
60616
60986
  FAILURE: "FAILURE";
60617
60987
  };
60988
+ export declare const enumEnterpriseTeamMemberOrderField: {
60989
+ ID: "ID";
60990
+ LOGIN: "LOGIN";
60991
+ CREATED_AT: "CREATED_AT";
60992
+ };
60993
+ export declare const enumEnterpriseTeamOrderField: {
60994
+ ID: "ID";
60995
+ NAME: "NAME";
60996
+ CREATED_AT: "CREATED_AT";
60997
+ };
60998
+ export declare const enumEnterpriseTeamOrganizationOrderField: {
60999
+ ID: "ID";
61000
+ LOGIN: "LOGIN";
61001
+ CREATED_AT: "CREATED_AT";
61002
+ };
61003
+ export declare const enumEnterpriseTeamOrganizationSelectionType: {
61004
+ DISABLED: "DISABLED";
61005
+ ALL: "ALL";
61006
+ SELECTED: "SELECTED";
61007
+ };
60618
61008
  export declare const enumEnterpriseUserAccountMembershipRole: {
60619
61009
  MEMBER: "MEMBER";
60620
61010
  OWNER: "OWNER";
@@ -60719,6 +61109,7 @@ export declare const enumIssueFieldDataType: {
60719
61109
  SINGLE_SELECT: "SINGLE_SELECT";
60720
61110
  DATE: "DATE";
60721
61111
  NUMBER: "NUMBER";
61112
+ MULTI_SELECT: "MULTI_SELECT";
60722
61113
  };
60723
61114
  export declare const enumIssueFieldOrderField: {
60724
61115
  CREATED_AT: "CREATED_AT";
@@ -61162,6 +61553,9 @@ export declare const enumProjectV2FieldType: {
61162
61553
  ISSUE_TYPE: "ISSUE_TYPE";
61163
61554
  PARENT_ISSUE: "PARENT_ISSUE";
61164
61555
  SUB_ISSUES_PROGRESS: "SUB_ISSUES_PROGRESS";
61556
+ CREATED: "CREATED";
61557
+ UPDATED: "UPDATED";
61558
+ CLOSED: "CLOSED";
61165
61559
  };
61166
61560
  export declare const enumProjectV2ItemFieldValueOrderField: {
61167
61561
  POSITION: "POSITION";
@@ -61531,15 +61925,15 @@ export declare const enumRepositoryRuleType: {
61531
61925
  COMMITTER_EMAIL_PATTERN: "COMMITTER_EMAIL_PATTERN";
61532
61926
  BRANCH_NAME_PATTERN: "BRANCH_NAME_PATTERN";
61533
61927
  TAG_NAME_PATTERN: "TAG_NAME_PATTERN";
61928
+ WORKFLOWS: "WORKFLOWS";
61929
+ WORKFLOW_UPDATES: "WORKFLOW_UPDATES";
61930
+ CODE_SCANNING: "CODE_SCANNING";
61931
+ COPILOT_CODE_REVIEW: "COPILOT_CODE_REVIEW";
61534
61932
  FILE_PATH_RESTRICTION: "FILE_PATH_RESTRICTION";
61535
61933
  MAX_FILE_PATH_LENGTH: "MAX_FILE_PATH_LENGTH";
61536
61934
  FILE_EXTENSION_RESTRICTION: "FILE_EXTENSION_RESTRICTION";
61537
61935
  MAX_FILE_SIZE: "MAX_FILE_SIZE";
61538
- WORKFLOWS: "WORKFLOWS";
61539
61936
  SECRET_SCANNING: "SECRET_SCANNING";
61540
- WORKFLOW_UPDATES: "WORKFLOW_UPDATES";
61541
- CODE_SCANNING: "CODE_SCANNING";
61542
- COPILOT_CODE_REVIEW: "COPILOT_CODE_REVIEW";
61543
61937
  };
61544
61938
  export declare const enumRepositoryRulesetBypassActorBypassMode: {
61545
61939
  ALWAYS: "ALWAYS";