@better-auth/sso 1.6.27 → 1.6.28
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/client.d.mts
CHANGED
package/dist/client.mjs
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { APIError } from "better-auth/api";
|
|
2
2
|
import * as z from "zod";
|
|
3
3
|
import { Awaitable, BetterAuthPlugin, OAuth2Tokens, User } from "better-auth";
|
|
4
|
+
import * as _$better_call0 from "better-call";
|
|
5
|
+
|
|
4
6
|
//#region src/saml/algorithms.d.ts
|
|
5
7
|
declare const SignatureAlgorithm: {
|
|
6
8
|
readonly RSA_SHA1: "http://www.w3.org/2000/09/xmldsig#rsa-sha1";
|
|
@@ -435,7 +437,7 @@ interface SSOOptions {
|
|
|
435
437
|
}
|
|
436
438
|
//#endregion
|
|
437
439
|
//#region src/routes/domain-verification.d.ts
|
|
438
|
-
declare const requestDomainVerification: (options: SSOOptions) =>
|
|
440
|
+
declare const requestDomainVerification: (options: SSOOptions) => _$better_call0.StrictEndpoint<"/sso/request-domain-verification", {
|
|
439
441
|
method: "POST";
|
|
440
442
|
body: z.ZodObject<{
|
|
441
443
|
providerId: z.ZodString;
|
|
@@ -457,7 +459,7 @@ declare const requestDomainVerification: (options: SSOOptions) => import("better
|
|
|
457
459
|
};
|
|
458
460
|
};
|
|
459
461
|
};
|
|
460
|
-
use:
|
|
462
|
+
use: _$better_call0.Middleware<_$better_call0.MiddlewareOptions, (inputContext: _$better_call0.MiddlewareInputContext<_$better_call0.MiddlewareOptions>) => Promise<{
|
|
461
463
|
session: {
|
|
462
464
|
session: Record<string, any> & {
|
|
463
465
|
id: string;
|
|
@@ -483,7 +485,7 @@ declare const requestDomainVerification: (options: SSOOptions) => import("better
|
|
|
483
485
|
}, {
|
|
484
486
|
domainVerificationToken: string;
|
|
485
487
|
}>;
|
|
486
|
-
declare const verifyDomain: (options: SSOOptions) =>
|
|
488
|
+
declare const verifyDomain: (options: SSOOptions) => _$better_call0.StrictEndpoint<"/sso/verify-domain", {
|
|
487
489
|
method: "POST";
|
|
488
490
|
body: z.ZodObject<{
|
|
489
491
|
providerId: z.ZodString;
|
|
@@ -508,7 +510,7 @@ declare const verifyDomain: (options: SSOOptions) => import("better-call").Stric
|
|
|
508
510
|
};
|
|
509
511
|
};
|
|
510
512
|
};
|
|
511
|
-
use:
|
|
513
|
+
use: _$better_call0.Middleware<_$better_call0.MiddlewareOptions, (inputContext: _$better_call0.MiddlewareInputContext<_$better_call0.MiddlewareOptions>) => Promise<{
|
|
512
514
|
session: {
|
|
513
515
|
session: Record<string, any> & {
|
|
514
516
|
id: string;
|
|
@@ -534,9 +536,9 @@ declare const verifyDomain: (options: SSOOptions) => import("better-call").Stric
|
|
|
534
536
|
}, void>;
|
|
535
537
|
//#endregion
|
|
536
538
|
//#region src/routes/providers.d.ts
|
|
537
|
-
declare const listSSOProviders: () =>
|
|
539
|
+
declare const listSSOProviders: () => _$better_call0.StrictEndpoint<"/sso/providers", {
|
|
538
540
|
method: "GET";
|
|
539
|
-
use:
|
|
541
|
+
use: _$better_call0.Middleware<_$better_call0.MiddlewareOptions, (inputContext: _$better_call0.MiddlewareInputContext<_$better_call0.MiddlewareOptions>) => Promise<{
|
|
540
542
|
session: {
|
|
541
543
|
session: Record<string, any> & {
|
|
542
544
|
id: string;
|
|
@@ -612,9 +614,9 @@ declare const listSSOProviders: () => import("better-call").StrictEndpoint<"/sso
|
|
|
612
614
|
spMetadataUrl: string;
|
|
613
615
|
}[];
|
|
614
616
|
}>;
|
|
615
|
-
declare const getSSOProvider: () =>
|
|
617
|
+
declare const getSSOProvider: () => _$better_call0.StrictEndpoint<"/sso/get-provider", {
|
|
616
618
|
method: "GET";
|
|
617
|
-
use:
|
|
619
|
+
use: _$better_call0.Middleware<_$better_call0.MiddlewareOptions, (inputContext: _$better_call0.MiddlewareInputContext<_$better_call0.MiddlewareOptions>) => Promise<{
|
|
618
620
|
session: {
|
|
619
621
|
session: Record<string, any> & {
|
|
620
622
|
id: string;
|
|
@@ -697,9 +699,9 @@ declare const getSSOProvider: () => import("better-call").StrictEndpoint<"/sso/g
|
|
|
697
699
|
} | undefined;
|
|
698
700
|
spMetadataUrl: string;
|
|
699
701
|
}>;
|
|
700
|
-
declare const updateSSOProvider: (options: SSOOptions) =>
|
|
702
|
+
declare const updateSSOProvider: (options: SSOOptions) => _$better_call0.StrictEndpoint<"/sso/update-provider", {
|
|
701
703
|
method: "POST";
|
|
702
|
-
use:
|
|
704
|
+
use: _$better_call0.Middleware<_$better_call0.MiddlewareOptions, (inputContext: _$better_call0.MiddlewareInputContext<_$better_call0.MiddlewareOptions>) => Promise<{
|
|
703
705
|
session: {
|
|
704
706
|
session: Record<string, any> & {
|
|
705
707
|
id: string;
|
|
@@ -856,9 +858,9 @@ declare const updateSSOProvider: (options: SSOOptions) => import("better-call").
|
|
|
856
858
|
} | undefined;
|
|
857
859
|
spMetadataUrl: string;
|
|
858
860
|
}>;
|
|
859
|
-
declare const deleteSSOProvider: () =>
|
|
861
|
+
declare const deleteSSOProvider: () => _$better_call0.StrictEndpoint<"/sso/delete-provider", {
|
|
860
862
|
method: "POST";
|
|
861
|
-
use:
|
|
863
|
+
use: _$better_call0.Middleware<_$better_call0.MiddlewareOptions, (inputContext: _$better_call0.MiddlewareInputContext<_$better_call0.MiddlewareOptions>) => Promise<{
|
|
862
864
|
session: {
|
|
863
865
|
session: Record<string, any> & {
|
|
864
866
|
id: string;
|
|
@@ -927,7 +929,7 @@ interface SAMLConditions {
|
|
|
927
929
|
declare function validateSAMLTimestamp(conditions: SAMLConditions | undefined, options?: TimestampValidationOptions): void;
|
|
928
930
|
//#endregion
|
|
929
931
|
//#region src/routes/sso.d.ts
|
|
930
|
-
declare const spMetadata: (options?: SSOOptions) =>
|
|
932
|
+
declare const spMetadata: (options?: SSOOptions) => _$better_call0.StrictEndpoint<"/sso/saml2/sp/metadata", {
|
|
931
933
|
method: "GET";
|
|
932
934
|
query: z.ZodObject<{
|
|
933
935
|
providerId: z.ZodString;
|
|
@@ -949,7 +951,7 @@ declare const spMetadata: (options?: SSOOptions) => import("better-call").Strict
|
|
|
949
951
|
};
|
|
950
952
|
};
|
|
951
953
|
}, Response>;
|
|
952
|
-
declare const registerSSOProvider: <O extends SSOOptions>(options: O) =>
|
|
954
|
+
declare const registerSSOProvider: <O extends SSOOptions>(options: O) => _$better_call0.StrictEndpoint<"/sso/register", {
|
|
953
955
|
method: "POST";
|
|
954
956
|
body: z.ZodObject<{
|
|
955
957
|
providerId: z.ZodString;
|
|
@@ -1030,7 +1032,7 @@ declare const registerSSOProvider: <O extends SSOOptions>(options: O) => import(
|
|
|
1030
1032
|
organizationId: z.ZodOptional<z.ZodString>;
|
|
1031
1033
|
overrideUserInfo: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
1032
1034
|
}, z.core.$strip>;
|
|
1033
|
-
use:
|
|
1035
|
+
use: _$better_call0.Middleware<_$better_call0.MiddlewareOptions, (inputContext: _$better_call0.MiddlewareInputContext<_$better_call0.MiddlewareOptions>) => Promise<{
|
|
1034
1036
|
session: {
|
|
1035
1037
|
session: Record<string, any> & {
|
|
1036
1038
|
id: string;
|
|
@@ -1228,7 +1230,7 @@ declare const registerSSOProvider: <O extends SSOOptions>(options: O) => import(
|
|
|
1228
1230
|
oidcConfig: OIDCConfig | null;
|
|
1229
1231
|
samlConfig: SAMLConfig | null;
|
|
1230
1232
|
} & Omit<SSOProvider<O>, "oidcConfig" | "samlConfig">>;
|
|
1231
|
-
declare const signInSSO: (options?: SSOOptions) =>
|
|
1233
|
+
declare const signInSSO: (options?: SSOOptions) => _$better_call0.StrictEndpoint<"/sign-in/sso", {
|
|
1232
1234
|
method: "POST";
|
|
1233
1235
|
body: z.ZodObject<{
|
|
1234
1236
|
email: z.ZodOptional<z.ZodString>;
|
|
@@ -1322,7 +1324,7 @@ declare const signInSSO: (options?: SSOOptions) => import("better-call").StrictE
|
|
|
1322
1324
|
url: string;
|
|
1323
1325
|
redirect: boolean;
|
|
1324
1326
|
}>;
|
|
1325
|
-
declare const callbackSSO: (options?: SSOOptions) =>
|
|
1327
|
+
declare const callbackSSO: (options?: SSOOptions) => _$better_call0.StrictEndpoint<"/sso/callback/:providerId", {
|
|
1326
1328
|
method: "GET";
|
|
1327
1329
|
query: z.ZodObject<{
|
|
1328
1330
|
code: z.ZodOptional<z.ZodString>;
|
|
@@ -1350,7 +1352,7 @@ declare const callbackSSO: (options?: SSOOptions) => import("better-call").Stric
|
|
|
1350
1352
|
* Used when `options.redirectURI` is set — the `providerId` is read from
|
|
1351
1353
|
* the OAuth state instead of the URL path.
|
|
1352
1354
|
*/
|
|
1353
|
-
declare const callbackSSOShared: (options?: SSOOptions) =>
|
|
1355
|
+
declare const callbackSSOShared: (options?: SSOOptions) => _$better_call0.StrictEndpoint<"/sso/callback", {
|
|
1354
1356
|
metadata: {
|
|
1355
1357
|
openapi: {
|
|
1356
1358
|
operationId: string;
|
|
@@ -1373,7 +1375,7 @@ declare const callbackSSOShared: (options?: SSOOptions) => import("better-call")
|
|
|
1373
1375
|
}, z.core.$strip>;
|
|
1374
1376
|
allowedMediaTypes: readonly ["application/x-www-form-urlencoded", "application/json"];
|
|
1375
1377
|
}, void>;
|
|
1376
|
-
declare const callbackSSOSAML: (options?: SSOOptions) =>
|
|
1378
|
+
declare const callbackSSOSAML: (options?: SSOOptions) => _$better_call0.StrictEndpoint<"/sso/saml2/callback/:providerId", {
|
|
1377
1379
|
method: ("GET" | "POST")[];
|
|
1378
1380
|
body: z.ZodOptional<z.ZodObject<{
|
|
1379
1381
|
SAMLResponse: z.ZodString;
|
|
@@ -1403,7 +1405,7 @@ declare const callbackSSOSAML: (options?: SSOOptions) => import("better-call").S
|
|
|
1403
1405
|
scope: "server";
|
|
1404
1406
|
};
|
|
1405
1407
|
}, never>;
|
|
1406
|
-
declare const acsEndpoint: (options?: SSOOptions) =>
|
|
1408
|
+
declare const acsEndpoint: (options?: SSOOptions) => _$better_call0.StrictEndpoint<"/sso/saml2/sp/acs/:providerId", {
|
|
1407
1409
|
method: "POST";
|
|
1408
1410
|
body: z.ZodObject<{
|
|
1409
1411
|
SAMLResponse: z.ZodString;
|
|
@@ -1424,7 +1426,7 @@ declare const acsEndpoint: (options?: SSOOptions) => import("better-call").Stric
|
|
|
1424
1426
|
scope: "server";
|
|
1425
1427
|
};
|
|
1426
1428
|
}, never>;
|
|
1427
|
-
declare const sloEndpoint: (options?: SSOOptions) =>
|
|
1429
|
+
declare const sloEndpoint: (options?: SSOOptions) => _$better_call0.StrictEndpoint<"/sso/saml2/sp/slo/:providerId", {
|
|
1428
1430
|
method: ("GET" | "POST")[];
|
|
1429
1431
|
body: z.ZodOptional<z.ZodObject<{
|
|
1430
1432
|
SAMLRequest: z.ZodOptional<z.ZodString>;
|
|
@@ -1445,12 +1447,12 @@ declare const sloEndpoint: (options?: SSOOptions) => import("better-call").Stric
|
|
|
1445
1447
|
scope: "server";
|
|
1446
1448
|
};
|
|
1447
1449
|
}, void | Response>;
|
|
1448
|
-
declare const initiateSLO: (options?: SSOOptions) =>
|
|
1450
|
+
declare const initiateSLO: (options?: SSOOptions) => _$better_call0.StrictEndpoint<"/sso/saml2/logout/:providerId", {
|
|
1449
1451
|
method: "POST";
|
|
1450
1452
|
body: z.ZodObject<{
|
|
1451
1453
|
callbackURL: z.ZodOptional<z.ZodString>;
|
|
1452
1454
|
}, z.core.$strip>;
|
|
1453
|
-
use:
|
|
1455
|
+
use: _$better_call0.Middleware<_$better_call0.MiddlewareOptions, (inputContext: _$better_call0.MiddlewareInputContext<_$better_call0.MiddlewareOptions>) => Promise<{
|
|
1454
1456
|
session: {
|
|
1455
1457
|
session: Record<string, any> & {
|
|
1456
1458
|
id: string;
|
|
@@ -1575,27 +1577,7 @@ interface OIDCDiscoveryDocument {
|
|
|
1575
1577
|
/**
|
|
1576
1578
|
* Error codes for OIDC discovery operations.
|
|
1577
1579
|
*/
|
|
1578
|
-
type DiscoveryErrorCode =
|
|
1579
|
-
/** Request to discovery endpoint timed out */
|
|
1580
|
-
"discovery_timeout" |
|
|
1581
|
-
/** Discovery endpoint returned 404 or similar */
|
|
1582
|
-
"discovery_not_found" |
|
|
1583
|
-
/** Discovery endpoint returned invalid JSON */
|
|
1584
|
-
"discovery_invalid_json" |
|
|
1585
|
-
/** OIDC endpoint URL (discovery or per-endpoint: authorization, token, userinfo, jwks) is invalid, malformed, or uses a non-`http(s)` scheme */
|
|
1586
|
-
"discovery_invalid_url" |
|
|
1587
|
-
/** OIDC endpoint URL is not trusted by the trusted origins configuration */
|
|
1588
|
-
"discovery_untrusted_origin" |
|
|
1589
|
-
/** OIDC endpoint URL (discovery or per-endpoint) points to a host that is not publicly routable (loopback, RFC 1918, link-local, cloud metadata FQDN, etc.) */
|
|
1590
|
-
"discovery_private_host" |
|
|
1591
|
-
/** Discovery document issuer doesn't match configured issuer */
|
|
1592
|
-
"issuer_mismatch" |
|
|
1593
|
-
/** Discovery document is missing required fields */
|
|
1594
|
-
"discovery_incomplete" |
|
|
1595
|
-
/** IdP only advertises token auth methods that Better Auth doesn't currently support */
|
|
1596
|
-
"unsupported_token_auth_method" |
|
|
1597
|
-
/** Catch-all for unexpected errors */
|
|
1598
|
-
"discovery_unexpected_error";
|
|
1580
|
+
type DiscoveryErrorCode = /** Request to discovery endpoint timed out */"discovery_timeout" /** Discovery endpoint returned 404 or similar */ | "discovery_not_found" /** Discovery endpoint returned invalid JSON */ | "discovery_invalid_json" /** OIDC endpoint URL (discovery or per-endpoint: authorization, token, userinfo, jwks) is invalid, malformed, or uses a non-`http(s)` scheme */ | "discovery_invalid_url" /** OIDC endpoint URL is not trusted by the trusted origins configuration */ | "discovery_untrusted_origin" /** OIDC endpoint URL (discovery or per-endpoint) points to a host that is not publicly routable (loopback, RFC 1918, link-local, cloud metadata FQDN, etc.) */ | "discovery_private_host" /** Discovery document issuer doesn't match configured issuer */ | "issuer_mismatch" /** Discovery document is missing required fields */ | "discovery_incomplete" /** IdP only advertises token auth methods that Better Auth doesn't currently support */ | "unsupported_token_auth_method" /** Catch-all for unexpected errors */ | "discovery_unexpected_error";
|
|
1599
1581
|
/**
|
|
1600
1582
|
* Custom error class for OIDC discovery failures.
|
|
1601
1583
|
* Can be caught and mapped to APIError at the edge.
|
package/dist/index.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { A as DataEncryptionAlgorithm, C as TimestampValidationOptions, D as SSOOptions, E as SAMLConfig, M as DigestAlgorithm, N as KeyEncryptionAlgorithm, O as SSOProvider, P as SignatureAlgorithm, S as SAMLConditions, T as OIDCConfig, _ as REQUIRED_DISCOVERY_FIELDS, a as fetchDiscoveryDocument, b as DEFAULT_MAX_SAML_METADATA_SIZE, c as normalizeUrl, d as validateDiscoveryUrl, f as DiscoverOIDCConfigParams, g as OIDCDiscoveryDocument, h as HydratedOIDCConfig, i as discoverOIDCConfig, j as DeprecatedAlgorithmBehavior, k as AlgorithmValidationOptions, l as selectTokenEndpointAuthMethod, m as DiscoveryErrorCode, n as sso, o as needsRuntimeDiscovery, p as DiscoveryError, r as computeDiscoveryUrl, s as normalizeDiscoveryUrls, t as SSOPlugin, u as validateDiscoveryDocument, v as RequiredDiscoveryField, w as validateSAMLTimestamp, x as DEFAULT_MAX_SAML_RESPONSE_SIZE, y as DEFAULT_CLOCK_SKEW_MS } from "./index-
|
|
2
|
-
export {
|
|
1
|
+
import { A as DataEncryptionAlgorithm, C as TimestampValidationOptions, D as SSOOptions, E as SAMLConfig, M as DigestAlgorithm, N as KeyEncryptionAlgorithm, O as SSOProvider, P as SignatureAlgorithm, S as SAMLConditions, T as OIDCConfig, _ as REQUIRED_DISCOVERY_FIELDS, a as fetchDiscoveryDocument, b as DEFAULT_MAX_SAML_METADATA_SIZE, c as normalizeUrl, d as validateDiscoveryUrl, f as DiscoverOIDCConfigParams, g as OIDCDiscoveryDocument, h as HydratedOIDCConfig, i as discoverOIDCConfig, j as DeprecatedAlgorithmBehavior, k as AlgorithmValidationOptions, l as selectTokenEndpointAuthMethod, m as DiscoveryErrorCode, n as sso, o as needsRuntimeDiscovery, p as DiscoveryError, r as computeDiscoveryUrl, s as normalizeDiscoveryUrls, t as SSOPlugin, u as validateDiscoveryDocument, v as RequiredDiscoveryField, w as validateSAMLTimestamp, x as DEFAULT_MAX_SAML_RESPONSE_SIZE, y as DEFAULT_CLOCK_SKEW_MS } from "./index-CMcY1z4e.mjs";
|
|
2
|
+
export { AlgorithmValidationOptions, DEFAULT_CLOCK_SKEW_MS, DEFAULT_MAX_SAML_METADATA_SIZE, DEFAULT_MAX_SAML_RESPONSE_SIZE, DataEncryptionAlgorithm, DeprecatedAlgorithmBehavior, DigestAlgorithm, DiscoverOIDCConfigParams, DiscoveryError, DiscoveryErrorCode, HydratedOIDCConfig, KeyEncryptionAlgorithm, OIDCConfig, OIDCDiscoveryDocument, REQUIRED_DISCOVERY_FIELDS, RequiredDiscoveryField, SAMLConditions, SAMLConfig, SSOOptions, SSOPlugin, SSOProvider, SignatureAlgorithm, TimestampValidationOptions, computeDiscoveryUrl, discoverOIDCConfig, fetchDiscoveryDocument, needsRuntimeDiscovery, normalizeDiscoveryUrls, normalizeUrl, selectTokenEndpointAuthMethod, sso, validateDiscoveryDocument, validateDiscoveryUrl, validateSAMLTimestamp };
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { t as PACKAGE_VERSION } from "./version-
|
|
1
|
+
import { t as PACKAGE_VERSION } from "./version-6ZHwEASO.mjs";
|
|
2
2
|
import { APIError, createAuthEndpoint, createAuthMiddleware, getSessionFromCtx, sessionMiddleware } from "better-auth/api";
|
|
3
3
|
import { XMLParser, XMLValidator } from "fast-xml-parser";
|
|
4
4
|
import { X509Certificate } from "node:crypto";
|
|
@@ -2616,13 +2616,13 @@ const registerSSOProvider = (options) => {
|
|
|
2616
2616
|
if (!member) throw new APIError("BAD_REQUEST", { message: "You are not a member of the organization" });
|
|
2617
2617
|
if (ctx.context.hasPlugin("organization") && !hasOrgAdminRole(member)) throw new APIError("FORBIDDEN", { message: "You must be an organization owner or admin to register SSO providers" });
|
|
2618
2618
|
}
|
|
2619
|
-
if (
|
|
2619
|
+
if (new Set([
|
|
2620
2620
|
...BUILT_IN_ACCOUNT_PROVIDER_IDS,
|
|
2621
2621
|
...Object.keys(ctx.context.options.socialProviders ?? {}),
|
|
2622
2622
|
...ctx.context.socialProviders.map((p) => p.id),
|
|
2623
2623
|
...ctx.context.trustedProviders,
|
|
2624
2624
|
...options?.defaultSSO?.map((p) => p.providerId) ?? []
|
|
2625
|
-
])
|
|
2625
|
+
]).has(body.providerId)) {
|
|
2626
2626
|
ctx.context.logger.warn(`SSO provider registration rejected for reserved providerId: ${body.providerId}`);
|
|
2627
2627
|
throw new APIError("UNPROCESSABLE_ENTITY", { message: "This providerId is reserved and cannot be used for an SSO provider" });
|
|
2628
2628
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@better-auth/sso",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.28",
|
|
4
4
|
"description": "SSO plugin for Better Auth",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -69,16 +69,16 @@
|
|
|
69
69
|
"body-parser": "^2.3.0",
|
|
70
70
|
"express": "^5.2.1",
|
|
71
71
|
"oauth2-mock-server": "^8.2.2",
|
|
72
|
-
"tsdown": "0.
|
|
73
|
-
"@better-auth/core": "1.6.
|
|
74
|
-
"better-auth": "1.6.
|
|
72
|
+
"tsdown": "0.21.10",
|
|
73
|
+
"@better-auth/core": "1.6.28",
|
|
74
|
+
"better-auth": "1.6.28"
|
|
75
75
|
},
|
|
76
76
|
"peerDependencies": {
|
|
77
77
|
"@better-auth/utils": "0.4.2",
|
|
78
78
|
"@better-fetch/fetch": "1.3.1",
|
|
79
79
|
"better-call": "1.4.0",
|
|
80
|
-
"@better-auth/core": "^1.6.
|
|
81
|
-
"better-auth": "^1.6.
|
|
80
|
+
"@better-auth/core": "^1.6.28",
|
|
81
|
+
"better-auth": "^1.6.28"
|
|
82
82
|
},
|
|
83
83
|
"scripts": {
|
|
84
84
|
"build": "tsdown",
|