Merge branch 'canary' into change-default-oauth-store-strategy

This commit is contained in:
Ramon
2025-12-03 00:42:29 +01:00
committed by GitHub
2 changed files with 3 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ export * from "@better-auth/core/oauth2";
export * from "@better-auth/core/utils";
//#endregion
export * from "./auth";
// @ts-expect-error
export * from "./types";
export * from "./utils";
// export this as we are referencing OAuth2Tokens in the `refresh-token` api as return type
@@ -20,6 +21,7 @@ export {
type TelemetryEvent,
} from "@better-auth/telemetry";
// re-export third party types
// @ts-expect-error
export type * from "better-call";
export type { JSONWebKeySet, JWTPayload } from "jose";
export type * from "zod";

View File

@@ -9,5 +9,6 @@ export * from "../client/types";
export type * from "./adapter";
export * from "./api";
export type * from "./auth";
export type * from "./helper";
export type * from "./models";
export type * from "./plugins";