@tomsd/github-repo-js 0.4.3 → 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.
- package/dist/generated/github/schema.d.ts +137 -11
- package/dist/generated/github/types.d.ts +39 -0
- package/dist/index.iife.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/repl.mjs +1 -1
- package/package.json +5 -5
|
@@ -5560,7 +5560,7 @@ export interface IssueFieldChangedEvent {
|
|
|
5560
5560
|
__typename: 'IssueFieldChangedEvent';
|
|
5561
5561
|
}
|
|
5562
5562
|
/** Common fields across different issue field types */
|
|
5563
|
-
export type IssueFieldCommon = (IssueFieldDate | IssueFieldNumber | IssueFieldSingleSelect | IssueFieldText) & {
|
|
5563
|
+
export type IssueFieldCommon = (IssueFieldDate | IssueFieldMultiSelect | IssueFieldNumber | IssueFieldSingleSelect | IssueFieldText) & {
|
|
5564
5564
|
__isUnion?: true;
|
|
5565
5565
|
};
|
|
5566
5566
|
/** The type of an issue field. */
|
|
@@ -5573,6 +5573,8 @@ export interface IssueFieldDate {
|
|
|
5573
5573
|
dataType: IssueFieldDataType;
|
|
5574
5574
|
/** The issue field's description. */
|
|
5575
5575
|
description: (Scalars['String'] | null);
|
|
5576
|
+
/** Identifies the primary key from the database as a BigInt. */
|
|
5577
|
+
fullDatabaseId: (Scalars['BigInt'] | null);
|
|
5576
5578
|
/** The Node ID of the IssueFieldDate object */
|
|
5577
5579
|
id: Scalars['ID'];
|
|
5578
5580
|
/** The issue field's name. */
|
|
@@ -5591,6 +5593,38 @@ export interface IssueFieldDateValue {
|
|
|
5591
5593
|
value: Scalars['String'];
|
|
5592
5594
|
__typename: 'IssueFieldDateValue';
|
|
5593
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
|
+
}
|
|
5594
5628
|
/** Represents a number issue field. */
|
|
5595
5629
|
export interface IssueFieldNumber {
|
|
5596
5630
|
/** The issue field's creation timestamp. */
|
|
@@ -5599,6 +5633,8 @@ export interface IssueFieldNumber {
|
|
|
5599
5633
|
dataType: IssueFieldDataType;
|
|
5600
5634
|
/** The issue field's description. */
|
|
5601
5635
|
description: (Scalars['String'] | null);
|
|
5636
|
+
/** Identifies the primary key from the database as a BigInt. */
|
|
5637
|
+
fullDatabaseId: (Scalars['BigInt'] | null);
|
|
5602
5638
|
/** The Node ID of the IssueFieldNumber object */
|
|
5603
5639
|
id: Scalars['ID'];
|
|
5604
5640
|
/** The issue field's name. */
|
|
@@ -5639,6 +5675,8 @@ export interface IssueFieldSingleSelect {
|
|
|
5639
5675
|
dataType: IssueFieldDataType;
|
|
5640
5676
|
/** The issue field's description. */
|
|
5641
5677
|
description: (Scalars['String'] | null);
|
|
5678
|
+
/** Identifies the primary key from the database as a BigInt. */
|
|
5679
|
+
fullDatabaseId: (Scalars['BigInt'] | null);
|
|
5642
5680
|
/** The Node ID of the IssueFieldSingleSelect object */
|
|
5643
5681
|
id: Scalars['ID'];
|
|
5644
5682
|
/** The issue field's name. */
|
|
@@ -5653,8 +5691,12 @@ export interface IssueFieldSingleSelect {
|
|
|
5653
5691
|
export interface IssueFieldSingleSelectOption {
|
|
5654
5692
|
/** The option's display color. */
|
|
5655
5693
|
color: IssueFieldSingleSelectOptionColor;
|
|
5694
|
+
/** Identifies the primary key from the database. */
|
|
5695
|
+
databaseId: (Scalars['Int'] | null);
|
|
5656
5696
|
/** The option's plain-text description. */
|
|
5657
5697
|
description: (Scalars['String'] | null);
|
|
5698
|
+
/** Identifies the primary key from the database as a BigInt. */
|
|
5699
|
+
fullDatabaseId: (Scalars['BigInt'] | null);
|
|
5658
5700
|
/** The Node ID of the IssueFieldSingleSelectOption object */
|
|
5659
5701
|
id: Scalars['ID'];
|
|
5660
5702
|
/** The option's name. */
|
|
@@ -5691,6 +5733,8 @@ export interface IssueFieldText {
|
|
|
5691
5733
|
dataType: IssueFieldDataType;
|
|
5692
5734
|
/** The issue field's description. */
|
|
5693
5735
|
description: (Scalars['String'] | null);
|
|
5736
|
+
/** Identifies the primary key from the database as a BigInt. */
|
|
5737
|
+
fullDatabaseId: (Scalars['BigInt'] | null);
|
|
5694
5738
|
/** The Node ID of the IssueFieldText object */
|
|
5695
5739
|
id: Scalars['ID'];
|
|
5696
5740
|
/** The issue field's name. */
|
|
@@ -5710,11 +5754,11 @@ export interface IssueFieldTextValue {
|
|
|
5710
5754
|
__typename: 'IssueFieldTextValue';
|
|
5711
5755
|
}
|
|
5712
5756
|
/** Issue field values */
|
|
5713
|
-
export type IssueFieldValue = (IssueFieldDateValue | IssueFieldNumberValue | IssueFieldSingleSelectValue | IssueFieldTextValue) & {
|
|
5757
|
+
export type IssueFieldValue = (IssueFieldDateValue | IssueFieldMultiSelectValue | IssueFieldNumberValue | IssueFieldSingleSelectValue | IssueFieldTextValue) & {
|
|
5714
5758
|
__isUnion?: true;
|
|
5715
5759
|
};
|
|
5716
5760
|
/** Common fields across different issue field value types */
|
|
5717
|
-
export type IssueFieldValueCommon = (IssueFieldDateValue | IssueFieldNumberValue | IssueFieldSingleSelectValue | IssueFieldTextValue) & {
|
|
5761
|
+
export type IssueFieldValueCommon = (IssueFieldDateValue | IssueFieldMultiSelectValue | IssueFieldNumberValue | IssueFieldSingleSelectValue | IssueFieldTextValue) & {
|
|
5718
5762
|
__isUnion?: true;
|
|
5719
5763
|
};
|
|
5720
5764
|
/** The connection type for IssueFieldValue. */
|
|
@@ -5740,7 +5784,7 @@ export interface IssueFieldValueEdge {
|
|
|
5740
5784
|
/** The visibility of an issue field. */
|
|
5741
5785
|
export type IssueFieldVisibility = 'ORG_ONLY' | 'ALL';
|
|
5742
5786
|
/** Possible issue fields. */
|
|
5743
|
-
export type IssueFields = (IssueFieldDate | IssueFieldNumber | IssueFieldSingleSelect | IssueFieldText) & {
|
|
5787
|
+
export type IssueFields = (IssueFieldDate | IssueFieldMultiSelect | IssueFieldNumber | IssueFieldSingleSelect | IssueFieldText) & {
|
|
5744
5788
|
__isUnion?: true;
|
|
5745
5789
|
};
|
|
5746
5790
|
/** The connection type for IssueFields. */
|
|
@@ -7781,7 +7825,7 @@ export interface Mutation {
|
|
|
7781
7825
|
__typename: 'Mutation';
|
|
7782
7826
|
}
|
|
7783
7827
|
/** An object with an ID. */
|
|
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) & {
|
|
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) & {
|
|
7785
7829
|
__isUnion?: true;
|
|
7786
7830
|
};
|
|
7787
7831
|
/** The possible values for the notification restriction setting. */
|
|
@@ -12402,7 +12446,7 @@ export type ProjectV2FieldOrderField = 'POSITION' | 'CREATED_AT' | 'NAME';
|
|
|
12402
12446
|
/** The type of a project field. */
|
|
12403
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';
|
|
12404
12448
|
/** Possible issue field values for a Project item. */
|
|
12405
|
-
export type ProjectV2IssueFieldValues = (IssueFieldDateValue | IssueFieldNumberValue | IssueFieldSingleSelectValue | IssueFieldTextValue) & {
|
|
12449
|
+
export type ProjectV2IssueFieldValues = (IssueFieldDateValue | IssueFieldMultiSelectValue | IssueFieldNumberValue | IssueFieldSingleSelectValue | IssueFieldTextValue) & {
|
|
12406
12450
|
__isUnion?: true;
|
|
12407
12451
|
};
|
|
12408
12452
|
/** An item within a Project. */
|
|
@@ -12436,6 +12480,8 @@ export interface ProjectV2Item {
|
|
|
12436
12480
|
updatedAt: Scalars['DateTime'];
|
|
12437
12481
|
__typename: 'ProjectV2Item';
|
|
12438
12482
|
}
|
|
12483
|
+
/** The possible archived states of a `ProjectV2Item`. */
|
|
12484
|
+
export type ProjectV2ItemArchivedState = 'ARCHIVED' | 'NOT_ARCHIVED';
|
|
12439
12485
|
/** The connection type for ProjectV2Item. */
|
|
12440
12486
|
export interface ProjectV2ItemConnection {
|
|
12441
12487
|
/** A list of edges. */
|
|
@@ -16620,7 +16666,7 @@ export interface RepoRemoveTopicAuditEntry {
|
|
|
16620
16666
|
__typename: 'RepoRemoveTopicAuditEntry';
|
|
16621
16667
|
}
|
|
16622
16668
|
/** The reasons a piece of content can be reported or minimized. */
|
|
16623
|
-
export type ReportedContentClassifiers = 'SPAM' | 'ABUSE' | 'OFF_TOPIC' | 'OUTDATED' | 'DUPLICATE' | 'RESOLVED';
|
|
16669
|
+
export type ReportedContentClassifiers = 'SPAM' | 'ABUSE' | 'OFF_TOPIC' | 'OUTDATED' | 'DUPLICATE' | 'RESOLVED' | 'LOW_QUALITY';
|
|
16624
16670
|
/** A repository contains the content for a project. */
|
|
16625
16671
|
export interface Repository {
|
|
16626
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. */
|
|
@@ -21469,6 +21515,8 @@ export interface WorkflowRun {
|
|
|
21469
21515
|
databaseId: (Scalars['Int'] | null);
|
|
21470
21516
|
/** The log of deployment reviews */
|
|
21471
21517
|
deploymentReviews: DeploymentReviewConnection;
|
|
21518
|
+
/** The human-readable title of the workflow run. */
|
|
21519
|
+
displayTitle: (Scalars['String'] | null);
|
|
21472
21520
|
/** The event that triggered the workflow run */
|
|
21473
21521
|
event: Scalars['String'];
|
|
21474
21522
|
/** The workflow file */
|
|
@@ -21479,6 +21527,8 @@ export interface WorkflowRun {
|
|
|
21479
21527
|
pendingDeploymentRequests: DeploymentRequestConnection;
|
|
21480
21528
|
/** The HTTP path for this workflow run */
|
|
21481
21529
|
resourcePath: Scalars['URI'];
|
|
21530
|
+
/** The attempt number of this workflow run. */
|
|
21531
|
+
runAttempt: Scalars['Int'];
|
|
21482
21532
|
/** A number that uniquely identifies this workflow run in its parent workflow. */
|
|
21483
21533
|
runNumber: Scalars['Int'];
|
|
21484
21534
|
/** Identifies the date and time when the object was last updated. */
|
|
@@ -21543,7 +21593,7 @@ export interface WorkflowsParameters {
|
|
|
21543
21593
|
workflows: WorkflowFileReference[];
|
|
21544
21594
|
__typename: 'WorkflowsParameters';
|
|
21545
21595
|
}
|
|
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) & {
|
|
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) & {
|
|
21547
21597
|
__isUnion?: true;
|
|
21548
21598
|
};
|
|
21549
21599
|
/** Autogenerated input type of AbortQueuedMigrations */
|
|
@@ -21874,7 +21924,7 @@ export interface AddLabelsToLabelableInput {
|
|
|
21874
21924
|
/** The id of the labelable object to add labels to. */
|
|
21875
21925
|
labelableId: Scalars['ID'];
|
|
21876
21926
|
/** The ids of the labels to add. */
|
|
21877
|
-
labelIds
|
|
21927
|
+
labelIds?: (Scalars['ID'][] | null);
|
|
21878
21928
|
}
|
|
21879
21929
|
/** Autogenerated return type of AddLabelsToLabelable. */
|
|
21880
21930
|
export interface AddLabelsToLabelablePayloadGenqlSelection {
|
|
@@ -31685,11 +31735,14 @@ export interface IssueFieldCommonGenqlSelection {
|
|
|
31685
31735
|
dataType?: boolean | number;
|
|
31686
31736
|
/** The issue field's description. */
|
|
31687
31737
|
description?: boolean | number;
|
|
31738
|
+
/** Identifies the primary key from the database as a BigInt. */
|
|
31739
|
+
fullDatabaseId?: boolean | number;
|
|
31688
31740
|
/** The issue field's name. */
|
|
31689
31741
|
name?: boolean | number;
|
|
31690
31742
|
/** The issue field's visibility. */
|
|
31691
31743
|
visibility?: boolean | number;
|
|
31692
31744
|
on_IssueFieldDate?: IssueFieldDateGenqlSelection;
|
|
31745
|
+
on_IssueFieldMultiSelect?: IssueFieldMultiSelectGenqlSelection;
|
|
31693
31746
|
on_IssueFieldNumber?: IssueFieldNumberGenqlSelection;
|
|
31694
31747
|
on_IssueFieldSingleSelect?: IssueFieldSingleSelectGenqlSelection;
|
|
31695
31748
|
on_IssueFieldText?: IssueFieldTextGenqlSelection;
|
|
@@ -31706,6 +31759,8 @@ export interface IssueFieldCreateOrUpdateInput {
|
|
|
31706
31759
|
dateValue?: (Scalars['String'] | null);
|
|
31707
31760
|
/** The ID of the selected option, for a single select field */
|
|
31708
31761
|
singleSelectOptionId?: (Scalars['ID'] | null);
|
|
31762
|
+
/** The IDs of the selected options, for a multi select field */
|
|
31763
|
+
multiSelectOptionIds?: (Scalars['ID'][] | null);
|
|
31709
31764
|
/** The numeric value, for a number field */
|
|
31710
31765
|
numberValue?: (Scalars['Float'] | null);
|
|
31711
31766
|
/** Set to true to delete the field value */
|
|
@@ -31719,6 +31774,8 @@ export interface IssueFieldDateGenqlSelection {
|
|
|
31719
31774
|
dataType?: boolean | number;
|
|
31720
31775
|
/** The issue field's description. */
|
|
31721
31776
|
description?: boolean | number;
|
|
31777
|
+
/** Identifies the primary key from the database as a BigInt. */
|
|
31778
|
+
fullDatabaseId?: boolean | number;
|
|
31722
31779
|
/** The Node ID of the IssueFieldDate object */
|
|
31723
31780
|
id?: boolean | number;
|
|
31724
31781
|
/** The issue field's name. */
|
|
@@ -31739,6 +31796,40 @@ export interface IssueFieldDateValueGenqlSelection {
|
|
|
31739
31796
|
__typename?: boolean | number;
|
|
31740
31797
|
__scalar?: boolean | number;
|
|
31741
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
|
+
}
|
|
31742
31833
|
/** Represents a number issue field. */
|
|
31743
31834
|
export interface IssueFieldNumberGenqlSelection {
|
|
31744
31835
|
/** The issue field's creation timestamp. */
|
|
@@ -31747,6 +31838,8 @@ export interface IssueFieldNumberGenqlSelection {
|
|
|
31747
31838
|
dataType?: boolean | number;
|
|
31748
31839
|
/** The issue field's description. */
|
|
31749
31840
|
description?: boolean | number;
|
|
31841
|
+
/** Identifies the primary key from the database as a BigInt. */
|
|
31842
|
+
fullDatabaseId?: boolean | number;
|
|
31750
31843
|
/** The Node ID of the IssueFieldNumber object */
|
|
31751
31844
|
id?: boolean | number;
|
|
31752
31845
|
/** The issue field's name. */
|
|
@@ -31795,6 +31888,8 @@ export interface IssueFieldSingleSelectGenqlSelection {
|
|
|
31795
31888
|
dataType?: boolean | number;
|
|
31796
31889
|
/** The issue field's description. */
|
|
31797
31890
|
description?: boolean | number;
|
|
31891
|
+
/** Identifies the primary key from the database as a BigInt. */
|
|
31892
|
+
fullDatabaseId?: boolean | number;
|
|
31798
31893
|
/** The Node ID of the IssueFieldSingleSelect object */
|
|
31799
31894
|
id?: boolean | number;
|
|
31800
31895
|
/** The issue field's name. */
|
|
@@ -31810,8 +31905,12 @@ export interface IssueFieldSingleSelectGenqlSelection {
|
|
|
31810
31905
|
export interface IssueFieldSingleSelectOptionGenqlSelection {
|
|
31811
31906
|
/** The option's display color. */
|
|
31812
31907
|
color?: boolean | number;
|
|
31908
|
+
/** Identifies the primary key from the database. */
|
|
31909
|
+
databaseId?: boolean | number;
|
|
31813
31910
|
/** The option's plain-text description. */
|
|
31814
31911
|
description?: boolean | number;
|
|
31912
|
+
/** Identifies the primary key from the database as a BigInt. */
|
|
31913
|
+
fullDatabaseId?: boolean | number;
|
|
31815
31914
|
/** The Node ID of the IssueFieldSingleSelectOption object */
|
|
31816
31915
|
id?: boolean | number;
|
|
31817
31916
|
/** The option's name. */
|
|
@@ -31859,6 +31958,8 @@ export interface IssueFieldTextGenqlSelection {
|
|
|
31859
31958
|
dataType?: boolean | number;
|
|
31860
31959
|
/** The issue field's description. */
|
|
31861
31960
|
description?: boolean | number;
|
|
31961
|
+
/** Identifies the primary key from the database as a BigInt. */
|
|
31962
|
+
fullDatabaseId?: boolean | number;
|
|
31862
31963
|
/** The Node ID of the IssueFieldText object */
|
|
31863
31964
|
id?: boolean | number;
|
|
31864
31965
|
/** The issue field's name. */
|
|
@@ -31882,6 +31983,7 @@ export interface IssueFieldTextValueGenqlSelection {
|
|
|
31882
31983
|
/** Issue field values */
|
|
31883
31984
|
export interface IssueFieldValueGenqlSelection {
|
|
31884
31985
|
on_IssueFieldDateValue?: IssueFieldDateValueGenqlSelection;
|
|
31986
|
+
on_IssueFieldMultiSelectValue?: IssueFieldMultiSelectValueGenqlSelection;
|
|
31885
31987
|
on_IssueFieldNumberValue?: IssueFieldNumberValueGenqlSelection;
|
|
31886
31988
|
on_IssueFieldSingleSelectValue?: IssueFieldSingleSelectValueGenqlSelection;
|
|
31887
31989
|
on_IssueFieldTextValue?: IssueFieldTextValueGenqlSelection;
|
|
@@ -31894,6 +31996,7 @@ export interface IssueFieldValueCommonGenqlSelection {
|
|
|
31894
31996
|
/** The issue field that contains this value. */
|
|
31895
31997
|
field?: IssueFieldsGenqlSelection;
|
|
31896
31998
|
on_IssueFieldDateValue?: IssueFieldDateValueGenqlSelection;
|
|
31999
|
+
on_IssueFieldMultiSelectValue?: IssueFieldMultiSelectValueGenqlSelection;
|
|
31897
32000
|
on_IssueFieldNumberValue?: IssueFieldNumberValueGenqlSelection;
|
|
31898
32001
|
on_IssueFieldSingleSelectValue?: IssueFieldSingleSelectValueGenqlSelection;
|
|
31899
32002
|
on_IssueFieldTextValue?: IssueFieldTextValueGenqlSelection;
|
|
@@ -31925,6 +32028,7 @@ export interface IssueFieldValueEdgeGenqlSelection {
|
|
|
31925
32028
|
/** Possible issue fields. */
|
|
31926
32029
|
export interface IssueFieldsGenqlSelection {
|
|
31927
32030
|
on_IssueFieldDate?: IssueFieldDateGenqlSelection;
|
|
32031
|
+
on_IssueFieldMultiSelect?: IssueFieldMultiSelectGenqlSelection;
|
|
31928
32032
|
on_IssueFieldNumber?: IssueFieldNumberGenqlSelection;
|
|
31929
32033
|
on_IssueFieldSingleSelect?: IssueFieldSingleSelectGenqlSelection;
|
|
31930
32034
|
on_IssueFieldText?: IssueFieldTextGenqlSelection;
|
|
@@ -35983,6 +36087,8 @@ export interface NodeGenqlSelection {
|
|
|
35983
36087
|
on_IssueFieldChangedEvent?: IssueFieldChangedEventGenqlSelection;
|
|
35984
36088
|
on_IssueFieldDate?: IssueFieldDateGenqlSelection;
|
|
35985
36089
|
on_IssueFieldDateValue?: IssueFieldDateValueGenqlSelection;
|
|
36090
|
+
on_IssueFieldMultiSelect?: IssueFieldMultiSelectGenqlSelection;
|
|
36091
|
+
on_IssueFieldMultiSelectValue?: IssueFieldMultiSelectValueGenqlSelection;
|
|
35986
36092
|
on_IssueFieldNumber?: IssueFieldNumberGenqlSelection;
|
|
35987
36093
|
on_IssueFieldNumberValue?: IssueFieldNumberValueGenqlSelection;
|
|
35988
36094
|
on_IssueFieldRemovedEvent?: IssueFieldRemovedEventGenqlSelection;
|
|
@@ -41852,6 +41958,8 @@ export interface ProjectV2GenqlSelection {
|
|
|
41852
41958
|
last?: (Scalars['Int'] | null);
|
|
41853
41959
|
/** Ordering options for project v2 items returned from the connection */
|
|
41854
41960
|
orderBy?: (ProjectV2ItemOrder | null);
|
|
41961
|
+
/** Filter items by their archived state. Defaults to only returning items that are not archived. */
|
|
41962
|
+
archivedStates?: (ProjectV2ItemArchivedState[] | null);
|
|
41855
41963
|
/** Search query for filtering items */
|
|
41856
41964
|
query?: (Scalars['String'] | null);
|
|
41857
41965
|
};
|
|
@@ -42184,6 +42292,7 @@ export interface ProjectV2Filters {
|
|
|
42184
42292
|
/** Possible issue field values for a Project item. */
|
|
42185
42293
|
export interface ProjectV2IssueFieldValuesGenqlSelection {
|
|
42186
42294
|
on_IssueFieldDateValue?: IssueFieldDateValueGenqlSelection;
|
|
42295
|
+
on_IssueFieldMultiSelectValue?: IssueFieldMultiSelectValueGenqlSelection;
|
|
42187
42296
|
on_IssueFieldNumberValue?: IssueFieldNumberValueGenqlSelection;
|
|
42188
42297
|
on_IssueFieldSingleSelectValue?: IssueFieldSingleSelectValueGenqlSelection;
|
|
42189
42298
|
on_IssueFieldTextValue?: IssueFieldTextValueGenqlSelection;
|
|
@@ -51129,7 +51238,7 @@ export interface SetIssueFieldValueInput {
|
|
|
51129
51238
|
clientMutationId?: (Scalars['String'] | null);
|
|
51130
51239
|
/** The ID of the Issue to set the field value on. */
|
|
51131
51240
|
issueId: Scalars['ID'];
|
|
51132
|
-
/** The issue fields to set on the issue */
|
|
51241
|
+
/** The issue fields to set on the issue. */
|
|
51133
51242
|
issueFields: IssueFieldCreateOrUpdateInput[];
|
|
51134
51243
|
}
|
|
51135
51244
|
/** Autogenerated return type of SetIssueFieldValue. */
|
|
@@ -54838,7 +54947,7 @@ export interface UpdateIssueFieldValueInput {
|
|
|
54838
54947
|
clientMutationId?: (Scalars['String'] | null);
|
|
54839
54948
|
/** The ID of the issue. */
|
|
54840
54949
|
issueId: Scalars['ID'];
|
|
54841
|
-
/** 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. */
|
|
54842
54951
|
issueField: IssueFieldCreateOrUpdateInput;
|
|
54843
54952
|
}
|
|
54844
54953
|
/** Autogenerated return type of UpdateIssueFieldValue. */
|
|
@@ -57006,6 +57115,8 @@ export interface WorkflowRunGenqlSelection {
|
|
|
57006
57115
|
last?: (Scalars['Int'] | null);
|
|
57007
57116
|
};
|
|
57008
57117
|
});
|
|
57118
|
+
/** The human-readable title of the workflow run. */
|
|
57119
|
+
displayTitle?: boolean | number;
|
|
57009
57120
|
/** The event that triggered the workflow run */
|
|
57010
57121
|
event?: boolean | number;
|
|
57011
57122
|
/** The workflow file */
|
|
@@ -57027,6 +57138,8 @@ export interface WorkflowRunGenqlSelection {
|
|
|
57027
57138
|
});
|
|
57028
57139
|
/** The HTTP path for this workflow run */
|
|
57029
57140
|
resourcePath?: boolean | number;
|
|
57141
|
+
/** The attempt number of this workflow run. */
|
|
57142
|
+
runAttempt?: boolean | number;
|
|
57030
57143
|
/** A number that uniquely identifies this workflow run in its parent workflow. */
|
|
57031
57144
|
runNumber?: boolean | number;
|
|
57032
57145
|
/** Identifies the date and time when the object was last updated. */
|
|
@@ -57188,6 +57301,8 @@ export interface _EntityGenqlSelection {
|
|
|
57188
57301
|
on_IssueFieldChangedEvent?: IssueFieldChangedEventGenqlSelection;
|
|
57189
57302
|
on_IssueFieldDate?: IssueFieldDateGenqlSelection;
|
|
57190
57303
|
on_IssueFieldDateValue?: IssueFieldDateValueGenqlSelection;
|
|
57304
|
+
on_IssueFieldMultiSelect?: IssueFieldMultiSelectGenqlSelection;
|
|
57305
|
+
on_IssueFieldMultiSelectValue?: IssueFieldMultiSelectValueGenqlSelection;
|
|
57191
57306
|
on_IssueFieldNumber?: IssueFieldNumberGenqlSelection;
|
|
57192
57307
|
on_IssueFieldNumberValue?: IssueFieldNumberValueGenqlSelection;
|
|
57193
57308
|
on_IssueFieldRemovedEvent?: IssueFieldRemovedEventGenqlSelection;
|
|
@@ -58642,6 +58757,12 @@ export declare const isIssueFieldDate: (obj?: {
|
|
|
58642
58757
|
export declare const isIssueFieldDateValue: (obj?: {
|
|
58643
58758
|
__typename?: any;
|
|
58644
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;
|
|
58645
58766
|
export declare const isIssueFieldNumber: (obj?: {
|
|
58646
58767
|
__typename?: any;
|
|
58647
58768
|
} | null) => obj is IssueFieldNumber;
|
|
@@ -61557,6 +61678,10 @@ export declare const enumProjectV2FieldType: {
|
|
|
61557
61678
|
UPDATED: "UPDATED";
|
|
61558
61679
|
CLOSED: "CLOSED";
|
|
61559
61680
|
};
|
|
61681
|
+
export declare const enumProjectV2ItemArchivedState: {
|
|
61682
|
+
ARCHIVED: "ARCHIVED";
|
|
61683
|
+
NOT_ARCHIVED: "NOT_ARCHIVED";
|
|
61684
|
+
};
|
|
61560
61685
|
export declare const enumProjectV2ItemFieldValueOrderField: {
|
|
61561
61686
|
POSITION: "POSITION";
|
|
61562
61687
|
};
|
|
@@ -61826,6 +61951,7 @@ export declare const enumReportedContentClassifiers: {
|
|
|
61826
61951
|
OUTDATED: "OUTDATED";
|
|
61827
61952
|
DUPLICATE: "DUPLICATE";
|
|
61828
61953
|
RESOLVED: "RESOLVED";
|
|
61954
|
+
LOW_QUALITY: "LOW_QUALITY";
|
|
61829
61955
|
};
|
|
61830
61956
|
export declare const enumRepositoryAffiliation: {
|
|
61831
61957
|
OWNER: "OWNER";
|
|
@@ -5469,9 +5469,11 @@ declare const _default: {
|
|
|
5469
5469
|
createdAt: number[];
|
|
5470
5470
|
dataType: number[];
|
|
5471
5471
|
description: number[];
|
|
5472
|
+
fullDatabaseId: number[];
|
|
5472
5473
|
name: number[];
|
|
5473
5474
|
visibility: number[];
|
|
5474
5475
|
on_IssueFieldDate: number[];
|
|
5476
|
+
on_IssueFieldMultiSelect: number[];
|
|
5475
5477
|
on_IssueFieldNumber: number[];
|
|
5476
5478
|
on_IssueFieldSingleSelect: number[];
|
|
5477
5479
|
on_IssueFieldText: number[];
|
|
@@ -5482,6 +5484,7 @@ declare const _default: {
|
|
|
5482
5484
|
textValue: number[];
|
|
5483
5485
|
dateValue: number[];
|
|
5484
5486
|
singleSelectOptionId: number[];
|
|
5487
|
+
multiSelectOptionIds: number[];
|
|
5485
5488
|
numberValue: number[];
|
|
5486
5489
|
delete: number[];
|
|
5487
5490
|
__typename: number[];
|
|
@@ -5491,6 +5494,7 @@ declare const _default: {
|
|
|
5491
5494
|
createdAt: number[];
|
|
5492
5495
|
dataType: number[];
|
|
5493
5496
|
description: number[];
|
|
5497
|
+
fullDatabaseId: number[];
|
|
5494
5498
|
id: number[];
|
|
5495
5499
|
name: number[];
|
|
5496
5500
|
visibility: number[];
|
|
@@ -5502,10 +5506,29 @@ declare const _default: {
|
|
|
5502
5506
|
value: number[];
|
|
5503
5507
|
__typename: number[];
|
|
5504
5508
|
};
|
|
5509
|
+
IssueFieldMultiSelect: {
|
|
5510
|
+
createdAt: number[];
|
|
5511
|
+
dataType: number[];
|
|
5512
|
+
description: number[];
|
|
5513
|
+
fullDatabaseId: number[];
|
|
5514
|
+
id: number[];
|
|
5515
|
+
name: number[];
|
|
5516
|
+
options: number[];
|
|
5517
|
+
visibility: number[];
|
|
5518
|
+
__typename: number[];
|
|
5519
|
+
};
|
|
5520
|
+
IssueFieldMultiSelectValue: {
|
|
5521
|
+
field: number[];
|
|
5522
|
+
id: number[];
|
|
5523
|
+
options: number[];
|
|
5524
|
+
value: number[];
|
|
5525
|
+
__typename: number[];
|
|
5526
|
+
};
|
|
5505
5527
|
IssueFieldNumber: {
|
|
5506
5528
|
createdAt: number[];
|
|
5507
5529
|
dataType: number[];
|
|
5508
5530
|
description: number[];
|
|
5531
|
+
fullDatabaseId: number[];
|
|
5509
5532
|
id: number[];
|
|
5510
5533
|
name: number[];
|
|
5511
5534
|
visibility: number[];
|
|
@@ -5534,6 +5557,7 @@ declare const _default: {
|
|
|
5534
5557
|
createdAt: number[];
|
|
5535
5558
|
dataType: number[];
|
|
5536
5559
|
description: number[];
|
|
5560
|
+
fullDatabaseId: number[];
|
|
5537
5561
|
id: number[];
|
|
5538
5562
|
name: number[];
|
|
5539
5563
|
options: number[];
|
|
@@ -5542,7 +5566,9 @@ declare const _default: {
|
|
|
5542
5566
|
};
|
|
5543
5567
|
IssueFieldSingleSelectOption: {
|
|
5544
5568
|
color: number[];
|
|
5569
|
+
databaseId: number[];
|
|
5545
5570
|
description: number[];
|
|
5571
|
+
fullDatabaseId: number[];
|
|
5546
5572
|
id: number[];
|
|
5547
5573
|
name: number[];
|
|
5548
5574
|
priority: number[];
|
|
@@ -5570,6 +5596,7 @@ declare const _default: {
|
|
|
5570
5596
|
createdAt: number[];
|
|
5571
5597
|
dataType: number[];
|
|
5572
5598
|
description: number[];
|
|
5599
|
+
fullDatabaseId: number[];
|
|
5573
5600
|
id: number[];
|
|
5574
5601
|
name: number[];
|
|
5575
5602
|
visibility: number[];
|
|
@@ -5583,6 +5610,7 @@ declare const _default: {
|
|
|
5583
5610
|
};
|
|
5584
5611
|
IssueFieldValue: {
|
|
5585
5612
|
on_IssueFieldDateValue: number[];
|
|
5613
|
+
on_IssueFieldMultiSelectValue: number[];
|
|
5586
5614
|
on_IssueFieldNumberValue: number[];
|
|
5587
5615
|
on_IssueFieldSingleSelectValue: number[];
|
|
5588
5616
|
on_IssueFieldTextValue: number[];
|
|
@@ -5593,6 +5621,7 @@ declare const _default: {
|
|
|
5593
5621
|
IssueFieldValueCommon: {
|
|
5594
5622
|
field: number[];
|
|
5595
5623
|
on_IssueFieldDateValue: number[];
|
|
5624
|
+
on_IssueFieldMultiSelectValue: number[];
|
|
5596
5625
|
on_IssueFieldNumberValue: number[];
|
|
5597
5626
|
on_IssueFieldSingleSelectValue: number[];
|
|
5598
5627
|
on_IssueFieldTextValue: number[];
|
|
@@ -5613,6 +5642,7 @@ declare const _default: {
|
|
|
5613
5642
|
IssueFieldVisibility: {};
|
|
5614
5643
|
IssueFields: {
|
|
5615
5644
|
on_IssueFieldDate: number[];
|
|
5645
|
+
on_IssueFieldMultiSelect: number[];
|
|
5616
5646
|
on_IssueFieldNumber: number[];
|
|
5617
5647
|
on_IssueFieldSingleSelect: number[];
|
|
5618
5648
|
on_IssueFieldText: number[];
|
|
@@ -7560,6 +7590,8 @@ declare const _default: {
|
|
|
7560
7590
|
on_IssueFieldChangedEvent: number[];
|
|
7561
7591
|
on_IssueFieldDate: number[];
|
|
7562
7592
|
on_IssueFieldDateValue: number[];
|
|
7593
|
+
on_IssueFieldMultiSelect: number[];
|
|
7594
|
+
on_IssueFieldMultiSelectValue: number[];
|
|
7563
7595
|
on_IssueFieldNumber: number[];
|
|
7564
7596
|
on_IssueFieldNumberValue: number[];
|
|
7565
7597
|
on_IssueFieldRemovedEvent: number[];
|
|
@@ -9828,6 +9860,7 @@ declare const _default: {
|
|
|
9828
9860
|
first: number[];
|
|
9829
9861
|
last: number[];
|
|
9830
9862
|
orderBy: number[];
|
|
9863
|
+
archivedStates: (string | number)[];
|
|
9831
9864
|
query: number[];
|
|
9832
9865
|
})[];
|
|
9833
9866
|
number: number[];
|
|
@@ -10023,6 +10056,7 @@ declare const _default: {
|
|
|
10023
10056
|
};
|
|
10024
10057
|
ProjectV2IssueFieldValues: {
|
|
10025
10058
|
on_IssueFieldDateValue: number[];
|
|
10059
|
+
on_IssueFieldMultiSelectValue: number[];
|
|
10026
10060
|
on_IssueFieldNumberValue: number[];
|
|
10027
10061
|
on_IssueFieldSingleSelectValue: number[];
|
|
10028
10062
|
on_IssueFieldTextValue: number[];
|
|
@@ -10053,6 +10087,7 @@ declare const _default: {
|
|
|
10053
10087
|
updatedAt: number[];
|
|
10054
10088
|
__typename: number[];
|
|
10055
10089
|
};
|
|
10090
|
+
ProjectV2ItemArchivedState: {};
|
|
10056
10091
|
ProjectV2ItemConnection: {
|
|
10057
10092
|
edges: number[];
|
|
10058
10093
|
nodes: number[];
|
|
@@ -17452,6 +17487,7 @@ declare const _default: {
|
|
|
17452
17487
|
first: number[];
|
|
17453
17488
|
last: number[];
|
|
17454
17489
|
})[];
|
|
17490
|
+
displayTitle: number[];
|
|
17455
17491
|
event: number[];
|
|
17456
17492
|
file: number[];
|
|
17457
17493
|
id: number[];
|
|
@@ -17462,6 +17498,7 @@ declare const _default: {
|
|
|
17462
17498
|
last: number[];
|
|
17463
17499
|
})[];
|
|
17464
17500
|
resourcePath: number[];
|
|
17501
|
+
runAttempt: number[];
|
|
17465
17502
|
runNumber: number[];
|
|
17466
17503
|
updatedAt: number[];
|
|
17467
17504
|
url: number[];
|
|
@@ -17593,6 +17630,8 @@ declare const _default: {
|
|
|
17593
17630
|
on_IssueFieldChangedEvent: number[];
|
|
17594
17631
|
on_IssueFieldDate: number[];
|
|
17595
17632
|
on_IssueFieldDateValue: number[];
|
|
17633
|
+
on_IssueFieldMultiSelect: number[];
|
|
17634
|
+
on_IssueFieldMultiSelectValue: number[];
|
|
17596
17635
|
on_IssueFieldNumber: number[];
|
|
17597
17636
|
on_IssueFieldNumberValue: number[];
|
|
17598
17637
|
on_IssueFieldRemovedEvent: number[];
|