typescript-github-action-template 0.2.29 → 0.2.31
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 +113 -10
- 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. */
|
|
@@ -2287,10 +2306,7 @@ export type ClosedEvent = Node & UniformResourceLocatable & {
|
|
|
2287
2306
|
id: Scalars['ID']['output'];
|
|
2288
2307
|
/** The HTTP path for this closed event. */
|
|
2289
2308
|
resourcePath: Scalars['URI']['output'];
|
|
2290
|
-
/**
|
|
2291
|
-
* The reason the issue state was changed to closed.
|
|
2292
|
-
* @deprecated The state reason for duplicate issue is now returned by default. Removal on 2025-10-01 UTC.
|
|
2293
|
-
*/
|
|
2309
|
+
/** The reason the issue state was changed to closed. */
|
|
2294
2310
|
stateReason?: Maybe<IssueStateReason>;
|
|
2295
2311
|
/** The HTTP URL for this closed event. */
|
|
2296
2312
|
url: Scalars['URI']['output'];
|
|
@@ -8789,6 +8805,10 @@ export type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lo
|
|
|
8789
8805
|
author?: Maybe<Actor>;
|
|
8790
8806
|
/** Author's association with the subject of the comment. */
|
|
8791
8807
|
authorAssociation: CommentAuthorAssociation;
|
|
8808
|
+
/** A list of issues that are blocking this issue. */
|
|
8809
|
+
blockedBy: IssueConnection;
|
|
8810
|
+
/** A list of issues that this issue is blocking. */
|
|
8811
|
+
blocking: IssueConnection;
|
|
8792
8812
|
/** Identifies the body of the issue. */
|
|
8793
8813
|
body: Scalars['String']['output'];
|
|
8794
8814
|
/** The body rendered to HTML. */
|
|
@@ -8829,6 +8849,8 @@ export type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lo
|
|
|
8829
8849
|
isPinned?: Maybe<Scalars['Boolean']['output']>;
|
|
8830
8850
|
/** Is this issue read by the viewer */
|
|
8831
8851
|
isReadByViewer?: Maybe<Scalars['Boolean']['output']>;
|
|
8852
|
+
/** Summary of the state of an issue's dependencies */
|
|
8853
|
+
issueDependenciesSummary: IssueDependenciesSummary;
|
|
8832
8854
|
/** The issue type for this Issue */
|
|
8833
8855
|
issueType?: Maybe<IssueType>;
|
|
8834
8856
|
/** A list of labels associated with the object. */
|
|
@@ -8870,10 +8892,7 @@ export type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lo
|
|
|
8870
8892
|
resourcePath: Scalars['URI']['output'];
|
|
8871
8893
|
/** Identifies the state of the issue. */
|
|
8872
8894
|
state: IssueState;
|
|
8873
|
-
/**
|
|
8874
|
-
* Identifies the reason for the issue state.
|
|
8875
|
-
* @deprecated The state reason for duplicate issue is now returned by default. Removal on 2025-10-01 UTC.
|
|
8876
|
-
*/
|
|
8895
|
+
/** Identifies the reason for the issue state. */
|
|
8877
8896
|
stateReason?: Maybe<IssueStateReason>;
|
|
8878
8897
|
/** A list of sub-issues associated with the Issue. */
|
|
8879
8898
|
subIssues: IssueConnection;
|
|
@@ -8944,6 +8963,22 @@ export type IssueAssigneesArgs = {
|
|
|
8944
8963
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
8945
8964
|
};
|
|
8946
8965
|
/** An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project. */
|
|
8966
|
+
export type IssueBlockedByArgs = {
|
|
8967
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
8968
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
8969
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8970
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
8971
|
+
orderBy?: InputMaybe<IssueDependencyOrder>;
|
|
8972
|
+
};
|
|
8973
|
+
/** An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project. */
|
|
8974
|
+
export type IssueBlockingArgs = {
|
|
8975
|
+
after?: InputMaybe<Scalars['String']['input']>;
|
|
8976
|
+
before?: InputMaybe<Scalars['String']['input']>;
|
|
8977
|
+
first?: InputMaybe<Scalars['Int']['input']>;
|
|
8978
|
+
last?: InputMaybe<Scalars['Int']['input']>;
|
|
8979
|
+
orderBy?: InputMaybe<IssueDependencyOrder>;
|
|
8980
|
+
};
|
|
8981
|
+
/** An Issue is a place to discuss ideas, enhancements, tasks, and bugs for a project. */
|
|
8947
8982
|
export type IssueClosedByPullRequestsReferencesArgs = {
|
|
8948
8983
|
after?: InputMaybe<Scalars['String']['input']>;
|
|
8949
8984
|
before?: InputMaybe<Scalars['String']['input']>;
|
|
@@ -9244,6 +9279,27 @@ export type IssueContributionsByRepositoryContributionsArgs = {
|
|
|
9244
9279
|
last?: InputMaybe<Scalars['Int']['input']>;
|
|
9245
9280
|
orderBy?: InputMaybe<ContributionOrder>;
|
|
9246
9281
|
};
|
|
9282
|
+
/** Summary of the state of an issue's dependencies */
|
|
9283
|
+
export type IssueDependenciesSummary = {
|
|
9284
|
+
__typename: 'IssueDependenciesSummary';
|
|
9285
|
+
/** Count of issues this issue is blocked by */
|
|
9286
|
+
blockedBy: Scalars['Int']['output'];
|
|
9287
|
+
/** Count of issues this issue is blocking */
|
|
9288
|
+
blocking: Scalars['Int']['output'];
|
|
9289
|
+
};
|
|
9290
|
+
/** Ordering options issue dependencies */
|
|
9291
|
+
export type IssueDependencyOrder = {
|
|
9292
|
+
/** The ordering direction. */
|
|
9293
|
+
direction: OrderDirection;
|
|
9294
|
+
/** The field to order issue dependencies by. */
|
|
9295
|
+
field: IssueDependencyOrderField;
|
|
9296
|
+
};
|
|
9297
|
+
/** Properties by which issue dependencies can be ordered. */
|
|
9298
|
+
export type IssueDependencyOrderField =
|
|
9299
|
+
/** Order issue dependencies by the creation time of the dependent issue */
|
|
9300
|
+
'CREATED_AT'
|
|
9301
|
+
/** Order issue dependencies by time of when the dependency relationship was added */
|
|
9302
|
+
| 'DEPENDENCY_ADDED_AT';
|
|
9247
9303
|
/** An edge in a connection. */
|
|
9248
9304
|
export type IssueEdge = {
|
|
9249
9305
|
__typename: 'IssueEdge';
|
|
@@ -9410,6 +9466,14 @@ export type IssueTimelineItemsItemType =
|
|
|
9410
9466
|
'ADDED_TO_PROJECT_EVENT'
|
|
9411
9467
|
/** Represents an 'assigned' event on any assignable object. */
|
|
9412
9468
|
| 'ASSIGNED_EVENT'
|
|
9469
|
+
/** Represents a 'blocked_by_added' event on a given issue. */
|
|
9470
|
+
| 'BLOCKED_BY_ADDED_EVENT'
|
|
9471
|
+
/** Represents a 'blocked_by_removed' event on a given issue. */
|
|
9472
|
+
| 'BLOCKED_BY_REMOVED_EVENT'
|
|
9473
|
+
/** Represents a 'blocking_added' event on a given issue. */
|
|
9474
|
+
| 'BLOCKING_ADDED_EVENT'
|
|
9475
|
+
/** Represents a 'blocking_removed' event on a given issue. */
|
|
9476
|
+
| 'BLOCKING_REMOVED_EVENT'
|
|
9413
9477
|
/** Represents a 'closed' event on any `Closable`. */
|
|
9414
9478
|
| 'CLOSED_EVENT'
|
|
9415
9479
|
/** Represents a 'comment_deleted' event on a given issue or pull request. */
|
|
@@ -11245,6 +11309,8 @@ export type Mutation = {
|
|
|
11245
11309
|
accessUserNamespaceRepository?: Maybe<AccessUserNamespaceRepositoryPayload>;
|
|
11246
11310
|
/** Adds assignees to an assignable object. */
|
|
11247
11311
|
addAssigneesToAssignable?: Maybe<AddAssigneesToAssignablePayload>;
|
|
11312
|
+
/** Adds a 'blocked by' relationship to an issue. */
|
|
11313
|
+
addBlockedBy?: Maybe<AddBlockedByPayload>;
|
|
11248
11314
|
/** Adds a comment to an Issue or Pull Request. */
|
|
11249
11315
|
addComment?: Maybe<AddCommentPayload>;
|
|
11250
11316
|
/** Adds a comment to a Discussion, possibly as a reply to another comment. */
|
|
@@ -11600,6 +11666,8 @@ export type Mutation = {
|
|
|
11600
11666
|
rejectDeployments?: Maybe<RejectDeploymentsPayload>;
|
|
11601
11667
|
/** Removes assignees from an assignable object. */
|
|
11602
11668
|
removeAssigneesFromAssignable?: Maybe<RemoveAssigneesFromAssignablePayload>;
|
|
11669
|
+
/** Removes a 'blocked by' relationship from an issue. */
|
|
11670
|
+
removeBlockedBy?: Maybe<RemoveBlockedByPayload>;
|
|
11603
11671
|
/** Removes an administrator from the enterprise. */
|
|
11604
11672
|
removeEnterpriseAdmin?: Maybe<RemoveEnterpriseAdminPayload>;
|
|
11605
11673
|
/**
|
|
@@ -11900,6 +11968,10 @@ export type MutationAddAssigneesToAssignableArgs = {
|
|
|
11900
11968
|
input: AddAssigneesToAssignableInput;
|
|
11901
11969
|
};
|
|
11902
11970
|
/** The root query for implementing GraphQL mutations. */
|
|
11971
|
+
export type MutationAddBlockedByArgs = {
|
|
11972
|
+
input: AddBlockedByInput;
|
|
11973
|
+
};
|
|
11974
|
+
/** The root query for implementing GraphQL mutations. */
|
|
11903
11975
|
export type MutationAddCommentArgs = {
|
|
11904
11976
|
input: AddCommentInput;
|
|
11905
11977
|
};
|
|
@@ -12424,6 +12496,10 @@ export type MutationRemoveAssigneesFromAssignableArgs = {
|
|
|
12424
12496
|
input: RemoveAssigneesFromAssignableInput;
|
|
12425
12497
|
};
|
|
12426
12498
|
/** The root query for implementing GraphQL mutations. */
|
|
12499
|
+
export type MutationRemoveBlockedByArgs = {
|
|
12500
|
+
input: RemoveBlockedByInput;
|
|
12501
|
+
};
|
|
12502
|
+
/** The root query for implementing GraphQL mutations. */
|
|
12427
12503
|
export type MutationRemoveEnterpriseAdminArgs = {
|
|
12428
12504
|
input: RemoveEnterpriseAdminInput;
|
|
12429
12505
|
};
|
|
@@ -20100,7 +20176,7 @@ export type PullRequestParameters = {
|
|
|
20100
20176
|
* `rebase`. At least one option must be enabled.
|
|
20101
20177
|
*/
|
|
20102
20178
|
allowedMergeMethods?: Maybe<Array<PullRequestAllowedMergeMethods>>;
|
|
20103
|
-
/**
|
|
20179
|
+
/** Request Copilot code review for new pull requests automatically if the author has access to Copilot code review. */
|
|
20104
20180
|
automaticCopilotCodeReviewEnabled: Scalars['Boolean']['output'];
|
|
20105
20181
|
/** New, reviewable commits pushed will dismiss previous pull request review approvals. */
|
|
20106
20182
|
dismissStaleReviewsOnPush: Scalars['Boolean']['output'];
|
|
@@ -20120,7 +20196,7 @@ export type PullRequestParametersInput = {
|
|
|
20120
20196
|
* `rebase`. At least one option must be enabled.
|
|
20121
20197
|
*/
|
|
20122
20198
|
allowedMergeMethods?: InputMaybe<Array<PullRequestAllowedMergeMethods>>;
|
|
20123
|
-
/**
|
|
20199
|
+
/** Request Copilot code review for new pull requests automatically if the author has access to Copilot code review. */
|
|
20124
20200
|
automaticCopilotCodeReviewEnabled?: InputMaybe<Scalars['Boolean']['input']>;
|
|
20125
20201
|
/** New, reviewable commits pushed will dismiss previous pull request review approvals. */
|
|
20126
20202
|
dismissStaleReviewsOnPush: Scalars['Boolean']['input'];
|
|
@@ -20689,6 +20765,14 @@ export type PullRequestTimelineItemsItemType =
|
|
|
20689
20765
|
| 'BASE_REF_DELETED_EVENT'
|
|
20690
20766
|
/** Represents a 'base_ref_force_pushed' event on a given pull request. */
|
|
20691
20767
|
| 'BASE_REF_FORCE_PUSHED_EVENT'
|
|
20768
|
+
/** Represents a 'blocked_by_added' event on a given issue. */
|
|
20769
|
+
| 'BLOCKED_BY_ADDED_EVENT'
|
|
20770
|
+
/** Represents a 'blocked_by_removed' event on a given issue. */
|
|
20771
|
+
| 'BLOCKED_BY_REMOVED_EVENT'
|
|
20772
|
+
/** Represents a 'blocking_added' event on a given issue. */
|
|
20773
|
+
| 'BLOCKING_ADDED_EVENT'
|
|
20774
|
+
/** Represents a 'blocking_removed' event on a given issue. */
|
|
20775
|
+
| 'BLOCKING_REMOVED_EVENT'
|
|
20692
20776
|
/** Represents a 'closed' event on any `Closable`. */
|
|
20693
20777
|
| 'CLOSED_EVENT'
|
|
20694
20778
|
/** Represents a 'comment_deleted' event on a given issue or pull request. */
|
|
@@ -21663,6 +21747,25 @@ export type RemoveAssigneesFromAssignablePayload = {
|
|
|
21663
21747
|
/** A unique identifier for the client performing the mutation. */
|
|
21664
21748
|
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
21665
21749
|
};
|
|
21750
|
+
/** Autogenerated input type of RemoveBlockedBy */
|
|
21751
|
+
export type RemoveBlockedByInput = {
|
|
21752
|
+
/** The ID of the blocking issue. */
|
|
21753
|
+
blockingIssueId: Scalars['ID']['input'];
|
|
21754
|
+
/** A unique identifier for the client performing the mutation. */
|
|
21755
|
+
clientMutationId?: InputMaybe<Scalars['String']['input']>;
|
|
21756
|
+
/** The ID of the blocked issue. */
|
|
21757
|
+
issueId: Scalars['ID']['input'];
|
|
21758
|
+
};
|
|
21759
|
+
/** Autogenerated return type of RemoveBlockedBy. */
|
|
21760
|
+
export type RemoveBlockedByPayload = {
|
|
21761
|
+
__typename: 'RemoveBlockedByPayload';
|
|
21762
|
+
/** The previously blocking issue. */
|
|
21763
|
+
blockingIssue?: Maybe<Issue>;
|
|
21764
|
+
/** A unique identifier for the client performing the mutation. */
|
|
21765
|
+
clientMutationId?: Maybe<Scalars['String']['output']>;
|
|
21766
|
+
/** The previously blocked issue. */
|
|
21767
|
+
issue?: Maybe<Issue>;
|
|
21768
|
+
};
|
|
21666
21769
|
/** Autogenerated input type of RemoveEnterpriseAdmin */
|
|
21667
21770
|
export type RemoveEnterpriseAdminInput = {
|
|
21668
21771
|
/** A unique identifier for the client performing the mutation. */
|
package/package.json
CHANGED