@better-auth/sso 1.3.0-beta.6 → 1.3.0-beta.8

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.3.0-beta.6 build /home/runner/work/better-auth/better-auth/packages/sso
2
+ > @better-auth/sso@1.3.0-beta.8 build /home/runner/work/better-auth/better-auth/packages/sso
3
3
  > unbuild
4
4
 
5
5
  [info] Automatically detected entries: src/index, src/client [esm] [cjs] [dts]
package/dist/index.d.cts CHANGED
@@ -552,21 +552,21 @@ declare const sso: (options?: SSOOptions) => {
552
552
  session: {
553
553
  session: Record<string, any> & {
554
554
  id: string;
555
+ token: string;
555
556
  userId: string;
556
557
  expiresAt: Date;
557
558
  createdAt: Date;
558
559
  updatedAt: Date;
559
- token: string;
560
560
  ipAddress?: string | null | undefined;
561
561
  userAgent?: string | null | undefined;
562
562
  };
563
563
  user: Record<string, any> & {
564
564
  id: string;
565
+ name: string;
566
+ emailVerified: boolean;
567
+ email: string;
565
568
  createdAt: Date;
566
569
  updatedAt: Date;
567
- email: string;
568
- emailVerified: boolean;
569
- name: string;
570
570
  image?: string | null | undefined;
571
571
  };
572
572
  };
package/dist/index.d.mts CHANGED
@@ -552,21 +552,21 @@ declare const sso: (options?: SSOOptions) => {
552
552
  session: {
553
553
  session: Record<string, any> & {
554
554
  id: string;
555
+ token: string;
555
556
  userId: string;
556
557
  expiresAt: Date;
557
558
  createdAt: Date;
558
559
  updatedAt: Date;
559
- token: string;
560
560
  ipAddress?: string | null | undefined;
561
561
  userAgent?: string | null | undefined;
562
562
  };
563
563
  user: Record<string, any> & {
564
564
  id: string;
565
+ name: string;
566
+ emailVerified: boolean;
567
+ email: string;
565
568
  createdAt: Date;
566
569
  updatedAt: Date;
567
- email: string;
568
- emailVerified: boolean;
569
- name: string;
570
570
  image?: string | null | undefined;
571
571
  };
572
572
  };
package/dist/index.d.ts CHANGED
@@ -552,21 +552,21 @@ declare const sso: (options?: SSOOptions) => {
552
552
  session: {
553
553
  session: Record<string, any> & {
554
554
  id: string;
555
+ token: string;
555
556
  userId: string;
556
557
  expiresAt: Date;
557
558
  createdAt: Date;
558
559
  updatedAt: Date;
559
- token: string;
560
560
  ipAddress?: string | null | undefined;
561
561
  userAgent?: string | null | undefined;
562
562
  };
563
563
  user: Record<string, any> & {
564
564
  id: string;
565
+ name: string;
566
+ emailVerified: boolean;
567
+ email: string;
565
568
  createdAt: Date;
566
569
  updatedAt: Date;
567
- email: string;
568
- emailVerified: boolean;
569
- name: string;
570
570
  image?: string | null | undefined;
571
571
  };
572
572
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@better-auth/sso",
3
3
  "author": "Bereket Engida",
4
- "version": "1.3.0-beta.6",
4
+ "version": "1.3.0-beta.8",
5
5
  "main": "dist/index.cjs",
6
6
  "license": "MIT",
7
7
  "keywords": [
@@ -47,12 +47,12 @@
47
47
  "oauth2-mock-server": "^7.2.0",
48
48
  "samlify": "^2.10.0",
49
49
  "zod": "^3.24.1",
50
- "better-auth": "^1.3.0-beta.6"
50
+ "better-auth": "^1.3.0-beta.8"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@types/body-parser": "^1.19.6",
54
54
  "@types/express": "^5.0.3",
55
- "better-call": "^1.0.8",
55
+ "better-call": "^1.0.12",
56
56
  "vitest": "^1.6.0"
57
57
  },
58
58
  "scripts": {