@better-auth/expo 1.5.0-beta.13 → 1.5.0-beta.15
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/index.d.mts +4 -4
- package/dist/plugins/index.d.mts +2 -2
- package/package.json +7 -7
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as better_auth0 from "better-auth";
|
|
2
|
-
import * as
|
|
2
|
+
import * as zod from "zod";
|
|
3
3
|
import * as better_call0 from "better-call";
|
|
4
4
|
|
|
5
5
|
//#region src/index.d.ts
|
|
@@ -36,9 +36,9 @@ declare const expo: (options?: ExpoOptions | undefined) => {
|
|
|
36
36
|
endpoints: {
|
|
37
37
|
expoAuthorizationProxy: better_call0.StrictEndpoint<"/expo-authorization-proxy", {
|
|
38
38
|
method: "GET";
|
|
39
|
-
query:
|
|
40
|
-
authorizationURL:
|
|
41
|
-
oauthState:
|
|
39
|
+
query: zod.ZodObject<{
|
|
40
|
+
authorizationURL: zod.ZodString;
|
|
41
|
+
oauthState: zod.ZodOptional<zod.ZodString>;
|
|
42
42
|
}, better_auth0.$strip>;
|
|
43
43
|
metadata: {
|
|
44
44
|
readonly scope: "server";
|
package/dist/plugins/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _better_fetch_fetch0 from "@better-fetch/fetch";
|
|
2
2
|
import { Awaitable } from "@better-auth/core";
|
|
3
3
|
|
|
4
4
|
//#region src/plugins/last-login-method.d.ts
|
|
@@ -24,7 +24,7 @@ declare const lastLoginMethodClient: (config: LastLoginMethodClientConfig) => {
|
|
|
24
24
|
id: string;
|
|
25
25
|
name: string;
|
|
26
26
|
hooks: {
|
|
27
|
-
onResponse: (ctx:
|
|
27
|
+
onResponse: (ctx: _better_fetch_fetch0.ResponseContext) => Promise<void>;
|
|
28
28
|
};
|
|
29
29
|
}[];
|
|
30
30
|
getActions(): {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@better-auth/expo",
|
|
3
|
-
"version": "1.5.0-beta.
|
|
3
|
+
"version": "1.5.0-beta.15",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Better Auth integration for Expo and React Native applications.",
|
|
6
6
|
"main": "dist/index.mjs",
|
|
@@ -60,17 +60,17 @@
|
|
|
60
60
|
"expo-network": "^8.0.8",
|
|
61
61
|
"expo-web-browser": "~15.0.10",
|
|
62
62
|
"react-native": "~0.83.1",
|
|
63
|
-
"tsdown": "^0.20.
|
|
64
|
-
"@better-auth/core": "1.5.0-beta.
|
|
65
|
-
"better-auth": "1.5.0-beta.
|
|
63
|
+
"tsdown": "^0.20.3",
|
|
64
|
+
"@better-auth/core": "1.5.0-beta.15",
|
|
65
|
+
"better-auth": "1.5.0-beta.15"
|
|
66
66
|
},
|
|
67
67
|
"peerDependencies": {
|
|
68
68
|
"expo-constants": ">=17.0.0",
|
|
69
69
|
"expo-linking": ">=7.0.0",
|
|
70
70
|
"expo-network": "^8.0.7",
|
|
71
71
|
"expo-web-browser": ">=14.0.0",
|
|
72
|
-
"@better-auth/core": "1.5.0-beta.
|
|
73
|
-
"better-auth": "1.5.0-beta.
|
|
72
|
+
"@better-auth/core": "1.5.0-beta.15",
|
|
73
|
+
"better-auth": "1.5.0-beta.15"
|
|
74
74
|
},
|
|
75
75
|
"peerDependenciesMeta": {
|
|
76
76
|
"expo-constants": {
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
},
|
|
89
89
|
"dependencies": {
|
|
90
90
|
"@better-fetch/fetch": "1.1.21",
|
|
91
|
-
"better-call": "1.2
|
|
91
|
+
"better-call": "1.3.2",
|
|
92
92
|
"zod": "^4.3.6"
|
|
93
93
|
},
|
|
94
94
|
"files": [
|