@better-auth/sso 1.4.12-beta.2 → 1.4.13

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.12-beta.2 build /home/runner/work/better-auth/better-auth/packages/sso
2
+ > @better-auth/sso@1.4.13 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
@@ -13,4 +13,4 @@
13
13
  ℹ dist/client.d.mts  0.49 kB │ gzip: 0.30 kB
14
14
  ℹ dist/index-D4Ey-vkQ.d.mts 44.21 kB │ gzip: 9.10 kB
15
15
  ℹ 5 files, total: 146.05 kB
16
- ✔ Build complete in 16075ms
16
+ ✔ Build complete in 16627ms
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.12-beta.2",
4
+ "version": "1.4.13",
5
5
  "type": "module",
6
6
  "main": "dist/index.mjs",
7
7
  "types": "dist/index.d.mts",
@@ -67,11 +67,11 @@
67
67
  "express": "^5.1.0",
68
68
  "oauth2-mock-server": "^8.2.0",
69
69
  "tsdown": "^0.17.2",
70
- "better-auth": "1.4.12-beta.2"
70
+ "better-auth": "1.4.13"
71
71
  },
72
72
  "peerDependencies": {
73
73
  "@better-auth/utils": "0.3.0",
74
- "better-auth": "1.4.12-beta.2"
74
+ "better-auth": "1.4.13"
75
75
  },
76
76
  "scripts": {
77
77
  "test": "vitest",
package/src/oidc.test.ts CHANGED
@@ -7,7 +7,7 @@ import { afterAll, beforeAll, describe, expect, it } from "vitest";
7
7
  import { sso } from ".";
8
8
  import { ssoClient } from "./client";
9
9
 
10
- let server = new OAuth2Server();
10
+ const server = new OAuth2Server();
11
11
 
12
12
  describe("SSO", async () => {
13
13
  const { auth, signInWithTestUser, customFetchImpl, cookieSetter } =