@umituz/react-native-firebase 1.14.4 → 2.0.1
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/domains/account-deletion/index.ts +28 -0
- package/src/{auth → domains/account-deletion}/infrastructure/services/account-deletion.service.ts +4 -4
- package/src/{auth → domains/account-deletion}/infrastructure/services/reauthentication.service.ts +5 -5
- package/src/{auth → domains/auth}/index.ts +0 -21
- package/src/{auth → domains/auth}/infrastructure/config/FirebaseAuthClient.ts +2 -2
- package/src/{auth → domains/auth}/infrastructure/services/apple-auth.service.ts +1 -1
- package/src/{auth → domains/auth}/infrastructure/services/auth-listener.service.ts +2 -2
- package/src/{auth → domains/auth}/infrastructure/services/auth-utils.service.ts +1 -1
- package/src/{auth → domains/auth}/infrastructure/services/base/base-auth.service.ts +1 -1
- package/src/{auth → domains/auth}/infrastructure/services/email-auth.service.ts +1 -1
- package/src/{auth → domains/auth}/infrastructure/services/google-auth.service.ts +2 -2
- package/src/{auth → domains/auth}/infrastructure/services/password.service.ts +1 -1
- package/src/{firestore → domains/firestore}/domain/errors/FirebaseFirestoreError.ts +1 -1
- package/src/{firestore → domains/firestore}/infrastructure/config/FirestoreClient.ts +2 -2
- package/src/{firestore → domains/firestore}/infrastructure/services/RequestLoggerService.ts +1 -1
- package/src/{firestore → domains/firestore}/utils/quota-error-detector.util.ts +1 -1
- package/src/{firestore → domains/firestore}/utils/transaction/transaction.util.ts +1 -1
- package/src/index.ts +12 -11
- package/src/init/createFirebaseInitModule.ts +1 -1
- package/src/{domain → shared/domain}/utils/credential.util.ts +1 -1
- package/src/{infrastructure → shared/infrastructure}/config/clients/FirebaseClientSingleton.ts +1 -1
- package/src/auth/domain/errors/README.md +0 -291
- package/src/auth/infrastructure/config/README.md +0 -239
- package/src/auth/infrastructure/services/README.md +0 -346
- package/src/domain/README.md +0 -628
- package/src/firestore/domain/README.md +0 -325
- package/src/firestore/domain/constants/README.md +0 -332
- package/src/firestore/domain/entities/README.md +0 -286
- package/src/firestore/domain/errors/README.md +0 -389
- package/src/firestore/infrastructure/config/README.md +0 -239
- package/src/firestore/infrastructure/middleware/README.md +0 -316
- package/src/firestore/infrastructure/repositories/README.md +0 -425
- package/src/firestore/infrastructure/services/README.md +0 -332
- package/src/firestore/types/pagination/README.md +0 -332
- package/src/firestore/utils/README.md +0 -574
- package/src/firestore/utils/dateUtils/README.md +0 -171
- package/src/firestore/utils/document-mapper.helper/README.md +0 -309
- package/src/firestore/utils/pagination.helper/README.md +0 -298
- package/src/firestore/utils/query-builder/README.md +0 -291
- package/src/infrastructure/README.md +0 -408
- package/src/infrastructure/config/README.md +0 -262
- package/src/presentation/README.md +0 -556
- /package/src/{auth/infrastructure/services → domains/account-deletion/application/ports}/reauthentication.types.ts +0 -0
- /package/src/{auth → domains/auth}/domain/entities/AnonymousUser.ts +0 -0
- /package/src/{auth → domains/auth}/domain/errors/FirebaseAuthError.ts +0 -0
- /package/src/{auth → domains/auth}/domain/value-objects/FirebaseAuthConfig.ts +0 -0
- /package/src/{auth → domains/auth}/infrastructure/config/initializers/FirebaseAuthInitializer.ts +0 -0
- /package/src/{auth → domains/auth}/infrastructure/services/anonymous-auth.service.ts +0 -0
- /package/src/{auth → domains/auth}/infrastructure/services/apple-auth.types.ts +0 -0
- /package/src/{auth → domains/auth}/infrastructure/services/auth-guard.service.ts +0 -0
- /package/src/{auth → domains/auth}/infrastructure/services/crypto.util.ts +0 -0
- /package/src/{auth → domains/auth}/infrastructure/services/firestore-utils.service.ts +0 -0
- /package/src/{auth → domains/auth}/infrastructure/services/google-auth.types.ts +0 -0
- /package/src/{auth → domains/auth}/infrastructure/services/google-oauth.service.ts +0 -0
- /package/src/{auth → domains/auth}/infrastructure/services/user-document-builder.util.ts +0 -0
- /package/src/{auth → domains/auth}/infrastructure/services/user-document.service.ts +0 -0
- /package/src/{auth → domains/auth}/infrastructure/services/user-document.types.ts +0 -0
- /package/src/{auth → domains/auth}/infrastructure/stores/auth.store.ts +0 -0
- /package/src/{auth → domains/auth}/presentation/hooks/shared/auth-hooks.util.ts +0 -0
- /package/src/{auth → domains/auth}/presentation/hooks/shared/hook-utils.util.ts +0 -0
- /package/src/{auth → domains/auth}/presentation/hooks/shared/safe-state-hooks.util.ts +0 -0
- /package/src/{auth → domains/auth}/presentation/hooks/shared/state-hooks.util.ts +0 -0
- /package/src/{auth → domains/auth}/presentation/hooks/useAnonymousAuth.ts +0 -0
- /package/src/{auth → domains/auth}/presentation/hooks/useFirebaseAuth.ts +0 -0
- /package/src/{auth → domains/auth}/presentation/hooks/useGoogleOAuth.ts +0 -0
- /package/src/{auth → domains/auth}/presentation/hooks/useSocialAuth.ts +0 -0
- /package/src/{auth → domains/auth}/presentation/hooks/utils/auth-state-change.handler.ts +0 -0
- /package/src/{firestore → domains/firestore}/domain/constants/QuotaLimits.ts +0 -0
- /package/src/{firestore → domains/firestore}/domain/entities/QuotaMetrics.ts +0 -0
- /package/src/{firestore → domains/firestore}/domain/entities/RequestLog.ts +0 -0
- /package/src/{firestore → domains/firestore}/domain/services/QuotaCalculator.ts +0 -0
- /package/src/{firestore → domains/firestore}/index.ts +0 -0
- /package/src/{firestore → domains/firestore}/infrastructure/config/initializers/FirebaseFirestoreInitializer.ts +0 -0
- /package/src/{firestore → domains/firestore}/infrastructure/middleware/QueryDeduplicationMiddleware.ts +0 -0
- /package/src/{firestore → domains/firestore}/infrastructure/middleware/QuotaTrackingMiddleware.ts +0 -0
- /package/src/{firestore → domains/firestore}/infrastructure/repositories/BasePaginatedRepository.ts +0 -0
- /package/src/{firestore → domains/firestore}/infrastructure/repositories/BaseQueryRepository.ts +0 -0
- /package/src/{firestore → domains/firestore}/infrastructure/repositories/BaseRepository.ts +0 -0
- /package/src/{firestore → domains/firestore}/types/pagination.types.ts +0 -0
- /package/src/{firestore → domains/firestore}/utils/dateUtils.ts +0 -0
- /package/src/{firestore → domains/firestore}/utils/deduplication/pending-query-manager.util.ts +0 -0
- /package/src/{firestore → domains/firestore}/utils/deduplication/query-key-generator.util.ts +0 -0
- /package/src/{firestore → domains/firestore}/utils/deduplication/timer-manager.util.ts +0 -0
- /package/src/{firestore → domains/firestore}/utils/document-mapper.helper.ts +0 -0
- /package/src/{firestore → domains/firestore}/utils/firestore-helper.ts +0 -0
- /package/src/{firestore → domains/firestore}/utils/mapper/base-mapper.util.ts +0 -0
- /package/src/{firestore → domains/firestore}/utils/mapper/enrichment-mapper.util.ts +0 -0
- /package/src/{firestore → domains/firestore}/utils/mapper/multi-enrichment-mapper.util.ts +0 -0
- /package/src/{firestore → domains/firestore}/utils/operation/operation-executor.util.ts +0 -0
- /package/src/{firestore → domains/firestore}/utils/pagination.helper.ts +0 -0
- /package/src/{firestore → domains/firestore}/utils/query/filters.util.ts +0 -0
- /package/src/{firestore → domains/firestore}/utils/query/modifiers.util.ts +0 -0
- /package/src/{firestore → domains/firestore}/utils/query-builder.ts +0 -0
- /package/src/{firestore → domains/firestore}/utils/result/result.util.ts +0 -0
- /package/src/{domain → shared/domain}/errors/FirebaseError.ts +0 -0
- /package/src/{domain → shared/domain}/guards/firebase-error.guard.ts +0 -0
- /package/src/{domain → shared/domain}/utils/async-executor.util.ts +0 -0
- /package/src/{domain → shared/domain}/utils/error-handler.util.ts +0 -0
- /package/src/{domain → shared/domain}/utils/error-handlers/error-checkers.ts +0 -0
- /package/src/{domain → shared/domain}/utils/error-handlers/error-converters.ts +0 -0
- /package/src/{domain → shared/domain}/utils/error-handlers/error-messages.ts +0 -0
- /package/src/{domain → shared/domain}/utils/executors/advanced-executors.util.ts +0 -0
- /package/src/{domain → shared/domain}/utils/executors/basic-executors.util.ts +0 -0
- /package/src/{domain → shared/domain}/utils/executors/batch-executors.util.ts +0 -0
- /package/src/{domain → shared/domain}/utils/executors/error-converters.util.ts +0 -0
- /package/src/{domain → shared/domain}/utils/id-generator.util.ts +0 -0
- /package/src/{domain → shared/domain}/utils/index.ts +0 -0
- /package/src/{domain → shared/domain}/utils/result/result-creators.ts +0 -0
- /package/src/{domain → shared/domain}/utils/result/result-helpers.ts +0 -0
- /package/src/{domain → shared/domain}/utils/result/result-types.ts +0 -0
- /package/src/{domain → shared/domain}/utils/result.util.ts +0 -0
- /package/src/{domain → shared/domain}/utils/service-config.util.ts +0 -0
- /package/src/{domain → shared/domain}/utils/type-guards.util.ts +0 -0
- /package/src/{domain → shared/domain}/utils/validation.util.ts +0 -0
- /package/src/{domain → shared/domain}/utils/validators/composite.validator.ts +0 -0
- /package/src/{domain → shared/domain}/utils/validators/firebase.validator.ts +0 -0
- /package/src/{domain → shared/domain}/utils/validators/generic.validator.ts +0 -0
- /package/src/{domain → shared/domain}/utils/validators/string.validator.ts +0 -0
- /package/src/{domain → shared/domain}/utils/validators/url.validator.ts +0 -0
- /package/src/{domain → shared/domain}/utils/validators/user-input.validator.ts +0 -0
- /package/src/{domain → shared/domain}/value-objects/FirebaseConfig.ts +0 -0
- /package/src/{infrastructure → shared/infrastructure}/config/FirebaseClient.ts +0 -0
- /package/src/{infrastructure → shared/infrastructure}/config/FirebaseConfigLoader.ts +0 -0
- /package/src/{infrastructure → shared/infrastructure}/config/base/ClientStateManager.ts +0 -0
- /package/src/{infrastructure → shared/infrastructure}/config/base/ServiceClientSingleton.ts +0 -0
- /package/src/{infrastructure → shared/infrastructure}/config/initializers/FirebaseAppInitializer.ts +0 -0
- /package/src/{infrastructure → shared/infrastructure}/config/orchestrators/FirebaseInitializationOrchestrator.ts +0 -0
- /package/src/{infrastructure → shared/infrastructure}/config/services/FirebaseInitializationService.ts +0 -0
- /package/src/{infrastructure → shared/infrastructure}/config/services/FirebaseServiceInitializer.ts +0 -0
- /package/src/{infrastructure → shared/infrastructure}/config/state/FirebaseClientState.ts +0 -0
- /package/src/{infrastructure → shared/infrastructure}/config/validators/FirebaseConfigValidator.ts +0 -0
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/src/{infrastructure → shared/infrastructure}/config/initializers/FirebaseAppInitializer.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/src/{infrastructure → shared/infrastructure}/config/services/FirebaseServiceInitializer.ts
RENAMED
|
File without changes
|
|
File without changes
|
/package/src/{infrastructure → shared/infrastructure}/config/validators/FirebaseConfigValidator.ts
RENAMED
|
File without changes
|