@dereekb/dbx-firebase 8.1.2 → 8.4.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.
@@ -2,7 +2,7 @@ import { urlWithoutParameters, AUTH_ADMIN_ROLE, cachedGetter, addToSet, removeFr
2
2
  import * as i0 from '@angular/core';
3
3
  import { InjectionToken, Injectable, Inject, Optional, Component, Input, Directive, EventEmitter, Output, NgModule, Injector, forwardRef, Host } from '@angular/core';
4
4
  import { getToken, initializeAppCheck, ReCaptchaV3Provider } from 'firebase/app-check';
5
- import { switchMap, from, first, map, of, shareReplay, timeout, startWith, distinctUntilChanged, firstValueFrom, BehaviorSubject, combineLatest, tap, Subject, throttleTime, NEVER, filter, take, exhaustMap } from 'rxjs';
5
+ import { switchMap, from, first, map, of, shareReplay, timeout, startWith, distinctUntilChanged, firstValueFrom, BehaviorSubject, combineLatest, tap, Subject, throttleTime, NEVER, exhaustMap, filter, take } from 'rxjs';
6
6
  import * as i1 from '@angular/fire/app-check';
7
7
  import { provideAppCheck } from '@angular/fire/app-check';
8
8
  import * as i4 from '@angular/material/button';
@@ -14,9 +14,9 @@ import { CommonModule } from '@angular/common';
14
14
  import * as i3 from '@dereekb/dbx-web';
15
15
  import { DbxRouterAnchorModule, DbxReadableErrorModule, DbxActionModule, DbxButtonModule } from '@dereekb/dbx-web';
16
16
  import * as i3$1 from '@dereekb/dbx-core';
17
- import { loggedInObsFromIsLoggedIn, loggedOutObsFromIsLoggedIn, authUserIdentifier, DbxInjectionContext, AbstractForwardDbxInjectionContextDirective, DBX_INJECTION_COMPONENT_DATA, DbxInjectionComponentModule, DbxAuthService, AbstractSubscriptionDirective, AbstractIfDirective, LockSetComponentStore } from '@dereekb/dbx-core';
17
+ import { loggedInObsFromIsLoggedIn, loggedOutObsFromIsLoggedIn, authUserIdentifier, DbxInjectionContext, AbstractForwardDbxInjectionContextDirective, DBX_INJECTION_COMPONENT_DATA, DbxInjectionComponentModule, DbxAuthService, AbstractSubscriptionDirective, AbstractIfDirective, DbxRouteParamReaderInstance, DbxRouteParamDefaultRedirectInstance, LockSetComponentStore } from '@dereekb/dbx-core';
18
18
  import { __awaiter } from 'tslib';
19
- import { filterMaybe, isNot, SubscriptionObject, cleanupDestroyable, accumulatorFlattenPageListLoadingState, useFirst, successResult, beginLoading, loadingStateFromObs, errorResult, lazyFrom, cleanup } from '@dereekb/rxjs';
19
+ import { filterMaybe, isNot, SubscriptionObject, cleanupDestroyable, accumulatorFlattenPageListLoadingState, useFirst, pageLoadingStateFromObs, asObservable, useAsObservable, successResult, beginLoading, loadingStateFromObs, errorResult, lazyFrom, cleanup } from '@dereekb/rxjs';
20
20
  import * as i1$1 from '@angular/fire/auth';
21
21
  import { authState, GoogleAuthProvider, FacebookAuthProvider, TwitterAuthProvider, GithubAuthProvider, signInWithPopup, createUserWithEmailAndPassword, signInWithEmailAndPassword, signInAnonymously, provideAuth, getAuth, connectAuthEmulator } from '@angular/fire/auth';
22
22
  import { sendPasswordResetEmail } from 'firebase/auth';
@@ -32,7 +32,7 @@ import { provideFunctions, getFunctions, connectFunctionsEmulator, Functions } f
32
32
  import * as i1$3 from '@angular/fire/firestore';
33
33
  import { provideFirestore, getFirestore, connectFirestoreEmulator, enableIndexedDbPersistence, Firestore } from '@angular/fire/firestore';
34
34
  import { HTTP_INTERCEPTORS } from '@angular/common/http';
35
- import { firebaseFirestoreContextFactory, iterationQueryDocChangeWatcher, firebaseQueryItemAccumulator, documentDataWithId } from '@dereekb/firebase';
35
+ import { firebaseFirestoreContextFactory, iterationQueryDocChangeWatcher, firebaseQueryItemAccumulator, firestoreModelKeysFromDocuments, firestoreModelIdsFromDocuments, documentReferencesFromDocuments, getDocumentSnapshots, getDataFromDocumentSnapshots, loadDocumentsForKeys, loadDocumentsForDocumentReferences, loadDocumentsForIds, documentDataWithId } from '@dereekb/firebase';
36
36
 
37
37
  /**
38
38
  * Enables debug token generation for AppCheck by setting FIREBASE_APPCHECK_DEBUG_TOKEN in the browser's self/window.
@@ -226,6 +226,15 @@ class DbxFirebaseAuthService {
226
226
  this._authRoleClaimsService = delegate.authRoleClaimsService;
227
227
  this.isAdminInAuthRoleSet = delegate.isAdminInAuthRoleSet;
228
228
  }
229
+ refreshToken() {
230
+ return __awaiter(this, void 0, void 0, function* () {
231
+ const user = this.firebaseAuth.currentUser;
232
+ if (!user) {
233
+ throw new Error('no user to refresh the token for.');
234
+ }
235
+ return user.getIdTokenResult(true);
236
+ });
237
+ }
229
238
  rolesForClaims(claims) {
230
239
  let result;
231
240
  if (this._authRoleClaimsService) {
@@ -1966,7 +1975,7 @@ class DbxFirebaseCollectionLoaderInstance {
1966
1975
  set collection(collection) {
1967
1976
  this._collection.next(collection);
1968
1977
  }
1969
- // MARK: DbxFirebaseModelList
1978
+ // MARK: DbxFirebaseCollectionLoader
1970
1979
  next() {
1971
1980
  useFirst(this.firestoreIteration$, (x) => x.next());
1972
1981
  }
@@ -1987,6 +1996,61 @@ function dbxFirebaseCollectionLoaderInstanceWithCollection(collection) {
1987
1996
  return new DbxFirebaseCollectionLoaderInstance({ collection });
1988
1997
  }
1989
1998
 
1999
+ /**
2000
+ * DbxLimitedFirebaseDocumentLoader implementation within an instance.
2001
+ */
2002
+ class DbxLimitedFirebaseDocumentLoaderInstance {
2003
+ constructor(_initConfig) {
2004
+ this._initConfig = _initConfig;
2005
+ this.accessor = this._initConfig.accessor;
2006
+ this._documents = new BehaviorSubject(undefined);
2007
+ this._restart = new Subject();
2008
+ this._sub = new SubscriptionObject();
2009
+ this.documents$ = this._documents.pipe(filterMaybe(), distinctUntilChanged());
2010
+ this.keys$ = this.documents$.pipe(map(firestoreModelKeysFromDocuments));
2011
+ this.ids$ = this.documents$.pipe(map(firestoreModelIdsFromDocuments));
2012
+ this.refs$ = this.documents$.pipe(map(documentReferencesFromDocuments));
2013
+ this.snapshots$ = this.documents$.pipe(switchMap((docs) => this._restart.pipe(startWith(null), exhaustMap(() => getDocumentSnapshots(docs)))), shareReplay(1));
2014
+ this.data$ = this.snapshots$.pipe(map((snapshots) => getDataFromDocumentSnapshots(snapshots, true)), shareReplay(1));
2015
+ this.pageLoadingState$ = pageLoadingStateFromObs(this.data$, false);
2016
+ }
2017
+ destroy() {
2018
+ this._documents.complete();
2019
+ this._restart.complete();
2020
+ this._sub.destroy();
2021
+ }
2022
+ restart() {
2023
+ this._restart.next();
2024
+ }
2025
+ setKeys(keys) {
2026
+ this.setDocuments(asObservable(keys).pipe(map((x) => loadDocumentsForKeys(this.accessor, asArray(x)))));
2027
+ }
2028
+ setRefs(refs) {
2029
+ this.setDocuments(asObservable(refs).pipe(map((x) => loadDocumentsForDocumentReferences(this.accessor, asArray(x)))));
2030
+ }
2031
+ setDocuments(docs) {
2032
+ this._sub.subscription = useAsObservable(docs, (x) => this._documents.next(asArray(x)));
2033
+ }
2034
+ }
2035
+ function dbxLimitedFirebaseDocumentLoaderInstance(config) {
2036
+ return new DbxLimitedFirebaseDocumentLoaderInstance(config);
2037
+ }
2038
+ function dbxLimitedFirebaseDocumentLoaderInstanceWithAccessor(accessor) {
2039
+ return new DbxLimitedFirebaseDocumentLoaderInstance({ accessor });
2040
+ }
2041
+ // MARK: Full DbxFirebaseDocumentLoaderInstance
2042
+ class DbxFirebaseDocumentLoaderInstance extends DbxLimitedFirebaseDocumentLoaderInstance {
2043
+ setIds(ids) {
2044
+ this.setDocuments(asObservable(ids).pipe(map((x) => loadDocumentsForIds(this.accessor, asArray(x)))));
2045
+ }
2046
+ }
2047
+ function dbxFirebaseDocumentLoaderInstance(config) {
2048
+ return new DbxFirebaseDocumentLoaderInstance(config);
2049
+ }
2050
+ function dbxFirebaseDocumentLoaderInstanceWithAccessor(accessor) {
2051
+ return new DbxFirebaseDocumentLoaderInstance({ accessor });
2052
+ }
2053
+
1990
2054
  /**
1991
2055
  * Abstract directive that contains a DbxFirebaseCollectionStore and provides an interface for communicating with other directives.
1992
2056
  */
@@ -2238,6 +2302,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
2238
2302
  } });
