@better-auth/kysely-adapter 1.7.0-rc.5 → 1.7.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.
- package/dist/{bun-sqlite-dialect-ChDhLV_M.mjs → bun-sqlite-dialect-C7ftEUSI.mjs} +1 -1
- package/dist/{d1-sqlite-dialect-zindL8uv.mjs → d1-sqlite-dialect-BZmaVTp8.mjs} +1 -1
- package/dist/index.d.mts +1 -0
- package/dist/index.mjs +3 -4
- package/dist/node-sqlite-dialect.d.mts +1 -0
- package/dist/node-sqlite-dialect.mjs +1 -1
- package/package.json +4 -4
- /package/dist/{kysely-migration-tables-BeiUPJ_e.mjs → kysely-migration-tables-DFfmKhq-.mjs} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { n as DEFAULT_MIGRATION_TABLE, t as DEFAULT_MIGRATION_LOCK_TABLE } from "./kysely-migration-tables-
|
|
1
|
+
import { n as DEFAULT_MIGRATION_TABLE, t as DEFAULT_MIGRATION_LOCK_TABLE } from "./kysely-migration-tables-DFfmKhq-.mjs";
|
|
2
2
|
import { CompiledQuery, DefaultQueryCompiler, sql } from "kysely";
|
|
3
3
|
//#region src/bun-sqlite-dialect.ts
|
|
4
4
|
var BunSqliteAdapter = class {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { n as DEFAULT_MIGRATION_TABLE, t as DEFAULT_MIGRATION_LOCK_TABLE } from "./kysely-migration-tables-
|
|
1
|
+
import { n as DEFAULT_MIGRATION_TABLE, t as DEFAULT_MIGRATION_LOCK_TABLE } from "./kysely-migration-tables-DFfmKhq-.mjs";
|
|
2
2
|
import { SqliteAdapter, SqliteQueryCompiler } from "kysely";
|
|
3
3
|
//#region src/d1-sqlite-dialect.ts
|
|
4
4
|
var D1SqliteAdapter = class extends SqliteAdapter {};
|
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Kysely } from "kysely";
|
|
2
2
|
import { DBAdapter, DBAdapterDebugLogOption } from "@better-auth/core/db/adapter";
|
|
3
3
|
import { BetterAuthOptions } from "@better-auth/core";
|
|
4
|
+
|
|
4
5
|
//#region src/types.d.ts
|
|
5
6
|
type KyselyDatabaseType = "postgres" | "mysql" | "sqlite" | "mssql";
|
|
6
7
|
//#endregion
|
package/dist/index.mjs
CHANGED
|
@@ -54,7 +54,7 @@ const createKyselyAdapter = async (config) => {
|
|
|
54
54
|
transaction = true;
|
|
55
55
|
}
|
|
56
56
|
if ("fileControl" in db) {
|
|
57
|
-
const { BunSqliteDialect } = await import("./bun-sqlite-dialect-
|
|
57
|
+
const { BunSqliteDialect } = await import("./bun-sqlite-dialect-C7ftEUSI.mjs");
|
|
58
58
|
dialect = new BunSqliteDialect({ database: db });
|
|
59
59
|
transaction = true;
|
|
60
60
|
}
|
|
@@ -77,7 +77,7 @@ const createKyselyAdapter = async (config) => {
|
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
79
|
if ("batch" in db && "exec" in db && "prepare" in db) {
|
|
80
|
-
const { D1SqliteDialect } = await import("./d1-sqlite-dialect-
|
|
80
|
+
const { D1SqliteDialect } = await import("./d1-sqlite-dialect-BZmaVTp8.mjs");
|
|
81
81
|
dialect = new D1SqliteDialect({ database: db });
|
|
82
82
|
transaction = false;
|
|
83
83
|
}
|
|
@@ -371,8 +371,7 @@ const kyselyAdapter = (db, config) => {
|
|
|
371
371
|
}
|
|
372
372
|
return {
|
|
373
373
|
async create({ data, model }) {
|
|
374
|
-
|
|
375
|
-
return await withReturning(data, builder, model, []);
|
|
374
|
+
return await withReturning(data, db.insertInto(model).values(data), model, []);
|
|
376
375
|
},
|
|
377
376
|
async findOne({ model, where, select, join }) {
|
|
378
377
|
const { and, or } = convertWhereClause(model, where);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { n as DEFAULT_MIGRATION_TABLE, t as DEFAULT_MIGRATION_LOCK_TABLE } from "./kysely-migration-tables-
|
|
1
|
+
import { n as DEFAULT_MIGRATION_TABLE, t as DEFAULT_MIGRATION_LOCK_TABLE } from "./kysely-migration-tables-DFfmKhq-.mjs";
|
|
2
2
|
import { CompiledQuery, DefaultQueryCompiler, sql } from "kysely";
|
|
3
3
|
//#region src/node-sqlite-dialect.ts
|
|
4
4
|
var NodeSqliteAdapter = class {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@better-auth/kysely-adapter",
|
|
3
|
-
"version": "1.7.0
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "Kysely adapter for Better Auth",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"peerDependencies": {
|
|
43
43
|
"@better-auth/utils": "0.4.2",
|
|
44
44
|
"kysely": "^0.28.17 || ^0.29.0",
|
|
45
|
-
"@better-auth/core": "^1.7.0
|
|
45
|
+
"@better-auth/core": "^1.7.0"
|
|
46
46
|
},
|
|
47
47
|
"peerDependenciesMeta": {
|
|
48
48
|
"kysely": {
|
|
@@ -53,9 +53,9 @@
|
|
|
53
53
|
"@better-auth/utils": "0.4.2",
|
|
54
54
|
"@cloudflare/workers-types": "^4.20250121.0",
|
|
55
55
|
"kysely": "^0.28.17 || ^0.29.0",
|
|
56
|
-
"tsdown": "0.
|
|
56
|
+
"tsdown": "0.21.10",
|
|
57
57
|
"typescript": "^6.0.3",
|
|
58
|
-
"@better-auth/core": "1.7.0
|
|
58
|
+
"@better-auth/core": "1.7.0"
|
|
59
59
|
},
|
|
60
60
|
"scripts": {
|
|
61
61
|
"build": "tsdown",
|
|
File without changes
|