@tomsd/github-repo-js 0.4.2 → 0.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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. */
@@ -5451,11 +5560,11 @@ export interface IssueFieldChangedEvent {
5451
5560
  __typename: 'IssueFieldChangedEvent';
5452
5561
  }
5453
5562
  /** Common fields across different issue field types */
5454
- export type IssueFieldCommon = (IssueFieldDate | IssueFieldNumber | IssueFieldSingleSelect | IssueFieldText) & {
5563
+ export type IssueFieldCommon = (IssueFieldDate | IssueFieldMultiSelect | IssueFieldNumber | IssueFieldSingleSelect | IssueFieldText) & {
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. */
@@ -5464,6 +5573,8 @@ export interface IssueFieldDate {
5464
5573
  dataType: IssueFieldDataType;
5465
5574
  /** The issue field's description. */
5466
5575
  description: (Scalars['String'] | null);
5576
+ /** Identifies the primary key from the database as a BigInt. */
5577
+ fullDatabaseId: (Scalars['BigInt'] | null);
5467
5578
  /** The Node ID of the IssueFieldDate object */
5468
5579
  id: Scalars['ID'];
5469
5580
  /** The issue field's name. */
@@ -5482,6 +5593,38 @@ export interface IssueFieldDateValue {
5482
5593
  value: Scalars['String'];
5483
5594
  __typename: 'IssueFieldDateValue';
5484
5595
  }
5596
+ /** Represents a multi select issue field. */
5597
+ export interface IssueFieldMultiSelect {
5598
+ /** The issue field's creation timestamp. */
5599
+ createdAt: Scalars['DateTime'];
5600
+ /** The issue field's data type. */
5601
+ dataType: IssueFieldDataType;
5602
+ /** The issue field's description. */
5603
+ description: (Scalars['String'] | null);
5604
+ /** Identifies the primary key from the database as a BigInt. */
5605
+ fullDatabaseId: (Scalars['BigInt'] | null);
5606
+ /** The Node ID of the IssueFieldMultiSelect object */
5607
+ id: Scalars['ID'];
5608
+ /** The issue field's name. */
5609
+ name: Scalars['String'];
5610
+ /** Options for the multi select field */
5611
+ options: IssueFieldSingleSelectOption[];
5612
+ /** The issue field's visibility. */
5613
+ visibility: IssueFieldVisibility;
5614
+ __typename: 'IssueFieldMultiSelect';
5615
+ }
5616
+ /** The value of a multi select field in an Issue item. */
5617
+ export interface IssueFieldMultiSelectValue {
5618
+ /** The issue field that contains this value. */
5619
+ field: (IssueFields | null);
5620
+ /** The Node ID of the IssueFieldMultiSelectValue object */
5621
+ id: Scalars['ID'];
5622
+ /** The selected options. */
5623
+ options: IssueFieldSingleSelectOption[];
5624
+ /** Comma-separated names of the selected options. */
5625
+ value: (Scalars['String'] | null);
5626
+ __typename: 'IssueFieldMultiSelectValue';
5627
+ }
5485
5628
  /** Represents a number issue field. */
5486
5629
  export interface IssueFieldNumber {
5487
5630
  /** The issue field's creation timestamp. */
@@ -5490,6 +5633,8 @@ export interface IssueFieldNumber {
5490
5633
  dataType: IssueFieldDataType;
5491
5634
  /** The issue field's description. */
5492
5635
  description: (Scalars['String'] | null);
5636
+ /** Identifies the primary key from the database as a BigInt. */
5637
+ fullDatabaseId: (Scalars['BigInt'] | null);
5493
5638
  /** The Node ID of the IssueFieldNumber object */
5494
5639
  id: Scalars['ID'];
5495
5640
  /** The issue field's name. */
@@ -5530,6 +5675,8 @@ export interface IssueFieldSingleSelect {
5530
5675
  dataType: IssueFieldDataType;
5531
5676
  /** The issue field's description. */
5532
5677
  description: (Scalars['String'] | null);
5678
+ /** Identifies the primary key from the database as a BigInt. */
5679
+ fullDatabaseId: (Scalars['BigInt'] | null);
5533
5680
  /** The Node ID of the IssueFieldSingleSelect object */
5534
5681
  id: Scalars['ID'];
5535
5682
  /** The issue field's name. */
@@ -5544,8 +5691,12 @@ export interface IssueFieldSingleSelect {
5544
5691
  export interface IssueFieldSingleSelectOption {
5545
5692
  /** The option's display color. */
5546
5693
  color: IssueFieldSingleSelectOptionColor;
5694
+ /** Identifies the primary key from the database. */
5695
+ databaseId: (Scalars['Int'] | null);
5547
5696
  /** The option's plain-text description. */
5548
5697
  description: (Scalars['String'] | null);
5698
+ /** Identifies the primary key from the database as a BigInt. */
5699
+ fullDatabaseId: (Scalars['BigInt'] | null);
5549
5700
  /** The Node ID of the IssueFieldSingleSelectOption object */
5550
5701
  id: Scalars['ID'];
5551
5702
  /** The option's name. */
@@ -5582,6 +5733,8 @@ export interface IssueFieldText {
5582
5733
  dataType: IssueFieldDataType;
5583
5734
  /** The issue field's description. */
5584
5735
  description: (Scalars['String'] | null);
5736
+ /** Identifies the primary key from the database as a BigInt. */
5737
+ fullDatabaseId: (Scalars['BigInt'] | null);
5585
5738
  /** The Node ID of the IssueFieldText object */
5586
5739
  id: Scalars['ID'];
5587
5740
  /** The issue field's name. */
@@ -5601,11 +5754,11 @@ export interface IssueFieldTextValue {
5601
5754
  __typename: 'IssueFieldTextValue';
5602
5755
  }
5603
5756
  /** Issue field values */
5604
- export type IssueFieldValue = (IssueFieldDateValue | IssueFieldNumberValue | IssueFieldSingleSelectValue | IssueFieldTextValue) & {
5757
+ export type IssueFieldValue = (IssueFieldDateValue | IssueFieldMultiSelectValue | IssueFieldNumberValue | IssueFieldSingleSelectValue | IssueFieldTextValue) & {
5605
5758
  __isUnion?: true;
5606
5759
  };
5607
5760
  /** Common fields across different issue field value types */
5608
- export type IssueFieldValueCommon = (IssueFieldDateValue | IssueFieldNumberValue | IssueFieldSingleSelectValue | IssueFieldTextValue) & {
5761
+ export type IssueFieldValueCommon = (IssueFieldDateValue | IssueFieldMultiSelectValue | IssueFieldNumberValue | IssueFieldSingleSelectValue | IssueFieldTextValue) & {
5609
5762
  __isUnion?: true;
5610
5763
  };
5611
5764
  /** The connection type for IssueFieldValue. */
@@ -5631,7 +5784,7 @@ export interface IssueFieldValueEdge {
5631
5784
  /** The visibility of an issue field. */
5632
5785
  export type IssueFieldVisibility = 'ORG_ONLY' | 'ALL';
5633
5786
  /** Possible issue fields. */
5634
- export type IssueFields = (IssueFieldDate | IssueFieldNumber | IssueFieldSingleSelect | IssueFieldText) & {
5787
+ export type IssueFields = (IssueFieldDate | IssueFieldMultiSelect | IssueFieldNumber | IssueFieldSingleSelect | IssueFieldText) & {
5635
5788
  __isUnion?: true;
5636
5789
  };
5637
5790
  /** The connection type for IssueFields. */
@@ -7672,7 +7825,7 @@ export interface Mutation {
7672
7825
  __typename: 'Mutation';
7673
7826
  }
7674
7827
  /** 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) & {
7828
+ 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 | IssueFieldMultiSelect | IssueFieldMultiSelectValue | 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
7829
  __isUnion?: true;
7677
7830
  };
7678
7831
  /** The possible values for the notification restriction setting. */
@@ -11320,7 +11473,7 @@ export interface ParentIssueRemovedEvent {
11320
11473
  /** The possible types of patch statuses. */
11321
11474
  export type PatchStatus = 'ADDED' | 'DELETED' | 'RENAMED' | 'COPIED' | 'MODIFIED' | 'CHANGED';
11322
11475
  /** Types that can grant permissions on a repository to a user */
11323
- export type PermissionGranter = (Organization | Repository | Team) & {
11476
+ export type PermissionGranter = (EnterpriseTeam | Organization | Repository | Team) & {
11324
11477
  __isUnion?: true;
11325
11478
  };
11326
11479
  /** A level of permission and source for a user's access to a repository. */
@@ -12293,7 +12446,7 @@ export type ProjectV2FieldOrderField = 'POSITION' | 'CREATED_AT' | 'NAME';
12293
12446
  /** The type of a project field. */
12294
12447
  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';
12295
12448
  /** Possible issue field values for a Project item. */
12296
- export type ProjectV2IssueFieldValues = (IssueFieldDateValue | IssueFieldNumberValue | IssueFieldSingleSelectValue | IssueFieldTextValue) & {
12449
+ export type ProjectV2IssueFieldValues = (IssueFieldDateValue | IssueFieldMultiSelectValue | IssueFieldNumberValue | IssueFieldSingleSelectValue | IssueFieldTextValue) & {
12297
12450
  __isUnion?: true;
12298
12451
  };
12299
12452
  /** An item within a Project. */
@@ -12327,6 +12480,8 @@ export interface ProjectV2Item {
12327
12480
  updatedAt: Scalars['DateTime'];
12328
12481
  __typename: 'ProjectV2Item';
12329
12482
  }
12483
+ /** The possible archived states of a `ProjectV2Item`. */
12484
+ export type ProjectV2ItemArchivedState = 'ARCHIVED' | 'NOT_ARCHIVED';
12330
12485
  /** The connection type for ProjectV2Item. */
12331
12486
  export interface ProjectV2ItemConnection {
12332
12487
  /** A list of edges. */
@@ -16511,7 +16666,7 @@ export interface RepoRemoveTopicAuditEntry {
16511
16666
  __typename: 'RepoRemoveTopicAuditEntry';
16512
16667
  }
16513
16668
  /** The reasons a piece of content can be reported or minimized. */
16514
- export type ReportedContentClassifiers = 'SPAM' | 'ABUSE' | 'OFF_TOPIC' | 'OUTDATED' | 'DUPLICATE' | 'RESOLVED';
16669
+ export type ReportedContentClassifiers = 'SPAM' | 'ABUSE' | 'OFF_TOPIC' | 'OUTDATED' | 'DUPLICATE' | 'RESOLVED' | 'LOW_QUALITY';
16515
16670
  /** A repository contains the content for a project. */
16516
16671
  export interface Repository {
16517
16672
  /** Whether or not a pull request head branch that is behind its base branch can always be updated even if it is not required to be up to date before merging. */
@@ -16622,6 +16777,8 @@ export interface Repository {
16622
16777
  isUserConfigurationRepository: Scalars['Boolean'];
16623
16778
  /** Returns a single issue from the current repository by number. */
16624
16779
  issue: (Issue | null);
16780
+ /** A list of the repository's issue fields, inherited from the organization */
16781
+ issueFields: (IssueFieldsConnection | null);
16625
16782
  /** Returns a single issue-like object from the current repository by number. */
16626
16783
  issueOrPullRequest: (IssueOrPullRequest | null);
16627
16784
  /** Returns a list of issue templates associated to the repository */
@@ -17625,7 +17782,7 @@ export interface RequestReviewsPayload {
17625
17782
  /** The possible states that can be requested when creating a check run. */
17626
17783
  export type RequestableCheckStatusState = 'QUEUED' | 'IN_PROGRESS' | 'COMPLETED' | 'WAITING' | 'PENDING';
17627
17784
  /** Types that can be requested reviewers. */
17628
- export type RequestedReviewer = (Bot | Mannequin | Team | User) & {
17785
+ export type RequestedReviewer = (Bot | EnterpriseTeam | Mannequin | Team | User) & {
17629
17786
  __isUnion?: true;
17630
17787
  };
17631
17788
  /** The connection type for RequestedReviewer. */
@@ -19789,7 +19946,7 @@ export type TeamRepositoryOrderField = 'CREATED_AT' | 'UPDATED_AT' | 'PUSHED_AT'
19789
19946
  /** The possible team review assignment algorithms */
19790
19947
  export type TeamReviewAssignmentAlgorithm = 'ROUND_ROBIN' | 'LOAD_BALANCE';
19791
19948
  /** Represents a team that can be requested to review a pull request. */
19792
- export type TeamReviewRequestable = (Team) & {
19949
+ export type TeamReviewRequestable = (EnterpriseTeam | Team) & {
19793
19950
  __isUnion?: true;
19794
19951
  };
19795
19952
  /** The role of a user on a team. */
@@ -21358,6 +21515,8 @@ export interface WorkflowRun {
21358
21515
  databaseId: (Scalars['Int'] | null);
21359
21516
  /** The log of deployment reviews */
21360
21517
  deploymentReviews: DeploymentReviewConnection;
21518
+ /** The human-readable title of the workflow run. */
21519
+ displayTitle: (Scalars['String'] | null);
21361
21520
  /** The event that triggered the workflow run */
21362
21521
  event: Scalars['String'];
21363
21522
  /** The workflow file */
@@ -21368,6 +21527,8 @@ export interface WorkflowRun {
21368
21527
  pendingDeploymentRequests: DeploymentRequestConnection;
21369
21528
  /** The HTTP path for this workflow run */
21370
21529
  resourcePath: Scalars['URI'];
21530
+ /** The attempt number of this workflow run. */
21531
+ runAttempt: Scalars['Int'];
21371
21532
  /** A number that uniquely identifies this workflow run in its parent workflow. */
21372
21533
  runNumber: Scalars['Int'];
21373
21534
  /** Identifies the date and time when the object was last updated. */
@@ -21432,7 +21593,7 @@ export interface WorkflowsParameters {
21432
21593
  workflows: WorkflowFileReference[];
21433
21594
  __typename: 'WorkflowsParameters';
21434
21595
  }
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) & {
21596
+ 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 | IssueFieldMultiSelect | IssueFieldMultiSelectValue | 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
21597
  __isUnion?: true;
21437
21598
  };
21438
21599
  /** Autogenerated input type of AbortQueuedMigrations */
@@ -21763,7 +21924,7 @@ export interface AddLabelsToLabelableInput {
21763
21924
  /** The id of the labelable object to add labels to. */
21764
21925
  labelableId: Scalars['ID'];
21765
21926
  /** The ids of the labels to add. */
21766
- labelIds: Scalars['ID'][];
21927
+ labelIds?: (Scalars['ID'][] | null);
21767
21928
  }
21768
21929
  /** Autogenerated return type of AddLabelsToLabelable. */
21769
21930
  export interface AddLabelsToLabelablePayloadGenqlSelection {
@@ -23168,12 +23329,13 @@ export interface BulkSponsorship {
23168
23329
  /** Types that can represent a repository ruleset bypass actor. */
23169
23330
  export interface BypassActorGenqlSelection {
23170
23331
  on_App?: AppGenqlSelection;
23332
+ on_EnterpriseTeam?: EnterpriseTeamGenqlSelection;
23171
23333
  on_Team?: TeamGenqlSelection;
23172
23334
  on_User?: UserGenqlSelection;
23173
23335
  on_Node?: NodeGenqlSelection;
23336
+ on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
23174
23337
  on_MemberStatusable?: MemberStatusableGenqlSelection;
23175
23338
  on_Subscribable?: SubscribableGenqlSelection;
23176
- on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
23177
23339
  on_Actor?: ActorGenqlSelection;
23178
23340
  on_Agentic?: AgenticGenqlSelection;
23179
23341
  on_PackageOwner?: PackageOwnerGenqlSelection;
@@ -28247,6 +28409,30 @@ export interface EnterpriseGenqlSelection {
28247
28409
  description?: boolean | number;
28248
28410
  /** The description of the enterprise as HTML. */
28249
28411
  descriptionHTML?: boolean | number;
28412
+ /** Find an enterprise team by its slug. */
28413
+ enterpriseTeam?: (EnterpriseTeamGenqlSelection & {
28414
+ __args: {
28415
+ /** The slug of the enterprise team to find. */
28416
+ slug: Scalars['String'];
28417
+ };
28418
+ });
28419
+ /** A list of enterprise teams in this enterprise. */
28420
+ enterpriseTeams?: (EnterpriseTeamConnectionGenqlSelection & {
28421
+ __args?: {
28422
+ /** The search string to look for. */
28423
+ query?: (Scalars['String'] | null);
28424
+ /** Ordering options for enterprise teams returned from the connection. */
28425
+ orderBy?: (EnterpriseTeamOrder | null);
28426
+ /** Returns the elements in the list that come after the specified cursor. */
28427
+ after?: (Scalars['String'] | null);
28428
+ /** Returns the elements in the list that come before the specified cursor. */
28429
+ before?: (Scalars['String'] | null);
28430
+ /** Returns the first _n_ elements from the list. */
28431
+ first?: (Scalars['Int'] | null);
28432
+ /** Returns the last _n_ elements from the list. */
28433
+ last?: (Scalars['Int'] | null);
28434
+ };
28435
+ });
28250
28436
  /** The Node ID of the Enterprise object */
28251
28437
  id?: boolean | number;
28252
28438
  /** The location of the enterprise. */
@@ -28481,7 +28667,10 @@ export interface EnterpriseAuditEntryDataGenqlSelection {
28481
28667
  export interface EnterpriseBillingInfoGenqlSelection {
28482
28668
  /** The number of licenseable users/emails across the enterprise. */
28483
28669
  allLicensableUsersCount?: boolean | number;
28484
- /** The number of data packs used by all organizations owned by the enterprise. */
28670
+ /**
28671
+ * @deprecated LFS data packs have been removed. Always returns 0.
28672
+ * The number of data packs used by all organizations owned by the enterprise. Data packs are deprecated, always returns 0.
28673
+ */
28485
28674
  assetPacks?: boolean | number;
28486
28675
  /** The bandwidth quota in GB for all organizations owned by the enterprise. */
28487
28676
  bandwidthQuota?: boolean | number;
@@ -29606,6 +29795,156 @@ export interface EnterpriseServerUserAccountsUploadOrder {
29606
29795
  /** The ordering direction. */
29607
29796
  direction: OrderDirection;
29608
29797
  }
29798
+ /** A team that belongs to an enterprise and can be assigned to multiple organizations. */
29799
+ export interface EnterpriseTeamGenqlSelection {
29800
+ /** Organizations this team is assigned to. */
29801
+ assignedOrganizations?: (EnterpriseTeamAssignedOrganizationConnectionGenqlSelection & {
29802
+ __args?: {
29803
+ /** Returns the elements in the list that come after the specified cursor. */
29804
+ after?: (Scalars['String'] | null);
29805
+ /** Returns the elements in the list that come before the specified cursor. */
29806
+ before?: (Scalars['String'] | null);
29807
+ /** Returns the first _n_ elements from the list. */
29808
+ first?: (Scalars['Int'] | null);
29809
+ /** Returns the last _n_ elements from the list. */
29810
+ last?: (Scalars['Int'] | null);
29811
+ /** Ordering options for organizations returned from the connection. */
29812
+ orderBy?: (EnterpriseTeamOrganizationOrder | null);
29813
+ };
29814
+ });
29815
+ /** The human-readable, unique identifier for the enterprise and team. */
29816
+ combinedSlug?: boolean | number;
29817
+ /** Identifies the date and time when the object was created. */
29818
+ createdAt?: boolean | number;
29819
+ /** The description of the team. */
29820
+ description?: boolean | number;
29821
+ /** The enterprise this team belongs to. */
29822
+ enterprise?: EnterpriseGenqlSelection;
29823
+ /** A list of users who are members of this enterprise team. */
29824
+ enterpriseTeamMembers?: (EnterpriseTeamMemberConnectionGenqlSelection & {
29825
+ __args?: {
29826
+ /** Returns the elements in the list that come after the specified cursor. */
29827
+ after?: (Scalars['String'] | null);
29828
+ /** Returns the elements in the list that come before the specified cursor. */
29829
+ before?: (Scalars['String'] | null);
29830
+ /** Returns the first _n_ elements from the list. */
29831
+ first?: (Scalars['Int'] | null);
29832
+ /** Returns the last _n_ elements from the list. */
29833
+ last?: (Scalars['Int'] | null);
29834
+ /** The search string to look for. */
29835
+ query?: (Scalars['String'] | null);
29836
+ /** Order for the connection. */
29837
+ orderBy?: (EnterpriseTeamMemberOrder | null);
29838
+ };
29839
+ });
29840
+ /** Identifies the primary key from the database as a BigInt. */
29841
+ fullDatabaseId?: boolean | number;
29842
+ /** The Node ID of the EnterpriseTeam object */
29843
+ id?: boolean | number;
29844
+ /** Whether the viewer is a member of this team. */
29845
+ isViewerMember?: boolean | number;
29846
+ /** The name of the team. */
29847
+ name?: boolean | number;
29848
+ /** Whether the team will receive notifications when mentioned. */
29849
+ notificationSetting?: boolean | number;
29850
+ /** How this team selects its associated organizations. */
29851
+ organizationSelectionType?: boolean | number;
29852
+ /** The level of privacy the team has. */
29853
+ privacy?: boolean | number;
29854
+ /** The slug corresponding to the team. */
29855
+ slug?: boolean | number;
29856
+ /** Identifies the date and time when the object was last updated. */
29857
+ updatedAt?: boolean | number;
29858
+ /** Whether the viewer can administer this team. */
29859
+ viewerCanAdminister?: boolean | number;
29860
+ __typename?: boolean | number;
29861
+ __scalar?: boolean | number;
29862
+ }
29863
+ /** The connection type for Organization. */
29864
+ export interface EnterpriseTeamAssignedOrganizationConnectionGenqlSelection {
29865
+ /** A list of edges. */
29866
+ edges?: EnterpriseTeamAssignedOrganizationEdgeGenqlSelection;
29867
+ /** A list of nodes. */
29868
+ nodes?: OrganizationGenqlSelection;
29869
+ /** Information to aid in pagination. */
29870
+ pageInfo?: PageInfoGenqlSelection;
29871
+ /** Identifies the total count of items in the connection. */
29872
+ totalCount?: boolean | number;
29873
+ __typename?: boolean | number;
29874
+ __scalar?: boolean | number;
29875
+ }
29876
+ /** Represents an organization that an enterprise team is assigned to. */
29877
+ export interface EnterpriseTeamAssignedOrganizationEdgeGenqlSelection {
29878
+ /** A cursor for use in pagination. */
29879
+ cursor?: boolean | number;
29880
+ node?: OrganizationGenqlSelection;
29881
+ __typename?: boolean | number;
29882
+ __scalar?: boolean | number;
29883
+ }
29884
+ /** A list of enterprise teams owned by the enterprise. */
29885
+ export interface EnterpriseTeamConnectionGenqlSelection {
29886
+ /** A list of edges. */
29887
+ edges?: EnterpriseTeamEdgeGenqlSelection;
29888
+ /** A list of nodes. */
29889
+ nodes?: EnterpriseTeamGenqlSelection;
29890
+ /** Information to aid in pagination. */
29891
+ pageInfo?: PageInfoGenqlSelection;
29892
+ /** Identifies the total count of items in the connection. */
29893
+ totalCount?: boolean | number;
29894
+ __typename?: boolean | number;
29895
+ __scalar?: boolean | number;
29896
+ }
29897
+ /** An edge in a connection. */
29898
+ export interface EnterpriseTeamEdgeGenqlSelection {
29899
+ /** A cursor for use in pagination. */
29900
+ cursor?: boolean | number;
29901
+ /** The item at the end of the edge. */
29902
+ node?: EnterpriseTeamGenqlSelection;
29903
+ __typename?: boolean | number;
29904
+ __scalar?: boolean | number;
29905
+ }
29906
+ /** The connection type for User. */
29907
+ export interface EnterpriseTeamMemberConnectionGenqlSelection {
29908
+ /** A list of edges. */
29909
+ edges?: EnterpriseTeamMemberEdgeGenqlSelection;
29910
+ /** A list of nodes. */
29911
+ nodes?: UserGenqlSelection;
29912
+ /** Information to aid in pagination. */
29913
+ pageInfo?: PageInfoGenqlSelection;
29914
+ /** Identifies the total count of items in the connection. */
29915
+ totalCount?: boolean | number;
29916
+ __typename?: boolean | number;
29917
+ __scalar?: boolean | number;
29918
+ }
29919
+ /** Represents a user who is a member of an enterprise team. */
29920
+ export interface EnterpriseTeamMemberEdgeGenqlSelection {
29921
+ /** A cursor for use in pagination. */
29922
+ cursor?: boolean | number;
29923
+ node?: UserGenqlSelection;
29924
+ __typename?: boolean | number;
29925
+ __scalar?: boolean | number;
29926
+ }
29927
+ /** Ordering options for enterprise team member connections. */
29928
+ export interface EnterpriseTeamMemberOrder {
29929
+ /** The field to order enterprise team members by. */
29930
+ field: EnterpriseTeamMemberOrderField;
29931
+ /** The ordering direction. */
29932
+ direction: OrderDirection;
29933
+ }
29934
+ /** Ordering options for enterprise team connections. */
29935
+ export interface EnterpriseTeamOrder {
29936
+ /** The field to order enterprise teams by. */
29937
+ field: EnterpriseTeamOrderField;
29938
+ /** The ordering direction. */
29939
+ direction: OrderDirection;
29940
+ }
29941
+ /** Ordering options for enterprise team organization connections. */
29942
+ export interface EnterpriseTeamOrganizationOrder {
29943
+ /** The field to order organizations by. */
29944
+ field: EnterpriseTeamOrganizationOrderField;
29945
+ /** The ordering direction. */
29946
+ direction: OrderDirection;
29947
+ }
29609
29948
  /** An account for a user who is an admin of an enterprise or a member of an enterprise through one or more organizations. */
29610
29949
  export interface EnterpriseUserAccountGenqlSelection {
29611
29950
  /** A URL pointing to the enterprise user account's public avatar. */
@@ -31396,11 +31735,14 @@ export interface IssueFieldCommonGenqlSelection {
31396
31735
  dataType?: boolean | number;
31397
31736
  /** The issue field's description. */
31398
31737
  description?: boolean | number;
31738
+ /** Identifies the primary key from the database as a BigInt. */
31739
+ fullDatabaseId?: boolean | number;
31399
31740
  /** The issue field's name. */
31400
31741
  name?: boolean | number;
31401
31742
  /** The issue field's visibility. */
31402
31743
  visibility?: boolean | number;
31403
31744
  on_IssueFieldDate?: IssueFieldDateGenqlSelection;
31745
+ on_IssueFieldMultiSelect?: IssueFieldMultiSelectGenqlSelection;
31404
31746
  on_IssueFieldNumber?: IssueFieldNumberGenqlSelection;
31405
31747
  on_IssueFieldSingleSelect?: IssueFieldSingleSelectGenqlSelection;
31406
31748
  on_IssueFieldText?: IssueFieldTextGenqlSelection;
@@ -31417,6 +31759,8 @@ export interface IssueFieldCreateOrUpdateInput {
31417
31759
  dateValue?: (Scalars['String'] | null);
31418
31760
  /** The ID of the selected option, for a single select field */
31419
31761
  singleSelectOptionId?: (Scalars['ID'] | null);
31762
+ /** The IDs of the selected options, for a multi select field */
31763
+ multiSelectOptionIds?: (Scalars['ID'][] | null);
31420
31764
  /** The numeric value, for a number field */
31421
31765
  numberValue?: (Scalars['Float'] | null);
31422
31766
  /** Set to true to delete the field value */
@@ -31430,6 +31774,8 @@ export interface IssueFieldDateGenqlSelection {
31430
31774
  dataType?: boolean | number;
31431
31775
  /** The issue field's description. */
31432
31776
  description?: boolean | number;
31777
+ /** Identifies the primary key from the database as a BigInt. */
31778
+ fullDatabaseId?: boolean | number;
31433
31779
  /** The Node ID of the IssueFieldDate object */
31434
31780
  id?: boolean | number;
31435
31781
  /** The issue field's name. */
@@ -31450,6 +31796,40 @@ export interface IssueFieldDateValueGenqlSelection {
31450
31796
  __typename?: boolean | number;
31451
31797
  __scalar?: boolean | number;
31452
31798
  }
31799
+ /** Represents a multi select issue field. */
31800
+ export interface IssueFieldMultiSelectGenqlSelection {
31801
+ /** The issue field's creation timestamp. */
31802
+ createdAt?: boolean | number;
31803
+ /** The issue field's data type. */
31804
+ dataType?: boolean | number;
31805
+ /** The issue field's description. */
31806
+ description?: boolean | number;
31807
+ /** Identifies the primary key from the database as a BigInt. */
31808
+ fullDatabaseId?: boolean | number;
31809
+ /** The Node ID of the IssueFieldMultiSelect object */
31810
+ id?: boolean | number;
31811
+ /** The issue field's name. */
31812
+ name?: boolean | number;
31813
+ /** Options for the multi select field */
31814
+ options?: IssueFieldSingleSelectOptionGenqlSelection;
31815
+ /** The issue field's visibility. */
31816
+ visibility?: boolean | number;
31817
+ __typename?: boolean | number;
31818
+ __scalar?: boolean | number;
31819
+ }
31820
+ /** The value of a multi select field in an Issue item. */
31821
+ export interface IssueFieldMultiSelectValueGenqlSelection {
31822
+ /** The issue field that contains this value. */
31823
+ field?: IssueFieldsGenqlSelection;
31824
+ /** The Node ID of the IssueFieldMultiSelectValue object */
31825
+ id?: boolean | number;
31826
+ /** The selected options. */
31827
+ options?: IssueFieldSingleSelectOptionGenqlSelection;
31828
+ /** Comma-separated names of the selected options. */
31829
+ value?: boolean | number;
31830
+ __typename?: boolean | number;
31831
+ __scalar?: boolean | number;
31832
+ }
31453
31833
  /** Represents a number issue field. */
31454
31834
  export interface IssueFieldNumberGenqlSelection {
31455
31835
  /** The issue field's creation timestamp. */
@@ -31458,6 +31838,8 @@ export interface IssueFieldNumberGenqlSelection {
31458
31838
  dataType?: boolean | number;
31459
31839
  /** The issue field's description. */
31460
31840
  description?: boolean | number;
31841
+ /** Identifies the primary key from the database as a BigInt. */
31842
+ fullDatabaseId?: boolean | number;
31461
31843
  /** The Node ID of the IssueFieldNumber object */
31462
31844
  id?: boolean | number;
31463
31845
  /** The issue field's name. */
@@ -31506,6 +31888,8 @@ export interface IssueFieldSingleSelectGenqlSelection {
31506
31888
  dataType?: boolean | number;
31507
31889
  /** The issue field's description. */
31508
31890
  description?: boolean | number;
31891
+ /** Identifies the primary key from the database as a BigInt. */
31892
+ fullDatabaseId?: boolean | number;
31509
31893
  /** The Node ID of the IssueFieldSingleSelect object */
31510
31894
  id?: boolean | number;
31511
31895
  /** The issue field's name. */
@@ -31521,8 +31905,12 @@ export interface IssueFieldSingleSelectGenqlSelection {
31521
31905
  export interface IssueFieldSingleSelectOptionGenqlSelection {
31522
31906
  /** The option's display color. */
31523
31907
  color?: boolean | number;
31908
+ /** Identifies the primary key from the database. */
31909
+ databaseId?: boolean | number;
31524
31910
  /** The option's plain-text description. */
31525
31911
  description?: boolean | number;
31912
+ /** Identifies the primary key from the database as a BigInt. */
31913
+ fullDatabaseId?: boolean | number;
31526
31914
  /** The Node ID of the IssueFieldSingleSelectOption object */
31527
31915
  id?: boolean | number;
31528
31916
  /** The option's name. */
@@ -31570,6 +31958,8 @@ export interface IssueFieldTextGenqlSelection {
31570
31958
  dataType?: boolean | number;
31571
31959
  /** The issue field's description. */
31572
31960
  description?: boolean | number;
31961
+ /** Identifies the primary key from the database as a BigInt. */
31962
+ fullDatabaseId?: boolean | number;
31573
31963
  /** The Node ID of the IssueFieldText object */
31574
31964
  id?: boolean | number;
31575
31965
  /** The issue field's name. */
@@ -31593,6 +31983,7 @@ export interface IssueFieldTextValueGenqlSelection {
31593
31983
  /** Issue field values */
31594
31984
  export interface IssueFieldValueGenqlSelection {
31595
31985
  on_IssueFieldDateValue?: IssueFieldDateValueGenqlSelection;
31986
+ on_IssueFieldMultiSelectValue?: IssueFieldMultiSelectValueGenqlSelection;
31596
31987
  on_IssueFieldNumberValue?: IssueFieldNumberValueGenqlSelection;
31597
31988
  on_IssueFieldSingleSelectValue?: IssueFieldSingleSelectValueGenqlSelection;
31598
31989
  on_IssueFieldTextValue?: IssueFieldTextValueGenqlSelection;
@@ -31605,6 +31996,7 @@ export interface IssueFieldValueCommonGenqlSelection {
31605
31996
  /** The issue field that contains this value. */
31606
31997
  field?: IssueFieldsGenqlSelection;
31607
31998
  on_IssueFieldDateValue?: IssueFieldDateValueGenqlSelection;
31999
+ on_IssueFieldMultiSelectValue?: IssueFieldMultiSelectValueGenqlSelection;
31608
32000
  on_IssueFieldNumberValue?: IssueFieldNumberValueGenqlSelection;
31609
32001
  on_IssueFieldSingleSelectValue?: IssueFieldSingleSelectValueGenqlSelection;
31610
32002
  on_IssueFieldTextValue?: IssueFieldTextValueGenqlSelection;
@@ -31636,6 +32028,7 @@ export interface IssueFieldValueEdgeGenqlSelection {
31636
32028
  /** Possible issue fields. */
31637
32029
  export interface IssueFieldsGenqlSelection {
31638
32030
  on_IssueFieldDate?: IssueFieldDateGenqlSelection;
32031
+ on_IssueFieldMultiSelect?: IssueFieldMultiSelectGenqlSelection;
31639
32032
  on_IssueFieldNumber?: IssueFieldNumberGenqlSelection;
31640
32033
  on_IssueFieldSingleSelect?: IssueFieldSingleSelectGenqlSelection;
31641
32034
  on_IssueFieldText?: IssueFieldTextGenqlSelection;
@@ -35676,6 +36069,7 @@ export interface NodeGenqlSelection {
35676
36069
  on_EnterpriseServerUserAccount?: EnterpriseServerUserAccountGenqlSelection;
35677
36070
  on_EnterpriseServerUserAccountEmail?: EnterpriseServerUserAccountEmailGenqlSelection;
35678
36071
  on_EnterpriseServerUserAccountsUpload?: EnterpriseServerUserAccountsUploadGenqlSelection;
36072
+ on_EnterpriseTeam?: EnterpriseTeamGenqlSelection;
35679
36073
  on_EnterpriseUserAccount?: EnterpriseUserAccountGenqlSelection;
35680
36074
  on_Environment?: EnvironmentGenqlSelection;
35681
36075
  on_ExternalIdentity?: ExternalIdentityGenqlSelection;
@@ -35693,6 +36087,8 @@ export interface NodeGenqlSelection {
35693
36087
  on_IssueFieldChangedEvent?: IssueFieldChangedEventGenqlSelection;
35694
36088
  on_IssueFieldDate?: IssueFieldDateGenqlSelection;
35695
36089
  on_IssueFieldDateValue?: IssueFieldDateValueGenqlSelection;
36090
+ on_IssueFieldMultiSelect?: IssueFieldMultiSelectGenqlSelection;
36091
+ on_IssueFieldMultiSelectValue?: IssueFieldMultiSelectValueGenqlSelection;
35696
36092
  on_IssueFieldNumber?: IssueFieldNumberGenqlSelection;
35697
36093
  on_IssueFieldNumberValue?: IssueFieldNumberValueGenqlSelection;
35698
36094
  on_IssueFieldRemovedEvent?: IssueFieldRemovedEventGenqlSelection;
@@ -40439,12 +40835,14 @@ export interface ParentIssueRemovedEventGenqlSelection {
40439
40835
  }
40440
40836
  /** Types that can grant permissions on a repository to a user */
40441
40837
  export interface PermissionGranterGenqlSelection {
40838
+ on_EnterpriseTeam?: EnterpriseTeamGenqlSelection;
40442
40839
  on_Organization?: OrganizationGenqlSelection;
40443
40840
  on_Repository?: RepositoryGenqlSelection;
40444
40841
  on_Team?: TeamGenqlSelection;
40842
+ on_Node?: NodeGenqlSelection;
40843
+ on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
40445
40844
  on_Actor?: ActorGenqlSelection;
40446
40845
  on_MemberStatusable?: MemberStatusableGenqlSelection;
40447
- on_Node?: NodeGenqlSelection;
40448
40846
  on_PackageOwner?: PackageOwnerGenqlSelection;
40449
40847
  on_ProfileOwner?: ProfileOwnerGenqlSelection;
40450
40848
  on_ProjectOwner?: ProjectOwnerGenqlSelection;
@@ -40458,7 +40856,6 @@ export interface PermissionGranterGenqlSelection {
40458
40856
  on_RepositoryInfo?: RepositoryInfoGenqlSelection;
40459
40857
  on_Starrable?: StarrableGenqlSelection;
40460
40858
  on_Subscribable?: SubscribableGenqlSelection;
40461
- on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
40462
40859
  __typename?: boolean | number;
40463
40860
  }
40464
40861
  /** A level of permission and source for a user's access to a repository. */
@@ -41561,6 +41958,8 @@ export interface ProjectV2GenqlSelection {
41561
41958
  last?: (Scalars['Int'] | null);
41562
41959
  /** Ordering options for project v2 items returned from the connection */
41563
41960
  orderBy?: (ProjectV2ItemOrder | null);
41961
+ /** Filter items by their archived state. Defaults to only returning items that are not archived. */
41962
+ archivedStates?: (ProjectV2ItemArchivedState[] | null);
41564
41963
  /** Search query for filtering items */
41565
41964
  query?: (Scalars['String'] | null);
41566
41965
  };
@@ -41893,6 +42292,7 @@ export interface ProjectV2Filters {
41893
42292
  /** Possible issue field values for a Project item. */
41894
42293
  export interface ProjectV2IssueFieldValuesGenqlSelection {
41895
42294
  on_IssueFieldDateValue?: IssueFieldDateValueGenqlSelection;
42295
+ on_IssueFieldMultiSelectValue?: IssueFieldMultiSelectValueGenqlSelection;
41896
42296
  on_IssueFieldNumberValue?: IssueFieldNumberValueGenqlSelection;
41897
42297
  on_IssueFieldSingleSelectValue?: IssueFieldSingleSelectValueGenqlSelection;
41898
42298
  on_IssueFieldTextValue?: IssueFieldTextValueGenqlSelection;
@@ -48128,6 +48528,21 @@ export interface RepositoryGenqlSelection {
48128
48528
  number: Scalars['Int'];
48129
48529
  };
48130
48530
  });
48531
+ /** A list of the repository's issue fields, inherited from the organization */
48532
+ issueFields?: (IssueFieldsConnectionGenqlSelection & {
48533
+ __args?: {
48534
+ /** Returns the elements in the list that come after the specified cursor. */
48535
+ after?: (Scalars['String'] | null);
48536
+ /** Returns the elements in the list that come before the specified cursor. */
48537
+ before?: (Scalars['String'] | null);
48538
+ /** Returns the first _n_ elements from the list. */
48539
+ first?: (Scalars['Int'] | null);
48540
+ /** Returns the last _n_ elements from the list. */
48541
+ last?: (Scalars['Int'] | null);
48542
+ /** Ordering options for issue fields returned from the connection. */
48543
+ orderBy?: (IssueFieldOrder | null);
48544
+ };
48545
+ });
48131
48546
  /** Returns a single issue-like object from the current repository by number. */
48132
48547
  issueOrPullRequest?: (IssueOrPullRequestGenqlSelection & {
48133
48548
  __args: {
@@ -49941,15 +50356,16 @@ export interface RequestReviewsPayloadGenqlSelection {
49941
50356
  /** Types that can be requested reviewers. */
49942
50357
  export interface RequestedReviewerGenqlSelection {
49943
50358
  on_Bot?: BotGenqlSelection;
50359
+ on_EnterpriseTeam?: EnterpriseTeamGenqlSelection;
49944
50360
  on_Mannequin?: MannequinGenqlSelection;
49945
50361
  on_Team?: TeamGenqlSelection;
49946
50362
  on_User?: UserGenqlSelection;
49947
50363
  on_Actor?: ActorGenqlSelection;
49948
50364
  on_Node?: NodeGenqlSelection;
49949
50365
  on_UniformResourceLocatable?: UniformResourceLocatableGenqlSelection;
50366
+ on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
49950
50367
  on_MemberStatusable?: MemberStatusableGenqlSelection;
49951
50368
  on_Subscribable?: SubscribableGenqlSelection;
49952
- on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
49953
50369
  on_Agentic?: AgenticGenqlSelection;
49954
50370
  on_PackageOwner?: PackageOwnerGenqlSelection;
49955
50371
  on_ProfileOwner?: ProfileOwnerGenqlSelection;
@@ -50822,7 +51238,7 @@ export interface SetIssueFieldValueInput {
50822
51238
  clientMutationId?: (Scalars['String'] | null);
50823
51239
  /** The ID of the Issue to set the field value on. */
50824
51240
  issueId: Scalars['ID'];
50825
- /** The issue fields to set on the issue */
51241
+ /** The issue fields to set on the issue. */
50826
51242
  issueFields: IssueFieldCreateOrUpdateInput[];
50827
51243
  }
50828
51244
  /** Autogenerated return type of SetIssueFieldValue. */
@@ -53162,6 +53578,7 @@ export interface TeamReviewRequestableGenqlSelection {
53162
53578
  name?: boolean | number;
53163
53579
  /** A unique, human-readable identifier for the team. */
53164
53580
  slug?: boolean | number;
53581
+ on_EnterpriseTeam?: EnterpriseTeamGenqlSelection;
53165
53582
  on_Team?: TeamGenqlSelection;
53166
53583
  __typename?: boolean | number;
53167
53584
  __scalar?: boolean | number;
@@ -54530,7 +54947,7 @@ export interface UpdateIssueFieldValueInput {
54530
54947
  clientMutationId?: (Scalars['String'] | null);
54531
54948
  /** The ID of the issue. */
54532
54949
  issueId: Scalars['ID'];
54533
- /** The field value to update. */
54950
+ /** The field value to update. May include an optional `rationale` or be flagged with `suggest: true` to be stored as a pending suggestion instead of being applied directly. */
54534
54951
  issueField: IssueFieldCreateOrUpdateInput;
54535
54952
  }
54536
54953
  /** Autogenerated return type of UpdateIssueFieldValue. */
@@ -56698,6 +57115,8 @@ export interface WorkflowRunGenqlSelection {
56698
57115
  last?: (Scalars['Int'] | null);
56699
57116
  };
56700
57117
  });
57118
+ /** The human-readable title of the workflow run. */
57119
+ displayTitle?: boolean | number;
56701
57120
  /** The event that triggered the workflow run */
56702
57121
  event?: boolean | number;
56703
57122
  /** The workflow file */
@@ -56719,6 +57138,8 @@ export interface WorkflowRunGenqlSelection {
56719
57138
  });
56720
57139
  /** The HTTP path for this workflow run */
56721
57140
  resourcePath?: boolean | number;
57141
+ /** The attempt number of this workflow run. */
57142
+ runAttempt?: boolean | number;
56722
57143
  /** A number that uniquely identifies this workflow run in its parent workflow. */
56723
57144
  runNumber?: boolean | number;
56724
57145
  /** Identifies the date and time when the object was last updated. */
@@ -56862,6 +57283,7 @@ export interface _EntityGenqlSelection {
56862
57283
  on_EnterpriseServerUserAccount?: EnterpriseServerUserAccountGenqlSelection;
56863
57284
  on_EnterpriseServerUserAccountEmail?: EnterpriseServerUserAccountEmailGenqlSelection;
56864
57285
  on_EnterpriseServerUserAccountsUpload?: EnterpriseServerUserAccountsUploadGenqlSelection;
57286
+ on_EnterpriseTeam?: EnterpriseTeamGenqlSelection;
56865
57287
  on_EnterpriseUserAccount?: EnterpriseUserAccountGenqlSelection;
56866
57288
  on_Environment?: EnvironmentGenqlSelection;
56867
57289
  on_ExternalIdentity?: ExternalIdentityGenqlSelection;
@@ -56879,6 +57301,8 @@ export interface _EntityGenqlSelection {
56879
57301
  on_IssueFieldChangedEvent?: IssueFieldChangedEventGenqlSelection;
56880
57302
  on_IssueFieldDate?: IssueFieldDateGenqlSelection;
56881
57303
  on_IssueFieldDateValue?: IssueFieldDateValueGenqlSelection;
57304
+ on_IssueFieldMultiSelect?: IssueFieldMultiSelectGenqlSelection;
57305
+ on_IssueFieldMultiSelectValue?: IssueFieldMultiSelectValueGenqlSelection;
56882
57306
  on_IssueFieldNumber?: IssueFieldNumberGenqlSelection;
56883
57307
  on_IssueFieldNumberValue?: IssueFieldNumberValueGenqlSelection;
56884
57308
  on_IssueFieldRemovedEvent?: IssueFieldRemovedEventGenqlSelection;
@@ -57090,6 +57514,7 @@ export interface _EntityGenqlSelection {
57090
57514
  on_Labelable?: LabelableGenqlSelection;
57091
57515
  on_Lockable?: LockableGenqlSelection;
57092
57516
  on_Votable?: VotableGenqlSelection;
57517
+ on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
57093
57518
  on_Starrable?: StarrableGenqlSelection;
57094
57519
  on_Assignable?: AssignableGenqlSelection;
57095
57520
  on_ProjectV2Owner?: ProjectV2OwnerGenqlSelection;
@@ -57116,7 +57541,6 @@ export interface _EntityGenqlSelection {
57116
57541
  on_TopicAuditEntryData?: TopicAuditEntryDataGenqlSelection;
57117
57542
  on_RepositoryInfo?: RepositoryInfoGenqlSelection;
57118
57543
  on_Migration?: MigrationGenqlSelection;
57119
- on_TeamReviewRequestable?: TeamReviewRequestableGenqlSelection;
57120
57544
  on_TeamAuditEntryData?: TeamAuditEntryDataGenqlSelection;
57121
57545
  on_Agentic?: AgenticGenqlSelection;
57122
57546
  __typename?: boolean | number;
@@ -58129,6 +58553,27 @@ export declare const isEnterpriseServerUserAccountsUploadConnection: (obj?: {
58129
58553
  export declare const isEnterpriseServerUserAccountsUploadEdge: (obj?: {
58130
58554
  __typename?: any;
58131
58555
  } | null) => obj is EnterpriseServerUserAccountsUploadEdge;
58556
+ export declare const isEnterpriseTeam: (obj?: {
58557
+ __typename?: any;
58558
+ } | null) => obj is EnterpriseTeam;
58559
+ export declare const isEnterpriseTeamAssignedOrganizationConnection: (obj?: {
58560
+ __typename?: any;
58561
+ } | null) => obj is EnterpriseTeamAssignedOrganizationConnection;
58562
+ export declare const isEnterpriseTeamAssignedOrganizationEdge: (obj?: {
58563
+ __typename?: any;
58564
+ } | null) => obj is EnterpriseTeamAssignedOrganizationEdge;
58565
+ export declare const isEnterpriseTeamConnection: (obj?: {
58566
+ __typename?: any;
58567
+ } | null) => obj is EnterpriseTeamConnection;
58568
+ export declare const isEnterpriseTeamEdge: (obj?: {
58569
+ __typename?: any;
58570
+ } | null) => obj is EnterpriseTeamEdge;
58571
+ export declare const isEnterpriseTeamMemberConnection: (obj?: {
58572
+ __typename?: any;
58573
+ } | null) => obj is EnterpriseTeamMemberConnection;
58574
+ export declare const isEnterpriseTeamMemberEdge: (obj?: {
58575
+ __typename?: any;
58576
+ } | null) => obj is EnterpriseTeamMemberEdge;
58132
58577
  export declare const isEnterpriseUserAccount: (obj?: {
58133
58578
  __typename?: any;
58134
58579
  } | null) => obj is EnterpriseUserAccount;
@@ -58312,6 +58757,12 @@ export declare const isIssueFieldDate: (obj?: {
58312
58757
  export declare const isIssueFieldDateValue: (obj?: {
58313
58758
  __typename?: any;
58314
58759
  } | null) => obj is IssueFieldDateValue;
58760
+ export declare const isIssueFieldMultiSelect: (obj?: {
58761
+ __typename?: any;
58762
+ } | null) => obj is IssueFieldMultiSelect;
58763
+ export declare const isIssueFieldMultiSelectValue: (obj?: {
58764
+ __typename?: any;
58765
+ } | null) => obj is IssueFieldMultiSelectValue;
58315
58766
  export declare const isIssueFieldNumber: (obj?: {
58316
58767
  __typename?: any;
58317
58768
  } | null) => obj is IssueFieldNumber;
@@ -60655,6 +61106,26 @@ export declare const enumEnterpriseServerUserAccountsUploadSyncState: {
60655
61106
  SUCCESS: "SUCCESS";
60656
61107
  FAILURE: "FAILURE";
60657
61108
  };
61109
+ export declare const enumEnterpriseTeamMemberOrderField: {
61110
+ ID: "ID";
61111
+ LOGIN: "LOGIN";
61112
+ CREATED_AT: "CREATED_AT";
61113
+ };
61114
+ export declare const enumEnterpriseTeamOrderField: {
61115
+ ID: "ID";
61116
+ NAME: "NAME";
61117
+ CREATED_AT: "CREATED_AT";
61118
+ };
61119
+ export declare const enumEnterpriseTeamOrganizationOrderField: {
61120
+ ID: "ID";
61121
+ LOGIN: "LOGIN";
61122
+ CREATED_AT: "CREATED_AT";
61123
+ };
61124
+ export declare const enumEnterpriseTeamOrganizationSelectionType: {
61125
+ DISABLED: "DISABLED";
61126
+ ALL: "ALL";
61127
+ SELECTED: "SELECTED";
61128
+ };
60658
61129
  export declare const enumEnterpriseUserAccountMembershipRole: {
60659
61130
  MEMBER: "MEMBER";
60660
61131
  OWNER: "OWNER";
@@ -60759,6 +61230,7 @@ export declare const enumIssueFieldDataType: {
60759
61230
  SINGLE_SELECT: "SINGLE_SELECT";
60760
61231
  DATE: "DATE";
60761
61232
  NUMBER: "NUMBER";
61233
+ MULTI_SELECT: "MULTI_SELECT";
60762
61234
  };
60763
61235
  export declare const enumIssueFieldOrderField: {
60764
61236
  CREATED_AT: "CREATED_AT";
@@ -61206,6 +61678,10 @@ export declare const enumProjectV2FieldType: {
61206
61678
  UPDATED: "UPDATED";
61207
61679
  CLOSED: "CLOSED";
61208
61680
  };
61681
+ export declare const enumProjectV2ItemArchivedState: {
61682
+ ARCHIVED: "ARCHIVED";
61683
+ NOT_ARCHIVED: "NOT_ARCHIVED";
61684
+ };
61209
61685
  export declare const enumProjectV2ItemFieldValueOrderField: {
61210
61686
  POSITION: "POSITION";
61211
61687
  };
@@ -61475,6 +61951,7 @@ export declare const enumReportedContentClassifiers: {
61475
61951
  OUTDATED: "OUTDATED";
61476
61952
  DUPLICATE: "DUPLICATE";
61477
61953
  RESOLVED: "RESOLVED";
61954
+ LOW_QUALITY: "LOW_QUALITY";
61478
61955
  };
61479
61956
  export declare const enumRepositoryAffiliation: {
61480
61957
  OWNER: "OWNER";