@theholocron/neon-client 1.6.2 → 1.6.3

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/README.md +6 -6
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -23,16 +23,16 @@ const { branches } = await neon.branches.list("my-project-id");
23
23
 
24
24
  // Create a branch with a read/write endpoint
25
25
  const { branch } = await neon.branches.create("my-project-id", {
26
- name: "feat/my-feature",
27
- parent_id: "br_main",
28
- endpoints: [{ type: "read_write" }],
26
+ name: "feat/my-feature",
27
+ parent_id: "br_main",
28
+ endpoints: [{ type: "read_write" }],
29
29
  });
30
30
 
31
31
  // Get a connection URI
32
32
  const { uri } = await neon.connection.uri("my-project-id", {
33
- branch_id: branch.id,
34
- database_name: "neondb",
35
- role_name: "neondb_owner",
33
+ branch_id: branch.id,
34
+ database_name: "neondb",
35
+ role_name: "neondb_owner",
36
36
  });
37
37
 
38
38
  // List databases on a branch
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theholocron/neon-client",
3
- "version": "1.6.2",
3
+ "version": "1.6.3",
4
4
  "description": "A TypeScript client for the Neon API",
5
5
  "homepage": "https://github.com/theholocron/clients/tree/main/packages/neon-client#readme",
6
6
  "bugs": "https://github.com/theholocron/clients/issues",
@@ -30,18 +30,18 @@
30
30
  }
31
31
  },
32
32
  "dependencies": {
33
- "@theholocron/http-client": "^1.6.2"
33
+ "@theholocron/http-client": "^1.6.3"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/node": "^26.1.2",
37
- "@theholocron/eslint-config": "^7.8.1",
38
- "@theholocron/tsconfig": "^7.8.1",
39
- "@theholocron/tsdown-config": "^7.7.0",
40
- "@theholocron/vitest-config": "^7.7.0",
37
+ "@theholocron/eslint-config": "^7.15.0",
38
+ "@theholocron/tsconfig": "^7.15.0",
39
+ "@theholocron/tsdown-config": "^7.15.0",
40
+ "@theholocron/vitest-config": "^7.15.0",
41
41
  "@vitest/coverage-v8": "^4.1.10",
42
42
  "@vitest/eslint-plugin": "^1.6.25",
43
- "eslint": "^10.8.0",
44
- "eslint-plugin-n": "^18.2.2",
43
+ "eslint": "^10.8.1",
44
+ "eslint-plugin-n": "^18.3.0",
45
45
  "eslint-plugin-simple-import-sort": "^14.0.0",
46
46
  "globals": "^17.8.0",
47
47
  "tsdown": "^0.22.14",