@theholocron/holocron-plugin-neon 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, ConnectionStringOptions, ResolveTokenInput, Storage, StorageBranch } from "@theholocron/cli";
2
- import { NeonClient, NeonClient as NeonClient$1, createNeonClient } from "@theholocron/neon-client";
2
+ import { NeonClient, NeonClient as NeonClient$1, NeonClientOptions, createNeonClient } from "@theholocron/neon-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/storage.d.ts
7
7
  interface StorageOptions {
@@ -87,4 +87,4 @@ declare function createPlugin(options: NeonPluginOptions): {
87
87
  */
88
88
  declare const AUTH_HINT: string;
89
89
  //#endregion
90
- export { AUTH_HINT, AuthError, type NeonClient, NeonPluginOptions, NeonStorage, PluginContext, type ResolveTokenInput, type VerifyTokenFailure, type VerifyTokenResult, type VerifyTokenSuccess, createContext, createNeonClient, createPlugin, resolveToken, storage, verifyToken };
90
+ export { AUTH_HINT, AuthError, type NeonClient, type NeonClientOptions, NeonPluginOptions, NeonStorage, PluginContext, type ResolveTokenInput, type VerifyTokenFailure, type VerifyTokenResult, type VerifyTokenSuccess, createContext, createNeonClient, createPlugin, resolveToken, storage, verifyToken };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theholocron/holocron-plugin-neon",
3
- "version": "2.2.4",
3
+ "version": "3.0.0",
4
4
  "description": "Holocron plugin for Neon. Implements the storage capability against Neon's REST API — branch ops, connection strings, extensions.",
5
5
  "homepage": "https://github.com/theholocron/holocron/tree/main/packages/holocron-plugin-neon#readme",
6
6
  "bugs": "https://github.com/theholocron/holocron/issues",
@@ -21,8 +21,8 @@
21
21
  }
22
22
  },
23
23
  "peerDependencies": {
24
- "@theholocron/neon-client": "^1.3.0",
25
- "@theholocron/cli": "2.2.4"
24
+ "@theholocron/neon-client": "^1.3.3",
25
+ "@theholocron/cli": "3.0.0"
26
26
  },
27
27
  "peerDependenciesMeta": {
28
28
  "@theholocron/neon-client": {
@@ -30,11 +30,11 @@
30
30
  }
31
31
  },
32
32
  "devDependencies": {
33
- "@theholocron/eslint-config": "^7.4.1",
34
- "@theholocron/neon-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/neon-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
  }