2239
2303
 
2240
2304
  const DBX_FIREBASE_ROUTER_SYNC_DEFAULT_ID_PARAM_KEY = 'id';
2305
+ const DBX_FIREBASE_ROUTER_SYNC_USE_DEFAULT_PARAM_VALUE = '0';
2241
2306
  /**
2242
2307
  * Used for synchronizing the document store id to the param of the route.
2243
2308
  */
@@ -2246,30 +2311,58 @@ class DbxFirebaseDocumentStoreRouteIdDirective extends AbstractSubscriptionDirec
2246
2311
  super();
2247
2312
  this.dbxFirebaseDocumentStoreDirective = dbxFirebaseDocumentStoreDirective;
2248
2313
  this.dbxRouterService = dbxRouterService;
2249
- this._idParamKey = new BehaviorSubject(DBX_FIREBASE_ROUTER_SYNC_DEFAULT_ID_PARAM_KEY);
2250
- this.idParamKey$ = this._idParamKey.asObservable();
2251
- this.idFromParams$ = combineLatest([this.idParamKey$, this.dbxRouterService.params$]).pipe(map(([key, params]) => {
2252
- var _a;
2253
- return (_a = params[key]) !== null && _a !== void 0 ? _a : undefined;
2254
- }), distinctUntilChanged(), shareReplay(1));
2314
+ this._paramReader = new DbxRouteParamReaderInstance(this.dbxRouterService, DBX_FIREBASE_ROUTER_SYNC_DEFAULT_ID_PARAM_KEY);
2315
+ this._paramRedirect = new DbxRouteParamDefaultRedirectInstance(this._paramReader);
2316
+ this._useDefaultParam = new BehaviorSubject(DBX_FIREBASE_ROUTER_SYNC_USE_DEFAULT_PARAM_VALUE);
2317
+ this._useDefaultParam$ = this._useDefaultParam.pipe(map((x) => {
2318
+ let result;
2319
+ if (typeof x === 'string') {
2320
+ result = (value) => of(value === x);
2321
+ }
2322
+ else {
2323
+ result = x;
2324
+ }
2325
+ return result;
2326
+ }), shareReplay(1));
2327
+ this.idParamKey$ = this._paramReader.paramKey$;
2328
+ this.idFromParams$ = this._paramReader.paramValue$;
2329
+ this.id$ = this._paramReader.value$;
2255
2330
  }
