typescript-github-action-template 0.2.33 → 0.2.34

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.
@@ -8983,6 +8983,8 @@ export type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lo
8983
8983
  viewerCanReact: Scalars['Boolean']['output'];
8984
8984
  /** Indicates if the object can be reopened by the viewer. */
8985
8985
  viewerCanReopen: Scalars['Boolean']['output'];
8986
+ /** Check if the current viewer can set fields on the issue. */
8987
+ viewerCanSetFields?: Maybe<Scalars['Boolean']['output']>;
8986
8988
  /** Check if the viewer is able to change their subscription status for the repository. */
8987
8989
  viewerCanSubscribe: Scalars['Boolean']['output'];
8988
8990
  /** Check if the current viewer can update this object. */
@@ -24447,6 +24449,8 @@ export type Repository = Node & PackageOwner & ProjectOwner & ProjectV2Recent &
24447
24449
  * @deprecated Projects (classic) is being deprecated in favor of the new Projects experience, see: https://github.blog/changelog/2024-05-23-sunset-notice-projects-classic/. Removal on 2025-04-01 UTC.
24448
24450
  */
24449
24451
  viewerCanCreateProjects: Scalars['Boolean']['output'];
24452
+ /** Indicates whether the current user can see issue fields in this repository */
24453
+ viewerCanSeeIssueFields: Scalars['Boolean']['output'];
24450
24454
  /** Check if the viewer is able to change their subscription status for the repository. */
24451
24455
  viewerCanSubscribe: Scalars['Boolean']['output'];
24452
24456
  /** Indicates whether the viewer can update the topics of this repository. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typescript-github-action-template",
3
- "version": "0.2.33",
3
+ "version": "0.2.34",
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",