@authhero/drizzle 0.48.0 → 0.49.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/drizzle-adapter.cjs +3 -3
- package/dist/drizzle-adapter.mjs +3492 -3324
- package/drizzle/meta/0000_snapshot.json +131 -437
- package/drizzle/meta/0001_snapshot.json +131 -437
- package/drizzle/meta/_journal.json +1 -1
- package/package.json +2 -2
- package/src/schema/sqlite/branding.ts +1 -3
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"type": "git",
|
|
12
12
|
"url": "https://github.com/markusahlstrand/authhero"
|
|
13
13
|
},
|
|
14
|
-
"version": "0.
|
|
14
|
+
"version": "0.49.0",
|
|
15
15
|
"files": [
|
|
16
16
|
"dist",
|
|
17
17
|
"src/schema",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"drizzle-orm": "^0.44.2",
|
|
36
36
|
"nanoid": "^5.0.8",
|
|
37
|
-
"@authhero/adapter-interfaces": "2.
|
|
37
|
+
"@authhero/adapter-interfaces": "2.1.0"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@hono/zod-openapi": "^0.19.2",
|
|
@@ -260,9 +260,7 @@ export const emailTemplates = sqliteTable(
|
|
|
260
260
|
created_at: text("created_at", { length: 35 }).notNull(),
|
|
261
261
|
updated_at: text("updated_at", { length: 35 }).notNull(),
|
|
262
262
|
},
|
|
263
|
-
(table) => [
|
|
264
|
-
primaryKey({ columns: [table.tenant_id, table.template] }),
|
|
265
|
-
],
|
|
263
|
+
(table) => [primaryKey({ columns: [table.tenant_id, table.template] })],
|
|
266
264
|
);
|
|
267
265
|
|
|
268
266
|
export const hooks = sqliteTable(
|