@dereekb/dbx-firebase 8.1.1 → 8.3.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.
@@ -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, 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.
@@ -214,8 +214,11 @@ class DbxFirebaseAuthService {
214
214
  this.onLogIn$ = loggedInObsFromIsLoggedIn(this.isLoggedIn$);
215
215
  this.onLogOut$ = loggedOutObsFromIsLoggedIn(this.isLoggedIn$);
216
216
  this.userIdentifier$ = this.currentAuthUser$.pipe(map((x) => authUserIdentifier(x === null || x === void 0 ? void 0 : x.uid)));
217
+ this.uid$ = this.userIdentifier$;
217
218
  this.idTokenResult$ = this.authUser$.pipe(switchMap((x) => x.getIdTokenResult()));
218
219
  this.claims$ = this.idTokenResult$.pipe(map((x) => x.claims));
220
+ this.currentAuthContextInfo$ = this.currentAuthUser$.pipe(switchMap((x) => this.loadAuthContextInfoForUser(x)), shareReplay(1));
221
+ this.authContextInfo$ = this.currentAuthContextInfo$.pipe(filterMaybe());
219
222
  delegate = delegate !== null && delegate !== void 0 ? delegate : DEFAULT_DBX_FIREBASE_AUTH_SERVICE_DELEGATE;
220
223
  this.authUserState$ = delegate.authUserStateObs(this).pipe(distinctUntilChanged(), shareReplay(1));
221
224
  this.authRoles$ = delegate.authRolesObs(this);
@@ -1963,7 +1966,7 @@ class DbxFirebaseCollectionLoaderInstance {
1963
1966
  set collection(collection) {
1964
1967
  this._collection.next(collection);
1965
1968
  }
1966
- // MARK: DbxFirebaseModelList
1969
+ // MARK: DbxFirebaseCollectionLoader
1967
1970
  next() {
1968
1971
  useFirst(this.firestoreIteration$, (x) => x.next());
1969
1972
  }
@@ -1984,6 +1987,59 @@ function dbxFirebaseCollectionLoaderInstanceWithCollection(collection) {
1984
1987
  return new DbxFirebaseCollectionLoaderInstance({ collection });
1985
1988
  }
1986
1989
 
1990
+ /**
1991
+ * DbxLimitedFirebaseDocumentLoader implementation within an instance.
1992
+ */
1993
+ class DbxLimitedFirebaseDocumentLoaderInstance {
1994
+ constructor(_initConfig) {
1995
+ this._initConfig = _initConfig;
1996
+ this.accessor = this._initConfig.accessor;
1997
+ this._documents = new BehaviorSubject(undefined);
1998
+ this._restart = new Subject();
1999
+ this.documents$ = this._documents.pipe(filterMaybe(), distinctUntilChanged());
2000
+ this.keys$ = this.documents$.pipe(map(firestoreModelKeysFromDocuments));
2001
+ this.ids$ = this.documents$.pipe(map(firestoreModelIdsFromDocuments));
2002
+ this.refs$ = this.documents$.pipe(map(documentReferencesFromDocuments));
2003
+ this.snapshots$ = this.documents$.pipe(switchMap((docs) => getDocumentSnapshots(docs)), shareReplay(1));
2004
+ this.data$ = this.snapshots$.pipe(map((snapshots) => getDataFromDocumentSnapshots(snapshots, true)), shareReplay(1));
2005
+ this.pageLoadingState$ = pageLoadingStateFromObs(this.data$, false);
2006
+ }
2007
+ destroy() {
2008
+ this._documents.complete();
2009
+ this._restart.complete();
2010
+ }
2011
+ restart() {
2012
+ this._restart.next();
2013
+ }
2014
+ setKeys(keys) {
2015
+ this.setDocuments(loadDocumentsForKeys(this.accessor, asArray(keys)));
2016
+ }
2017
+ setRefs(refs) {
2018
+ this.setDocuments(loadDocumentsForDocumentReferences(this.accessor, asArray(refs)));
2019
+ }
2020
+ setDocuments(docs) {
2021
+ this._documents.next(asArray(docs));
2022
+ }
2023
+ }
2024
+ function dbxLimitedFirebaseDocumentLoaderInstance(config) {
2025
+ return new DbxLimitedFirebaseDocumentLoaderInstance(config);
2026
+ }
2027
+ function dbxLimitedFirebaseDocumentLoaderInstanceWithAccessor(accessor) {
2028
+ return new DbxLimitedFirebaseDocumentLoaderInstance({ accessor });
2029
+ }
2030
+ // MARK: Full DbxFirebaseDocumentLoaderInstance
2031
+ class DbxFirebaseDocumentLoaderInstance extends DbxLimitedFirebaseDocumentLoaderInstance {
2032
+ setIds(ids) {
2033
+ this.setDocuments(loadDocumentsForIds(this.accessor, asArray(ids)));
2034
+ }
2035
+ }
2036
+ function dbxFirebaseDocumentLoaderInstance(config) {
2037
+ return new DbxFirebaseDocumentLoaderInstance(config);
2038
+ }
2039
+ function dbxFirebaseDocumentLoaderInstanceWithAccessor(accessor) {
2040
+ return new DbxFirebaseDocumentLoaderInstance({ accessor });
2041
+ }
2042
+
1987
2043
  /**
1988
2044
  * Abstract directive that contains a DbxFirebaseCollectionStore and provides an interface for communicating with other directives.
1989
2045
  */
@@ -2235,6 +2291,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
2235
2291
  } });
2236
2292
 
2237
2293
  const DBX_FIREBASE_ROUTER_SYNC_DEFAULT_ID_PARAM_KEY = 'id';
