typescript-github-action-template 0.2.55 → 0.2.56

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.
Binary file
@@ -1609,7 +1609,7 @@ export type BulkSponsorship = {
1609
1609
  sponsorableLogin?: InputMaybe<Scalars['String']['input']>;
1610
1610
  };
1611
1611
  /** Types that can represent a repository ruleset bypass actor. */
1612
- export type BypassActor = App | Team;
1612
+ export type BypassActor = App | Team | User;
1613
1613
  /** A user, team, or app who has the ability to bypass a force push requirement on a protected branch. */
1614
1614
  export type BypassForcePushAllowance = Node & {
1615
1615
  __typename: 'BypassForcePushAllowance';
@@ -9748,6 +9748,8 @@ export type IssueFieldSingleSelectValue = IssueFieldValueCommon & Node & {
9748
9748
  id: Scalars['ID']['output'];
9749
9749
  /** The option's name. */
9750
9750
  name: Scalars['String']['output'];
9751
+ /** The selected option's global relay ID. */
9752
+ optionId?: Maybe<Scalars['String']['output']>;
9751
9753
  };
9752
9754
  /** Represents a text issue field. */
9753
9755
  export type IssueFieldText = IssueFieldCommon & Node & {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typescript-github-action-template",
3
- "version": "0.2.55",
3
+ "version": "0.2.56",
4
4
  "description": "A template to create custom GitHub Action with TypeScript/JavaScript.",
5
5
  "license": "MIT",
6
6
  "repository": {