@authhero/drizzle 0.56.0 → 0.56.1
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.cjs +1 -1
- package/dist/drizzle-adapter.mjs +51 -2
- package/package.json +3 -3
package/dist/drizzle-adapter.mjs
CHANGED
|
@@ -16235,7 +16235,12 @@ q({
|
|
|
16235
16235
|
"logins",
|
|
16236
16236
|
"signups",
|
|
16237
16237
|
"refresh-tokens",
|
|
16238
|
-
"sessions"
|
|
16238
|
+
"sessions",
|
|
16239
|
+
"logouts",
|
|
16240
|
+
"password-changes",
|
|
16241
|
+
"mfa",
|
|
16242
|
+
"email-verifications",
|
|
16243
|
+
"codes-sent"
|
|
16239
16244
|
]), Y([
|
|
16240
16245
|
"hour",
|
|
16241
16246
|
"day",
|
|
@@ -18620,7 +18625,26 @@ var eS = {
|
|
|
18620
18625
|
],
|
|
18621
18626
|
signups: ["ss", "fs"],
|
|
18622
18627
|
"refresh-tokens": ["seacft", "fertft"],
|
|
18623
|
-
sessions: ["slo"]
|
|
18628
|
+
sessions: ["slo"],
|
|
18629
|
+
logouts: ["slo", "flo"],
|
|
18630
|
+
"password-changes": [
|
|
18631
|
+
"scp",
|
|
18632
|
+
"fcp",
|
|
18633
|
+
"scpr",
|
|
18634
|
+
"fcpr"
|
|
18635
|
+
],
|
|
18636
|
+
mfa: [
|
|
18637
|
+
"gd_auth_succeed",
|
|
18638
|
+
"gd_auth_failed",
|
|
18639
|
+
"gd_auth_rejected"
|
|
18640
|
+
],
|
|
18641
|
+
"email-verifications": [
|
|
18642
|
+
"sv",
|
|
18643
|
+
"fv",
|
|
18644
|
+
"svr",
|
|
18645
|
+
"fvr"
|
|
18646
|
+
],
|
|
18647
|
+
"codes-sent": ["cls", "cs"]
|
|
18624
18648
|
}, tS = {
|
|
18625
18649
|
"active-users": {
|
|
18626
18650
|
alias: "active_users",
|
|
@@ -18646,6 +18670,31 @@ var eS = {
|
|
|
18646
18670
|
alias: "sessions",
|
|
18647
18671
|
type: "UInt64",
|
|
18648
18672
|
agg: "count"
|
|
18673
|
+
},
|
|
18674
|
+
logouts: {
|
|
18675
|
+
alias: "logouts",
|
|
18676
|
+
type: "UInt64",
|
|
18677
|
+
agg: "count"
|
|
18678
|
+
},
|
|
18679
|
+
"password-changes": {
|
|
18680
|
+
alias: "password_changes",
|
|
18681
|
+
type: "UInt64",
|
|
18682
|
+
agg: "count"
|
|
18683
|
+
},
|
|
18684
|
+
mfa: {
|
|
18685
|
+
alias: "mfa",
|
|
18686
|
+
type: "UInt64",
|
|
18687
|
+
agg: "count"
|
|
18688
|
+
},
|
|
18689
|
+
"email-verifications": {
|
|
18690
|
+
alias: "email_verifications",
|
|
18691
|
+
type: "UInt64",
|
|
18692
|
+
agg: "count"
|
|
18693
|
+
},
|
|
18694
|
+
"codes-sent": {
|
|
18695
|
+
alias: "codes_sent",
|
|
18696
|
+
type: "UInt64",
|
|
18697
|
+
agg: "count"
|
|
18649
18698
|
}
|
|
18650
18699
|
};
|
|
18651
18700
|
function nS(e) {
|
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.1",
|
|
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.4.
|
|
38
|
-
"@authhero/proxy": "0.7.
|
|
37
|
+
"@authhero/adapter-interfaces": "3.4.1",
|
|
38
|
+
"@authhero/proxy": "0.7.5"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@hono/zod-openapi": "^1.4.0",
|