@umituz/react-native-auth 3.6.19 → 3.6.20
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/package.json +1 -1
- package/src/index.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-auth",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.20",
|
|
4
4
|
"description": "Authentication service for React Native apps - Secure, type-safe, and production-ready. Provider-agnostic design with dependency injection, configurable validation, and comprehensive error handling.",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
package/src/index.ts
CHANGED
|
@@ -201,10 +201,12 @@ export {
|
|
|
201
201
|
selectIsAnonymous,
|
|
202
202
|
selectUserType,
|
|
203
203
|
selectIsAuthReady,
|
|
204
|
+
selectIsRegisteredUser,
|
|
204
205
|
getUserId,
|
|
205
206
|
getUserType,
|
|
206
207
|
getIsAuthenticated,
|
|
207
208
|
getIsAnonymous,
|
|
209
|
+
getIsRegisteredUser,
|
|
208
210
|
} from './presentation/stores/authStore';
|
|
209
211
|
export type { UserType, AuthState, AuthActions } from './presentation/stores/authStore';
|
|
210
212
|
export type { AuthListenerOptions } from './types/auth-store.types';
|