typescript-github-action-template 0.2.36 → 0.2.38
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.
|
@@ -799,6 +799,20 @@ export type AddedToProjectEvent = Node & {
|
|
|
799
799
|
*/
|
|
800
800
|
projectColumnName: Scalars['String']['output'];
|
|
801
801
|
};
|
|
802
|
+
/** Represents a 'added_to_project_v2' event on a given issue or pull request. */
|
|
803
|
+
export type AddedToProjectV2Event = Node & ProjectV2Event & {
|
|
804
|
+
__typename: 'AddedToProjectV2Event';
|
|
805
|
+
/** Identifies the actor who performed the event. */
|
|
806
|
+
actor?: Maybe<Actor>;
|
|
807
|
+
/** Identifies the date and time when the object was created. */
|
|
808
|
+
createdAt: Scalars['DateTime']['output'];
|
|
809
|
+
/** The Node ID of the AddedToProjectV2Event object */
|
|
810
|
+
id: Scalars['ID']['output'];
|
|
811
|
+
/** Project referenced by event. */
|
|
812
|
+
project?: Maybe<ProjectV2>;
|
|
813
|
+
/** Did this event result from workflow automation? */
|
|
814
|
+
wasAutomated: Scalars['Boolean']['output'];
|
|
815
|
+
};
|
|
802
816
|
/** An announcement banner for an enterprise or organization. */
|
|
803
817
|
export type AnnouncementBanner = {
|
|
804
818
|
__typename: 'AnnouncementBanner';
|
|
@@ -3507,6 +3521,20 @@ export type ConvertToDraftEvent = Node & UniformResourceLocatable & {
|
|
|
3507
3521
|
/** The HTTP URL for this convert to draft event. */
|
|
3508
3522
|
url: Scalars['URI']['output'];
|
|
3509
3523
|
};
|
|
3524
|
+
/** Represents a 'converted_from_draft' event on a given issue or pull request. */
|
|
3525
|
+
export type ConvertedFromDraftEvent = Node & ProjectV2Event & {
|
|
3526
|
+
__typename: 'ConvertedFromDraftEvent';
|
|
3527
|
+
/** Identifies the actor who performed the event. */
|
|
3528
|
+
actor?: Maybe<Actor>;
|
|
3529
|
+
/** Identifies the date and time when the object was created. */
|
|
3530
|
+
createdAt: Scalars['DateTime']['output'];
|
|
3531
|
+
/** The Node ID of the ConvertedFromDraftEvent object */
|
|
3532
|
+
id: Scalars['ID']['output'];
|
|
3533
|
+
/** Project referenced by event. */
|
|
3534
|
+
project?: Maybe<ProjectV2>;
|
|
3535
|
+
/** Did this event result from workflow automation? */
|
|
3536
|
+
wasAutomated: Scalars['Boolean']['output'];
|
|
3537
|
+
};
|
|
3510
3538
|
/** Represents a 'converted_note_to_issue' event on a given issue or pull request. */
|
|
3511
3539
|
export type ConvertedNoteToIssueEvent = Node & {
|
|
3512
3540
|
__typename: 'ConvertedNoteToIssueEvent';
|
|
@@ -9361,6 +9389,10 @@ export type IssueDependenciesSummary = {
|
|
|
9361
9389
|
blockedBy: Scalars['Int']['output'];
|
|
9362
9390
|
/** Count of issues this issue is blocking */
|
|
9363
9391
|
blocking: Scalars['Int']['output'];
|
|
9392
|
+
/** Total count of issues this issue is blocked by (open and closed) */
|
|
9393
|
+
totalBlockedBy: Scalars['Int']['output'];
|
|
9394
|
+
/** Total count of issues this issue is blocking (open and closed) */
|
|
9395
|
+
totalBlocking: Scalars['Int']['output'];
|
|
9364
9396
|
};
|
|
9365
9397
|
/** Ordering options issue dependencies */
|
|
9366
9398
|
export type IssueDependencyOrder = {
|
|
@@ -9508,7 +9540,7 @@ export type IssueTimelineItemEdge = {
|
|
|
9508
9540
|
node?: Maybe<IssueTimelineItem>;
|
|
9509
9541
|
};
|
|
9510
9542
|
/** An item in an issue timeline */
|
|
9511
|
-
export type IssueTimelineItems = AddedToProjectEvent | AssignedEvent | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DisconnectedEvent | IssueComment | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | ReferencedEvent | RemovedFromProjectEvent | RenamedTitleEvent | ReopenedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent;
|
|
9543
|
+
export type IssueTimelineItems = AddedToProjectEvent | AddedToProjectV2Event | AssignedEvent | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertedFromDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DisconnectedEvent | IssueComment | 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;
|
|
9512
9544
|
/** The connection type for IssueTimelineItems. */
|
|
9513
9545
|
export type IssueTimelineItemsConnection = {
|
|
9514
9546
|
__typename: 'IssueTimelineItemsConnection';
|
|
@@ -9539,6 +9571,8 @@ export type IssueTimelineItemsEdge = {
|
|
|
9539
9571
|
export type IssueTimelineItemsItemType =
|
|
9540
9572
|
/** Represents a 'added_to_project' event on a given issue or pull request. */
|
|
9541
9573
|
'ADDED_TO_PROJECT_EVENT'
|
|
9574
|
+
/** Represents a 'added_to_project_v2' event on a given issue or pull request. */
|
|
9575
|
+
| 'ADDED_TO_PROJECT_V2_EVENT'
|
|
9542
9576
|
/** Represents an 'assigned' event on any assignable object. */
|
|
9543
9577
|
| 'ASSIGNED_EVENT'
|
|
9544
9578
|
/** Represents a 'blocked_by_added' event on a given issue. */
|
|
@@ -9555,6 +9589,8 @@ export type IssueTimelineItemsItemType =
|
|
|
9555
9589
|
| 'COMMENT_DELETED_EVENT'
|
|
9556
9590
|
/** Represents a 'connected' event on a given issue or pull request. */
|
|
9557
9591
|
| 'CONNECTED_EVENT'
|
|
9592
|
+
/** Represents a 'converted_from_draft' event on a given issue or pull request. */
|
|
9593
|
+
| 'CONVERTED_FROM_DRAFT_EVENT'
|
|
9558
9594
|
/** Represents a 'converted_note_to_issue' event on a given issue or pull request. */
|
|
9559
9595
|
| 'CONVERTED_NOTE_TO_ISSUE_EVENT'
|
|
9560
9596
|
/** Represents a 'converted_to_discussion' event on a given issue. */
|
|
@@ -9591,10 +9627,14 @@ export type IssueTimelineItemsItemType =
|
|
|
9591
9627
|
| 'PARENT_ISSUE_REMOVED_EVENT'
|
|
9592
9628
|
/** Represents a 'pinned' event on a given issue or pull request. */
|
|
9593
9629
|
| 'PINNED_EVENT'
|
|
9630
|
+
/** Represents a 'project_v2_item_status_changed' event on a given issue or pull request. */
|
|
9631
|
+
| 'PROJECT_V2_ITEM_STATUS_CHANGED_EVENT'
|
|
9594
9632
|
/** Represents a 'referenced' event on a given `ReferencedSubject`. */
|
|
9595
9633
|
| 'REFERENCED_EVENT'
|
|
9596
9634
|
/** Represents a 'removed_from_project' event on a given issue or pull request. */
|
|
9597
9635
|
| 'REMOVED_FROM_PROJECT_EVENT'
|
|
9636
|
+
/** Represents a 'removed_from_project_v2' event on a given issue or pull request. */
|
|
9637
|
+
| 'REMOVED_FROM_PROJECT_V2_EVENT'
|
|
9598
9638
|
/** Represents a 'renamed' event on a given issue or pull request */
|
|
9599
9639
|
| 'RENAMED_TITLE_EVENT'
|
|
9600
9640
|
/** Represents a 'reopened' event on any `Closable`. */
|
|
@@ -18545,6 +18585,13 @@ export type ProjectV2Edge = {
|
|
|
18545
18585
|
/** The item at the end of the edge. */
|
|
18546
18586
|
node?: Maybe<ProjectV2>;
|
|
18547
18587
|
};
|
|
18588
|
+
/** Represents an event related to a project on the timeline of an issue or pull request. */
|
|
18589
|
+
export type ProjectV2Event = {
|
|
18590
|
+
/** Project referenced by event. */
|
|
18591
|
+
project?: Maybe<ProjectV2>;
|
|
18592
|
+
/** Did this event result from workflow automation? */
|
|
18593
|
+
wasAutomated: Scalars['Boolean']['output'];
|
|
18594
|
+
};
|
|
18548
18595
|
/** A field inside a project. */
|
|
18549
18596
|
export type ProjectV2Field = Node & ProjectV2FieldCommon & {
|
|
18550
18597
|
__typename: 'ProjectV2Field';
|
|
@@ -19012,6 +19059,24 @@ export type ProjectV2ItemOrder = {
|
|
|
19012
19059
|
export type ProjectV2ItemOrderField =
|
|
19013
19060
|
/** Order project v2 items by the their position in the project */
|
|
19014
19061
|
'POSITION';
|
|
19062
|
+
/** Represents a 'project_v2_item_status_changed' event on a given issue or pull request. */
|
|
19063
|
+
export type ProjectV2ItemStatusChangedEvent = Node & ProjectV2Event & {
|
|
19064
|
+
__typename: 'ProjectV2ItemStatusChangedEvent';
|
|
19065
|
+
/** Identifies the actor who performed the event. */
|
|
19066
|
+
actor?: Maybe<Actor>;
|
|
19067
|
+
/** Identifies the date and time when the object was created. */
|
|
19068
|
+
createdAt: Scalars['DateTime']['output'];
|
|
19069
|
+
/** The Node ID of the ProjectV2ItemStatusChangedEvent object */
|
|
19070
|
+
id: Scalars['ID']['output'];
|
|
19071
|
+
/** The previous status of the project item. */
|
|
19072
|
+
previousStatus: Scalars['String']['output'];
|
|
19073
|
+
/** Project referenced by event. */
|
|
19074
|
+
project?: Maybe<ProjectV2>;
|
|
19075
|
+
/** The new status of the project item. */
|
|
19076
|
+
status: Scalars['String']['output'];
|
|
19077
|
+
/** Did this event result from workflow automation? */
|
|
19078
|
+
wasAutomated: Scalars['Boolean']['output'];
|
|
19079
|
+
};
|
|
19015
19080
|
/** The type of a project item. */
|
|
19016
19081
|
export type ProjectV2ItemType =
|
|
19017
19082
|
/** Draft Issue */
|
|
@@ -20793,7 +20858,7 @@ export type PullRequestTimelineItemEdge = {
|
|
|
20793
20858
|
node?: Maybe<PullRequestTimelineItem>;
|
|
20794
20859
|
};
|
|
20795
20860
|
/** An item in a pull request timeline */
|
|
20796
|
-
export type PullRequestTimelineItems = AddedToMergeQueueEvent | AddedToProjectEvent | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | BlockedByAddedEvent | BlockedByRemovedEvent | BlockingAddedEvent | BlockingRemovedEvent | ClosedEvent | CommentDeletedEvent | ConnectedEvent | ConvertToDraftEvent | ConvertedNoteToIssueEvent | ConvertedToDiscussionEvent | CrossReferencedEvent | DemilestonedEvent | DeployedEvent | DeploymentEnvironmentChangedEvent | DisconnectedEvent | HeadRefDeletedEvent | HeadRefForcePushedEvent | HeadRefRestoredEvent | IssueComment | IssueTypeAddedEvent | IssueTypeChangedEvent | IssueTypeRemovedEvent | LabeledEvent | LockedEvent | MarkedAsDuplicateEvent | MentionedEvent | MergedEvent | MilestonedEvent | MovedColumnsInProjectEvent | ParentIssueAddedEvent | ParentIssueRemovedEvent | PinnedEvent | PullRequestCommit | PullRequestCommitCommentThread | PullRequestReview | PullRequestReviewThread | PullRequestRevisionMarker | ReadyForReviewEvent | ReferencedEvent | RemovedFromMergeQueueEvent | RemovedFromProjectEvent | RenamedTitleEvent | ReopenedEvent | ReviewDismissedEvent | ReviewRequestRemovedEvent | ReviewRequestedEvent | SubIssueAddedEvent | SubIssueRemovedEvent | SubscribedEvent | TransferredEvent | UnassignedEvent | UnlabeledEvent | UnlockedEvent | UnmarkedAsDuplicateEvent | UnpinnedEvent | UnsubscribedEvent | UserBlockedEvent;
|
|
20861
|
+
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 | 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;
|
|
20797
20862
|
/** The connection type for PullRequestTimelineItems. */
|
|
20798
20863
|
export type PullRequestTimelineItemsConnection = {
|
|
20799
20864
|
__typename: 'PullRequestTimelineItemsConnection';
|
|
@@ -20826,6 +20891,8 @@ export type PullRequestTimelineItemsItemType =
|
|
|
20826
20891
|
'ADDED_TO_MERGE_QUEUE_EVENT'
|
|
20827
20892
|
/** Represents a 'added_to_project' event on a given issue or pull request. */
|
|
20828
20893
|
| 'ADDED_TO_PROJECT_EVENT'
|
|
20894
|
+
/** Represents a 'added_to_project_v2' event on a given issue or pull request. */
|
|
20895
|
+
| 'ADDED_TO_PROJECT_V2_EVENT'
|
|
20829
20896
|
/** Represents an 'assigned' event on any assignable object. */
|
|
20830
20897
|
| 'ASSIGNED_EVENT'
|
|
20831
20898
|
/** Represents a 'automatic_base_change_failed' event on a given pull request. */
|
|
@@ -20860,6 +20927,8 @@ export type PullRequestTimelineItemsItemType =
|
|
|
20860
20927
|
| 'COMMENT_DELETED_EVENT'
|
|
20861
20928
|
/** Represents a 'connected' event on a given issue or pull request. */
|
|
20862
20929
|
| 'CONNECTED_EVENT'
|
|
20930
|
+
/** Represents a 'converted_from_draft' event on a given issue or pull request. */
|
|
20931
|
+
| 'CONVERTED_FROM_DRAFT_EVENT'
|
|
20863
20932
|
/** Represents a 'converted_note_to_issue' event on a given issue or pull request. */
|
|
20864
20933
|
| 'CONVERTED_NOTE_TO_ISSUE_EVENT'
|
|
20865
20934
|
/** Represents a 'converted_to_discussion' event on a given issue. */
|
|
@@ -20910,6 +20979,8 @@ export type PullRequestTimelineItemsItemType =
|
|
|
20910
20979
|
| 'PARENT_ISSUE_REMOVED_EVENT'
|
|
20911
20980
|
/** Represents a 'pinned' event on a given issue or pull request. */
|
|
20912
20981
|
| 'PINNED_EVENT'
|
|
20982
|
+
/** Represents a 'project_v2_item_status_changed' event on a given issue or pull request. */
|
|
20983
|
+
| 'PROJECT_V2_ITEM_STATUS_CHANGED_EVENT'
|
|
20913
20984
|
/** Represents a Git commit part of a pull request. */
|
|
20914
20985
|
| 'PULL_REQUEST_COMMIT'
|
|
20915
20986
|
/** Represents a commit comment thread part of a pull request. */
|
|
@@ -20928,6 +20999,8 @@ export type PullRequestTimelineItemsItemType =
|
|
|
20928
20999
|
| 'REMOVED_FROM_MERGE_QUEUE_EVENT'
|
|
20929
21000
|
/** Represents a 'removed_from_project' event on a given issue or pull request. */
|
|
20930
21001
|
| 'REMOVED_FROM_PROJECT_EVENT'
|
|
21002
|
+
/** Represents a 'removed_from_project_v2' event on a given issue or pull request. */
|
|
21003
|
+
| 'REMOVED_FROM_PROJECT_V2_EVENT'
|
|
20931
21004
|
/** Represents a 'renamed' event on a given issue or pull request */
|
|
20932
21005
|
| 'RENAMED_TITLE_EVENT'
|
|
20933
21006
|
/** Represents a 'reopened' event on any `Closable`. */
|
|
@@ -22093,6 +22166,20 @@ export type RemovedFromProjectEvent = Node & {
|
|
|
22093
22166
|
*/
|
|
22094
22167
|
projectColumnName: Scalars['String']['output'];
|
|
22095
22168
|
};
|
|
22169
|
+
/** Represents a 'removed_from_project_v2' event on a given issue or pull request. */
|
|
22170
|
+
export type RemovedFromProjectV2Event = Node & ProjectV2Event & {
|
|
22171
|
+
__typename: 'RemovedFromProjectV2Event';
|
|
22172
|
+
/** Identifies the actor who performed the event. */
|
|
22173
|
+
actor?: Maybe<Actor>;
|
|
22174
|
+
/** Identifies the date and time when the object was created. */
|
|
22175
|
+
createdAt: Scalars['DateTime']['output'];
|
|
22176
|
+
/** The Node ID of the RemovedFromProjectV2Event object */
|
|
22177
|
+
id: Scalars['ID']['output'];
|
|
22178
|
+
/** Project referenced by event. */
|
|
22179
|
+
project?: Maybe<ProjectV2>;
|
|
22180
|
+
/** Did this event result from workflow automation? */
|
|
22181
|
+
wasAutomated: Scalars['Boolean']['output'];
|
|
22182
|
+
};
|
|
22096
22183
|
/** Represents a 'renamed' event on a given issue or pull request */
|
|
22097
22184
|
export type RenamedTitleEvent = Node & {
|
|
22098
22185
|
__typename: 'RenamedTitleEvent';
|
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.38",
|
|
4
4
|
"description": "A template to create custom GitHub Action with TypeScript/JavaScript.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.js",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"@eslint/js": "^9.2.0",
|
|
33
33
|
"@graphql-codegen/cli": "6.0.0",
|
|
34
34
|
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
|
|
35
|
-
"@graphql-codegen/typescript": "5.0.
|
|
36
|
-
"@graphql-codegen/typescript-document-nodes": "5.0.
|
|
35
|
+
"@graphql-codegen/typescript": "5.0.2",
|
|
36
|
+
"@graphql-codegen/typescript-document-nodes": "5.0.2",
|
|
37
37
|
"@serverless-guru/prettier-plugin-import-order": "^0.4.2",
|
|
38
38
|
"@types/node": "^24.0.0",
|
|
39
39
|
"@typescript-eslint/eslint-plugin": "^8.0.0",
|