typescript-github-action-template 0.2.31 → 0.2.33
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.
|
@@ -1286,6 +1286,54 @@ export type Blob = GitObject & Node & {
|
|
|
1286
1286
|
/** UTF8 text data or null if the Blob is binary */
|
|
1287
1287
|
text?: Maybe<Scalars['String']['output']>;
|
|
1288
1288
|
};
|
|
1289
|
+
/** Represents a 'blocked_by_added' event on a given issue. */
|
|
1290
|
+
export type BlockedByAddedEvent = Node & {
|
|
1291
|
+
__typename: 'BlockedByAddedEvent';
|
|
1292
|
+
/** Identifies the actor who performed the event. */
|
|
1293
|
+
actor?: Maybe<Actor>;
|
|
1294
|
+
/** The blocking issue that was added. */
|
|
1295
|
+
blockingIssue?: Maybe<Issue>;
|
|
1296
|
+
/** Identifies the date and time when the object was created. */
|
|
1297
|
+
createdAt: Scalars['DateTime']['output'];
|
|
1298
|
+
/** The Node ID of the BlockedByAddedEvent object */
|
|
1299
|
+
id: Scalars['ID']['output'];
|
|
1300
|
+
};
|
|
1301
|
+
/** Represents a 'blocked_by_removed' event on a given issue. */
|
|
1302
|
+
export type BlockedByRemovedEvent = Node & {
|
|
1303
|
+
__typename: 'BlockedByRemovedEvent';
|
|
1304
|
+
/** Identifies the actor who performed the event. */
|
|
1305
|
+
actor?: Maybe<Actor>;
|
|
1306
|
+
/** The blocking issue that was removed. */
|
|
1307
|
+
blockingIssue?: Maybe<Issue>;
|
|
1308
|
+
/** Identifies the date and time when the object was created. */
|
|
1309
|
+
createdAt: Scalars['DateTime']['output'];
|
|
1310
|
+
/** The Node ID of the BlockedByRemovedEvent object */
|
|
1311
|
+
id: Scalars['ID']['output'];
|
|
1312
|
+
};
|
|
1313
|
+
/** Represents a 'blocking_added' event on a given issue. */
|
|
1314
|
+
export type BlockingAddedEvent = Node & {
|
|
1315
|
+
__typename: 'BlockingAddedEvent';
|
|
1316
|
+
/** Identifies the actor who performed the event. */
|
|
1317
|
+
actor?: Maybe<Actor>;
|
|
1318
|
+
/** The blocked issue that was added. */
|
|
1319
|
+
blockedIssue?: Maybe<Issue>;
|
|
1320
|
+
/** Identifies the date and time when the object was created. */
|
|
1321
|
+
createdAt: Scalars['DateTime']['output'];
|
|
1322
|
+
/** The Node ID of the BlockingAddedEvent object */
|
|
1323
|
+
id: Scalars['ID']['output'];
|
|
1324
|
+
};
|
|
1325
|
+
/** Represents a 'blocking_removed' event on a given issue. */
|
|
1326
|
+
export type BlockingRemovedEvent = Node & {
|
|
1327
|
+
__typename: 'BlockingRemovedEvent';
|
|
1328
|
+
/** Identifies the actor who performed the event. */
|
|
1329
|
+
actor?: Maybe<Actor>;
|
|
1330
|
+
/** The blocked issue that was removed. */
|
|
1331
|
+
blockedIssue?: Maybe<Issue>;
|
|
1332
|
+
/** Identifies the date and time when the object was created. */
|
|
1333
|
+
createdAt: Scalars['DateTime']['output'];
|
|
1334
|
+
/** The Node ID of the BlockingRemovedEvent object */
|
|
1335
|
+
id: Scalars['ID']['output'];
|
|
1336
|
+
};
|
|
1289
1337
|
/** A special type of user which takes actions on behalf of GitHub Apps. */
|
|
1290
1338
|
export type Bot = Actor & Node & UniformResourceLocatable & {
|
|
1291
1339
|
__typename: 'Bot';
|
|
@@ -6447,6 +6495,8 @@ export type Enterprise = Node & {
|
|
|
6447
6495
|
ruleset?: Maybe<RepositoryRuleset>;
|
|
6448
6496
|
/** A list of rulesets for this enterprise. */
|
|
6449
6497
|
rulesets?: Maybe<RepositoryRulesetConnection>;
|
|
6498
|
+
/** The enterprise's security contact email address. */
|
|
6499
|
+
securityContactEmail?: Maybe<Scalars['String']['output']>;
|
|
6450
6500
|
/** The URL-friendly identifier for the enterprise. */
|
|
6451
6501
|
slug: Scalars['String']['output'];
|
|
6452
6502
|
/** Identifies the date and time when the object was last updated. */
|
|
@@ -9433,7 +9483,7 @@ export type IssueTimelineItemEdge = {
|
|
|
9433
9483
|
node?: Maybe<IssueTimelineItem>;
|
|
9434
9484
|
};
|
|
9435
9485
|
/** An item in an issue timeline */
|
|
9436
|
-
export type IssueTimelineItems = AddedToProjectEvent | AssignedEvent | 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;
|
|
9486
|
+
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;
|
|
9437
9487
|
/** The connection type for IssueTimelineItems. */
|
|
9438
9488
|
export type IssueTimelineItemsConnection = {
|
|
9439
9489
|
__typename: 'IssueTimelineItemsConnection';
|
|
@@ -20712,7 +20762,7 @@ export type PullRequestTimelineItemEdge = {
|
|
|
20712
20762
|
node?: Maybe<PullRequestTimelineItem>;
|
|
20713
20763
|
};
|
|
20714
20764
|
/** An item in a pull request timeline */
|
|
20715
|
-
export type PullRequestTimelineItems = AddedToMergeQueueEvent | AddedToProjectEvent | AssignedEvent | AutoMergeDisabledEvent | AutoMergeEnabledEvent | AutoRebaseEnabledEvent | AutoSquashEnabledEvent | AutomaticBaseChangeFailedEvent | AutomaticBaseChangeSucceededEvent | BaseRefChangedEvent | BaseRefDeletedEvent | BaseRefForcePushedEvent | 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;
|
|
20765
|
+
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;
|
|
20716
20766
|
/** The connection type for PullRequestTimelineItems. */
|
|
20717
20767
|
export type PullRequestTimelineItemsConnection = {
|
|
20718
20768
|
__typename: 'PullRequestTimelineItemsConnection';
|
|
@@ -30979,6 +31029,8 @@ export type UpdateEnterpriseProfileInput = {
|
|
|
30979
31029
|
location?: InputMaybe<Scalars['String']['input']>;
|
|
30980
31030
|
/** The name of the enterprise. */
|
|
30981
31031
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
31032
|
+
/** The security contact email address of the enterprise. */
|
|
31033
|
+
securityContactEmail?: InputMaybe<Scalars['String']['input']>;
|
|
30982
31034
|
/** The URL of the enterprise's website. */
|
|
30983
31035
|
websiteUrl?: InputMaybe<Scalars['String']['input']>;
|
|
30984
31036
|
};
|
package/package.json
CHANGED