@authhero/drizzle 0.54.2 → 0.55.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.
@@ -1067,6 +1067,7 @@ var b = y("tenants", {
1067
1067
  provisioning_state_changed_at: _("provisioning_state_changed_at", { length: 35 }),
1068
1068
  bundle_configuration: _("bundle_configuration", { length: 64 }),
1069
1069
  worker_version: _("worker_version", { length: 64 }),
1070
+ database_version: _("database_version", { length: 64 }),
1070
1071
  worker_script_name: _("worker_script_name", { length: 255 }),
1071
1072
  storage_kind: _("storage_kind", { length: 32 }),
1072
1073
  d1_database_id: _("d1_database_id", { length: 64 })
@@ -15774,6 +15775,7 @@ var Ly = q({
15774
15775
  provisioning_state_changed_at: V().optional(),
15775
15776
  bundle_configuration: V().max(64).optional(),
15776
15777
  worker_version: V().max(64).optional(),
15778
+ database_version: V().max(64).optional(),
15777
15779
  worker_script_name: V().max(255).optional(),
15778
15780
  storage_kind: Y([
15779
15781
  "own_d1",
@@ -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.55.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.3.0",
38
+ "@authhero/proxy": "0.7.3"
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 }),