@cedarjs/auth-dbauth-api 2.0.0 → 2.0.1-next.23

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.
Files changed (2) hide show
  1. package/dist/errors.js +1 -1
  2. 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 rw g secret` to create one, then add to your `.env` file. DO NOT check this variable in your version control system!!"
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.0",
3
+ "version": "2.0.1-next.23+ee9637a66",
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.0",
60
+ "@cedarjs/project-config": "2.0.1-next.23+ee9637a66",
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.0",
68
- "@cedarjs/framework-tools": "2.0.0",
67
+ "@cedarjs/api": "2.0.1-next.23+ee9637a66",
68
+ "@cedarjs/framework-tools": "2.0.1-next.23",
69
69
  "@simplewebauthn/server": "9.0.3",
70
- "@types/md5": "2.3.5",
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.2",
75
+ "typescript": "5.9.3",
76
76
  "vitest": "3.2.4"
77
77
  },
78
78
  "publishConfig": {
79
79
  "access": "public"
80
80
  },
81
- "gitHead": "8ca868abf6694a49d0745a41437a60328aba31a4"
81
+ "gitHead": "ee9637a6646277cf451b4bc1f84718a97f336889"
82
82
  }