@theholocron/holocron-plugin-doppler 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, EnsureResult, ResolveTokenInput, Vault } from "@theholocron/cli";
|
|
2
|
-
import { DopplerClient, createDopplerClient } from "@theholocron/doppler-client";
|
|
2
|
+
import { DopplerClient, DopplerClientOptions, createDopplerClient } from "@theholocron/doppler-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/vault.d.ts
|
|
7
7
|
interface DopplerVaultOptions {
|
|
@@ -77,4 +77,4 @@ declare function createPlugin(options: DopplerPluginOptions): {
|
|
|
77
77
|
*/
|
|
78
78
|
declare const AUTH_HINT: string;
|
|
79
79
|
//#endregion
|
|
80
|
-
export { AUTH_HINT, AuthError, DopplerPluginOptions, DopplerVault, PluginContext, type ResolveTokenInput, type VerifyTokenFailure, type VerifyTokenResult, type VerifyTokenSuccess, createContext, createDopplerClient, createPlugin, resolveToken, vault, verifyToken };
|
|
80
|
+
export { AUTH_HINT, AuthError, type DopplerClientOptions, DopplerPluginOptions, DopplerVault, PluginContext, type ResolveTokenInput, type VerifyTokenFailure, type VerifyTokenResult, type VerifyTokenSuccess, createContext, createDopplerClient, createPlugin, resolveToken, vault, verifyToken };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theholocron/holocron-plugin-doppler",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "Holocron plugin for Doppler. Implements the vault capability against Doppler's REST API — projects, configs, secrets, plus verifyToken + AUTH_HINT for `holocron auth`.",
|
|
5
5
|
"homepage": "https://github.com/theholocron/holocron/tree/main/packages/holocron-plugin-doppler#readme",
|
|
6
6
|
"bugs": "https://github.com/theholocron/holocron/issues",
|
|
@@ -21,26 +21,26 @@
|
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@theholocron/doppler-client": "^1.3.
|
|
25
|
-
"@theholocron/cli": "
|
|
24
|
+
"@theholocron/doppler-client": "^1.3.3",
|
|
25
|
+
"@theholocron/cli": "3.0.1"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@theholocron/doppler-client": "^1.3.
|
|
29
|
-
"@theholocron/eslint-config": "^7.
|
|
30
|
-
"@theholocron/tsconfig": "^7.
|
|
31
|
-
"@theholocron/tsdown-config": "^7.
|
|
32
|
-
"@theholocron/vitest-config": "^7.
|
|
28
|
+
"@theholocron/doppler-client": "^1.3.3",
|
|
29
|
+
"@theholocron/eslint-config": "^7.5.0",
|
|
30
|
+
"@theholocron/tsconfig": "^7.5.0",
|
|
31
|
+
"@theholocron/tsdown-config": "^7.5.0",
|
|
32
|
+
"@theholocron/vitest-config": "^7.5.0",
|
|
33
33
|
"@types/node": "^26",
|
|
34
34
|
"@vitest/coverage-v8": "^4.1.10",
|
|
35
|
-
"@vitest/eslint-plugin": "^1.6.
|
|
36
|
-
"eslint": "^10.
|
|
35
|
+
"@vitest/eslint-plugin": "^1.6.24",
|
|
36
|
+
"eslint": "^10.8.0",
|
|
37
37
|
"eslint-plugin-n": "^18.2.2",
|
|
38
38
|
"globals": "^17.7.0",
|
|
39
|
-
"tsdown": "^0.22.
|
|
40
|
-
"tsx": "4.
|
|
39
|
+
"tsdown": "^0.22.14",
|
|
40
|
+
"tsx": "4.23.1",
|
|
41
41
|
"typescript": "^5.9.3",
|
|
42
42
|
"vitest": "^4.1.10",
|
|
43
|
-
"@theholocron/cli": "
|
|
43
|
+
"@theholocron/cli": "3.0.1"
|
|
44
44
|
},
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
"dist",
|
|
50
50
|
"README.md"
|
|
51
51
|
],
|
|
52
|
+
"types": "./dist/index.d.mts",
|
|
52
53
|
"scripts": {
|
|
53
54
|
"build": "tsdown",
|
|
54
55
|
"lint": "eslint .",
|
|
@@ -57,6 +58,5 @@
|
|
|
57
58
|
"test:watch": "vitest",
|
|
58
59
|
"test:coverage": "vitest run --coverage",
|
|
59
60
|
"validate": "tsx scripts/validate.mjs"
|
|
60
|
-
}
|
|
61
|
-
"types": "./dist/index.d.mts"
|
|
61
|
+
}
|
|
62
62
|
}
|