typescript-github-action-template 0.2.15 → 0.2.17

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.
@@ -17806,8 +17806,8 @@ export type PullRequestOrderField =
17806
17806
  export type PullRequestParameters = {
17807
17807
  __typename: 'PullRequestParameters';
17808
17808
  /**
17809
- * When merging pull requests, you can allow any combination of merge commits,
17810
- * squashing, or rebasing. At least one option must be enabled.
17809
+ * Array of allowed merge methods. Allowed values include `merge`, `squash`, and
17810
+ * `rebase`. At least one option must be enabled.
17811
17811
  */
17812
17812
  allowedMergeMethods?: Maybe<Array<Scalars['String']['output']>>;
17813
17813
  /** New, reviewable commits pushed will dismiss previous pull request review approvals. */
@@ -17824,8 +17824,8 @@ export type PullRequestParameters = {
17824
17824
  /** Require all commits be made to a non-target branch and submitted via a pull request before they can be merged. */
17825
17825
  export type PullRequestParametersInput = {
17826
17826
  /**
17827
- * When merging pull requests, you can allow any combination of merge commits,
17828
- * squashing, or rebasing. At least one option must be enabled.
17827
+ * Array of allowed merge methods. Allowed values include `merge`, `squash`, and
17828
+ * `rebase`. At least one option must be enabled.
17829
17829
  */
17830
17830
  allowedMergeMethods?: InputMaybe<Array<Scalars['String']['input']>>;
17831
17831
  /** New, reviewable commits pushed will dismiss previous pull request review approvals. */
@@ -28845,8 +28845,6 @@ export type UserNamespaceRepository = Node & {
28845
28845
  nameWithOwner: Scalars['String']['output'];
28846
28846
  /** The user owner of the repository. */
28847
28847
  owner: RepositoryOwner;
28848
- /** The repository owned by an enterprise managed user. */
28849
- repository?: Maybe<RepositoryInfo>;
28850
28848
  };
28851
28849
  /** A list of repositories owned by users in an enterprise with Enterprise Managed Users. */
28852
28850
  export type UserNamespaceRepositoryConnection = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typescript-github-action-template",
3
- "version": "0.2.15",
3
+ "version": "0.2.17",
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",
@@ -32,8 +32,8 @@
32
32
  "@eslint/js": "^9.2.0",
33
33
  "@graphql-codegen/cli": "5.0.5",
34
34
  "@graphql-codegen/near-operation-file-preset": "^3.0.0",
35
- "@graphql-codegen/typescript": "4.1.3",
36
- "@graphql-codegen/typescript-document-nodes": "4.0.13",
35
+ "@graphql-codegen/typescript": "4.1.5",
36
+ "@graphql-codegen/typescript-document-nodes": "4.0.15",
37
37
  "@serverless-guru/prettier-plugin-import-order": "^0.4.2",
38
38
  "@types/node": "^22.0.0",
39
39
  "@typescript-eslint/eslint-plugin": "^8.0.0",