postgresdk 0.15.1 → 0.15.2

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/cli.js CHANGED
@@ -3220,7 +3220,7 @@ function emitClientIndex(tables, useJsExtensions) {
3220
3220
  * To make changes, modify your schema or configuration and regenerate.
3221
3221
  */
3222
3222
  `;
3223
- out += `import { BaseClient, type AuthConfig } from "./base-client${ext}";
3223
+ out += `import type { AuthConfig } from "./base-client${ext}";
3224
3224
  `;
3225
3225
  for (const t of tables) {
3226
3226
  out += `import { ${pascal(t.name)}Client } from "./${t.name}${ext}";
package/dist/index.js CHANGED
@@ -2394,7 +2394,7 @@ function emitClientIndex(tables, useJsExtensions) {
2394
2394
  * To make changes, modify your schema or configuration and regenerate.
2395
2395
  */
2396
2396
  `;
2397
- out += `import { BaseClient, type AuthConfig } from "./base-client${ext}";
2397
+ out += `import type { AuthConfig } from "./base-client${ext}";
2398
2398
  `;
2399
2399
  for (const t of tables) {
2400
2400
  out += `import { ${pascal(t.name)}Client } from "./${t.name}${ext}";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "postgresdk",
3
- "version": "0.15.1",
3
+ "version": "0.15.2",
4
4
  "description": "Generate a typed server/client SDK from a Postgres schema (includes, Zod, Hono).",
5
5
  "type": "module",
6
6
  "bin": {