@authhero/drizzle 0.47.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.
@@ -22,6 +22,13 @@
22
22
  "when": 1778800000000,
23
23
  "tag": "0002_client_disable_sign_ups",
24
24
  "breakpoints": true
25
+ },
26
+ {
27
+ "idx": 3,
28
+ "version": "6",
29
+ "when": 1778890000000,
30
+ "tag": "0003_move_disable_signup_to_connection",
31
+ "breakpoints": true
25
32
  }
26
33
  ]
27
- }
34
+ }
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.47.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": "1.19.0"
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(
@@ -73,7 +73,6 @@ export const clients = sqliteTable(
73
73
  require_proof_of_possession: integer("require_proof_of_possession")
74
74
  .notNull()
75
75
  .default(0),
76
- disable_sign_ups: integer("disable_sign_ups").notNull().default(0),
77
76
  hide_sign_up_disabled_error: integer("hide_sign_up_disabled_error")
78
77
  .notNull()
79
78
  .default(0),