@authhero/drizzle 0.38.1 → 0.39.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/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "type": "git",
12
12
  "url": "https://github.com/markusahlstrand/authhero"
13
13
  },
14
- "version": "0.38.1",
14
+ "version": "0.39.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": "1.4.1"
37
+ "@authhero/adapter-interfaces": "1.5.0"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@hono/zod-openapi": "^0.19.2",
@@ -107,6 +107,11 @@ export const loginSessions = sqliteTable(
107
107
  failure_reason: text("failure_reason"),
108
108
  user_id: text("user_id", { length: 255 }),
109
109
  auth_connection: text("auth_connection", { length: 255 }),
110
+ auth_strategy_strategy: text("auth_strategy_strategy", { length: 64 }),
111
+ auth_strategy_strategy_type: text("auth_strategy_strategy_type", {
112
+ length: 64,
113
+ }),
114
+ authenticated_at: text("authenticated_at", { length: 35 }),
110
115
  },
111
116
  (table) => [
112
117
  primaryKey({