@better-auth/sso 1.4.8-beta.1 → 1.4.8-beta.2

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @better-auth/sso@1.4.8-beta.1 build /home/runner/work/better-auth/better-auth/packages/sso
2
+ > @better-auth/sso@1.4.8-beta.2 build /home/runner/work/better-auth/better-auth/packages/sso
3
3
  > tsdown
4
4
 
5
5
  ℹ tsdown v0.17.2 powered by rolldown v1.0.0-beta.53
@@ -7,10 +7,10 @@
7
7
  ℹ entry: src/index.ts, src/client.ts
8
8
  ℹ tsconfig: tsconfig.json
9
9
  ℹ Build start
10
- ℹ dist/index.mjs 92.44 kB │ gzip: 18.07 kB
10
+ ℹ dist/index.mjs 92.45 kB │ gzip: 18.08 kB
11
11
  ℹ dist/client.mjs  0.15 kB │ gzip: 0.14 kB
12
12
  ℹ dist/index.d.mts  1.48 kB │ gzip: 0.51 kB
13
13
  ℹ dist/client.d.mts  0.49 kB │ gzip: 0.30 kB
14
14
  ℹ dist/index-DNWhGQW-.d.mts 42.86 kB │ gzip: 8.79 kB
15
- ℹ 5 files, total: 137.41 kB
16
- ✔ Build complete in 12113ms
15
+ ℹ 5 files, total: 137.43 kB
16
+ ✔ Build complete in 11389ms
package/dist/index.mjs CHANGED
@@ -2254,7 +2254,8 @@ function sso(options) {
2254
2254
  required: false
2255
2255
  } } : {}
2256
2256
  }
2257
- } }
2257
+ } },
2258
+ options
2258
2259
  };
2259
2260
  }
2260
2261
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@better-auth/sso",
3
3
  "author": "Bereket Engida",
4
- "version": "1.4.8-beta.1",
4
+ "version": "1.4.8-beta.2",
5
5
  "type": "module",
6
6
  "main": "dist/index.mjs",
7
7
  "types": "dist/index.d.mts",
@@ -66,10 +66,10 @@
66
66
  "express": "^5.1.0",
67
67
  "oauth2-mock-server": "^8.2.0",
68
68
  "tsdown": "^0.17.2",
69
- "better-auth": "1.4.8-beta.1"
69
+ "better-auth": "1.4.8-beta.2"
70
70
  },
71
71
  "peerDependencies": {
72
- "better-auth": "1.4.8-beta.1"
72
+ "better-auth": "1.4.8-beta.2"
73
73
  },
74
74
  "scripts": {
75
75
  "test": "vitest",
package/src/index.ts CHANGED
@@ -210,5 +210,6 @@ export function sso<O extends SSOOptions>(options?: O | undefined): any {
210
210
  },
211
211
  },
212
212
  },
213
+ options: options as NoInfer<O>,
213
214
  } satisfies BetterAuthPlugin;
214
215
  }