@tomsd/github-repo-js 0.4.2 → 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. */
@@ -3780,6 +3780,10 @@ export interface Enterprise {
3780
3780
  description: (Scalars['String'] | null);
3781
3781
  /** The description of the enterprise as HTML. */
3782
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;
3783
3787
  /** The Node ID of the Enterprise object */
3784
3788
  id: Scalars['ID'];
3785
3789
  /** The location of the enterprise. */
@@ -3896,7 +3900,10 @@ export type EnterpriseAuditEntryData = (MembersCanDeleteReposClearAuditEntry | M
3896
3900
  export interface EnterpriseBillingInfo {
3897
3901
  /** The number of licenseable users/emails across the enterprise. */
3898
3902
  allLicensableUsersCount: Scalars['Int'];
3899
- /** 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
+ */
3900
3907
  assetPacks: Scalars['Int'];
3901
3908
  /** The bandwidth quota in GB for all organizations owned by the enterprise. */
3902
3909
  bandwidthQuota: Scalars['Float'];
@@ -4465,6 +4472,108 @@ export interface EnterpriseServerUserAccountsUploadEdge {
4465
4472
  export type EnterpriseServerUserAccountsUploadOrderField = 'CREATED_AT';
4466
4473
  /** Synchronization state of the Enterprise Server user accounts upload */
4467
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';
4468
4577
  /** An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations. */
4469
4578
  export interface EnterpriseUserAccount {
4470
4579
  /** A URL pointing to the enterprise user account's public avatar. */
@@ -5455,7 +5564,7 @@ export type IssueFieldCommon = (IssueFieldDate | IssueFieldNumber | IssueFieldSi
5455
5564
  __isUnion?: true;
5456
5565
  };
5457
5566
  /** The type of an issue field. */
5458
- export type IssueFieldDataType = 'TEXT' | 'SINGLE_SELECT' | 'DATE' | 'NUMBER';
5567
+ export type IssueFieldDataType = 'TEXT' | 'SINGLE_SELECT' | 'DATE' | 'NUMBER' | 'MULTI_SELECT';
5459
5568
  /** Represents a date issue field. */
5460
5569
  export interface IssueFieldDate {
5461
5570
  /** The issue field's creation timestamp. */
@@ -7672,7 +7781,7 @@ export interface Mutation {
7672
7781
  __typename: 'Mutation';
7673
7782
  }
7674
7783
  /** An object with an ID. */
7675
- 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) & {
7676
7785
  __isUnion?: true;
7677
7786
  };
7678
7787
  /** The possible values for the notification restriction setting. */
@@ -11320,7 +11429,7 @@ export interface ParentIssueRemovedEvent {
11320
11429
  /** The possible types of patch statuses. */
11321
11430
  export type PatchStatus = 'ADDED' | 'DELETED' | 'RENAMED' | 'COPIED' | 'MODIFIED' | 'CHANGED';
11322
11431
  /** Types that can grant permissions on a repository to a user */
11323
- export type PermissionGranter = (Organization | Repository | Team) & {
11432
+ export type PermissionGranter = (EnterpriseTeam | Organization | Repository | Team) & {
11324
11433
  __isUnion?: true;
11325
11434
  };
11326
11435
  /** A level of permission and source for a user's access to a repository. */
@@ -16622,6 +16731,8 @@ export interface Repository {
16622
16731
  isUserConfigurationRepository: Scalars['Boolean'];
16623
16732
  /** Returns a single issue from the current repository by number. */
16624
16733
  issue: (Issue | null);
16734
+ /** A list of the repository's issue fields, inherited from the organization */
16735
+ issueFields: (IssueFieldsConnection | null);
16625
16736
  /** Returns a single issue-like object from the current repository by number. */
16626
16737
  issueOrPullRequest: (IssueOrPullRequest | null);
16627
16738
  /** Returns a list of issue templates associated to the repository */
@@ -17625,7 +17736,7 @@ export interface RequestReviewsPayload {
17625
17736
  /** The possible states that can be requested when creating a check run. */
17626
17737
  export type RequestableCheckStatusState = 'QUEUED' | 'IN_PROGRESS' | 'COMPLETED' | 'WAITING' | 'PENDING';
17627
17738
  /** Types that can be requested reviewers. */
17628
- export type RequestedReviewer = (Bot | Mannequin | Team | User) & {
17739
+ export type RequestedReviewer = (Bot | EnterpriseTeam | Mannequin | Team | User) & {
17629
17740
  __isUnion?: true;
17630
17741
  };
17631
17742
  /** The connection type for RequestedReviewer. */
@@ -19789,7 +19900,7 @@ export type TeamRepositoryOrderField = 'CREATED_AT' | 'UPDATED_AT' | 'PUSHED_AT'
19789
19900
  /** The possible team review assignment algorithms */
19790
19901
  export type TeamReviewAssignmentAlgorithm = 'ROUND_ROBIN' | 'LOAD_BALANCE';
19791
19902
  /** Represents a team that can be requested to review a pull request. */
19792
- export type TeamReviewRequestable = (Team) & {
19903
+ export type TeamReviewRequestable = (EnterpriseTeam | Team) & {
19793
19904
  __isUnion?: true;
19794
19905
  };
19795
19906
  /** The role of a user on a team. */
@@ -21432,7 +21543,7 @@ export interface WorkflowsParameters {
21432
21543
  workflows: WorkflowFileReference[];
21433
21544
  __typename: 'WorkflowsParameters';
21434
21545
  }
21435
- 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) & {
21436
21547
  __isUnion?: true;
21437
21548
  };
21438
21549
  /** Autogenerated input type of AbortQueuedMigrations */
@@ -23168,12 +23279,13 @@ export interface BulkSponsorship {
23168
23279
  /** Types that can represent a repository ruleset bypass actor. */
23169
23280
  export interface BypassActorGenqlSelection {
23170
23281
  on_App?: AppGenqlSelection;
23282
+ on_EnterpriseTeam?: EnterpriseTeamGenqlSelection;
23171
23283
  on_Team?: TeamGenqlSelection;
23172
23284
  on_User?: UserGenqlSelection;
23173
23285
  on_Node?: NodeGenqlSelection;
23286
+ on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
23174
23287
  on_MemberStatusable?: MemberStatusableGenqlSelection;
23175
23288
  on_Subscribable?: SubscribableGenqlSelection;
23176
- on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
23177
23289
  on_Actor?: ActorGenqlSelection;
23178
23290
  on_Agentic?: AgenticGenqlSelection;
23179
23291
  on_PackageOwner?: PackageOwnerGenqlSelection;
@@ -28247,6 +28359,30 @@ export interface EnterpriseGenqlSelection {
28247
28359
  description?: boolean | number;
28248
28360
  /** The description of the enterprise as HTML. */
28249
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
+ });
28250
28386
  /** The Node ID of the Enterprise object */
28251
28387
  id?: boolean | number;
28252
28388
  /** The location of the enterprise. */
@@ -28481,7 +28617,10 @@ export interface EnterpriseAuditEntryDataGenqlSelection {
28481
28617
  export interface EnterpriseBillingInfoGenqlSelection {
28482
28618
  /** The number of licenseable users/emails across the enterprise. */
28483
28619
  allLicensableUsersCount?: boolean | number;
28484
- /** 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
+ */
28485
28624
  assetPacks?: boolean | number;
28486
28625
  /** The bandwidth quota in GB for all organizations owned by the enterprise. */
28487
28626
  bandwidthQuota?: boolean | number;
@@ -29606,6 +29745,156 @@ export interface EnterpriseServerUserAccountsUploadOrder {
29606
29745
  /** The ordering direction. */
29607
29746
  direction: OrderDirection;
29608
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
+ }
29609
29898
  /** An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations. */
29610
29899
  export interface EnterpriseUserAccountGenqlSelection {
29611
29900
  /** A URL pointing to the enterprise user account's public avatar. */
@@ -35676,6 +35965,7 @@ export interface NodeGenqlSelection {
35676
35965
  on_EnterpriseServerUserAccount?: EnterpriseServerUserAccountGenqlSelection;
35677
35966
  on_EnterpriseServerUserAccountEmail?: EnterpriseServerUserAccountEmailGenqlSelection;
35678
35967
  on_EnterpriseServerUserAccountsUpload?: EnterpriseServerUserAccountsUploadGenqlSelection;
35968
+ on_EnterpriseTeam?: EnterpriseTeamGenqlSelection;
35679
35969
  on_EnterpriseUserAccount?: EnterpriseUserAccountGenqlSelection;
35680
35970
  on_Environment?: EnvironmentGenqlSelection;
35681
35971
  on_ExternalIdentity?: ExternalIdentityGenqlSelection;
@@ -40439,12 +40729,14 @@ export interface ParentIssueRemovedEventGenqlSelection {
40439
40729
  }
40440
40730
  /** Types that can grant permissions on a repository to a user */
40441
40731
  export interface PermissionGranterGenqlSelection {
40732
+ on_EnterpriseTeam?: EnterpriseTeamGenqlSelection;
40442
40733
  on_Organization?: OrganizationGenqlSelection;
40443
40734
  on_Repository?: RepositoryGenqlSelection;
40444
40735
  on_Team?: TeamGenqlSelection;
40736
+ on_Node?: NodeGenqlSelection;
40737
+ on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
40445
40738
  on_Actor?: ActorGenqlSelection;
40446
40739
  on_MemberStatusable?: MemberStatusableGenqlSelection;
40447
- on_Node?: NodeGenqlSelection;
40448
40740
  on_PackageOwner?: PackageOwnerGenqlSelection;
40449
40741
  on_ProfileOwner?: ProfileOwnerGenqlSelection;
40450
40742
  on_ProjectOwner?: ProjectOwnerGenqlSelection;
@@ -40458,7 +40750,6 @@ export interface PermissionGranterGenqlSelection {
40458
40750
  on_RepositoryInfo?: RepositoryInfoGenqlSelection;
40459
40751
  on_Starrable?: StarrableGenqlSelection;
40460
40752
  on_Subscribable?: SubscribableGenqlSelection;
40461
- on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
40462
40753
  __typename?: boolean | number;
40463
40754
  }
40464
40755
  /** A level of permission and source for a user's access to a repository. */
@@ -48128,6 +48419,21 @@ export interface RepositoryGenqlSelection {
48128
48419
  number: Scalars['Int'];
48129
48420
  };
48130
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
+ });
48131
48437
  /** Returns a single issue-like object from the current repository by number. */
48132
48438
  issueOrPullRequest?: (IssueOrPullRequestGenqlSelection & {
48133
48439
  __args: {
@@ -49941,15 +50247,16 @@ export interface RequestReviewsPayloadGenqlSelection {
49941
50247
  /** Types that can be requested reviewers. */
49942
50248
  export interface RequestedReviewerGenqlSelection {
49943
50249
  on_Bot?: BotGenqlSelection;
50250
+ on_EnterpriseTeam?: EnterpriseTeamGenqlSelection;
49944
50251
  on_Mannequin?: MannequinGenqlSelection;
49945
50252
  on_Team?: TeamGenqlSelection;
49946
50253
  on_User?: UserGenqlSelection;
49947
50254
  on_Actor?: ActorGenqlSelection;
49948
50255
  on_Node?: NodeGenqlSelection;
49949
50256
  on_UniformResourceLocatable?: UniformResourceLocatableGenqlSelection;
50257
+ on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
49950
50258
  on_MemberStatusable?: MemberStatusableGenqlSelection;
49951
50259
  on_Subscribable?: SubscribableGenqlSelection;
49952
- on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
49953
50260
  on_Agentic?: AgenticGenqlSelection;
49954
50261
  on_PackageOwner?: PackageOwnerGenqlSelection;
49955
50262
  on_ProfileOwner?: ProfileOwnerGenqlSelection;
@@ -53162,6 +53469,7 @@ export interface TeamReviewRequestableGenqlSelection {
53162
53469
  name?: boolean | number;
53163
53470
  /** A unique, human-readable identifier for the team. */
53164
53471
  slug?: boolean | number;
53472
+ on_EnterpriseTeam?: EnterpriseTeamGenqlSelection;
53165
53473
  on_Team?: TeamGenqlSelection;
53166
53474
  __typename?: boolean | number;
53167
53475
  __scalar?: boolean | number;
@@ -56862,6 +57170,7 @@ export interface _EntityGenqlSelection {
56862
57170
  on_EnterpriseServerUserAccount?: EnterpriseServerUserAccountGenqlSelection;
56863
57171
  on_EnterpriseServerUserAccountEmail?: EnterpriseServerUserAccountEmailGenqlSelection;
56864
57172
  on_EnterpriseServerUserAccountsUpload?: EnterpriseServerUserAccountsUploadGenqlSelection;
57173
+ on_EnterpriseTeam?: EnterpriseTeamGenqlSelection;
56865
57174
  on_EnterpriseUserAccount?: EnterpriseUserAccountGenqlSelection;
56866
57175
  on_Environment?: EnvironmentGenqlSelection;
56867
57176
  on_ExternalIdentity?: ExternalIdentityGenqlSelection;
@@ -57090,6 +57399,7 @@ export interface _EntityGenqlSelection {
57090
57399
  on_Labelable?: LabelableGenqlSelection;
57091
57400
  on_Lockable?: LockableGenqlSelection;
57092
57401
  on_Votable?: VotableGenqlSelection;
57402
+ on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
57093
57403
  on_Starrable?: StarrableGenqlSelection;
57094
57404
  on_Assignable?: AssignableGenqlSelection;
57095
57405
  on_ProjectV2Owner?: ProjectV2OwnerGenqlSelection;
@@ -57116,7 +57426,6 @@ export interface _EntityGenqlSelection {
57116
57426
  on_TopicAuditEntryData?: TopicAuditEntryDataGenqlSelection;
57117
57427
  on_RepositoryInfo?: RepositoryInfoGenqlSelection;
57118
57428
  on_Migration?: MigrationGenqlSelection;
57119
- on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
57120
57429
  on_TeamAuditEntryData?: TeamAuditEntryDataGenqlSelection;
57121
57430
  on_Agentic?: AgenticGenqlSelection;
57122
57431
  __typename?: boolean | number;
@@ -58129,6 +58438,27 @@ export declare const isEnterpriseServerUserAccountsUploadConnection: (obj?: {
58129
58438
  export declare const isEnterpriseServerUserAccountsUploadEdge: (obj?: {
58130
58439
  __typename?: any;
58131
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;
58132
58462
  export declare const isEnterpriseUserAccount: (obj?: {
58133
58463
  __typename?: any;
58134
58464
  } | null) => obj is EnterpriseUserAccount;
@@ -60655,6 +60985,26 @@ export declare const enumEnterpriseServerUserAccountsUploadSyncState: {
60655
60985
  SUCCESS: "SUCCESS";
60656
60986
  FAILURE: "FAILURE";
60657
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
+ };
60658
61008
  export declare const enumEnterpriseUserAccountMembershipRole: {
60659
61009
  MEMBER: "MEMBER";
60660
61010
  OWNER: "OWNER";
@@ -60759,6 +61109,7 @@ export declare const enumIssueFieldDataType: {
60759
61109
  SINGLE_SELECT: "SINGLE_SELECT";
60760
61110
  DATE: "DATE";
60761
61111
  NUMBER: "NUMBER";
61112
+ MULTI_SELECT: "MULTI_SELECT";
60762
61113
  };
60763
61114
  export declare const enumIssueFieldOrderField: {
60764
61115
  CREATED_AT: "CREATED_AT";