typescript-github-action-template 0.2.30 → 0.2.32
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/__graphql__/graphql.d.ts +115 -2
- package/package.json +1 -1
|
@@ -293,6 +293,25 @@ export type AddAssigneesToAssignablePayload = {
|
|
|
293
293
|
/** A unique identifier for the client performing the mutation. */
|
|
294
294
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
295
295
|
};
|
|
296
|
+
/** Autogenerated input type of AddBlockedBy */
|
|
297
|
+
export type AddBlockedByInput = {
|
|
298
|
+
/** The ID of the issue that blocks the given issue. */
|
|
299
|
+
blockingIssueId: Scalars['ID']['input'];
|
|
300
|
+
/** A unique identifier for the client performing the mutation. */
|
|
301
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
302
|
+
/** The ID of the issue to be blocked. */
|
|
303
|
+
issueId: Scalars['ID']['input'];
|
|
304
|
+
};
|
|
305
|
+
/** Autogenerated return type of AddBlockedBy. */
|
|
306
|
+
export type AddBlockedByPayload = {
|
|
307
|
+
__typename: 'AddBlockedByPayload';
|
|
308
|
+
/** The issue that is blocking the given issue. */
|
|
309
|
+
blockingIssue?: Maybe<Issue>;
|
|
310
|
+
/** A unique identifier for the client performing the mutation. */
|
|
311
|
+
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
312
|
+
/** The issue that is blocked. */
|
|
313
|
+
issue?: Maybe<Issue>;
|
|
314
|
+
};
|
|
296
315
|
/** Autogenerated input type of AddComment */
|
|
297
316
|
export type AddCommentInput = {
|
|
298
317
|
/** The contents of the comment. */
|
|
@@ -6428,6 +6447,8 @@ export type Enterprise = Node & {
|
|
|
6428
6447
|
ruleset?: Maybe<RepositoryRuleset>;
|
|
6429
6448
|
/** A list of rulesets for this enterprise. */
|
|
6430
6449
|
rulesets?: Maybe<RepositoryRulesetConnection>;
|
|
6450
|
+
/** The enterprise's security contact email address. */
|
|
6451
|
+
securityContactEmail?: Maybe<Scalars['String']['output']>;
|
|
6431
6452
|
/** The URL-friendly identifier for the enterprise. */
|
|
6432
6453
|
slug: Scalars['String']['output'];
|
|
6433
6454
|
/** Identifies the date and time when the object was last updated. */
|
|
@@ -8786,6 +8807,10 @@ export type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lo
|
|
|
8786
8807
|
author?: Maybe<Actor>;
|
|
8787
8808
|
/** Author's association with the subject of the comment. */
|
|
8788
8809
|
authorAssociation: CommentAuthorAssociation;
|
|
8810
|
+
/** A list of issues that are blocking this issue. */
|
|
8811
|
+
blockedBy: IssueConnection;
|
|
8812
|
+
/** A list of issues that this issue is blocking. */
|
|
8813
|
+
blocking: IssueConnection;
|
|
8789
8814
|
/** Identifies the body of the issue. */
|
|
8790
8815
|
body: Scalars['String']['output'];
|
|
8791
8816
|
/** The body rendered to HTML. */
|
|
@@ -8826,6 +8851,8 @@ export type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lo
|
|
|
8826
8851
|
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
8827
8852
|
/** Is this issue read by the viewer */
|
|
8828
8853
|
isReadByViewer?: Maybe<Scalars['Boolean']['output']>;
|
|
8854
|
+
/** Summary of the state of an issue's dependencies */
|
|
8855
|
+
issueDependenciesSummary: IssueDependenciesSummary;
|
|
8829
8856
|
/** The issue type for this Issue */
|
|
8830
8857
|
issueType?: Maybe<IssueType>;
|
|
8831
8858
|
/** A list of labels associated with the object. */
|
|
@@ -8938,6 +8965,22 @@ export type IssueAssigneesArgs = {
|
|
|
8938
8965
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
8939
8966
|
};
|
|
8940
8967
|
/** An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project. */
|
|
8968
|
+
export type IssueBlockedByArgs = {
|
|
8969
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
8970
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
8971
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8972
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
8973
|
+
orderBy?: InputMaybe<IssueDependencyOrder>;
|
|
8974
|
+
};
|
|
8975
|
+
/** An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project. */
|
|
8976
|
+
export type IssueBlockingArgs = {
|
|
8977
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
8978
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
8979
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8980
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
8981
|
+
orderBy?: InputMaybe<IssueDependencyOrder>;
|
|
8982
|
+
};
|
|
8983
|
+
/** An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project. */
|
|
8941
8984
|
export type IssueClosedByPullRequestsReferencesArgs = {
|
|
8942
8985
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
8943
8986
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -9238,6 +9281,27 @@ export type IssueContributionsByRepositoryContributionsArgs = {
|
|
|
9238
9281
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
9239
9282
|
orderBy?: InputMaybe<ContributionOrder>;
|
|
9240
9283
|
};
|
|
9284
|
+
/** Summary of the state of an issue's dependencies */
|
|
9285
|
+
export type IssueDependenciesSummary = {
|
|
9286
|
+
__typename: 'IssueDependenciesSummary';
|
|
9287
|
+
/** Count of issues this issue is blocked by */
|
|
9288
|
+
blockedBy: Scalars['Int']['output'];
|
|
9289
|
+
/** Count of issues this issue is blocking */
|
|
9290
|
+
blocking: Scalars['Int']['output'];
|
|
9291
|
+
};
|
|
9292
|
+
/** Ordering options issue dependencies */
|
|
9293
|
+
export type IssueDependencyOrder = {
|
|
9294
|
+
/** The ordering direction. */
|
|
9295
|
+
direction: OrderDirection;
|
|
9296
|
+
/** The field to order issue dependencies by. */
|
|
9297
|
+
field: IssueDependencyOrderField;
|
|
9298
|
+
};
|
|
9299
|
+
/** Properties by which issue dependencies can be ordered. */
|
|
9300
|
+
export type IssueDependencyOrderField =
|
|
9301
|
+
/** Order issue dependencies by the creation time of the dependent issue */
|
|
9302
|
+
'CREATED_AT'
|
|
9303
|
+
/** Order issue dependencies by time of when the dependency relationship was added */
|
|
9304
|
+
| 'DEPENDENCY_ADDED_AT';
|
|
9241
9305
|
/** An edge in a connection. */
|
|
9242
9306
|
export type IssueEdge = {
|
|
9243
9307
|
__typename: 'IssueEdge';
|
|
@@ -9404,6 +9468,14 @@ export type IssueTimelineItemsItemType =
|
|
|
9404
9468
|
'ADDED_TO_PROJECT_EVENT'
|
|
9405
9469
|
/** Represents an 'assigned' event on any assignable object. */
|
|
9406
9470
|
| 'ASSIGNED_EVENT'
|
|
9471
|
+
/** Represents a 'blocked_by_added' event on a given issue. */
|
|
9472
|
+
| 'BLOCKED_BY_ADDED_EVENT'
|
|
9473
|
+
/** Represents a 'blocked_by_removed' event on a given issue. */
|
|
9474
|
+
| 'BLOCKED_BY_REMOVED_EVENT'
|
|
9475
|
+
/** Represents a 'blocking_added' event on a given issue. */
|
|
9476
|
+
| 'BLOCKING_ADDED_EVENT'
|
|
9477
|
+
/** Represents a 'blocking_removed' event on a given issue. */
|
|
9478
|
+
| 'BLOCKING_REMOVED_EVENT'
|
|
9407
9479
|
/** Represents a 'closed' event on any `Closable`. */
|
|
9408
9480
|
| 'CLOSED_EVENT'
|
|
9409
9481
|
/** Represents a 'comment_deleted' event on a given issue or pull request. */
|
|
@@ -11239,6 +11311,8 @@ export type Mutation = {
|
|
|
11239
11311
|
accessUserNamespaceRepository?: Maybe<AccessUserNamespaceRepositoryPayload>;
|
|
11240
11312
|
/** Adds assignees to an assignable object. */
|
|
11241
11313
|
addAssigneesToAssignable?: Maybe<AddAssigneesToAssignablePayload>;
|
|
11314
|
+
/** Adds a 'blocked by' relationship to an issue. */
|
|
11315
|
+
addBlockedBy?: Maybe<AddBlockedByPayload>;
|
|
11242
11316
|
/** Adds a comment to an Issue or Pull Request. */
|
|
11243
11317
|
addComment?: Maybe<AddCommentPayload>;
|
|
11244
11318
|
/** Adds a comment to a Discussion, possibly as a reply to another comment. */
|
|
@@ -11594,6 +11668,8 @@ export type Mutation = {
|
|
|
11594
11668
|
rejectDeployments?: Maybe<RejectDeploymentsPayload>;
|
|
11595
11669
|
/** Removes assignees from an assignable object. */
|
|
11596
11670
|
removeAssigneesFromAssignable?: Maybe<RemoveAssigneesFromAssignablePayload>;
|
|
11671
|
+
/** Removes a 'blocked by' relationship from an issue. */
|
|
11672
|
+
removeBlockedBy?: Maybe<RemoveBlockedByPayload>;
|
|
11597
11673
|
/** Removes an administrator from the enterprise. */
|
|
11598
11674
|
removeEnterpriseAdmin?: Maybe<RemoveEnterpriseAdminPayload>;
|
|
11599
11675
|
/**
|
|
@@ -11894,6 +11970,10 @@ export type MutationAddAssigneesToAssignableArgs = {
|
|
|
11894
11970
|
input: AddAssigneesToAssignableInput;
|
|
11895
11971
|
};
|
|
11896
11972
|
/** The root query for implementing GraphQL mutations. */
|
|
11973
|
+
export type MutationAddBlockedByArgs = {
|
|
11974
|
+
input: AddBlockedByInput;
|
|
11975
|
+
};
|
|
11976
|
+
/** The root query for implementing GraphQL mutations. */
|
|
11897
11977
|
export type MutationAddCommentArgs = {
|
|
11898
11978
|
input: AddCommentInput;
|
|
11899
11979
|
};
|
|
@@ -12418,6 +12498,10 @@ export type MutationRemoveAssigneesFromAssignableArgs = {
|
|
|
12418
12498
|
input: RemoveAssigneesFromAssignableInput;
|
|
12419
12499
|
};
|
|
12420
12500
|
/** The root query for implementing GraphQL mutations. */
|
|
12501
|
+
export type MutationRemoveBlockedByArgs = {
|
|
12502
|
+
input: RemoveBlockedByInput;
|
|
12503
|
+
};
|
|
12504
|
+
/** The root query for implementing GraphQL mutations. */
|
|
12421
12505
|
export type MutationRemoveEnterpriseAdminArgs = {
|
|
12422
12506
|
input: RemoveEnterpriseAdminInput;
|
|
12423
12507
|
};
|
|
@@ -20094,7 +20178,7 @@ export type PullRequestParameters = {
|
|
|
20094
20178
|
* `rebase`. At least one option must be enabled.
|
|
20095
20179
|
*/
|
|
20096
20180
|
allowedMergeMethods?: Maybe<Array<PullRequestAllowedMergeMethods>>;
|
|
20097
|
-
/**
|
|
20181
|
+
/** Request Copilot code review for new pull requests automatically if the author has access to Copilot code review. */
|
|
20098
20182
|
automaticCopilotCodeReviewEnabled: Scalars['Boolean']['output'];
|
|
20099
20183
|
/** New, reviewable commits pushed will dismiss previous pull request review approvals. */
|
|
20100
20184
|
dismissStaleReviewsOnPush: Scalars['Boolean']['output'];
|
|
@@ -20114,7 +20198,7 @@ export type PullRequestParametersInput = {
|
|
|
20114
20198
|
* `rebase`. At least one option must be enabled.
|
|
20115
20199
|
*/
|
|
20116
20200
|
allowedMergeMethods?: InputMaybe<Array<PullRequestAllowedMergeMethods>>;
|
|
20117
|
-
/**
|
|
20201
|
+
/** Request Copilot code review for new pull requests automatically if the author has access to Copilot code review. */
|
|
20118
20202
|
automaticCopilotCodeReviewEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
20119
20203
|
/** New, reviewable commits pushed will dismiss previous pull request review approvals. */
|
|
20120
20204
|
dismissStaleReviewsOnPush: Scalars['Boolean']['input'];
|
|
@@ -20683,6 +20767,14 @@ export type PullRequestTimelineItemsItemType =
|
|
|
20683
20767
|
| 'BASE_REF_DELETED_EVENT'
|
|
20684
20768
|
/** Represents a 'base_ref_force_pushed' event on a given pull request. */
|
|
20685
20769
|
| 'BASE_REF_FORCE_PUSHED_EVENT'
|
|
20770
|
+
/** Represents a 'blocked_by_added' event on a given issue. */
|
|
20771
|
+
| 'BLOCKED_BY_ADDED_EVENT'
|
|
20772
|
+
/** Represents a 'blocked_by_removed' event on a given issue. */
|
|
20773
|
+
| 'BLOCKED_BY_REMOVED_EVENT'
|
|
20774
|
+
/** Represents a 'blocking_added' event on a given issue. */
|
|
20775
|
+
| 'BLOCKING_ADDED_EVENT'
|
|
20776
|
+
/** Represents a 'blocking_removed' event on a given issue. */
|
|
20777
|
+
| 'BLOCKING_REMOVED_EVENT'
|
|
20686
20778
|
/** Represents a 'closed' event on any `Closable`. */
|
|
20687
20779
|
| 'CLOSED_EVENT'
|
|
20688
20780
|
/** Represents a 'comment_deleted' event on a given issue or pull request. */
|
|
@@ -21657,6 +21749,25 @@ export type RemoveAssigneesFromAssignablePayload = {
|
|
|
21657
21749
|
/** A unique identifier for the client performing the mutation. */
|
|
21658
21750
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
21659
21751
|
};
|
|
21752
|
+
/** Autogenerated input type of RemoveBlockedBy */
|
|
21753
|
+
export type RemoveBlockedByInput = {
|
|
21754
|
+
/** The ID of the blocking issue. */
|
|
21755
|
+
blockingIssueId: Scalars['ID']['input'];
|
|
21756
|
+
/** A unique identifier for the client performing the mutation. */
|
|
21757
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
21758
|
+
/** The ID of the blocked issue. */
|
|
21759
|
+
issueId: Scalars['ID']['input'];
|
|
21760
|
+
};
|
|
21761
|
+
/** Autogenerated return type of RemoveBlockedBy. */
|
|
21762
|
+
export type RemoveBlockedByPayload = {
|
|
21763
|
+
__typename: 'RemoveBlockedByPayload';
|
|
21764
|
+
/** The previously blocking issue. */
|
|
21765
|
+
blockingIssue?: Maybe<Issue>;
|
|
21766
|
+
/** A unique identifier for the client performing the mutation. */
|
|
21767
|
+
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
21768
|
+
/** The previously blocked issue. */
|
|
21769
|
+
issue?: Maybe<Issue>;
|
|
21770
|
+
};
|
|
21660
21771
|
/** Autogenerated input type of RemoveEnterpriseAdmin */
|
|
21661
21772
|
export type RemoveEnterpriseAdminInput = {
|
|
21662
21773
|
/** A unique identifier for the client performing the mutation. */
|
|
@@ -30870,6 +30981,8 @@ export type UpdateEnterpriseProfileInput = {
|
|
|
30870
30981
|
location?: InputMaybe<Scalars['String']['input']>;
|
|
30871
30982
|
/** The name of the enterprise. */
|
|
30872
30983
|
name?: InputMaybe<Scalars['String']['input']>;
|
|
30984
|
+
/** The security contact email address of the enterprise. */
|
|
30985
|
+
securityContactEmail?: InputMaybe<Scalars['String']['input']>;
|
|
30873
30986
|
/** The URL of the enterprise's website. */
|
|
30874
30987
|
websiteUrl?: InputMaybe<Scalars['String']['input']>;
|
|
30875
30988
|
};
|
package/package.json
CHANGED