typescript-github-action-template 0.2.55 → 0.2.57
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/.yarn/install-state.gz +0 -0
- package/dist/__graphql__/graphql.d.ts +109 -17
- package/package.json +2 -2
package/.yarn/install-state.gz
CHANGED
|
Binary file
|
|
@@ -1609,7 +1609,7 @@ export type BulkSponsorship = {
|
|
|
1609
1609
|
sponsorableLogin?: InputMaybe<Scalars['String']['input']>;
|
|
1610
1610
|
};
|
|
1611
1611
|
/** Types that can represent a repository ruleset bypass actor. */
|
|
1612
|
-
export type BypassActor = App | Team;
|
|
1612
|
+
export type BypassActor = App | Team | User;
|
|
1613
1613
|
/** A user, team, or app who has the ability to bypass a force push requirement on a protected branch. */
|
|
1614
1614
|
export type BypassForcePushAllowance = Node & {
|
|
1615
1615
|
__typename: 'BypassForcePushAllowance';
|
|
@@ -2834,8 +2834,9 @@ export type CommitComment = Comment & Deletable & Minimizable & Node & Reactable
|
|
|
2834
2834
|
lastEditedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
2835
2835
|
/**
|
|
2836
2836
|
* Returns why the comment was minimized. One of `abuse`, `off-topic`,
|
|
2837
|
-
* `outdated`, `resolved`, `duplicate` and `
|
|
2838
|
-
* formatting of these values differs from the inputs to the
|
|
2837
|
+
* `outdated`, `resolved`, `duplicate`, `spam`, and `low-quality`. Note that the
|
|
2838
|
+
* case and formatting of these values differs from the inputs to the
|
|
2839
|
+
* `MinimizeComment` mutation.
|
|
2839
2840
|
*/
|
|
2840
2841
|
minimizedReason?: Maybe<Scalars['String']['output']>;
|
|
2841
2842
|
/** Identifies the file path associated with the comment. */
|
|
@@ -6200,8 +6201,9 @@ export type DiscussionComment = Comment & Deletable & Minimizable & Node & React
|
|
|
6200
6201
|
lastEditedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
6201
6202
|
/**
|
|
6202
6203
|
* Returns why the comment was minimized. One of `abuse`, `off-topic`,
|
|
6203
|
-
* `outdated`, `resolved`, `duplicate` and `
|
|
6204
|
-
* formatting of these values differs from the inputs to the
|
|
6204
|
+
* `outdated`, `resolved`, `duplicate`, `spam`, and `low-quality`. Note that the
|
|
6205
|
+
* case and formatting of these values differs from the inputs to the
|
|
6206
|
+
* `MinimizeComment` mutation.
|
|
6205
6207
|
*/
|
|
6206
6208
|
minimizedReason?: Maybe<Scalars['String']['output']>;
|
|
6207
6209
|
/** Identifies when the comment was published at. */
|
|
@@ -8485,8 +8487,9 @@ export type GistComment = Comment & Deletable & Minimizable & Node & Updatable &
|
|
|
8485
8487
|
lastEditedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
8486
8488
|
/**
|
|
8487
8489
|
* Returns why the comment was minimized. One of `abuse`, `off-topic`,
|
|
8488
|
-
* `outdated`, `resolved`, `duplicate` and `
|
|
8489
|
-
* formatting of these values differs from the inputs to the
|
|
8490
|
+
* `outdated`, `resolved`, `duplicate`, `spam`, and `low-quality`. Note that the
|
|
8491
|
+
* case and formatting of these values differs from the inputs to the
|
|
8492
|
+
* `MinimizeComment` mutation.
|
|
8490
8493
|
*/
|
|
8491
8494
|
minimizedReason?: Maybe<Scalars['String']['output']>;
|
|
8492
8495
|
/** Identifies when the comment was published at. */
|
|
@@ -9391,8 +9394,9 @@ export type IssueComment = Comment & Deletable & Minimizable & Node & Pinnable &
|
|
|
9391
9394
|
lastEditedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
9392
9395
|
/**
|
|
9393
9396
|
* Returns why the comment was minimized. One of `abuse`, `off-topic`,
|
|
9394
|
-
* `outdated`, `resolved`, `duplicate` and `
|
|
9395
|
-
* formatting of these values differs from the inputs to the
|
|
9397
|
+
* `outdated`, `resolved`, `duplicate`, `spam`, and `low-quality`. Note that the
|
|
9398
|
+
* case and formatting of these values differs from the inputs to the
|
|
9399
|
+
* `MinimizeComment` mutation.
|
|
9396
9400
|
*/
|
|
9397
9401
|
minimizedReason?: Maybe<Scalars['String']['output']>;
|
|
9398
9402
|
/** Identifies the date and time when this entity was pinned. */
|
|
@@ -9571,6 +9575,42 @@ export type IssueEdge = {
|
|
|
9571
9575
|
/** The item at the end of the edge. */
|
|
9572
9576
|
node?: Maybe<Issue>;
|
|
9573
9577
|
};
|
|
9578
|
+
/** Represents a 'issue_field_added' event on a given issue. */
|
|
9579
|
+
export type IssueFieldAddedEvent = Node & {
|
|
9580
|
+
__typename: 'IssueFieldAddedEvent';
|
|
9581
|
+
/** Identifies the actor who performed the event. */
|
|
9582
|
+
actor?: Maybe<Actor>;
|
|
9583
|
+
/** The color if it is a single-select field. */
|
|
9584
|
+
color?: Maybe<Scalars['String']['output']>;
|
|
9585
|
+
/** Identifies the date and time when the object was created. */
|
|
9586
|
+
createdAt: Scalars['DateTime']['output'];
|
|
9587
|
+
/** The Node ID of the IssueFieldAddedEvent object */
|
|
9588
|
+
id: Scalars['ID']['output'];
|
|
9589
|
+
/** The issue field added. */
|
|
9590
|
+
issueField?: Maybe<IssueFields>;
|
|
9591
|
+
/** The value of the added field. */
|
|
9592
|
+
value?: Maybe<Scalars['String']['output']>;
|
|
9593
|
+
};
|
|
9594
|
+
/** Represents a 'issue_field_changed' event on a given issue. */
|
|
9595
|
+
export type IssueFieldChangedEvent = Node & {
|
|
9596
|
+
__typename: 'IssueFieldChangedEvent';
|
|
9597
|
+
/** Identifies the actor who performed the event. */
|
|
9598
|
+
actor?: Maybe<Actor>;
|
|
9599
|
+
/** Identifies the date and time when the object was created. */
|
|
9600
|
+
createdAt: Scalars['DateTime']['output'];
|
|
9601
|
+
/** The Node ID of the IssueFieldChangedEvent object */
|
|
9602
|
+
id: Scalars['ID']['output'];
|
|
9603
|
+
/** The issue field changed. */
|
|
9604
|
+
issueField?: Maybe<IssueFields>;
|
|
9605
|
+
/** The new color if it is a single-select field. */
|
|
9606
|
+
newColor?: Maybe<Scalars['String']['output']>;
|
|
9607
|
+
/** The new value of the field. */
|
|
9608
|
+
newValue?: Maybe<Scalars['String']['output']>;
|
|
9609
|
+
/** The previous color if it was a single-select field. */
|
|
9610
|
+
previousColor?: Maybe<Scalars['String']['output']>;
|
|
9611
|
+
/** The previous value of the field. */
|
|
9612
|
+
previousValue?: Maybe<Scalars['String']['output']>;
|
|
9613
|
+
};
|
|
9574
9614
|
/** Common fields across different issue field types */
|
|
9575
9615
|
export type IssueFieldCommon = {
|
|
9576
9616
|
/** The issue field's creation timestamp. */
|
|
@@ -9674,6 +9714,18 @@ export type IssueFieldOrderField =
|
|
|
9674
9714
|
'CREATED_AT'
|
|
9675
9715
|
/** Order issue fields by name */
|
|
9676
9716
|
| 'NAME';
|
|
9717
|
+
/** Represents a 'issue_field_removed' event on a given issue. */
|
|
9718
|
+
export type IssueFieldRemovedEvent = Node & {
|
|
9719
|
+
__typename: 'IssueFieldRemovedEvent';
|
|
9720
|
+
/** Identifies the actor who performed the event. */
|
|
9721
|
+
actor?: Maybe<Actor>;
|
|
9722
|
+
/** Identifies the date and time when the object was created. */
|
|
9723
|
+
createdAt: Scalars['DateTime']['output'];
|
|
9724
|
+
/** The Node ID of the IssueFieldRemovedEvent object */
|
|
9725
|
+
id: Scalars['ID']['output'];
|
|
9726
|
+
/** The issue field removed. */
|
|
9727
|
+
issueField?: Maybe<IssueFields>;
|
|
9728
|
+
};
|
|
9677
9729
|
/** Represents a single select issue field. */
|
|
9678
9730
|
export type IssueFieldSingleSelect = IssueFieldCommon & Node & {
|
|
9679
9731
|
__typename: 'IssueFieldSingleSelect';
|
|
@@ -9748,6 +9800,10 @@ export type IssueFieldSingleSelectValue = IssueFieldValueCommon & Node & {
|
|
|
9748
9800
|
id: Scalars['ID']['output'];
|
|
9749
9801
|
/** The option's name. */
|
|
9750
9802
|
name: Scalars['String']['output'];
|
|
9803
|
+
/** The selected option's global relay ID. */
|
|
9804
|
+
optionId?: Maybe<Scalars['String']['output']>;
|
|
9805
|
+
/** The option's name text (alias for `name`, for consistency with other field value types). */
|
|
9806
|
+
value: Scalars['String']['output'];
|
|
9751
9807
|
};
|
|
9752
9808
|
/** Represents a text issue field. */
|
|
9753
9809
|
export type IssueFieldText = IssueFieldCommon & Node & {
|
|
@@ -9881,6 +9937,14 @@ export type IssueOrderField =
|
|
|
9881
9937
|
| 'CREATED_AT'
|
|
9882
9938
|
/** Order issues by update time */
|
|
9883
9939
|
| 'UPDATED_AT';
|
|
9940
|
+
/** Type of issue search performed */
|
|
9941
|
+
export type IssueSearchType =
|
|
9942
|
+
/** Hybrid search combining lexical and semantic approaches */
|
|
9943
|
+
'HYBRID'
|
|
9944
|
+
/** Lexical (keyword-based) search */
|
|
9945
|
+
| 'LEXICAL'
|
|
9946
|
+
/** Semantic (meaning-based) search using embeddings */
|
|
9947
|
+
| 'SEMANTIC';
|
|
9884
9948
|
/** The possible states of an issue. */
|
|
9885
9949
|
export type IssueState =
|
|
9886
9950
|
/** An issue that has been closed */
|
|
@@ -9955,7 +10019,7 @@ export type IssueTimelineItemEdge = {
|
|
|
9955
10019
|
node?: Maybe<IssueTimelineItem>;
|
|
9956
10020
|
};
|
|
9957
10021
|
/** An item in an issue timeline */
|
|
9958
|
-
export type IssueTimelineItems = AddedToProjectEvent | AddedToProjectV2Event | AssignedEvent | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertedFromDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DisconnectedEvent | IssueComment | IssueCommentPinnedEvent | IssueCommentUnpinnedEvent | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | ProjectV2ItemStatusChangedEvent | ReferencedEvent | RemovedFromProjectEvent | RemovedFromProjectV2Event | RenamedTitleEvent | ReopenedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent;
|
|
10022
|
+
export type IssueTimelineItems = AddedToProjectEvent | AddedToProjectV2Event | AssignedEvent | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertedFromDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DisconnectedEvent | IssueComment | IssueCommentPinnedEvent | IssueCommentUnpinnedEvent | IssueFieldAddedEvent | IssueFieldChangedEvent | IssueFieldRemovedEvent | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | ProjectV2ItemStatusChangedEvent | ReferencedEvent | RemovedFromProjectEvent | RemovedFromProjectV2Event | RenamedTitleEvent | ReopenedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent;
|
|
9959
10023
|
/** The connection type for IssueTimelineItems. */
|
|
9960
10024
|
export type IssueTimelineItemsConnection = {
|
|
9961
10025
|
__typename: 'IssueTimelineItemsConnection';
|
|
@@ -10386,6 +10450,22 @@ export type LanguageOrder = {
|
|
|
10386
10450
|
export type LanguageOrderField =
|
|
10387
10451
|
/** Order languages by the size of all files containing the language */
|
|
10388
10452
|
'SIZE';
|
|
10453
|
+
/** Reason why a semantic or hybrid issue search fell back to lexical search */
|
|
10454
|
+
export type LexicalFallbackReason =
|
|
10455
|
+
/** Query targets non-issue types (e.g., pull requests) */
|
|
10456
|
+
'NON_ISSUE_TARGET'
|
|
10457
|
+
/** Scoped query resolved to zero accessible repositories */
|
|
10458
|
+
| 'NO_ACCESSIBLE_REPOS'
|
|
10459
|
+
/** Query has only qualifiers and no free text terms */
|
|
10460
|
+
| 'NO_TEXT_TERMS'
|
|
10461
|
+
/** Query uses an in: qualifier targeting non-semantic fields */
|
|
10462
|
+
| 'ONLY_NON_SEMANTIC_FIELDS_REQUESTED'
|
|
10463
|
+
/** Query contains OR operators (nested boolean qualifiers) */
|
|
10464
|
+
| 'OR_BOOLEAN_NOT_SUPPORTED'
|
|
10465
|
+
/** Query contains quoted text requiring exact matches */
|
|
10466
|
+
| 'QUOTED_TEXT'
|
|
10467
|
+
/** Embedding generation failed or timed out */
|
|
10468
|
+
| 'SERVER_ERROR';
|
|
10389
10469
|
/** A repository's open source license */
|
|
10390
10470
|
export type License = Node & {
|
|
10391
10471
|
__typename: 'License';
|
|
@@ -11739,8 +11819,9 @@ export type Minimizable = {
|
|
|
11739
11819
|
isMinimized: Scalars['Boolean']['output'];
|
|
11740
11820
|
/**
|
|
11741
11821
|
* Returns why the comment was minimized. One of `abuse`, `off-topic`,
|
|
11742
|
-
* `outdated`, `resolved`, `duplicate` and `
|
|
11743
|
-
* formatting of these values differs from the inputs to the
|
|
11822
|
+
* `outdated`, `resolved`, `duplicate`, `spam`, and `low-quality`. Note that the
|
|
11823
|
+
* case and formatting of these values differs from the inputs to the
|
|
11824
|
+
* `MinimizeComment` mutation.
|
|
11744
11825
|
*/
|
|
11745
11826
|
minimizedReason?: Maybe<Scalars['String']['output']>;
|
|
11746
11827
|
/** Check if the current viewer can minimize this object. */
|
|
@@ -21031,8 +21112,9 @@ export type PullRequestReview = Comment & Deletable & Minimizable & Node & React
|
|
|
21031
21112
|
lastEditedAt?: Maybe<Scalars['DateTime']['output']>;
|
|
21032
21113
|
/**
|
|
21033
21114
|
* Returns why the comment was minimized. One of `abuse`, `off-topic`,
|
|
21034
|
-
* `outdated`, `resolved`, `duplicate` and `
|
|
21035
|
-
* formatting of these values differs from the inputs to the
|
|
21115
|
+
* `outdated`, `resolved`, `duplicate`, `spam`, and `low-quality`. Note that the
|
|
21116
|
+
* case and formatting of these values differs from the inputs to the
|
|
21117
|
+
* `MinimizeComment` mutation.
|
|
21036
21118
|
*/
|
|
21037
21119
|
minimizedReason?: Maybe<Scalars['String']['output']>;
|
|
21038
21120
|
/** A list of teams that this review was made on behalf of. */
|
|
@@ -21148,8 +21230,9 @@ export type PullRequestReviewComment = Comment & Deletable & Minimizable & Node
|
|
|
21148
21230
|
line?: Maybe<Scalars['Int']['output']>;
|
|
21149
21231
|
/**
|
|
21150
21232
|
* Returns why the comment was minimized. One of `abuse`, `off-topic`,
|
|
21151
|
-
* `outdated`, `resolved`, `duplicate` and `
|
|
21152
|
-
* formatting of these values differs from the inputs to the
|
|
21233
|
+
* `outdated`, `resolved`, `duplicate`, `spam`, and `low-quality`. Note that the
|
|
21234
|
+
* case and formatting of these values differs from the inputs to the
|
|
21235
|
+
* `MinimizeComment` mutation.
|
|
21153
21236
|
*/
|
|
21154
21237
|
minimizedReason?: Maybe<Scalars['String']['output']>;
|
|
21155
21238
|
/** Identifies the original commit associated with the comment. */
|
|
@@ -21496,7 +21579,7 @@ export type PullRequestTimelineItemEdge = {
|
|
|
21496
21579
|
node?: Maybe<PullRequestTimelineItem>;
|
|
21497
21580
|
};
|
|
21498
21581
|
/** An item in a pull request timeline */
|
|
21499
|
-
export type PullRequestTimelineItems = AddedToMergeQueueEvent | AddedToProjectEvent | AddedToProjectV2Event | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertToDraftEvent | ConvertedFromDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DeployedEvent | DeploymentEnvironmentChangedEvent | DisconnectedEvent | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IssueComment | IssueCommentPinnedEvent | IssueCommentUnpinnedEvent | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MergedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | ProjectV2ItemStatusChangedEvent | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewThread | PullRequestRevisionMarker | ReadyForReviewEvent | ReferencedEvent | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RemovedFromProjectV2Event | RenamedTitleEvent | ReopenedEvent | ReviewDismissedEvent | ReviewRequestRemovedEvent | ReviewRequestedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent;
|
|
21582
|
+
export type PullRequestTimelineItems = AddedToMergeQueueEvent | AddedToProjectEvent | AddedToProjectV2Event | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertToDraftEvent | ConvertedFromDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DeployedEvent | DeploymentEnvironmentChangedEvent | DisconnectedEvent | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IssueComment | IssueCommentPinnedEvent | IssueCommentUnpinnedEvent | IssueFieldAddedEvent | IssueFieldChangedEvent | IssueFieldRemovedEvent | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MergedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | ProjectV2ItemStatusChangedEvent | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewThread | PullRequestRevisionMarker | ReadyForReviewEvent | ReferencedEvent | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RemovedFromProjectV2Event | RenamedTitleEvent | ReopenedEvent | ReviewDismissedEvent | ReviewRequestRemovedEvent | ReviewRequestedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent;
|
|
21500
21583
|
/** The connection type for PullRequestTimelineItems. */
|
|
21501
21584
|
export type PullRequestTimelineItemsConnection = {
|
|
21502
21585
|
__typename: 'PullRequestTimelineItemsConnection';
|
|
@@ -25641,6 +25724,7 @@ export type RepositoryVulnerabilityAlertArgs = {
|
|
|
25641
25724
|
export type RepositoryVulnerabilityAlertsArgs = {
|
|
25642
25725
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
25643
25726
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
25727
|
+
classifications?: InputMaybe<Array<SecurityAdvisoryClassification>>;
|
|
25644
25728
|
dependencyScopes?: InputMaybe<Array<RepositoryVulnerabilityAlertDependencyScope>>;
|
|
25645
25729
|
first?: InputMaybe<Scalars['Int']['input']>;
|
|
25646
25730
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
@@ -27544,6 +27628,10 @@ export type SearchResultItemConnection = {
|
|
|
27544
27628
|
* total number of matches, a maximum of 1,000 results will be available across all types.
|
|
27545
27629
|
*/
|
|
27546
27630
|
issueCount: Scalars['Int']['output'];
|
|
27631
|
+
/** The type of search that was performed for issues (lexical, semantic, or hybrid) */
|
|
27632
|
+
issueSearchType?: Maybe<IssueSearchType>;
|
|
27633
|
+
/** When a semantic or hybrid search falls back to lexical, the reasons why the fallback occurred. */
|
|
27634
|
+
lexicalFallbackReason?: Maybe<Array<LexicalFallbackReason>>;
|
|
27547
27635
|
/** A list of nodes. */
|
|
27548
27636
|
nodes?: Maybe<Array<Maybe<SearchResultItem>>>;
|
|
27549
27637
|
/** Information to aid in pagination. */
|
|
@@ -27584,6 +27672,10 @@ export type SearchType =
|
|
|
27584
27672
|
| 'ISSUE'
|
|
27585
27673
|
/** Returns results matching issues in repositories. */
|
|
27586
27674
|
| 'ISSUE_ADVANCED'
|
|
27675
|
+
/** Returns results matching issues using hybrid (lexical + semantic) search. */
|
|
27676
|
+
| 'ISSUE_HYBRID'
|
|
27677
|
+
/** Returns results matching issues using semantic search. */
|
|
27678
|
+
| 'ISSUE_SEMANTIC'
|
|
27587
27679
|
/** Returns results matching repositories. */
|
|
27588
27680
|
| 'REPOSITORY'
|
|
27589
27681
|
/** Returns results matching users and organizations on GitHub. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typescript-github-action-template",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.57",
|
|
4
4
|
"description": "A template to create custom GitHub Action with TypeScript/JavaScript.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"pinst": "^3.0.0",
|
|
57
57
|
"prettier": "^3.0.2",
|
|
58
58
|
"prettier-plugin-package": "^2.0.0",
|
|
59
|
-
"typescript": "^
|
|
59
|
+
"typescript": "^6.0.2",
|
|
60
60
|
"typescript-eslint": "^8.0.0"
|
|
61
61
|
},
|
|
62
62
|
"types": "dist/index.d.js",
|