@better-auth/sso 1.3.8-beta.9 → 1.3.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.
- package/.turbo/turbo-build.log +1 -4
- package/dist/index.d.cts +4 -4
- package/dist/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/package.json +8 -8
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
|
|
2
|
-
> @better-auth/sso@1.3.8
|
|
2
|
+
> @better-auth/sso@1.3.8 build /home/runner/work/better-auth/better-auth/packages/sso
|
|
3
3
|
> unbuild
|
|
4
4
|
|
|
5
|
-
Browserslist: caniuse-lite is outdated. Please run:
|
|
6
|
-
npx update-browserslist-db@latest
|
|
7
|
-
Why you should do it regularly: https://github.com/browserslist/update-db#readme
|
|
8
5
|
[info] Automatically detected entries: src/index, src/client [esm] [cjs] [dts]
|
|
9
6
|
[info] Building sso
|
|
10
7
|
[success] Build succeeded for sso
|
package/dist/index.d.cts
CHANGED
|
@@ -344,21 +344,21 @@ declare const sso: (options?: SSOOptions) => {
|
|
|
344
344
|
session: {
|
|
345
345
|
session: Record<string, any> & {
|
|
346
346
|
id: string;
|
|
347
|
-
userId: string;
|
|
348
|
-
expiresAt: Date;
|
|
349
347
|
createdAt: Date;
|
|
350
348
|
updatedAt: Date;
|
|
349
|
+
userId: string;
|
|
350
|
+
expiresAt: Date;
|
|
351
351
|
token: string;
|
|
352
352
|
ipAddress?: string | null | undefined;
|
|
353
353
|
userAgent?: string | null | undefined;
|
|
354
354
|
};
|
|
355
355
|
user: Record<string, any> & {
|
|
356
356
|
id: string;
|
|
357
|
+
createdAt: Date;
|
|
358
|
+
updatedAt: Date;
|
|
357
359
|
email: string;
|
|
358
360
|
emailVerified: boolean;
|
|
359
361
|
name: string;
|
|
360
|
-
createdAt: Date;
|
|
361
|
-
updatedAt: Date;
|
|
362
362
|
image?: string | null | undefined;
|
|
363
363
|
};
|
|
364
364
|
};
|
package/dist/index.d.mts
CHANGED
|
@@ -344,21 +344,21 @@ declare const sso: (options?: SSOOptions) => {
|
|
|
344
344
|
session: {
|
|
345
345
|
session: Record<string, any> & {
|
|
346
346
|
id: string;
|
|
347
|
-
userId: string;
|
|
348
|
-
expiresAt: Date;
|
|
349
347
|
createdAt: Date;
|
|
350
348
|
updatedAt: Date;
|
|
349
|
+
userId: string;
|
|
350
|
+
expiresAt: Date;
|
|
351
351
|
token: string;
|
|
352
352
|
ipAddress?: string | null | undefined;
|
|
353
353
|
userAgent?: string | null | undefined;
|
|
354
354
|
};
|
|
355
355
|
user: Record<string, any> & {
|
|
356
356
|
id: string;
|
|
357
|
+
createdAt: Date;
|
|
358
|
+
updatedAt: Date;
|
|
357
359
|
email: string;
|
|
358
360
|
emailVerified: boolean;
|
|
359
361
|
name: string;
|
|
360
|
-
createdAt: Date;
|
|
361
|
-
updatedAt: Date;
|
|
362
362
|
image?: string | null | undefined;
|
|
363
363
|
};
|
|
364
364
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -344,21 +344,21 @@ declare const sso: (options?: SSOOptions) => {
|
|
|
344
344
|
session: {
|
|
345
345
|
session: Record<string, any> & {
|
|
346
346
|
id: string;
|
|
347
|
-
userId: string;
|
|
348
|
-
expiresAt: Date;
|
|
349
347
|
createdAt: Date;
|
|
350
348
|
updatedAt: Date;
|
|
349
|
+
userId: string;
|
|
350
|
+
expiresAt: Date;
|
|
351
351
|
token: string;
|
|
352
352
|
ipAddress?: string | null | undefined;
|
|
353
353
|
userAgent?: string | null | undefined;
|
|
354
354
|
};
|
|
355
355
|
user: Record<string, any> & {
|
|
356
356
|
id: string;
|
|
357
|
+
createdAt: Date;
|
|
358
|
+
updatedAt: Date;
|
|
357
359
|
email: string;
|
|
358
360
|
emailVerified: boolean;
|
|
359
361
|
name: string;
|
|
360
|
-
createdAt: Date;
|
|
361
|
-
updatedAt: Date;
|
|
362
362
|
image?: string | null | undefined;
|
|
363
363
|
};
|
|
364
364
|
};
|
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.8
|
|
4
|
+
"version": "1.3.8",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"keywords": [
|
|
@@ -46,20 +46,20 @@
|
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@better-fetch/fetch": "^1.1.18",
|
|
48
48
|
"fast-xml-parser": "^5.2.5",
|
|
49
|
-
"jose": "^5.
|
|
50
|
-
"oauth2-mock-server": "^7.2.
|
|
51
|
-
"samlify": "^2.10.
|
|
52
|
-
"zod": "^4.
|
|
49
|
+
"jose": "^5.10.0",
|
|
50
|
+
"oauth2-mock-server": "^7.2.1",
|
|
51
|
+
"samlify": "^2.10.1",
|
|
52
|
+
"zod": "^4.1.5"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@types/body-parser": "^1.19.6",
|
|
56
56
|
"@types/express": "^5.0.3",
|
|
57
|
-
"better-call": "1.0.
|
|
57
|
+
"better-call": "1.0.16",
|
|
58
58
|
"express": "^5.1.0",
|
|
59
|
-
"better-auth": "^1.3.8
|
|
59
|
+
"better-auth": "^1.3.8"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|
|
62
|
-
"better-auth": "1.3.8
|
|
62
|
+
"better-auth": "1.3.8"
|
|
63
63
|
},
|
|
64
64
|
"scripts": {
|
|
65
65
|
"test": "vitest",
|