2256
2331
  ngOnInit() {
2257
2332
  this.sub = this.dbxFirebaseDocumentStoreDirective.store.setId(this.idFromParams$);
2333
+ this._paramRedirect.setUseDefaultFilter((value) => {
2334
+ return this._useDefaultParam$.pipe(switchMap((x) => x(value)));
2335
+ });
2336
+ this._paramRedirect.init();
2258
2337
  }
2259
2338
  ngOnDestroy() {
2260
2339
  super.ngOnDestroy();
2261
- this._idParamKey.complete();
2340
+ this._paramReader.destroy();
2341
+ this._paramRedirect.destroy();
2342
+ this._useDefaultParam.complete();
2262
2343
  }
2263
2344
  // MARK: Input
2264
2345
  get idParam() {
2265
- return this._idParamKey.value;
2346
+ return this._paramReader.paramKey;
2266
2347
  }
2267
2348
  set idParam(idParam) {
2268
- this._idParamKey.next(idParam || DBX_FIREBASE_ROUTER_SYNC_DEFAULT_ID_PARAM_KEY);
2349
+ this._paramReader.paramKey = idParam;
2350
+ }
2351
+ set dbxFirebaseDocumentStoreRouteIdDefault(defaultValue) {
2352
+ this._paramReader.setDefaultValue(defaultValue);
2353
+ }
2354
+ /**
2355
+ * Whether or not to enable the redirection. Is enabled by default.
2356
+ */
2357
+ set dbxFirebaseDocumentStoreRouteIdDefaultRedirect(redirect) {
2358
+ this._paramRedirect.enabled = redirect !== false; // true by default
2359
+ }
2360
+ set dbxFirebaseDocumentStoreRouteIdDefaultDecision(decider) {
2361
+ this._useDefaultParam.next(decider);
2269
2362
  }
