typescript-github-action-template 0.2.30 → 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.
@@ -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. */
@@ -8786,6 +8805,10 @@ export type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lo
8786
8805
  author?: Maybe<Actor>;
8787
8806
  /** Author's association with the subject of the comment. */
8788
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;
8789
8812
  /** Identifies the body of the issue. */
8790
8813
  body: Scalars['String']['output'];
8791
8814
  /** The body rendered to HTML. */
@@ -8826,6 +8849,8 @@ export type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lo
8826
8849
  isPinned?: Maybe<Scalars['Boolean']['output']>;
8827
8850
  /** Is this issue read by the viewer */
8828
8851
  isReadByViewer?: Maybe<Scalars['Boolean']['output']>;
8852
+ /** Summary of the state of an issue's dependencies */
8853
+ issueDependenciesSummary: IssueDependenciesSummary;
8829
8854
  /** The issue type for this Issue */
8830
8855
  issueType?: Maybe<IssueType>;
8831
8856
  /** A list of labels associated with the object. */
@@ -8938,6 +8963,22 @@ export type IssueAssigneesArgs = {
8938
8963
  last?: InputMaybe<Scalars['Int']['input']>;
8939
8964
  };
8940
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. */
8941
8982
  export type IssueClosedByPullRequestsReferencesArgs = {
8942
8983
  after?: InputMaybe<Scalars['String']['input']>;
8943
8984
  before?: InputMaybe<Scalars['String']['input']>;
@@ -9238,6 +9279,27 @@ export type IssueContributionsByRepositoryContributionsArgs = {
9238
9279
  last?: InputMaybe<Scalars['Int']['input']>;
9239
9280
  orderBy?: InputMaybe<ContributionOrder>;
9240
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';
9241
9303
  /** An edge in a connection. */
9242
9304
  export type IssueEdge = {
9243
9305
  __typename: 'IssueEdge';
@@ -9404,6 +9466,14 @@ export type IssueTimelineItemsItemType =
9404
9466
  'ADDED_TO_PROJECT_EVENT'
9405
9467
  /** Represents an 'assigned' event on any assignable object. */
9406
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'
9407
9477
  /** Represents a 'closed' event on any `Closable`. */
9408
9478
  | 'CLOSED_EVENT'
9409
9479
  /** Represents a 'comment_deleted' event on a given issue or pull request. */
@@ -11239,6 +11309,8 @@ export type Mutation = {
11239
11309
  accessUserNamespaceRepository?: Maybe<AccessUserNamespaceRepositoryPayload>;
11240
11310
  /** Adds assignees to an assignable object. */
11241
11311
  addAssigneesToAssignable?: Maybe<AddAssigneesToAssignablePayload>;
11312
+ /** Adds a 'blocked by' relationship to an issue. */
11313
+ addBlockedBy?: Maybe<AddBlockedByPayload>;
11242
11314
  /** Adds a comment to an Issue or Pull Request. */
11243
11315
  addComment?: Maybe<AddCommentPayload>;
11244
11316
  /** Adds a comment to a Discussion, possibly as a reply to another comment. */
@@ -11594,6 +11666,8 @@ export type Mutation = {
11594
11666
  rejectDeployments?: Maybe<RejectDeploymentsPayload>;
11595
11667
  /** Removes assignees from an assignable object. */
11596
11668
  removeAssigneesFromAssignable?: Maybe<RemoveAssigneesFromAssignablePayload>;
11669
+ /** Removes a 'blocked by' relationship from an issue. */
11670
+ removeBlockedBy?: Maybe<RemoveBlockedByPayload>;
11597
11671
  /** Removes an administrator from the enterprise. */
11598
11672
  removeEnterpriseAdmin?: Maybe<RemoveEnterpriseAdminPayload>;
11599
11673
  /**
@@ -11894,6 +11968,10 @@ export type MutationAddAssigneesToAssignableArgs = {
11894
11968
  input: AddAssigneesToAssignableInput;
11895
11969
  };
11896
11970
  /** The root query for implementing GraphQL mutations. */
11971
+ export type MutationAddBlockedByArgs = {
11972
+ input: AddBlockedByInput;
11973
+ };
11974
+ /** The root query for implementing GraphQL mutations. */
11897
11975
  export type MutationAddCommentArgs = {
11898
11976
  input: AddCommentInput;
11899
11977
  };
@@ -12418,6 +12496,10 @@ export type MutationRemoveAssigneesFromAssignableArgs = {
12418
12496
  input: RemoveAssigneesFromAssignableInput;
12419
12497
  };
12420
12498
  /** The root query for implementing GraphQL mutations. */
12499
+ export type MutationRemoveBlockedByArgs = {
12500
+ input: RemoveBlockedByInput;
12501
+ };
12502
+ /** The root query for implementing GraphQL mutations. */
12421
12503
  export type MutationRemoveEnterpriseAdminArgs = {
12422
12504
  input: RemoveEnterpriseAdminInput;
12423
12505
  };
@@ -20094,7 +20176,7 @@ export type PullRequestParameters = {
20094
20176
  * `rebase`. At least one option must be enabled.
20095
20177
  */
20096
20178
  allowedMergeMethods?: Maybe<Array<PullRequestAllowedMergeMethods>>;
20097
- /** Automatically request review from Copilot for new pull requests, if the author has access to Copilot code review. */
20179
+ /** Request Copilot code review for new pull requests automatically if the author has access to Copilot code review. */
20098
20180
  automaticCopilotCodeReviewEnabled: Scalars['Boolean']['output'];
20099
20181
  /** New, reviewable commits pushed will dismiss previous pull request review approvals. */
20100
20182
  dismissStaleReviewsOnPush: Scalars['Boolean']['output'];
@@ -20114,7 +20196,7 @@ export type PullRequestParametersInput = {
20114
20196
  * `rebase`. At least one option must be enabled.
20115
20197
  */
20116
20198
  allowedMergeMethods?: InputMaybe<Array<PullRequestAllowedMergeMethods>>;
20117
- /** Automatically request review from Copilot for new pull requests, if the author has access to Copilot code review. */
20199
+ /** Request Copilot code review for new pull requests automatically if the author has access to Copilot code review. */
20118
20200
  automaticCopilotCodeReviewEnabled?: InputMaybe<Scalars['Boolean']['input']>;
20119
20201
  /** New, reviewable commits pushed will dismiss previous pull request review approvals. */
20120
20202
  dismissStaleReviewsOnPush: Scalars['Boolean']['input'];
@@ -20683,6 +20765,14 @@ export type PullRequestTimelineItemsItemType =
20683
20765
  | 'BASE_REF_DELETED_EVENT'
20684
20766
  /** Represents a 'base_ref_force_pushed' event on a given pull request. */
20685
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'
20686
20776
  /** Represents a 'closed' event on any `Closable`. */
20687
20777
  | 'CLOSED_EVENT'
20688
20778
  /** Represents a 'comment_deleted' event on a given issue or pull request. */
@@ -21657,6 +21747,25 @@ export type RemoveAssigneesFromAssignablePayload = {
21657
21747
  /** A unique identifier for the client performing the mutation. */
21658
21748
  clientMutationId?: Maybe<Scalars['String']['output']>;
21659
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
+ };
21660
21769
  /** Autogenerated input type of RemoveEnterpriseAdmin */
21661
21770
  export type RemoveEnterpriseAdminInput = {
21662
21771
  /** A unique identifier for the client performing the mutation. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typescript-github-action-template",
3
- "version": "0.2.30",
3
+ "version": "0.2.31",
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",