@cedarjs/auth-dbauth-api 1.0.0-canary.12981 → 1.0.0-canary.12988
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/README.md +1 -1
- package/dist/errors.js +2 -2
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ look at one of the existing auth providers in
|
|
|
12
12
|
templates in `../templates`.
|
|
13
13
|
|
|
14
14
|
If you need help setting up a custom auth provider there's more info in the
|
|
15
|
-
[auth docs](https://
|
|
15
|
+
[auth docs](https://cedarjs.com/docs/authentication).
|
|
16
16
|
|
|
17
17
|
### Contributing to the base auth implementation
|
|
18
18
|
|
package/dist/errors.js
CHANGED
|
@@ -92,7 +92,7 @@ class NoResetPasswordHandlerError extends Error {
|
|
|
92
92
|
class NoWebAuthnConfigError extends Error {
|
|
93
93
|
constructor() {
|
|
94
94
|
super(
|
|
95
|
-
"To use Webauthn you need both `webauthn` and `credentialModelAccessor` config options, see https://
|
|
95
|
+
"To use Webauthn you need both `webauthn` and `credentialModelAccessor` config options, see https://cedarjs.com/docs/auth/dbAuth#webauthn"
|
|
96
96
|
);
|
|
97
97
|
this.name = "NoWebAuthnConfigError";
|
|
98
98
|
}
|
|
@@ -100,7 +100,7 @@ class NoWebAuthnConfigError extends Error {
|
|
|
100
100
|
class MissingWebAuthnConfigError extends Error {
|
|
101
101
|
constructor() {
|
|
102
102
|
super(
|
|
103
|
-
"You are missing one or more WebAuthn config options, see https://
|
|
103
|
+
"You are missing one or more WebAuthn config options, see https://cedarjs.com/docs/auth/dbAuth#webauthn"
|
|
104
104
|
);
|
|
105
105
|
this.name = "MissingWebAuthnConfigError";
|
|
106
106
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/auth-dbauth-api",
|
|
3
|
-
"version": "1.0.0-canary.
|
|
3
|
+
"version": "1.0.0-canary.12988+f527e703d",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/cedarjs/cedar.git",
|
|
@@ -57,15 +57,15 @@
|
|
|
57
57
|
"test:watch": "vitest watch"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@cedarjs/project-config": "1.0.0-canary.
|
|
60
|
+
"@cedarjs/project-config": "1.0.0-canary.12988",
|
|
61
61
|
"base64url": "3.0.1",
|
|
62
62
|
"md5": "2.3.0",
|
|
63
63
|
"uuid": "10.0.0"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
66
|
"@arethetypeswrong/cli": "0.18.2",
|
|
67
|
-
"@cedarjs/api": "1.0.0-canary.
|
|
68
|
-
"@cedarjs/framework-tools": "1.0.0-canary.
|
|
67
|
+
"@cedarjs/api": "1.0.0-canary.12988",
|
|
68
|
+
"@cedarjs/framework-tools": "1.0.0-canary.12988",
|
|
69
69
|
"@simplewebauthn/server": "9.0.3",
|
|
70
70
|
"@types/md5": "2.3.6",
|
|
71
71
|
"@types/uuid": "10.0.0",
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
"publishConfig": {
|
|
79
79
|
"access": "public"
|
|
80
80
|
},
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "f527e703d59ba1fb0cfa27e98ee16eb18df7f20d"
|
|
82
82
|
}
|