2270
2363
  }
2271
2364
  DbxFirebaseDocumentStoreRouteIdDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: DbxFirebaseDocumentStoreRouteIdDirective, deps: [{ token: DbxFirebaseDocumentStoreDirective, host: true }, { token: i3$1.DbxRouterService }], target: i0.ɵɵFactoryTarget.Directive });
2272
- DbxFirebaseDocumentStoreRouteIdDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.2", type: DbxFirebaseDocumentStoreRouteIdDirective, selector: "[dbxFirebaseDocumentStoreRouteId]", inputs: { idParam: ["dbxFirebaseDocumentStoreRouteId", "idParam"] }, usesInheritance: true, ngImport: i0 });
2365
+ DbxFirebaseDocumentStoreRouteIdDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.2", type: DbxFirebaseDocumentStoreRouteIdDirective, selector: "[dbxFirebaseDocumentStoreRouteId]", inputs: { idParam: ["dbxFirebaseDocumentStoreRouteId", "idParam"], dbxFirebaseDocumentStoreRouteIdDefault: "dbxFirebaseDocumentStoreRouteIdDefault", dbxFirebaseDocumentStoreRouteIdDefaultRedirect: "dbxFirebaseDocumentStoreRouteIdDefaultRedirect", dbxFirebaseDocumentStoreRouteIdDefaultDecision: "dbxFirebaseDocumentStoreRouteIdDefaultDecision" }, usesInheritance: true, ngImport: i0 });
2273
2366
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: DbxFirebaseDocumentStoreRouteIdDirective, decorators: [{
2274
2367
  type: Directive,
2275
2368
  args: [{
@@ -2282,6 +2375,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
2282
2375
  }, propDecorators: { idParam: [{
2283
2376
  type: Input,
2284
2377
  args: ['dbxFirebaseDocumentStoreRouteId']
2378
+ }], dbxFirebaseDocumentStoreRouteIdDefault: [{
2379
+ type: Input
2380
+ }], dbxFirebaseDocumentStoreRouteIdDefaultRedirect: [{
2381
+ type: Input
2382
+ }], dbxFirebaseDocumentStoreRouteIdDefaultDecision: [{
2383
+ type: Input
2285
2384
  }] } });
2286
2385
 
2287
2386
  class DbxFirebaseModelStoreModule {
@@ -2669,5 +2768,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
2669
2768
  * Generated bundle index. Do not edit.
2670
2769
  */
2671
2770
 
2672
- export { AbstractConfiguredDbxFirebaseLoginButtonDirective, AbstractDbxFirebaseCollectionStore, AbstractDbxFirebaseCollectionWithParentStore, AbstractDbxFirebaseDocumentStore, AbstractDbxFirebaseDocumentWithParentStore, DBX_FIREBASE_MODEL_DOES_NOT_EXIST_ERROR, DBX_FIREBASE_OPTIONS_TOKEN, DBX_FIREBASE_ROUTER_SYNC_DEFAULT_ID_PARAM_KEY, DBX_FIRESTORE_CONTEXT_TOKEN, DEFAULT_CONFIGURED_DBX_FIREBASE_LOGIN_BUTTON_TEMPLATE, DEFAULT_DBX_FIREBASE_AUTH_SERVICE_DELEGATE, DEFAULT_FIREBASE_AUTH_LOGIN_PASSWORD_CONFIG, DEFAULT_FIREBASE_AUTH_LOGIN_PASSWORD_CONFIG_TOKEN, DEFAULT_FIREBASE_AUTH_LOGIN_PROVIDERS_TOKEN, DEFAULT_FIREBASE_AUTH_LOGIN_TERMS_COMPONENT_CLASS_TOKEN, DEFAULT_FIREBASE_LOGIN_METHOD_CATEGORY, DbxFirebaseAppCheckHttpInterceptor, DbxFirebaseAuthContextInfo, DbxFirebaseAuthLoginService, DbxFirebaseAuthModule, DbxFirebaseAuthService, DbxFirebaseAuthServiceDelegate, DbxFirebaseCollectionChangeDirective, DbxFirebaseCollectionHasChangeDirective, DbxFirebaseCollectionListDirective, DbxFirebaseCollectionLoaderInstance, DbxFirebaseCollectionStoreDirective, DbxFirebaseCollectionWithParentStoreDirective, DbxFirebaseDefaultAppCheckProviderModule, DbxFirebaseDefaultAuthProviderModule, DbxFirebaseDefaultFirebaseProvidersModule, DbxFirebaseDefaultFirestoreProviderModule, DbxFirebaseDefaultFunctionsProviderModule, DbxFirebaseDefaultStorageProviderModule, DbxFirebaseDocumentAuthIdDirective, DbxFirebaseDocumentStoreDirective, DbxFirebaseDocumentStoreRouteIdDirective, DbxFirebaseEmailFormComponent, DbxFirebaseEmailRecoveryFormComponent, DbxFirebaseEmulatorModule, DbxFirebaseFirestoreCollectionModule, DbxFirebaseFunctionsModule, DbxFirebaseLoginAnonymousComponent, DbxFirebaseLoginAppleComponent, DbxFirebaseLoginButtonComponent, DbxFirebaseLoginButtonContainerComponent, DbxFirebaseLoginComponent, DbxFirebaseLoginContext, DbxFirebaseLoginContextBackButtonComponent, DbxFirebaseLoginContextDirective, DbxFirebaseLoginEmailComponent, DbxFirebaseLoginEmailContentComponent, DbxFirebaseLoginFacebookComponent, DbxFirebaseLoginGitHubComponent, DbxFirebaseLoginGoogleComponent, DbxFirebaseLoginListComponent, DbxFirebaseLoginMicrosoftComponent, DbxFirebaseLoginModule, DbxFirebaseLoginModuleRootConfig, DbxFirebaseLoginTermsComponent, DbxFirebaseLoginTermsSimpleComponent, DbxFirebaseLoginTwitterComponent, DbxFirebaseModelModule, DbxFirebaseModelStoreModule, DbxFirebaseModule, DbxFirebaseParsedEmulatorsConfig, DbxFirebaseRegisterComponent, DbxFirebaseRegisterEmailComponent, DbxFirestoreContextService, FIREBASE_AUTH_NETWORK_REQUEST_ERROR, FIREBASE_AUTH_USER_NOT_FOUND_ERROR, OAUTH_FIREBASE_LOGIN_METHOD_CATEGORY, authRolesObsWithClaimsService, authUserInfoFromAuthUser, authUserStateFromFirebaseAuthService, dbxFirebaseCollectionLoaderInstance, dbxFirebaseCollectionLoaderInstanceWithCollection, defaultDbxFirebaseAuthServiceDelegateWithClaimsService, defaultFirebaseAuthLoginProvidersFactory, enableAppCheckDebugTokenGeneration, firebaseAuthErrorToReadableError, firebaseAuthTokenFromUser, firebaseDocumentStoreCreateFunction, firebaseDocumentStoreDeleteFunction, firebaseDocumentStoreUpdateFunction, modelDoesNotExistError, provideDbxFirebaseCollectionStoreDirective, provideDbxFirebaseCollectionWithParentStoreDirective, provideDbxFirebaseDocumentStoreDirective, readValueFromIdToken, setParentStoreEffect };
2771
+ export { AbstractConfiguredDbxFirebaseLoginButtonDirective, AbstractDbxFirebaseCollectionStore, AbstractDbxFirebaseCollectionWithParentStore, AbstractDbxFirebaseDocumentStore, AbstractDbxFirebaseDocumentWithParentStore, DBX_FIREBASE_MODEL_DOES_NOT_EXIST_ERROR, DBX_FIREBASE_OPTIONS_TOKEN, DBX_FIREBASE_ROUTER_SYNC_DEFAULT_ID_PARAM_KEY, DBX_FIREBASE_ROUTER_SYNC_USE_DEFAULT_PARAM_VALUE, DBX_FIRESTORE_CONTEXT_TOKEN, DEFAULT_CONFIGURED_DBX_FIREBASE_LOGIN_BUTTON_TEMPLATE, DEFAULT_DBX_FIREBASE_AUTH_SERVICE_DELEGATE, DEFAULT_FIREBASE_AUTH_LOGIN_PASSWORD_CONFIG, DEFAULT_FIREBASE_AUTH_LOGIN_PASSWORD_CONFIG_TOKEN, DEFAULT_FIREBASE_AUTH_LOGIN_PROVIDERS_TOKEN, DEFAULT_FIREBASE_AUTH_LOGIN_TERMS_COMPONENT_CLASS_TOKEN, DEFAULT_FIREBASE_LOGIN_METHOD_CATEGORY, DbxFirebaseAppCheckHttpInterceptor, DbxFirebaseAuthContextInfo, DbxFirebaseAuthLoginService, DbxFirebaseAuthModule, DbxFirebaseAuthService, DbxFirebaseAuthServiceDelegate, DbxFirebaseCollectionChangeDirective, DbxFirebaseCollectionHasChangeDirective, DbxFirebaseCollectionListDirective, DbxFirebaseCollectionLoaderInstance, DbxFirebaseCollectionStoreDirective, DbxFirebaseCollectionWithParentStoreDirective, DbxFirebaseDefaultAppCheckProviderModule, DbxFirebaseDefaultAuthProviderModule, DbxFirebaseDefaultFirebaseProvidersModule, DbxFirebaseDefaultFirestoreProviderModule, DbxFirebaseDefaultFunctionsProviderModule, DbxFirebaseDefaultStorageProviderModule, DbxFirebaseDocumentAuthIdDirective, DbxFirebaseDocumentLoaderInstance, DbxFirebaseDocumentStoreDirective, DbxFirebaseDocumentStoreRouteIdDirective, DbxFirebaseEmailFormComponent, DbxFirebaseEmailRecoveryFormComponent, DbxFirebaseEmulatorModule, DbxFirebaseFirestoreCollectionModule, DbxFirebaseFunctionsModule, DbxFirebaseLoginAnonymousComponent, DbxFirebaseLoginAppleComponent, DbxFirebaseLoginButtonComponent, DbxFirebaseLoginButtonContainerComponent, DbxFirebaseLoginComponent, DbxFirebaseLoginContext, DbxFirebaseLoginContextBackButtonComponent, DbxFirebaseLoginContextDirective, DbxFirebaseLoginEmailComponent, DbxFirebaseLoginEmailContentComponent, DbxFirebaseLoginFacebookComponent, DbxFirebaseLoginGitHubComponent, DbxFirebaseLoginGoogleComponent, DbxFirebaseLoginListComponent, DbxFirebaseLoginMicrosoftComponent, DbxFirebaseLoginModule, DbxFirebaseLoginModuleRootConfig, DbxFirebaseLoginTermsComponent, DbxFirebaseLoginTermsSimpleComponent, DbxFirebaseLoginTwitterComponent, DbxFirebaseModelModule, DbxFirebaseModelStoreModule, DbxFirebaseModule, DbxFirebaseParsedEmulatorsConfig, DbxFirebaseRegisterComponent, DbxFirebaseRegisterEmailComponent, DbxFirestoreContextService, DbxLimitedFirebaseDocumentLoaderInstance, FIREBASE_AUTH_NETWORK_REQUEST_ERROR, FIREBASE_AUTH_USER_NOT_FOUND_ERROR, OAUTH_FIREBASE_LOGIN_METHOD_CATEGORY, authRolesObsWithClaimsService, authUserInfoFromAuthUser, authUserStateFromFirebaseAuthService, dbxFirebaseCollectionLoaderInstance, dbxFirebaseCollectionLoaderInstanceWithCollection, dbxFirebaseDocumentLoaderInstance, dbxFirebaseDocumentLoaderInstanceWithAccessor, dbxLimitedFirebaseDocumentLoaderInstance, dbxLimitedFirebaseDocumentLoaderInstanceWithAccessor, defaultDbxFirebaseAuthServiceDelegateWithClaimsService, defaultFirebaseAuthLoginProvidersFactory, enableAppCheckDebugTokenGeneration, firebaseAuthErrorToReadableError, firebaseAuthTokenFromUser, firebaseDocumentStoreCreateFunction, firebaseDocumentStoreDeleteFunction, firebaseDocumentStoreUpdateFunction, modelDoesNotExistError, provideDbxFirebaseCollectionStoreDirective, provideDbxFirebaseCollectionWithParentStoreDirective, provideDbxFirebaseDocumentStoreDirective, readValueFromIdToken, setParentStoreEffect };
2673
2772
  //# sourceMappingURL=dereekb-dbx-firebase.mjs.map