@spfn/auth 0.3.0-beta.15 → 0.3.0-beta.16

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/README.md CHANGED
@@ -21,7 +21,7 @@ Underneath: asymmetric client-signed JWTs (ES256/RS256), OTP verification, OAuth
21
21
  through a pluggable provider registry (Google, GitHub, Kakao and Naver built in), session
22
22
  cookies for Next.js, and runtime RBAC. Routes mount under `/_auth/*` and are reached
23
23
  through a typed `authApi` client. Requires `@spfn/core`; Next.js is an optional peer
24
- (`^16.2.11`).
24
+ (`^16.3.3`).
25
25
 
26
26
  ## Install
27
27
 
package/dist/server.js CHANGED
@@ -16032,7 +16032,7 @@ var userRouter = defineRouter3({
16032
16032
  // src/server/routes/oauth/index.ts
16033
16033
  init_esm();
16034
16034
 
16035
- // ../../node_modules/.pnpm/hono@4.13.0/node_modules/hono/dist/utils/url.js
16035
+ // ../../node_modules/.pnpm/hono@4.13.7/node_modules/hono/dist/utils/url.js
16036
16036
  var tryDecode = (str, decoder) => {
16037
16037
  try {
16038
16038
  return decoder(str);
@@ -16049,7 +16049,7 @@ var tryDecode = (str, decoder) => {
16049
16049
  var tryDecodeURIComponent = (str) => str.indexOf("%") !== -1 ? tryDecode(str, decodeURIComponent_) : str;
16050
16050
  var decodeURIComponent_ = decodeURIComponent;
16051
16051
 
16052
- // ../../node_modules/.pnpm/hono@4.13.0/node_modules/hono/dist/utils/cookie.js
16052
+ // ../../node_modules/.pnpm/hono@4.13.7/node_modules/hono/dist/utils/cookie.js
16053
16053
  var validCookieNameRegEx = /^[\w!#$%&'*.^`|~+-]+$/;
16054
16054
  var relaxedCookieNameRegEx = /^[!#-:<>-[\]-~]+$/;
16055
16055
  var validCookieValueRegEx = /^[ !#-:<-[\]-~]*$/;
@@ -16171,7 +16171,7 @@ var serialize = (name, value, opt) => {
16171
16171
  return _serialize(name, value, opt);
16172
16172
  };
16173
16173
 
16174
- // ../../node_modules/.pnpm/hono@4.13.0/node_modules/hono/dist/helper/cookie/index.js
16174
+ // ../../node_modules/.pnpm/hono@4.13.7/node_modules/hono/dist/helper/cookie/index.js
16175
16175
  var getCookie = (c, key, prefix) => {
16176
16176
  const cookie = c.req.raw.headers.get("Cookie");
16177
16177
  if (typeof key === "string") {