@authhero/drizzle 0.56.2 → 0.56.3
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.mjs
CHANGED
|
@@ -16048,6 +16048,13 @@ q({
|
|
|
16048
16048
|
audience: V().optional().openapi({ description: "The audience the grant applies to" }),
|
|
16049
16049
|
scope: K(V()).default([]).openapi({ description: "The list of OAuth scopes the user has consented to" })
|
|
16050
16050
|
}).extend({ id: V() }), q({
|
|
16051
|
+
user_id: V(),
|
|
16052
|
+
last_login: V().optional(),
|
|
16053
|
+
last_ip: V().optional(),
|
|
16054
|
+
login_count: U().default(0),
|
|
16055
|
+
failed_logins: K(V()).optional(),
|
|
16056
|
+
last_password_reset: V().optional()
|
|
16057
|
+
}), q({
|
|
16051
16058
|
user_id: V(),
|
|
16052
16059
|
resource_server_identifier: V(),
|
|
16053
16060
|
permission_name: V(),
|
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.56.
|
|
14
|
+
"version": "0.56.3",
|
|
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.
|
|
38
|
-
"@authhero/proxy": "0.8.
|
|
37
|
+
"@authhero/adapter-interfaces": "3.5.0",
|
|
38
|
+
"@authhero/proxy": "0.8.1"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@hono/zod-openapi": "^1.4.0",
|