@cedarjs/auth-dbauth-api 2.0.1-next.0 → 2.0.1-next.26
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/errors.js +1 -1
- package/package.json +7 -7
package/dist/errors.js
CHANGED
|
@@ -54,7 +54,7 @@ module.exports = __toCommonJS(errors_exports);
|
|
|
54
54
|
class NoSessionSecretError extends Error {
|
|
55
55
|
constructor() {
|
|
56
56
|
super(
|
|
57
|
-
"dbAuth requires a SESSION_SECRET environment variable that is used to encrypt session cookies. Use `yarn
|
|
57
|
+
"dbAuth requires a SESSION_SECRET environment variable that is used to encrypt session cookies. Use `yarn cedar g secret` to create one, then add to your `.env` file. DO NOT check this variable in your version control system!!"
|
|
58
58
|
);
|
|
59
59
|
this.name = "NoSessionSecretError";
|
|
60
60
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/auth-dbauth-api",
|
|
3
|
-
"version": "2.0.1-next.
|
|
3
|
+
"version": "2.0.1-next.26+8b9090065",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/cedarjs/cedar.git",
|
|
@@ -57,26 +57,26 @@
|
|
|
57
57
|
"test:watch": "vitest watch"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@cedarjs/project-config": "2.0.1-next.
|
|
60
|
+
"@cedarjs/project-config": "2.0.1-next.26+8b9090065",
|
|
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": "2.0.1-next.
|
|
68
|
-
"@cedarjs/framework-tools": "2.0.1-next.
|
|
67
|
+
"@cedarjs/api": "2.0.1-next.26+8b9090065",
|
|
68
|
+
"@cedarjs/framework-tools": "2.0.1-next.26",
|
|
69
69
|
"@simplewebauthn/server": "9.0.3",
|
|
70
|
-
"@types/md5": "2.3.
|
|
70
|
+
"@types/md5": "2.3.6",
|
|
71
71
|
"@types/uuid": "10.0.0",
|
|
72
72
|
"concurrently": "8.2.2",
|
|
73
73
|
"publint": "0.3.12",
|
|
74
74
|
"tsx": "4.20.5",
|
|
75
|
-
"typescript": "5.9.
|
|
75
|
+
"typescript": "5.9.3",
|
|
76
76
|
"vitest": "3.2.4"
|
|
77
77
|
},
|
|
78
78
|
"publishConfig": {
|
|
79
79
|
"access": "public"
|
|
80
80
|
},
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "8b90900651144e4f60c9097680599bce3897e912"
|
|
82
82
|
}
|