@theholocron/holocron-plugin-infisical 2.2.4 → 3.0.0

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.
Files changed (2) hide show
  1. package/dist/index.d.mts +3 -3
  2. package/package.json +12 -12
package/dist/index.d.mts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { AuthError, EnsureResult, ResolveTokenInput, Vault } from "@theholocron/cli";
2
- import { InfisicalClient, InfisicalClient as InfisicalClient$1, createInfisicalClient } from "@theholocron/infisical-client";
2
+ import { InfisicalClient, InfisicalClient as InfisicalClient$1, InfisicalClientOptions, createInfisicalClient } from "@theholocron/infisical-client";
3
3
  //#region src/auth.d.ts
4
- declare const resolveToken: (input?: import("@theholocron/http-client").ResolveTokenInput) => string;
4
+ declare const resolveToken: (input?: ResolveTokenInput) => string;
5
5
  //#endregion
6
6
  //#region src/capabilities/vault.d.ts
7
7
  interface InfisicalVaultOptions {
@@ -91,4 +91,4 @@ declare function createPlugin(options: InfisicalPluginOptions): {
91
91
  */
92
92
  declare const AUTH_HINT: string;
93
93
  //#endregion
94
- export { AUTH_HINT, AuthError, type InfisicalClient, InfisicalPluginOptions, InfisicalVault, PluginContext, type ResolveTokenInput, type VerifyTokenFailure, type VerifyTokenResult, type VerifyTokenSuccess, createContext, createInfisicalClient, createPlugin, resolveToken, vault, verifyToken };
94
+ export { AUTH_HINT, AuthError, type InfisicalClient, type InfisicalClientOptions, InfisicalPluginOptions, InfisicalVault, PluginContext, type ResolveTokenInput, type VerifyTokenFailure, type VerifyTokenResult, type VerifyTokenSuccess, createContext, createInfisicalClient, createPlugin, resolveToken, vault, verifyToken };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theholocron/holocron-plugin-infisical",
3
- "version": "2.2.4",
3
+ "version": "3.0.0",
4
4
  "description": "Holocron plugin for Infisical. Implements the vault capability against Infisical's REST API, plus exports verifyToken + AUTH_HINT for `holocron auth`.",
5
5
  "homepage": "https://github.com/theholocron/holocron/tree/main/packages/holocron-plugin-infisical#readme",
6
6
  "bugs": "https://github.com/theholocron/holocron/issues",
@@ -21,8 +21,8 @@
21
21
  }
22
22
  },
23
23
  "peerDependencies": {
24
- "@theholocron/infisical-client": "^1.3.0",
25
- "@theholocron/cli": "2.2.4"
24
+ "@theholocron/infisical-client": "^1.3.3",
25
+ "@theholocron/cli": "3.0.0"
26
26
  },
27
27
  "peerDependenciesMeta": {
28
28
  "@theholocron/infisical-client": {
@@ -30,11 +30,11 @@
30
30
  }
31
31
  },
32
32
  "devDependencies": {
33
- "@theholocron/eslint-config": "^7.4.1",
34
- "@theholocron/infisical-client": "^1.3.0",
35
- "@theholocron/tsconfig": "^7.4.1",
36
- "@theholocron/tsdown-config": "^7.4.1",
37
- "@theholocron/vitest-config": "^7.4.1",
33
+ "@theholocron/eslint-config": "^7.5.0",
34
+ "@theholocron/infisical-client": "^1.3.3",
35
+ "@theholocron/tsconfig": "^7.5.0",
36
+ "@theholocron/tsdown-config": "^7.5.0",
37
+ "@theholocron/vitest-config": "^7.5.0",
38
38
  "@types/node": "^26",
39
39
  "@vitest/coverage-v8": "^4.1.10",
40
40
  "@vitest/eslint-plugin": "^1.6.23",
@@ -42,10 +42,10 @@
42
42
  "eslint-plugin-n": "^18.2.2",
43
43
  "globals": "^17.7.0",
44
44
  "tsdown": "^0.22.13",
45
- "tsx": "4.22.4",
45
+ "tsx": "4.23.1",
46
46
  "typescript": "^5.9.3",
47
47
  "vitest": "^4.1.10",
48
- "@theholocron/cli": "2.2.4"
48
+ "@theholocron/cli": "3.0.0"
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
  }