@cedarjs/auth-dbauth-middleware 2.2.2-next.0 → 2.2.2-next.31
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/cjs/index.js +5 -5
- package/dist/index.js +2 -2
- package/package.json +7 -7
package/dist/cjs/index.js
CHANGED
|
@@ -26,12 +26,12 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
26
26
|
mod
|
|
27
27
|
));
|
|
28
28
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
-
var
|
|
30
|
-
__export(
|
|
31
|
-
default: () =>
|
|
29
|
+
var src_exports = {};
|
|
30
|
+
__export(src_exports, {
|
|
31
|
+
default: () => src_default,
|
|
32
32
|
initDbAuthMiddleware: () => initDbAuthMiddleware
|
|
33
33
|
});
|
|
34
|
-
module.exports = __toCommonJS(
|
|
34
|
+
module.exports = __toCommonJS(src_exports);
|
|
35
35
|
var import_auth_dbauth_api = __toESM(require("@cedarjs/auth-dbauth-api"), 1);
|
|
36
36
|
var import_middleware = require("@cedarjs/web/middleware");
|
|
37
37
|
var import_defaultGetRoles = require("./defaultGetRoles.js");
|
|
@@ -151,7 +151,7 @@ async function validateSession({
|
|
|
151
151
|
);
|
|
152
152
|
return { currentUser, decryptedSession };
|
|
153
153
|
}
|
|
154
|
-
var
|
|
154
|
+
var src_default = initDbAuthMiddleware;
|
|
155
155
|
// Annotate the CommonJS export names for ESM import in node:
|
|
156
156
|
0 && (module.exports = {
|
|
157
157
|
initDbAuthMiddleware
|
package/dist/index.js
CHANGED
|
@@ -117,8 +117,8 @@ async function validateSession({
|
|
|
117
117
|
);
|
|
118
118
|
return { currentUser, decryptedSession };
|
|
119
119
|
}
|
|
120
|
-
var
|
|
120
|
+
var src_default = initDbAuthMiddleware;
|
|
121
121
|
export {
|
|
122
|
-
|
|
122
|
+
src_default as default,
|
|
123
123
|
initDbAuthMiddleware
|
|
124
124
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/auth-dbauth-middleware",
|
|
3
|
-
"version": "2.2.2-next.
|
|
3
|
+
"version": "2.2.2-next.31+ff2776832",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/cedarjs/cedar.git",
|
|
@@ -37,14 +37,14 @@
|
|
|
37
37
|
"test:watch": "vitest watch"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@cedarjs/auth-dbauth-api": "2.2.2-next.
|
|
41
|
-
"@cedarjs/web": "2.2.2-next.
|
|
40
|
+
"@cedarjs/auth-dbauth-api": "2.2.2-next.31+ff2776832",
|
|
41
|
+
"@cedarjs/web": "2.2.2-next.31+ff2776832"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@arethetypeswrong/cli": "0.18.2",
|
|
45
|
-
"@cedarjs/api": "2.2.2-next.
|
|
46
|
-
"@cedarjs/framework-tools": "2.2.2-next.
|
|
47
|
-
"@cedarjs/graphql-server": "2.2.2-next.
|
|
45
|
+
"@cedarjs/api": "2.2.2-next.31+ff2776832",
|
|
46
|
+
"@cedarjs/framework-tools": "2.2.2-next.31",
|
|
47
|
+
"@cedarjs/graphql-server": "2.2.2-next.31+ff2776832",
|
|
48
48
|
"@types/aws-lambda": "8.10.159",
|
|
49
49
|
"concurrently": "9.2.1",
|
|
50
50
|
"publint": "0.3.16",
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"publishConfig": {
|
|
57
57
|
"access": "public"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "ff2776832afcb70cd4ca38986ec4e37043e1c44b"
|
|
60
60
|
}
|