@cedarjs/auth-supabase-api 5.0.4-next.167 → 5.0.4

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 CHANGED
@@ -1,8 +1,41 @@
1
- import { createServerClient } from "@supabase/ssr";
2
- import jwt from "jsonwebtoken";
3
- import {
4
- parseAuthorizationCookie
5
- } from "@cedarjs/api";
1
+ "use strict";
2
+ var __create = Object.create;
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
+ messageForSupabaseSettingsError: () => messageForSupabaseSettingsError,
33
+ throwSupabaseSettingsError: () => throwSupabaseSettingsError
34
+ });
35
+ module.exports = __toCommonJS(decoder_exports);
36
+ var import_ssr = require("@supabase/ssr");
37
+ var import_jsonwebtoken = __toESM(require("jsonwebtoken"));
38
+ var import_api = require("@cedarjs/api");
6
39
  const ERROR_MESSAGE = `Your project's URL, Key and Secret are required to create a Supabase client!
7
40
 
8
41
  Check your Supabase project's API settings to find these values
@@ -21,7 +54,7 @@ const createSupabaseServerClient = (authCookies) => {
21
54
  if (!process.env.SUPABASE_KEY) {
22
55
  throwSupabaseSettingsError("SUPABASE_KEY");
23
56
  }
24
- return createServerClient(
57
+ return (0, import_ssr.createServerClient)(
25
58
  process.env.SUPABASE_URL || "",
26
59
  process.env.SUPABASE_KEY || "",
27
60
  {
@@ -55,19 +88,20 @@ const authDecoder = async (token, type, { event }) => {
55
88
  if (type !== "supabase") {
56
89
  return null;
57
90
  }
58
- const authCookies = parseAuthorizationCookie(event);
91
+ const authCookies = (0, import_api.parseAuthorizationCookie)(event);
59
92
  if (authCookies?.type === "supabase") {
60
93
  token = await getSupabaseAccessTokenFromCookie(authCookies);
61
94
  }
62
95
  try {
63
- return jwt.verify(token, secret);
96
+ return import_jsonwebtoken.default.verify(token, secret);
64
97
  } catch (error) {
65
98
  console.error(error);
66
99
  throw error;
67
100
  }
68
101
  };
69
- export {
102
+ // Annotate the CommonJS export names for ESM import in node:
103
+ 0 && (module.exports = {
70
104
  authDecoder,
71
105
  messageForSupabaseSettingsError,
72
106
  throwSupabaseSettingsError
73
- };
107
+ });
package/dist/index.js CHANGED
@@ -1,5 +1,30 @@
1
- import { authDecoder, throwSupabaseSettingsError } from "./decoder.js";
2
- export {
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
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
+ throwSupabaseSettingsError: () => import_decoder.throwSupabaseSettingsError
23
+ });
24
+ module.exports = __toCommonJS(index_exports);
25
+ var import_decoder = require("./decoder.js");
26
+ // Annotate the CommonJS export names for ESM import in node:
27
+ 0 && (module.exports = {
3
28
  authDecoder,
4
29
  throwSupabaseSettingsError
5
- };
30
+ });
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@cedarjs/auth-supabase-api",
3
- "version": "5.0.4-next.167",
3
+ "version": "5.0.4",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/cedarjs/cedar.git",
7
7
  "directory": "packages/auth-providers/supabase/api"
8
8
  },
9
9
  "license": "MIT",
10
- "type": "module",
10
+ "type": "commonjs",
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 && yarn build:types",
32
32
  "build:pack": "yarn pack -o cedarjs-auth-supabase-api.tgz",
33
- "build:types": "tsc --build --verbose ./tsconfig.build.json",
33
+ "build:types": "tsc --build --verbose ./tsconfig.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",
@@ -39,18 +39,19 @@
39
39
  "test:watch": "vitest watch"
40
40
  },
41
41
  "dependencies": {
42
- "@cedarjs/api": "5.0.4-next.167",
43
- "@supabase/ssr": "0.12.3",
42
+ "@cedarjs/api": "5.0.4",
43
+ "@supabase/ssr": "0.12.0",
44
44
  "jsonwebtoken": "9.0.3"
45
45
  },
46
46
  "devDependencies": {
47
- "@cedarjs/framework-tools": "5.0.4-next.167",
47
+ "@arethetypeswrong/cli": "0.18.4",
48
+ "@cedarjs/framework-tools": "5.0.4",
48
49
  "@types/aws-lambda": "8.10.162",
49
50
  "@types/jsonwebtoken": "9.0.10",
50
51
  "concurrently": "9.2.4",
51
- "publint": "0.3.22",
52
+ "publint": "0.3.21",
52
53
  "typescript": "5.9.3",
53
- "vitest": "4.1.10"
54
+ "vitest": "3.2.6"
54
55
  },
55
56
  "engines": {
56
57
  "node": ">=24"