@better-auth/sso 1.5.7-beta.1 → 1.6.0

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
@@ -1,4 +1,4 @@
1
- import { t as SSOPlugin } from "./index-N-z2Csye.mjs";
1
+ import { t as SSOPlugin } from "./index-iRhhiRKL.mjs";
2
2
 
3
3
  //#region src/client.d.ts
4
4
  interface SSOClientOptions {
@@ -8,6 +8,7 @@ interface SSOClientOptions {
8
8
  }
9
9
  declare const ssoClient: <CO extends SSOClientOptions>(options?: CO | undefined) => {
10
10
  id: "sso-client";
11
+ version: string;
11
12
  $InferServerPlugin: SSOPlugin<{
12
13
  domainVerification: {
13
14
  enabled: CO["domainVerification"] extends {
@@ -21,5 +22,4 @@ declare const ssoClient: <CO extends SSOClientOptions>(options?: CO | undefined)
21
22
  };
22
23
  };
23
24
  //#endregion
24
- export { ssoClient };
25
- //# sourceMappingURL=client.d.mts.map
25
+ export { ssoClient };
package/dist/client.mjs CHANGED
@@ -1,7 +1,9 @@
1
+ import { t as PACKAGE_VERSION } from "./version-Cf5gNNxE.mjs";
1
2
  //#region src/client.ts
2
3
  const ssoClient = (options) => {
3
4
  return {
4
5
  id: "sso-client",
6
+ version: PACKAGE_VERSION,
5
7
  $InferServerPlugin: {},
6
8
  pathMethods: {
7
9
  "/sso/providers": "GET",
@@ -11,5 +13,3 @@ const ssoClient = (options) => {
11
13
  };
12
14
  //#endregion
13
15
  export { ssoClient };
14
-
15
- //# sourceMappingURL=client.mjs.map