@better-auth/passkey 1.4.6-beta.3 → 1.4.6
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/client.d.mts +2 -2
- package/package.json +9 -7
package/dist/client.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { i as WebAuthnChallengeValue, n as Passkey, r as PasskeyOptions, t as passkey } from "./index-HkgxjeuE.mjs";
|
|
2
|
-
import * as
|
|
2
|
+
import * as better_auth0 from "better-auth";
|
|
3
3
|
import * as nanostores0 from "nanostores";
|
|
4
4
|
import { atom } from "nanostores";
|
|
5
5
|
import * as _better_fetch_fetch0 from "@better-fetch/fetch";
|
|
@@ -185,7 +185,7 @@ declare const passkeyClient: () => {
|
|
|
185
185
|
isPending: boolean;
|
|
186
186
|
isRefetching: boolean;
|
|
187
187
|
refetch: (queryParams?: {
|
|
188
|
-
query?:
|
|
188
|
+
query?: better_auth0.SessionQueryParams;
|
|
189
189
|
} | undefined) => Promise<void>;
|
|
190
190
|
}> & object;
|
|
191
191
|
$listPasskeys: nanostores0.PreinitializedWritableAtom<any> & object;
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@better-auth/passkey",
|
|
3
|
-
"version": "1.4.6
|
|
3
|
+
"version": "1.4.6",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Passkey plugin for Better Auth",
|
|
6
6
|
"main": "dist/index.mjs",
|
|
7
7
|
"module": "dist/index.mjs",
|
|
8
|
+
"types": "dist/index.d.mts",
|
|
8
9
|
"publishConfig": {
|
|
9
10
|
"access": "public"
|
|
10
11
|
},
|
|
@@ -32,8 +33,8 @@
|
|
|
32
33
|
},
|
|
33
34
|
"devDependencies": {
|
|
34
35
|
"tsdown": "^0.17.0",
|
|
35
|
-
"
|
|
36
|
-
"better-auth": "1.4.6
|
|
36
|
+
"better-auth": "1.4.6",
|
|
37
|
+
"@better-auth/core": "1.4.6"
|
|
37
38
|
},
|
|
38
39
|
"dependencies": {
|
|
39
40
|
"@simplewebauthn/browser": "^13.1.2",
|
|
@@ -43,17 +44,17 @@
|
|
|
43
44
|
"peerDependencies": {
|
|
44
45
|
"@better-auth/utils": "0.3.0",
|
|
45
46
|
"@better-fetch/fetch": "1.1.18",
|
|
46
|
-
"better-call": "1.1.
|
|
47
|
+
"better-call": "1.1.5",
|
|
47
48
|
"nanostores": "^1.0.1",
|
|
48
|
-
"@better-auth/core": "1.4.6
|
|
49
|
-
"better-auth": "1.4.6
|
|
49
|
+
"@better-auth/core": "1.4.6",
|
|
50
|
+
"better-auth": "1.4.6"
|
|
50
51
|
},
|
|
51
52
|
"files": [
|
|
52
53
|
"dist"
|
|
53
54
|
],
|
|
54
55
|
"repository": {
|
|
55
56
|
"type": "git",
|
|
56
|
-
"url": "https://github.com/better-auth/better-auth",
|
|
57
|
+
"url": "git+https://github.com/better-auth/better-auth.git",
|
|
57
58
|
"directory": "packages/passkey"
|
|
58
59
|
},
|
|
59
60
|
"homepage": "https://www.better-auth.com/docs/plugins/passkey",
|
|
@@ -66,6 +67,7 @@
|
|
|
66
67
|
"license": "MIT",
|
|
67
68
|
"scripts": {
|
|
68
69
|
"test": "vitest",
|
|
70
|
+
"coverage": "vitest run --coverage",
|
|
69
71
|
"lint:package": "publint run --strict",
|
|
70
72
|
"build": "tsdown",
|
|
71
73
|
"dev": "tsdown --watch",
|