@cedarjs/auth-dbauth-api 1.0.0-canary.12978 → 1.0.0-canary.12986

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 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://redwoodjs.com/docs/authentication).
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://redwoodjs.com/docs/auth/dbAuth#webauthn"
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://redwoodjs.com/docs/auth/dbAuth#webauthn"
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.12978+85049b44d",
3
+ "version": "1.0.0-canary.12986+275f121cf",
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.12978",
60
+ "@cedarjs/project-config": "1.0.0-canary.12986",
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.12978",
68
- "@cedarjs/framework-tools": "1.0.0-canary.12978",
67
+ "@cedarjs/api": "1.0.0-canary.12986",
68
+ "@cedarjs/framework-tools": "1.0.0-canary.12986",
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": "85049b44d493c2ea57d3059a0f67bc7d7af8e4f7"
81
+ "gitHead": "275f121cfd767cf5b457325de829a281c93440c7"
82
82
  }