@authhero/drizzle 0.54.2 → 0.56.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.
@@ -49,6 +49,7 @@ CREATE TABLE `tenants` (
49
49
  `provisioning_state_changed_at` text(35),
50
50
  `bundle_configuration` text(64),
51
51
  `worker_version` text(64),
52
+ `database_version` text(64),
52
53
  `worker_script_name` text(255),
53
54
  `storage_kind` text(32),
54
55
  `d1_database_id` text(64)
@@ -359,6 +359,13 @@
359
359
  "notNull": false,
360
360
  "autoincrement": false
361
361
  },
362
+ "database_version": {
363
+ "name": "database_version",
364
+ "type": "text(64)",
365
+ "primaryKey": false,
366
+ "notNull": false,
367
+ "autoincrement": false
368
+ },
362
369
  "worker_script_name": {
363
370
  "name": "worker_script_name",
364
371
  "type": "text(255)",
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.54.2",
14
+ "version": "0.56.0",
15
15
  "files": [
16
16
  "dist",
17
17
  "src/schema",
@@ -34,8 +34,8 @@
34
34
  "dependencies": {
35
35
  "drizzle-orm": "^0.44.2",
36
36
  "nanoid": "^5.1.11",
37
- "@authhero/adapter-interfaces": "3.2.0",
38
- "@authhero/proxy": "0.7.2"
37
+ "@authhero/adapter-interfaces": "3.4.0",
38
+ "@authhero/proxy": "0.7.4"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@hono/zod-openapi": "^1.4.0",
@@ -65,6 +65,7 @@ export const tenants = sqliteTable("tenants", {
65
65
  }),
66
66
  bundle_configuration: text("bundle_configuration", { length: 64 }),
67
67
  worker_version: text("worker_version", { length: 64 }),
68
+ database_version: text("database_version", { length: 64 }),
68
69
  worker_script_name: text("worker_script_name", { length: 255 }),
69
70
  storage_kind: text("storage_kind", { length: 32 }),
70
71
  d1_database_id: text("d1_database_id", { length: 64 }),