typescript-github-action-template 0.2.21 → 0.2.22

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.
@@ -602,7 +602,7 @@ export type AddPullRequestReviewThreadInput = {
602
602
  */
603
603
  line?: InputMaybe<Scalars['Int']['input']>;
604
604
  /** Path to the file being commented on. */
605
- path: Scalars['String']['input'];
605
+ path?: InputMaybe<Scalars['String']['input']>;
606
606
  /** The node ID of the pull request reviewing */
607
607
  pullRequestId?: InputMaybe<Scalars['ID']['input']>;
608
608
  /** The Node ID of the review to modify. */
@@ -6261,10 +6261,13 @@ export type DraftPullRequestReviewComment = {
6261
6261
  export type DraftPullRequestReviewThread = {
6262
6262
  /** Body of the comment to leave. */
6263
6263
  body: Scalars['String']['input'];
6264
- /** The line of the blob to which the thread refers. The end of the line range for multi-line comments. */
6265
- line: Scalars['Int']['input'];
6266
- /** Path to the file being commented on. */
6267
- path: Scalars['String']['input'];
6264
+ /**
6265
+ * The line of the blob to which the thread refers. The end of the line range for
6266
+ * multi-line comments. Required if not using positioning.
6267
+ */
6268
+ line?: InputMaybe<Scalars['Int']['input']>;
6269
+ /** Path to the file being commented on. Required if not using positioning. */
6270
+ path?: InputMaybe<Scalars['String']['input']>;
6268
6271
  /** The side of the diff on which the line resides. For multi-line comments, this is the side for the end of the line range. */
6269
6272
  side?: InputMaybe<DiffSide>;
6270
6273
  /** The first line of the range to which the comment refers. */
@@ -10948,6 +10951,8 @@ export type Milestone = Closable & Node & UniformResourceLocatable & {
10948
10951
  closed: Scalars['Boolean']['output'];
10949
10952
  /** Identifies the date and time when the object was closed. */
10950
10953
  closedAt?: Maybe<Scalars['DateTime']['output']>;
10954
+ /** Identifies the number of closed issues associated with the milestone. */
10955
+ closedIssueCount: Scalars['Int']['output'];
10951
10956
  /** Identifies the date and time when the object was created. */
10952
10957
  createdAt: Scalars['DateTime']['output'];
10953
10958
  /** Identifies the actor who created the milestone. */
@@ -10964,6 +10969,8 @@ export type Milestone = Closable & Node & UniformResourceLocatable & {
10964
10969
  issues: IssueConnection;
10965
10970
  /** Identifies the number of the milestone. */
10966
10971
  number: Scalars['Int']['output'];
10972
+ /** Identifies the number of open issues associated with the milestone. */
10973
+ openIssueCount: Scalars['Int']['output'];
10967
10974
  /** Identifies the percentage complete for the milestone */
10968
10975
  progressPercentage: Scalars['Float']['output'];
10969
10976
  /** A list of pull requests associated with the milestone. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typescript-github-action-template",
3
- "version": "0.2.21",
3
+ "version": "0.2.22",
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",