typescript-github-action-template 0.2.53 → 0.2.54
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/.yarn/install-state.gz +0 -0
- package/.yarnrc.yml +1 -0
- package/dist/__graphql__/graphql.d.ts +7 -2
- package/package.json +7 -7
|
Binary file
|
package/.yarnrc.yml
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
nodeLinker: node-modules
|
|
@@ -1802,8 +1802,13 @@ export type CheckAnnotation = {
|
|
|
1802
1802
|
annotationLevel?: Maybe<CheckAnnotationLevel>;
|
|
1803
1803
|
/** The path to the file that this annotation was made on. */
|
|
1804
1804
|
blobUrl: Scalars['URI']['output'];
|
|
1805
|
-
/**
|
|
1805
|
+
/**
|
|
1806
|
+
* Identifies the primary key from the database.
|
|
1807
|
+
* @deprecated `databaseId` will be removed because it does not support 64-bit signed integer identifiers. Use `fullDatabaseId` instead. Removal on 2027-01-01 UTC.
|
|
1808
|
+
*/
|
|
1806
1809
|
databaseId?: Maybe<Scalars['Int']['output']>;
|
|
1810
|
+
/** Identifies the primary key from the database as a BigInt. */
|
|
1811
|
+
fullDatabaseId?: Maybe<Scalars['BigInt']['output']>;
|
|
1807
1812
|
/** The position of this annotation. */
|
|
1808
1813
|
location: CheckAnnotationSpan;
|
|
1809
1814
|
/** The annotation's message. */
|
|
@@ -24513,7 +24518,7 @@ export type Repository = Node & PackageOwner & ProjectOwner & ProjectV2Recent &
|
|
|
24513
24518
|
interactionAbility?: Maybe<RepositoryInteractionAbility>;
|
|
24514
24519
|
/** Indicates if the repository is unmaintained. */
|
|
24515
24520
|
isArchived: Scalars['Boolean']['output'];
|
|
24516
|
-
/** Returns true if blank issue
|
|
24521
|
+
/** Returns true if the viewer can create a blank issue in this repository */
|
|
24517
24522
|
isBlankIssuesEnabled: Scalars['Boolean']['output'];
|
|
24518
24523
|
/** Returns whether or not this repository disabled. */
|
|
24519
24524
|
isDisabled: Scalars['Boolean']['output'];
|
package/package.json
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "typescript-github-action-template",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.54",
|
|
4
4
|
"description": "A template to create custom GitHub Action with TypeScript/JavaScript.",
|
|
5
|
+
"packageManager": "yarn@4.13.0",
|
|
5
6
|
"main": "dist/index.js",
|
|
6
7
|
"types": "dist/index.d.js",
|
|
7
8
|
"type": "module",
|
|
8
9
|
"scripts": {
|
|
9
10
|
"codegen": "rm -rf src/__graphql__ && graphql-codegen-esm --config codegen.ts",
|
|
10
|
-
"build": "rm -rf dist &&
|
|
11
|
-
"bundle": "rm -rf bundle &&
|
|
11
|
+
"build": "rm -rf dist && tsc",
|
|
12
|
+
"bundle": "rm -rf bundle && ncc build src/index.ts --source-map --license licenses.txt --out bundle",
|
|
12
13
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
13
14
|
"lint": "eslint -c eslint.config.js",
|
|
14
15
|
"prepublishOnly": "pinst --disable && yarn build",
|
|
@@ -30,10 +31,9 @@
|
|
|
30
31
|
"@0no-co/graphqlsp": "^1.12.12",
|
|
31
32
|
"@eslint/eslintrc": "^3.0.2",
|
|
32
33
|
"@eslint/js": "^10.0.1",
|
|
33
|
-
"@graphql-codegen/cli": "6.1.
|
|
34
|
-
"@graphql-codegen/
|
|
35
|
-
"@graphql-codegen/typescript": "5.0.
|
|
36
|
-
"@graphql-codegen/typescript-document-nodes": "5.0.8",
|
|
34
|
+
"@graphql-codegen/cli": "6.1.3",
|
|
35
|
+
"@graphql-codegen/typescript": "5.0.9",
|
|
36
|
+
"@graphql-codegen/typescript-document-nodes": "5.0.9",
|
|
37
37
|
"@graphql-eslint/eslint-plugin": "^4.4.0",
|
|
38
38
|
"@serverless-guru/prettier-plugin-import-order": "^0.4.2",
|
|
39
39
|
"@types/node": "^25.0.0",
|