typescript-github-action-template 0.2.23 → 0.2.25
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.
package/dist/__graphql__/gql.js
CHANGED
|
@@ -1,16 +1,5 @@
|
|
|
1
1
|
/* eslint-disable */
|
|
2
2
|
import * as types from './graphql.js';
|
|
3
|
-
/**
|
|
4
|
-
* Map of all GraphQL operations in the project.
|
|
5
|
-
*
|
|
6
|
-
* This map has several performance disadvantages:
|
|
7
|
-
* 1. It is not tree-shakeable, so it will include all operations in the project.
|
|
8
|
-
* 2. It is not minifiable, so the string of a GraphQL query will be multiple times inside the bundle.
|
|
9
|
-
* 3. It does not support dead code elimination, so it will add unused operations.
|
|
10
|
-
*
|
|
11
|
-
* Therefore it is highly recommended to use the babel or swc plugin for production.
|
|
12
|
-
* Learn more about it here: https://the-guild.dev/graphql/codegen/plugins/presets/preset-client#reducing-bundle-size
|
|
13
|
-
*/
|
|
14
3
|
const documents = {
|
|
15
4
|
'\n query ViewerLogin {\n viewer {\n login\n }\n }\n': types.ViewerLoginDocument,
|
|
16
5
|
};
|
|
@@ -2283,6 +2283,8 @@ export type ClosedEvent = Node & UniformResourceLocatable & {
|
|
|
2283
2283
|
closer?: Maybe<Closer>;
|
|
2284
2284
|
/** Identifies the date and time when the object was created. */
|
|
2285
2285
|
createdAt: Scalars['DateTime']['output'];
|
|
2286
|
+
/** The issue or pull request that this issue was marked as a duplicate of. */
|
|
2287
|
+
duplicateOf?: Maybe<IssueOrPullRequest>;
|
|
2286
2288
|
/** The Node ID of the ClosedEvent object */
|
|
2287
2289
|
id: Scalars['ID']['output'];
|
|
2288
2290
|
/** The HTTP path for this closed event. */
|
|
@@ -8768,6 +8770,8 @@ export type Issue = Assignable & Closable & Comment & Deletable & Labelable & Lo
|
|
|
8768
8770
|
createdViaEmail: Scalars['Boolean']['output'];
|
|
8769
8771
|
/** Identifies the primary key from the database. */
|
|
8770
8772
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
8773
|
+
/** A reference to the original issue that this issue has been marked as a duplicate of. */
|
|
8774
|
+
duplicateOf?: Maybe<Issue>;
|
|
8771
8775
|
/** The actor who edited the comment. */
|
|
8772
8776
|
editor?: Maybe<Actor>;
|
|
8773
8777
|
/** Identifies the primary key from the database as a BigInt. */
|
|
@@ -9657,6 +9661,8 @@ export type LabelOrder = {
|
|
|
9657
9661
|
export type LabelOrderField =
|
|
9658
9662
|
/** Order labels by creation time */
|
|
9659
9663
|
'CREATED_AT'
|
|
9664
|
+
/** Order labels by issue count */
|
|
9665
|
+
| 'ISSUE_COUNT'
|
|
9660
9666
|
/** Order labels by name */
|
|
9661
9667
|
| 'NAME';
|
|
9662
9668
|
/** An object that can have labels assigned to it. */
|
|
@@ -21519,6 +21525,8 @@ export type ReleaseAsset = Node & {
|
|
|
21519
21525
|
contentType: Scalars['String']['output'];
|
|
21520
21526
|
/** Identifies the date and time when the object was created. */
|
|
21521
21527
|
createdAt: Scalars['DateTime']['output'];
|
|
21528
|
+
/** The SHA256 digest of the asset */
|
|
21529
|
+
digest?: Maybe<Scalars['String']['output']>;
|
|
21522
21530
|
/** The number of times this asset was downloaded */
|
|
21523
21531
|
downloadCount: Scalars['Int']['output'];
|
|
21524
21532
|
/** Identifies the URL where you can download the release asset via the browser. */
|
|
@@ -32979,9 +32987,9 @@ export type ViewerLoginQuery = {
|
|
|
32979
32987
|
};
|
|
32980
32988
|
};
|
|
32981
32989
|
export declare class TypedDocumentString<TResult, TVariables> extends String implements DocumentTypeDecoration<TResult, TVariables> {
|
|
32990
|
+
__apiType?: DocumentTypeDecoration<TResult, TVariables>['__apiType'];
|
|
32982
32991
|
private value;
|
|
32983
32992
|
__meta__?: Record<string, any> | undefined;
|
|
32984
|
-
__apiType?: DocumentTypeDecoration<TResult, TVariables>['__apiType'];
|
|
32985
32993
|
constructor(value: string, __meta__?: Record<string, any> | undefined);
|
|
32986
32994
|
toString(): string & DocumentTypeDecoration<TResult, TVariables>;
|
|
32987
32995
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typescript-github-action-template",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.25",
|
|
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",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@0no-co/graphqlsp": "^1.12.12",
|
|
31
31
|
"@eslint/eslintrc": "^3.0.2",
|
|
32
32
|
"@eslint/js": "^9.2.0",
|
|
33
|
-
"@graphql-codegen/cli": "5.0.
|
|
33
|
+
"@graphql-codegen/cli": "5.0.6",
|
|
34
34
|
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
|
|
35
35
|
"@graphql-codegen/typescript": "4.1.6",
|
|
36
36
|
"@graphql-codegen/typescript-document-nodes": "4.0.16",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"graphql": "^16.9.0",
|
|
46
46
|
"husky": "^9.0.5",
|
|
47
47
|
"is-ci": "^4.1.0",
|
|
48
|
-
"lint-staged": "^
|
|
48
|
+
"lint-staged": "^16.0.0",
|
|
49
49
|
"pinst": "^3.0.0",
|
|
50
50
|
"prettier": "^3.0.2",
|
|
51
51
|
"typescript": "^5.0.2",
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@actions/core": "^1.10.0",
|
|
56
56
|
"@actions/github": "^6.0.0",
|
|
57
|
-
"@octokit/plugin-retry": "^
|
|
58
|
-
"@octokit/plugin-throttling": "^
|
|
57
|
+
"@octokit/plugin-retry": "^8.0.1",
|
|
58
|
+
"@octokit/plugin-throttling": "^11.0.1"
|
|
59
59
|
},
|
|
60
60
|
"lint-staged": {
|
|
61
61
|
"*.(ts,js)": "yarn lint --fix",
|