@riligar/auth-react 1.21.0 → 1.22.0
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.esm.js +4 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +4 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -967,7 +967,10 @@ const useAuth = () => useAuthStore(useShallow(s => ({
|
|
|
967
967
|
user: s.user,
|
|
968
968
|
loading: s.loading,
|
|
969
969
|
error: s.error,
|
|
970
|
-
isAuthenticated: s.user !== null
|
|
970
|
+
isAuthenticated: s.user !== null,
|
|
971
|
+
signIn: s.signIn,
|
|
972
|
+
signUp: s.signUp,
|
|
973
|
+
signOut: s.signOut
|
|
971
974
|
})));
|
|
972
975
|
|
|
973
976
|
// Auth Actions
|