@lobomfz/db 0.3.4 → 0.3.5

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/package.json +1 -1
  2. package/src/index.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobomfz/db",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "Bun SQLite database with Arktype schemas and typed Kysely client",
5
5
  "keywords": [
6
6
  "arktype",
package/src/index.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  export { Database } from "./database";
2
2
  export { generated, type GeneratedPreset } from "./generated";
3
3
  export { JsonParseError } from "./errors";
4
- export { sql, type Selectable, type Insertable, type Updateable } from "kysely";
4
+ export { sql, type Selectable, type Insertable, type Updateable, type Kysely } from "kysely";
5
5
  export { type } from "arktype";
6
6
  export { JsonValidationError } from "./validation-error";
7
7
  export type { DbFieldMeta } from "./env";