@stacksjs/query-builder 0.62.0 → 0.63.1

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/query-builder",
3
3
  "type": "module",
4
- "version": "0.62.0",
4
+ "version": "0.63.1",
5
5
  "description": "The Stacks Query Builder integration",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
@@ -44,17 +44,12 @@
44
44
  "typecheck": "bun --bun tsc --noEmit",
45
45
  "prepublishOnly": "bun run build"
46
46
  },
47
- "peerDependencies": {
48
- "@stacksjs/database": "latest",
49
- "@stacksjs/types": "latest",
50
- "kysely": "^0.27.4"
51
- },
52
47
  "dependencies": {
53
48
  "@stacksjs/database": "latest",
54
49
  "@stacksjs/types": "latest",
55
50
  "kysely": "^0.27.4",
56
- "kysely-bun-worker": "^0.6.2",
57
- "mysql2": "^3.10.2",
51
+ "kysely-bun-worker": "^0.6.3",
52
+ "mysql2": "^3.11.0",
58
53
  "pg": "^8.12.0"
59
54
  },
60
55
  "devDependencies": {
package/src/kysely.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { Kysely, MysqlDialect as qbMysqlDialect, PostgresDialect as qbPostgresql, sql as qbSql } from 'kysely'
1
+ import { Kysely, MysqlDialect as qbMysqlDialect, PostgresDialect as qbPostgresql } from 'kysely'
2
2
  import type { Pool } from 'mysql2'
3
3
  import { createPool } from 'mysql2'
4
4
 
@@ -21,7 +21,6 @@ interface MysqlConfig {
21
21
  // }
22
22
  // export const Cursor = qbCursor
23
23
 
24
- export const sql = qbSql
25
24
  export const QueryBuilder = Kysely
26
25
  export const MysqlDialect = qbMysqlDialect
27
26
  export const PostgresDialect = qbPostgresql