2294
+ const DBX_FIREBASE_ROUTER_SYNC_USE_DEFAULT_PARAM_VALUE = '0';
2238
2295
  /**
2239
2296
  * Used for synchronizing the document store id to the param of the route.
2240
2297
  */
@@ -2243,30 +2300,58 @@ class DbxFirebaseDocumentStoreRouteIdDirective extends AbstractSubscriptionDirec
2243
2300
  super();
2244
2301
  this.dbxFirebaseDocumentStoreDirective = dbxFirebaseDocumentStoreDirective;
2245
2302
  this.dbxRouterService = dbxRouterService;
2246
- this._idParamKey = new BehaviorSubject(DBX_FIREBASE_ROUTER_SYNC_DEFAULT_ID_PARAM_KEY);
2247
- this.idParamKey$ = this._idParamKey.asObservable();
2248
- this.idFromParams$ = combineLatest([this.idParamKey$, this.dbxRouterService.params$]).pipe(map(([key, params]) => {
2249
- var _a;
2250
- return (_a = params[key]) !== null && _a !== void 0 ? _a : undefined;
2251
- }), distinctUntilChanged(), shareReplay(1));
2303
+ this._paramReader = new DbxRouteParamReaderInstance(this.dbxRouterService, DBX_FIREBASE_ROUTER_SYNC_DEFAULT_ID_PARAM_KEY);
2304
+ this._paramRedirect = new DbxRouteParamDefaultRedirectInstance(this._paramReader);
2305
+ this._useDefaultParam = new BehaviorSubject(DBX_FIREBASE_ROUTER_SYNC_USE_DEFAULT_PARAM_VALUE);
2306
+ this._useDefaultParam$ = this._useDefaultParam.pipe(map((x) => {
2307
+ let result;
2308
+ if (typeof x === 'string') {
2309
+ result = (value) => of(value === x);
2310
+ }
2311
+ else {
2312
+ result = x;
2313
+ }
2314
+ return result;
2315
+ }), shareReplay(1));
2316
+ this.idParamKey$ = this._paramReader.paramKey$;
2317
+ this.idFromParams$ = this._paramReader.paramValue$;
2318
+ this.id$ = this._paramReader.value$;
2252
2319
  }
2253
2320
  ngOnInit() {
2254
2321
  this.sub = this.dbxFirebaseDocumentStoreDirective.store.setId(this.idFromParams$);
2322
+ this._paramRedirect.setUseDefaultFilter((value) => {
2323
+ return this._useDefaultParam$.pipe(switchMap((x) => x(value)));
2324
+ });
2325
+ this._paramRedirect.init();
2255
2326
  }
2256
2327
  ngOnDestroy() {
2257
2328
  super.ngOnDestroy();
2258
- this._idParamKey.complete();
2329
+ this._paramReader.destroy();
2330
+ this._paramRedirect.destroy();
2331
+ this._useDefaultParam.complete();
2259
2332
  }
2260
2333
  // MARK: Input
2261
2334
  get idParam() {
2262
- return this._idParamKey.value;
2335
+ return this._paramReader.paramKey;
2263
2336
  }
2264
2337
  set idParam(idParam) {
2265
- this._idParamKey.next(idParam || DBX_FIREBASE_ROUTER_SYNC_DEFAULT_ID_PARAM_KEY);
2338
+ this._paramReader.paramKey = idParam;
2339
+ }
2340
+ set dbxFirebaseDocumentStoreRouteIdDefault(defaultValue) {
2341
+ this._paramReader.setDefaultValue(defaultValue);
2342
+ }
2343
+ /**
2344
+ * Whether or not to enable the redirection. Is enabled by default.
2345
+ */
2346
+ set dbxFirebaseDocumentStoreRouteIdDefaultRedirect(redirect) {
2347
+ this._paramRedirect.enabled = redirect !== false; // true by default
2348
+ }
2349
+ set dbxFirebaseDocumentStoreRouteIdDefaultDecision(decider) {
2350
+ this._useDefaultParam.next(decider);
2266
2351
  }
2267
2352
  }
2268
2353
  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 });
2269
- DbxFirebaseDocumentStoreRouteIdDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.2", type: DbxFirebaseDocumentStoreRouteIdDirective, selector: "[dbxFirebaseDocumentStoreRouteId]", inputs: { idParam: ["dbxFirebaseDocumentStoreRouteId", "idParam"] }, usesInheritance: true, ngImport: i0 });
2354
+ 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 });
2270
2355
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: DbxFirebaseDocumentStoreRouteIdDirective, decorators: [{
2271
2356
  type: Directive,
2272
2357
  args: [{
@@ -2279,6 +2364,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
2279
2364
  }, propDecorators: { idParam: [{
2280
2365
  type: Input,
2281
2366
  args: ['dbxFirebaseDocumentStoreRouteId']
2367
+ }], dbxFirebaseDocumentStoreRouteIdDefault: [{
2368
+ type: Input
2369
+ }], dbxFirebaseDocumentStoreRouteIdDefaultRedirect: [{
2370
+ type: Input
2371
+ }], dbxFirebaseDocumentStoreRouteIdDefaultDecision: [{
2372
+ type: Input
2282
2373
  }] } });
2283
2374
 
2284
2375
  class DbxFirebaseModelStoreModule {
@@ -2666,5 +2757,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
2666
2757
  * Generated bundle index. Do not edit.
2667
2758
  */
2668
2759
 
2669
- 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 };
2760
+ 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 };
2670
2761
  //# sourceMappingURL=dereekb-dbx-firebase.mjs.map