better-auth 1.6.29 → 1.6.30
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/api/routes/sign-in.mjs +0 -1
- package/dist/index.mjs +0 -1
- package/dist/package.mjs +1 -1
- package/dist/plugins/generic-oauth/routes.mjs +0 -1
- package/dist/plugins/mcp/index.mjs +0 -1
- package/dist/plugins/oidc-provider/index.mjs +0 -1
- package/dist/plugins/open-api/index.mjs +0 -1
- package/package.json +8 -8
- package/dist/utils/index.mjs +0 -5
|
@@ -7,7 +7,6 @@ import { handleOAuthUserInfo } from "../../oauth2/link-account.mjs";
|
|
|
7
7
|
import { generateState } from "../../oauth2/state.mjs";
|
|
8
8
|
import { safeCloneRequest } from "../../utils/request.mjs";
|
|
9
9
|
import { createEmailVerificationToken } from "./email-verification.mjs";
|
|
10
|
-
import "../../utils/index.mjs";
|
|
11
10
|
import { APIError, BASE_ERROR_CODES } from "@better-auth/core/error";
|
|
12
11
|
import { SocialProviderListEnum } from "@better-auth/core/social-providers";
|
|
13
12
|
import { createAuthEndpoint } from "@better-auth/core/api";
|
package/dist/index.mjs
CHANGED
|
@@ -2,7 +2,6 @@ import { getBaseURL, getHost, getHostFromSource, getOrigin, getProtocol, getProt
|
|
|
2
2
|
import { generateGenericState, parseGenericState } from "./state.mjs";
|
|
3
3
|
import { generateState, parseState } from "./oauth2/state.mjs";
|
|
4
4
|
import { HIDE_METADATA } from "./utils/hide-metadata.mjs";
|
|
5
|
-
import "./utils/index.mjs";
|
|
6
5
|
import { APIError } from "./api/index.mjs";
|
|
7
6
|
import { betterAuth } from "./auth/full.mjs";
|
|
8
7
|
import { getCurrentAdapter } from "@better-auth/core/context";
|
package/dist/package.mjs
CHANGED
|
@@ -6,7 +6,6 @@ import { applyUpdateUserInfoOnLink, handleOAuthUserInfo } from "../../oauth2/lin
|
|
|
6
6
|
import { generateState, parseState } from "../../oauth2/state.mjs";
|
|
7
7
|
import { sessionMiddleware } from "../../api/routes/session.mjs";
|
|
8
8
|
import { HIDE_METADATA } from "../../utils/hide-metadata.mjs";
|
|
9
|
-
import "../../utils/index.mjs";
|
|
10
9
|
import { APIError as APIError$1 } from "../../api/index.mjs";
|
|
11
10
|
import { GENERIC_OAUTH_ERROR_CODES } from "./error-codes.mjs";
|
|
12
11
|
import { BASE_ERROR_CODES } from "@better-auth/core/error";
|
|
@@ -6,7 +6,6 @@ import { expireCookie } from "../../cookies/index.mjs";
|
|
|
6
6
|
import { resolveDynamicTrustedProxyHeaders } from "../../context/helpers.mjs";
|
|
7
7
|
import { getSessionFromCtx } from "../../api/routes/session.mjs";
|
|
8
8
|
import { HIDE_METADATA } from "../../utils/hide-metadata.mjs";
|
|
9
|
-
import "../../utils/index.mjs";
|
|
10
9
|
import { APIError } from "../../api/index.mjs";
|
|
11
10
|
import { PACKAGE_VERSION } from "../../version.mjs";
|
|
12
11
|
import { parsePrompt } from "../oidc-provider/utils/prompt.mjs";
|
|
@@ -6,7 +6,6 @@ import { symmetricDecrypt, symmetricEncrypt } from "../../crypto/index.mjs";
|
|
|
6
6
|
import { expireCookie } from "../../cookies/index.mjs";
|
|
7
7
|
import { getSessionFromCtx, sessionMiddleware } from "../../api/routes/session.mjs";
|
|
8
8
|
import { HIDE_METADATA } from "../../utils/hide-metadata.mjs";
|
|
9
|
-
import "../../utils/index.mjs";
|
|
10
9
|
import { APIError } from "../../api/index.mjs";
|
|
11
10
|
import { PACKAGE_VERSION } from "../../version.mjs";
|
|
12
11
|
import { getJwtToken } from "../jwt/sign.mjs";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "better-auth",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.30",
|
|
4
4
|
"description": "The most comprehensive authentication framework for TypeScript.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -489,13 +489,13 @@
|
|
|
489
489
|
"kysely": "^0.28.17 || ^0.29.0",
|
|
490
490
|
"nanostores": "^1.1.1",
|
|
491
491
|
"zod": "^4.3.6",
|
|
492
|
-
"@better-auth/core": "1.6.
|
|
493
|
-
"@better-auth/drizzle-adapter": "1.6.
|
|
494
|
-
"@better-auth/kysely-adapter": "1.6.
|
|
495
|
-
"@better-auth/memory-adapter": "1.6.
|
|
496
|
-
"@better-auth/mongo-adapter": "1.6.
|
|
497
|
-
"@better-auth/prisma-adapter": "1.6.
|
|
498
|
-
"@better-auth/telemetry": "1.6.
|
|
492
|
+
"@better-auth/core": "1.6.30",
|
|
493
|
+
"@better-auth/drizzle-adapter": "1.6.30",
|
|
494
|
+
"@better-auth/kysely-adapter": "1.6.30",
|
|
495
|
+
"@better-auth/memory-adapter": "1.6.30",
|
|
496
|
+
"@better-auth/mongo-adapter": "1.6.30",
|
|
497
|
+
"@better-auth/prisma-adapter": "1.6.30",
|
|
498
|
+
"@better-auth/telemetry": "1.6.30"
|
|
499
499
|
},
|
|
500
500
|
"devDependencies": {
|
|
501
501
|
"@lynx-js/react": "^0.116.3",
|