@cedarjs/auth-auth0-api 6.0.0-canary.2760 → 6.0.0-canary.2763
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/decoder.js +6 -41
- package/dist/index.js +3 -27
- package/package.json +6 -6
package/dist/decoder.js
CHANGED
|
@@ -1,39 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var __defProp = Object.defineProperty;
|
|
4
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
5
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
6
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
7
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
8
|
-
var __export = (target, all) => {
|
|
9
|
-
for (var name in all)
|
|
10
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
11
|
-
};
|
|
12
|
-
var __copyProps = (to, from, except, desc) => {
|
|
13
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
14
|
-
for (let key of __getOwnPropNames(from))
|
|
15
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
16
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
17
|
-
}
|
|
18
|
-
return to;
|
|
19
|
-
};
|
|
20
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
23
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
24
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
25
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
26
|
-
mod
|
|
27
|
-
));
|
|
28
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
|
-
var decoder_exports = {};
|
|
30
|
-
__export(decoder_exports, {
|
|
31
|
-
authDecoder: () => authDecoder,
|
|
32
|
-
verifyAuth0Token: () => verifyAuth0Token
|
|
33
|
-
});
|
|
34
|
-
module.exports = __toCommonJS(decoder_exports);
|
|
35
|
-
var import_jsonwebtoken = __toESM(require("jsonwebtoken"));
|
|
36
|
-
var import_jwks_rsa = __toESM(require("jwks-rsa"));
|
|
1
|
+
import jwt from "jsonwebtoken";
|
|
2
|
+
import jwksClient from "jwks-rsa";
|
|
37
3
|
const verifyAuth0Token = (bearerToken) => {
|
|
38
4
|
return new Promise((resolve, reject) => {
|
|
39
5
|
const { AUTH0_DOMAIN, AUTH0_AUDIENCE } = process.env;
|
|
@@ -42,10 +8,10 @@ const verifyAuth0Token = (bearerToken) => {
|
|
|
42
8
|
"`AUTH0_DOMAIN` or `AUTH0_AUDIENCE` env vars are not set."
|
|
43
9
|
);
|
|
44
10
|
}
|
|
45
|
-
const client = (
|
|
11
|
+
const client = jwksClient({
|
|
46
12
|
jwksUri: `https://${AUTH0_DOMAIN}/.well-known/jwks.json`
|
|
47
13
|
});
|
|
48
|
-
|
|
14
|
+
jwt.verify(
|
|
49
15
|
bearerToken,
|
|
50
16
|
(header, callback) => {
|
|
51
17
|
client.getSigningKey(header.kid, (error, key) => {
|
|
@@ -74,8 +40,7 @@ const authDecoder = async (token, type) => {
|
|
|
74
40
|
}
|
|
75
41
|
return verifyAuth0Token(token);
|
|
76
42
|
};
|
|
77
|
-
|
|
78
|
-
0 && (module.exports = {
|
|
43
|
+
export {
|
|
79
44
|
authDecoder,
|
|
80
45
|
verifyAuth0Token
|
|
81
|
-
}
|
|
46
|
+
};
|
package/dist/index.js
CHANGED
|
@@ -1,28 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
6
|
-
var __export = (target, all) => {
|
|
7
|
-
for (var name in all)
|
|
8
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
9
|
-
};
|
|
10
|
-
var __copyProps = (to, from, except, desc) => {
|
|
11
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
12
|
-
for (let key of __getOwnPropNames(from))
|
|
13
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
14
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
15
|
-
}
|
|
16
|
-
return to;
|
|
17
|
-
};
|
|
18
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
19
|
-
var index_exports = {};
|
|
20
|
-
__export(index_exports, {
|
|
21
|
-
authDecoder: () => import_decoder.authDecoder
|
|
22
|
-
});
|
|
23
|
-
module.exports = __toCommonJS(index_exports);
|
|
24
|
-
var import_decoder = require("./decoder.js");
|
|
25
|
-
// Annotate the CommonJS export names for ESM import in node:
|
|
26
|
-
0 && (module.exports = {
|
|
1
|
+
import { authDecoder } from "./decoder.js";
|
|
2
|
+
export {
|
|
27
3
|
authDecoder
|
|
28
|
-
}
|
|
4
|
+
};
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/auth-auth0-api",
|
|
3
|
-
"version": "6.0.0-canary.
|
|
3
|
+
"version": "6.0.0-canary.2763",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/cedarjs/cedar.git",
|
|
7
7
|
"directory": "packages/auth-providers/auth0/api"
|
|
8
8
|
},
|
|
9
9
|
"license": "MIT",
|
|
10
|
-
"type": "
|
|
10
|
+
"type": "module",
|
|
11
11
|
"exports": {
|
|
12
12
|
".": {
|
|
13
13
|
"default": {
|
|
@@ -28,9 +28,9 @@
|
|
|
28
28
|
"dist"
|
|
29
29
|
],
|
|
30
30
|
"scripts": {
|
|
31
|
-
"build": "node ./build.mts
|
|
31
|
+
"build": "node ./build.mts",
|
|
32
32
|
"build:pack": "yarn pack -o cedarjs-auth-auth0-api.tgz",
|
|
33
|
-
"build:types": "tsc --build --verbose ./tsconfig.json",
|
|
33
|
+
"build:types": "tsc --build --verbose ./tsconfig.build.json",
|
|
34
34
|
"build:watch": "nodemon --watch src --ext \"js,jsx,ts,tsx,template\" --ignore dist --exec \"yarn build\"",
|
|
35
35
|
"check:attw": "yarn cedar-fwtools-attw",
|
|
36
36
|
"check:package": "concurrently npm:check:attw yarn:publint",
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@arethetypeswrong/cli": "0.18.5",
|
|
47
|
-
"@cedarjs/api": "6.0.0-canary.
|
|
48
|
-
"@cedarjs/framework-tools": "6.0.0-canary.
|
|
47
|
+
"@cedarjs/api": "6.0.0-canary.2763",
|
|
48
|
+
"@cedarjs/framework-tools": "6.0.0-canary.2763",
|
|
49
49
|
"@types/jsonwebtoken": "9.0.10",
|
|
50
50
|
"concurrently": "9.2.4",
|
|
51
51
|
"publint": "0.3.22",
|