@dereekb/dbx-firebase 8.5.3 → 8.7.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/esm2020/lib/index.mjs +2 -1
- package/esm2020/lib/model/loader/collection.change.trigger.mjs +19 -6
- package/esm2020/lib/model/loader/collection.change.watcher.mjs +1 -1
- package/esm2020/lib/model/loader/collection.loader.instance.mjs +1 -1
- package/esm2020/lib/model/loader/collection.loader.mjs +1 -1
- package/esm2020/lib/model/store/store.collection.change.directive.mjs +3 -3
- package/esm2020/lib/model/store/store.collection.mjs +2 -1
- package/esm2020/lib/model/store/store.document.mjs +11 -8
- package/esm2020/lib/model/store/store.document.router.directive.mjs +13 -33
- package/esm2020/lib/router/id.param.redirect.mjs +60 -0
- package/esm2020/lib/router/index.mjs +2 -0
- package/fesm2015/dereekb-dbx-firebase.mjs +92 -37
- package/fesm2015/dereekb-dbx-firebase.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-firebase.mjs +92 -37
- package/fesm2020/dereekb-dbx-firebase.mjs.map +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/model/loader/collection.change.trigger.d.ts +30 -19
- package/lib/model/loader/collection.change.watcher.d.ts +6 -6
- package/lib/model/loader/collection.loader.d.ts +12 -9
- package/lib/model/loader/collection.loader.instance.d.ts +2 -6
- package/lib/model/store/store.collection.change.directive.d.ts +1 -1
- package/lib/model/store/store.collection.d.ts +3 -1
- package/lib/model/store/store.document.d.ts +7 -1
- package/lib/model/store/store.document.router.directive.d.ts +1 -7
- package/lib/router/id.param.redirect.d.ts +41 -0
- package/lib/router/index.d.ts +1 -0
- package/package.json +6 -6
|
@@ -31,7 +31,7 @@ import { provideFunctions, getFunctions, connectFunctionsEmulator, Functions } f
|
|
|
31
31
|
import * as i1$3 from '@angular/fire/firestore';
|
|
32
32
|
import { provideFirestore, getFirestore, connectFirestoreEmulator, enableIndexedDbPersistence, Firestore } from '@angular/fire/firestore';
|
|
33
33
|
import { HTTP_INTERCEPTORS } from '@angular/common/http';
|
|
34
|
-
import { firebaseFirestoreContextFactory, iterationQueryDocChangeWatcher, firebaseQueryItemAccumulator, firestoreModelKeysFromDocuments, firestoreModelIdsFromDocuments, documentReferencesFromDocuments, getDocumentSnapshots, getDataFromDocumentSnapshots, streamDocumentSnapshots, dataFromDocumentSnapshots, loadDocumentsForKeys, loadDocumentsForDocumentReferences, loadDocumentsForIds, documentDataWithId } from '@dereekb/firebase';
|
|
34
|
+
import { firebaseFirestoreContextFactory, iterationQueryDocChangeWatcher, firebaseQueryItemAccumulator, firestoreModelKeysFromDocuments, firestoreModelIdsFromDocuments, documentReferencesFromDocuments, getDocumentSnapshots, getDataFromDocumentSnapshots, streamDocumentSnapshots, dataFromDocumentSnapshots, loadDocumentsForKeys, loadDocumentsForDocumentReferences, loadDocumentsForIds, firestoreModelIdsFromKey, firestoreModelKeyPartPairs, firestoreModelKeyPairObject, documentDataWithId } from '@dereekb/firebase';
|
|
35
35
|
|
|
36
36
|
/**
|
|
37
37
|
* Enables debug token generation for AppCheck by setting FIREBASE_APPCHECK_DEBUG_TOKEN in the browser's self/window.
|
|
@@ -1952,23 +1952,36 @@ class DbxFirebaseCollectionChangeTriggerInstance {
|
|
|
1952
1952
|
* @param triggerFunction
|
|
1953
1953
|
* @returns
|
|
1954
1954
|
*/
|
|
1955
|
-
function
|
|
1956
|
-
return
|
|
1955
|
+
function dbxFirebaseCollectionChangeTriggerForStore(store, triggerFunction) {
|
|
1956
|
+
return dbxFirebaseCollectionChangeTrigger({
|
|
1957
1957
|
watcher: dbxFirebaseCollectionChangeWatcher(store, 'auto'),
|
|
1958
1958
|
destroyWatcherOnDestroy: true,
|
|
1959
1959
|
triggerFunction
|
|
1960
1960
|
});
|
|
1961
1961
|
}
|
|
1962
|
-
function
|
|
1963
|
-
return
|
|
1962
|
+
function dbxFirebaseCollectionChangeTriggerForWatcher(watcher, triggerFunction) {
|
|
1963
|
+
return dbxFirebaseCollectionChangeTrigger({
|
|
1964
1964
|
watcher,
|
|
1965
1965
|
destroyWatcherOnDestroy: false,
|
|
1966
1966
|
triggerFunction
|
|
1967
1967
|
});
|
|
1968
1968
|
}
|
|
1969
|
-
function
|
|
1969
|
+
function dbxFirebaseCollectionChangeTrigger(config) {
|
|
1970
1970
|
return new DbxFirebaseCollectionChangeTriggerInstance(config);
|
|
1971
1971
|
}
|
|
1972
|
+
// MARK: Compat
|
|
1973
|
+
/**
|
|
1974
|
+
* @deprecated
|
|
1975
|
+
*/
|
|
1976
|
+
const dbxFirebaseCollectionChangeTriggerInstance = dbxFirebaseCollectionChangeTrigger;
|
|
1977
|
+
/**
|
|
1978
|
+
* @deprecated
|
|
1979
|
+
*/
|
|
1980
|
+
const dbxFirebaseCollectionChangeTriggerInstanceForStore = dbxFirebaseCollectionChangeTriggerForStore;
|
|
1981
|
+
/**
|
|
1982
|
+
* @deprecated
|
|
1983
|
+
*/
|
|
1984
|
+
const dbxFirebaseCollectionChangeTriggerInstanceForWatcher = dbxFirebaseCollectionChangeTriggerForWatcher;
|
|
1972
1985
|
|
|
1973
1986
|
/**
|
|
1974
1987
|
* DbxFirebaseModelLoader implementation within an instance.
|
|
@@ -2190,7 +2203,7 @@ class DbxFirebaseCollectionChangeDirective {
|
|
|
2190
2203
|
constructor(dbxFirebaseCollectionStoreDirective) {
|
|
2191
2204
|
this.dbxFirebaseCollectionStoreDirective = dbxFirebaseCollectionStoreDirective;
|
|
2192
2205
|
this._watcher = dbxFirebaseCollectionChangeWatcher(this.dbxFirebaseCollectionStoreDirective.store);
|
|
2193
|
-
this._trigger =
|
|
2206
|
+
this._trigger = dbxFirebaseCollectionChangeTriggerForWatcher(this._watcher, () => this.restart());
|
|
2194
2207
|
this.mode$ = this._watcher.mode$;
|
|
2195
2208
|
this.event$ = this._watcher.event$;
|
|
2196
2209
|
this.hasChangeAvailable$ = this._watcher.hasChangeAvailable$;
|
|
@@ -2373,20 +2386,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
2373
2386
|
type: Host
|
|
2374
2387
|
}] }]; } });
|
|
2375
2388
|
|
|
2376
|
-
const
|
|
2377
|
-
const
|
|
2389
|
+
const DBX_FIREBASE_ID_ROUTER_PARAM_DEFAULT_ID_PARAM_KEY = 'id';
|
|
2390
|
+
const DBX_FIREBASE_ID_ROUTER_PARAM_DEFAULT_USE_PARAM_VALUE = '0';
|
|
2378
2391
|
/**
|
|
2379
|
-
*
|
|
2392
|
+
* DbxFirebaseIdRouteParamRedirect instance
|
|
2380
2393
|
*/
|
|
2381
|
-
class
|
|
2382
|
-
constructor(
|
|
2383
|
-
super();
|
|
2384
|
-
this.dbxFirebaseDocumentStoreDirective = dbxFirebaseDocumentStoreDirective;
|
|
2394
|
+
class DbxFirebaseIdRouteParamRedirectInstance {
|
|
2395
|
+
constructor(dbxRouterService) {
|
|
2385
2396
|
this.dbxRouterService = dbxRouterService;
|
|
2386
|
-
this._paramReader = new DbxRouteParamReaderInstance(this.dbxRouterService,
|
|
2397
|
+
this._paramReader = new DbxRouteParamReaderInstance(this.dbxRouterService, DBX_FIREBASE_ID_ROUTER_PARAM_DEFAULT_ID_PARAM_KEY);
|
|
2387
2398
|
this._paramRedirect = new DbxRouteParamDefaultRedirectInstance(this._paramReader);
|
|
2388
|
-
this.
|
|
2389
|
-
this._useDefaultParam$ = this.
|
|
2399
|
+
this._useDefaultParamDecider = new BehaviorSubject(DBX_FIREBASE_ID_ROUTER_PARAM_DEFAULT_USE_PARAM_VALUE);
|
|
2400
|
+
this._useDefaultParam$ = this._useDefaultParamDecider.pipe(map((x) => {
|
|
2390
2401
|
let result;
|
|
2391
2402
|
if (typeof x === 'string') {
|
|
2392
2403
|
result = (value) => of(value === x);
|
|
@@ -2396,41 +2407,81 @@ class DbxFirebaseDocumentStoreRouteIdDirective extends AbstractSubscriptionDirec
|
|
|
2396
2407
|
}
|
|
2397
2408
|
return result;
|
|
2398
2409
|
}), shareReplay(1));
|
|
2399
|
-
this.
|
|
2400
|
-
this.
|
|
2401
|
-
this.
|
|
2410
|
+
this.paramValue$ = this._paramReader.paramValue$;
|
|
2411
|
+
this.defaultValue$ = this._paramReader.defaultValue$;
|
|
2412
|
+
this.value$ = this._paramReader.value$;
|
|
2413
|
+
this.idFromParams$ = this.paramValue$;
|
|
2414
|
+
this.id$ = this.value$;
|
|
2402
2415
|
}
|
|
2403
|
-
|
|
2404
|
-
this.sub = this.dbxFirebaseDocumentStoreDirective.store.setId(this.idFromParams$);
|
|
2416
|
+
init() {
|
|
2405
2417
|
this._paramRedirect.setUseDefaultFilter((value) => {
|
|
2406
2418
|
return this._useDefaultParam$.pipe(switchMap((x) => x(value)));
|
|
2407
2419
|
});
|
|
2408
2420
|
this._paramRedirect.init();
|
|
2409
2421
|
}
|
|
2410
|
-
|
|
2411
|
-
super.ngOnDestroy();
|
|
2422
|
+
destroy() {
|
|
2412
2423
|
this._paramReader.destroy();
|
|
2413
2424
|
this._paramRedirect.destroy();
|
|
2414
|
-
this.
|
|
2425
|
+
this._useDefaultParamDecider.complete();
|
|
2426
|
+
}
|
|
2427
|
+
get paramKey() {
|
|
2428
|
+
return this._paramReader.paramKey;
|
|
2429
|
+
}
|
|
2430
|
+
set paramKey(paramKey) {
|
|
2431
|
+
this._paramReader.paramKey = paramKey;
|
|
2432
|
+
}
|
|
2433
|
+
setDefaultValue(defaultValue) {
|
|
2434
|
+
this._paramReader.setDefaultValue(defaultValue);
|
|
2435
|
+
}
|
|
2436
|
+
setRedirectEnabled(redirect) {
|
|
2437
|
+
this._paramRedirect.enabled = redirect !== false;
|
|
2438
|
+
}
|
|
2439
|
+
setDecider(decider) {
|
|
2440
|
+
this._useDefaultParamDecider.next(decider);
|
|
2441
|
+
}
|
|
2442
|
+
}
|
|
2443
|
+
function dbxFirebaseIdRouteParamRedirect(dbxRouterService) {
|
|
2444
|
+
return new DbxFirebaseIdRouteParamRedirectInstance(dbxRouterService);
|
|
2445
|
+
}
|
|
2446
|
+
|
|
2447
|
+
/**
|
|
2448
|
+
* Used for synchronizing the document store id to the param of the route.
|
|
2449
|
+
*/
|
|
2450
|
+
class DbxFirebaseDocumentStoreRouteIdDirective extends AbstractSubscriptionDirective {
|
|
2451
|
+
constructor(dbxFirebaseDocumentStoreDirective, dbxRouterService) {
|
|
2452
|
+
super();
|
|
2453
|
+
this.dbxFirebaseDocumentStoreDirective = dbxFirebaseDocumentStoreDirective;
|
|
2454
|
+
this.dbxRouterService = dbxRouterService;
|
|
2455
|
+
this._redirectInstance = dbxFirebaseIdRouteParamRedirect(this.dbxRouterService);
|
|
2456
|
+
this.idFromParams$ = this._redirectInstance.paramValue$;
|
|
2457
|
+
this.id$ = this._redirectInstance.value$;
|
|
2458
|
+
}
|
|
2459
|
+
ngOnInit() {
|
|
2460
|
+
this.sub = this.dbxFirebaseDocumentStoreDirective.store.setId(this.idFromParams$);
|
|
2461
|
+
this._redirectInstance.init();
|
|
2462
|
+
}
|
|
2463
|
+
ngOnDestroy() {
|
|
2464
|
+
super.ngOnDestroy();
|
|
2465
|
+
this._redirectInstance.destroy();
|
|
2415
2466
|
}
|
|
2416
2467
|
// MARK: Input
|
|
2417
2468
|
get idParam() {
|
|
2418
|
-
return this.
|
|
2469
|
+
return this._redirectInstance.paramKey;
|
|
2419
2470
|
}
|
|
2420
2471
|
set idParam(idParam) {
|
|
2421
|
-
this.
|
|
2472
|
+
this._redirectInstance.paramKey = idParam;
|
|
2422
2473
|
}
|
|
2423
2474
|
set dbxFirebaseDocumentStoreRouteIdDefault(defaultValue) {
|
|
2424
|
-
this.
|
|
2475
|
+
this._redirectInstance.setDefaultValue(defaultValue);
|
|
2425
2476
|
}
|
|
2426
2477
|
/**
|
|
2427
2478
|
* Whether or not to enable the redirection. Is enabled by default.
|
|
2428
2479
|
*/
|
|
2429
2480
|
set dbxFirebaseDocumentStoreRouteIdDefaultRedirect(redirect) {
|
|
2430
|
-
this.
|
|
2481
|
+
this._redirectInstance.setRedirectEnabled(redirect !== false); // true by default
|
|
2431
2482
|
}
|
|
2432
2483
|
set dbxFirebaseDocumentStoreRouteIdDefaultDecision(decider) {
|
|
2433
|
-
this.
|
|
2484
|
+
this._redirectInstance.setDecider(decider);
|
|
2434
2485
|
}
|
|
2435
2486
|
}
|
|
2436
2487
|
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 });
|
|
@@ -2498,6 +2549,7 @@ class AbstractDbxFirebaseCollectionStore extends LockSetComponentStore {
|
|
|
2498
2549
|
itemsPerPage: x.itemsPerPage,
|
|
2499
2550
|
constraints: x.constraints
|
|
2500
2551
|
})))), cleanupDestroyable(), distinctUntilChanged(), shareReplay(1));
|
|
2552
|
+
this.constraints$ = this.loader$.pipe(switchMap((x) => x.constraints$));
|
|
2501
2553
|
this.firestoreIteration$ = this.loader$.pipe(switchMap((x) => x.firestoreIteration$));
|
|
2502
2554
|
this.queryChangeWatcher$ = this.loader$.pipe(switchMap((x) => x.queryChangeWatcher$));
|
|
2503
2555
|
this.accumulator$ = this.loader$.pipe(switchMap((x) => x.accumulator$));
|
|
@@ -2552,9 +2604,12 @@ class AbstractDbxFirebaseDocumentStore extends LockSetComponentStore {
|
|
|
2552
2604
|
}), distinctUntilChanged(), shareReplay(1));
|
|
2553
2605
|
this.document$ = this.currentDocument$.pipe(filterMaybe(), distinctUntilChanged(), shareReplay(1));
|
|
2554
2606
|
this.documentLoadingState$ = this.currentDocument$.pipe(map((x) => (x ? successResult(x) : beginLoading())), shareReplay(1));
|
|
2555
|
-
this.id$ = this.document$.pipe(map((x) => x.id), shareReplay());
|
|
2556
|
-
this.key$ = this.document$.pipe(map((x) => x.key), shareReplay());
|
|
2557
|
-
this.
|
|
2607
|
+
this.id$ = this.document$.pipe(map((x) => x.id), shareReplay(1));
|
|
2608
|
+
this.key$ = this.document$.pipe(map((x) => x.key), shareReplay(1));
|
|
2609
|
+
this.keyModelIds$ = this.key$.pipe(map(firestoreModelIdsFromKey), shareReplay(1));
|
|
2610
|
+
this.keyPairs$ = this.key$.pipe(map(firestoreModelKeyPartPairs), filterMaybe(), shareReplay(1));
|
|
2611
|
+
this.keyPairObject$ = this.key$.pipe(map(firestoreModelKeyPairObject), filterMaybe(), shareReplay(1));
|
|
2612
|
+
this.ref$ = this.document$.pipe(map((x) => x.documentRef), shareReplay(1));
|
|
2558
2613
|
this.snapshot$ = this.document$.pipe(switchMap((x) => x.accessor.stream()), shareReplay(1));
|
|
2559
2614
|
this.snapshotLoadingState$ = this.currentDocument$.pipe(switchMap(() => loadingStateFromObs(this.snapshot$)), shareReplay(1));
|
|
2560
2615
|
this.currentData$ = this.document$.pipe(switchMap((x) => x.accessor.stream().pipe(map((y) => documentDataWithId(y)))), shareReplay(1));
|
|
@@ -2585,15 +2640,15 @@ class AbstractDbxFirebaseDocumentStore extends LockSetComponentStore {
|
|
|
2585
2640
|
/**
|
|
2586
2641
|
* Sets the id of the document to load.
|
|
2587
2642
|
*/
|
|
2588
|
-
this.setId = this.updater((state, id) => (id ? { ...state, id, ref: undefined } : { ...state, id }));
|
|
2643
|
+
this.setId = this.updater((state, id) => (id ? { ...state, id, key: undefined, ref: undefined } : { ...state, id }));
|
|
2589
2644
|
/**
|
|
2590
2645
|
* Sets the key of the document to load.
|
|
2591
2646
|
*/
|
|
2592
|
-
this.setKey = this.updater((state, key) => (key ? { ...state, key, ref: undefined } : { ...state, key }));
|
|
2647
|
+
this.setKey = this.updater((state, key) => (key ? { ...state, key, id: undefined, ref: undefined } : { ...state, key }));
|
|
2593
2648
|
/**
|
|
2594
2649
|
* Sets the ref of the document to load.
|
|
2595
2650
|
*/
|
|
2596
|
-
this.setRef = this.updater((state, ref) => (ref ? { ...state, id: undefined, ref } : { ...state, ref }));
|
|
2651
|
+
this.setRef = this.updater((state, ref) => (ref ? { ...state, key: undefined, id: undefined, ref } : { ...state, ref }));
|
|
2597
2652
|
this.clearRefs = this.updater((state) => ({ ...state, id: undefined, key: undefined, ref: undefined }));
|
|
2598
2653
|
this.setFirestoreCollection = this.updater((state, firestoreCollection) => ({ ...state, firestoreCollection }));
|
|
2599
2654
|
this.setFirestoreCollectionLike = this.updater((state, firestoreCollectionLike) => ({ ...state, firestoreCollectionLike }));
|
|
@@ -2842,5 +2897,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
2842
2897
|
* Generated bundle index. Do not edit.
|
|
2843
2898
|
*/
|
|
2844
2899
|
|
|
2845
|
-
export { AbstractConfiguredDbxFirebaseLoginButtonDirective, AbstractDbxFirebaseCollectionStore, AbstractDbxFirebaseCollectionWithParentStore, AbstractDbxFirebaseDocumentStore, AbstractDbxFirebaseDocumentWithParentStore,
|
|
2900
|
+
export { AbstractConfiguredDbxFirebaseLoginButtonDirective, AbstractDbxFirebaseCollectionStore, AbstractDbxFirebaseCollectionWithParentStore, AbstractDbxFirebaseDocumentStore, AbstractDbxFirebaseDocumentWithParentStore, DBX_FIREBASE_ID_ROUTER_PARAM_DEFAULT_ID_PARAM_KEY, DBX_FIREBASE_ID_ROUTER_PARAM_DEFAULT_USE_PARAM_VALUE, DBX_FIREBASE_MODEL_DOES_NOT_EXIST_ERROR, DBX_FIREBASE_OPTIONS_TOKEN, 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_COLLECTION_CHANGE_TRIGGER_FUNCTION, DEFAULT_FIREBASE_LOGIN_METHOD_CATEGORY, DbxFirebaseAppCheckHttpInterceptor, DbxFirebaseAuthContextInfo, DbxFirebaseAuthLoginService, DbxFirebaseAuthModule, DbxFirebaseAuthService, DbxFirebaseAuthServiceDelegate, DbxFirebaseCollectionChangeDirective, DbxFirebaseCollectionChangeTriggerInstance, DbxFirebaseCollectionChangeWatcherInstance, DbxFirebaseCollectionHasChangeDirective, DbxFirebaseCollectionListDirective, DbxFirebaseCollectionLoaderInstance, DbxFirebaseCollectionStoreDirective, DbxFirebaseCollectionWithParentStoreDirective, DbxFirebaseDefaultAppCheckProviderModule, DbxFirebaseDefaultAuthProviderModule, DbxFirebaseDefaultFirebaseProvidersModule, DbxFirebaseDefaultFirestoreProviderModule, DbxFirebaseDefaultFunctionsProviderModule, DbxFirebaseDefaultStorageProviderModule, DbxFirebaseDocumentAuthIdDirective, DbxFirebaseDocumentLoaderInstance, DbxFirebaseDocumentStoreDirective, DbxFirebaseDocumentStoreRouteIdDirective, DbxFirebaseEmailFormComponent, DbxFirebaseEmailRecoveryFormComponent, DbxFirebaseEmulatorModule, DbxFirebaseFirestoreCollectionModule, DbxFirebaseFunctionsModule, DbxFirebaseIdRouteParamRedirectInstance, 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, dbxFirebaseCollectionChangeTrigger, dbxFirebaseCollectionChangeTriggerForStore, dbxFirebaseCollectionChangeTriggerForWatcher, dbxFirebaseCollectionChangeTriggerInstance, dbxFirebaseCollectionChangeTriggerInstanceForStore, dbxFirebaseCollectionChangeTriggerInstanceForWatcher, dbxFirebaseCollectionChangeWatcher, dbxFirebaseCollectionLoaderInstance, dbxFirebaseCollectionLoaderInstanceWithCollection, dbxFirebaseDocumentLoaderInstance, dbxFirebaseDocumentLoaderInstanceWithAccessor, dbxFirebaseIdRouteParamRedirect, dbxLimitedFirebaseDocumentLoaderInstance, dbxLimitedFirebaseDocumentLoaderInstanceWithAccessor, defaultDbxFirebaseAuthServiceDelegateWithClaimsService, defaultFirebaseAuthLoginProvidersFactory, enableAppCheckDebugTokenGeneration, firebaseAuthErrorToReadableError, firebaseAuthTokenFromUser, firebaseDocumentStoreCreateFunction, firebaseDocumentStoreDeleteFunction, firebaseDocumentStoreUpdateFunction, modelDoesNotExistError, provideDbxFirebaseCollectionStoreDirective, provideDbxFirebaseCollectionWithParentStoreDirective, provideDbxFirebaseDocumentStoreDirective, readValueFromIdToken, setParentStoreEffect };
|
|
2846
2901
|
//# sourceMappingURL=dereekb-dbx-firebase.mjs.map
|