@theholocron/holocron-plugin-vercel 2.2.4 → 3.0.1
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/index.d.mts +3 -3
- package/package.json +15 -15
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { AuthError, Deployment, DeploymentProject, DeploymentProjectSettings, DeploymentRecord, DeploymentTarget, DeploymentTrigger, ResolveTokenInput } from "@theholocron/cli";
|
|
2
|
-
import { VercelClient, VercelClient as VercelClient$1, createVercelClient } from "@theholocron/vercel-client";
|
|
2
|
+
import { VercelClient, VercelClient as VercelClient$1, VercelClientOptions, createVercelClient } from "@theholocron/vercel-client";
|
|
3
3
|
//#region src/auth.d.ts
|
|
4
|
-
declare const resolveToken: (input?:
|
|
4
|
+
declare const resolveToken: (input?: ResolveTokenInput) => string;
|
|
5
5
|
//#endregion
|
|
6
6
|
//#region src/capabilities/deployment.d.ts
|
|
7
7
|
interface DeploymentOptions {
|
|
@@ -83,4 +83,4 @@ declare function createPlugin(options?: VercelPluginOptions): {
|
|
|
83
83
|
*/
|
|
84
84
|
declare const AUTH_HINT: string;
|
|
85
85
|
//#endregion
|
|
86
|
-
export { AUTH_HINT, AuthError, PluginContext, type ResolveTokenInput, type VercelClient, VercelDeployment, VercelPluginOptions, type VerifyTokenFailure, type VerifyTokenResult, type VerifyTokenSuccess, createContext, createPlugin, createVercelClient, deployment, resolveToken, verifyToken };
|
|
86
|
+
export { AUTH_HINT, AuthError, PluginContext, type ResolveTokenInput, type VercelClient, type VercelClientOptions, VercelDeployment, VercelPluginOptions, type VerifyTokenFailure, type VerifyTokenResult, type VerifyTokenSuccess, createContext, createPlugin, createVercelClient, deployment, resolveToken, verifyToken };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theholocron/holocron-plugin-vercel",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "Holocron plugin for Vercel. Implements the deployment capability against the Vercel REST API.",
|
|
5
5
|
"homepage": "https://github.com/theholocron/holocron/tree/main/packages/holocron-plugin-vercel#readme",
|
|
6
6
|
"bugs": "https://github.com/theholocron/holocron/issues",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@theholocron/vercel-client": "^1.3.
|
|
25
|
-
"@theholocron/cli": "
|
|
24
|
+
"@theholocron/vercel-client": "^1.3.3",
|
|
25
|
+
"@theholocron/cli": "3.0.1"
|
|
26
26
|
},
|
|
27
27
|
"peerDependenciesMeta": {
|
|
28
28
|
"@theholocron/vercel-client": {
|
|
@@ -30,22 +30,22 @@
|
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@theholocron/eslint-config": "^7.
|
|
34
|
-
"@theholocron/tsconfig": "^7.
|
|
35
|
-
"@theholocron/tsdown-config": "^7.
|
|
36
|
-
"@theholocron/vercel-client": "^1.3.
|
|
37
|
-
"@theholocron/vitest-config": "^7.
|
|
33
|
+
"@theholocron/eslint-config": "^7.5.0",
|
|
34
|
+
"@theholocron/tsconfig": "^7.5.0",
|
|
35
|
+
"@theholocron/tsdown-config": "^7.5.0",
|
|
36
|
+
"@theholocron/vercel-client": "^1.3.3",
|
|
37
|
+
"@theholocron/vitest-config": "^7.5.0",
|
|
38
38
|
"@types/node": "^26",
|
|
39
39
|
"@vitest/coverage-v8": "^4.1.10",
|
|
40
|
-
"@vitest/eslint-plugin": "^1.6.
|
|
41
|
-
"eslint": "^10.
|
|
40
|
+
"@vitest/eslint-plugin": "^1.6.24",
|
|
41
|
+
"eslint": "^10.8.0",
|
|
42
42
|
"eslint-plugin-n": "^18.2.2",
|
|
43
43
|
"globals": "^17.7.0",
|
|
44
|
-
"tsdown": "^0.22.
|
|
45
|
-
"tsx": "4.
|
|
44
|
+
"tsdown": "^0.22.14",
|
|
45
|
+
"tsx": "4.23.1",
|
|
46
46
|
"typescript": "^5.9.3",
|
|
47
47
|
"vitest": "^4.1.10",
|
|
48
|
-
"@theholocron/cli": "
|
|
48
|
+
"@theholocron/cli": "3.0.1"
|
|
49
49
|
},
|
|
50
50
|
"publishConfig": {
|
|
51
51
|
"access": "public"
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
"dist",
|
|
55
55
|
"README.md"
|
|
56
56
|
],
|
|
57
|
+
"types": "./dist/index.d.mts",
|
|
57
58
|
"scripts": {
|
|
58
59
|
"build": "tsdown",
|
|
59
60
|
"lint": "eslint .",
|
|
@@ -62,6 +63,5 @@
|
|
|
62
63
|
"test:watch": "vitest",
|
|
63
64
|
"test:coverage": "vitest run --coverage",
|
|
64
65
|
"validate": "tsx scripts/validate.mjs"
|
|
65
|
-
}
|
|
66
|
-
"types": "./dist/index.d.mts"
|
|
66
|
+
}
|
|
67
67
|
}
|