@dereekb/dbx-firebase 5.1.0 → 5.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.
- package/esm2020/lib/auth/appcheck/appcheck.interceptor.mjs +5 -5
- package/esm2020/lib/auth/appcheck/appcheck.mjs +1 -1
- package/esm2020/lib/auth/login/login.service.mjs +1 -1
- package/esm2020/lib/auth/service/firebase.auth.service.delegate.mjs +22 -0
- package/esm2020/lib/auth/service/firebase.auth.service.mjs +4 -2
- package/esm2020/lib/auth/service/index.mjs +2 -1
- package/esm2020/lib/firebase/appcheck.mjs +1 -1
- package/esm2020/lib/firebase/firebase.module.mjs +1 -1
- package/esm2020/lib/model/loader/collection.loader.instance.mjs +1 -1
- package/esm2020/lib/model/store/index.mjs +2 -1
- package/esm2020/lib/model/store/store.collection.directive.mjs +1 -1
- package/esm2020/lib/model/store/store.collection.mjs +1 -1
- package/esm2020/lib/model/store/store.subcollection.directive.mjs +30 -0
- package/esm2020/lib/model/store/store.subcollection.document.mjs +21 -4
- package/esm2020/lib/model/store/store.subcollection.mjs +51 -9
- package/esm2020/lib/model/store/store.subcollection.rxjs.mjs +3 -22
- package/fesm2015/dereekb-dbx-firebase.mjs +132 -42
- package/fesm2015/dereekb-dbx-firebase.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-firebase.mjs +129 -42
- package/fesm2020/dereekb-dbx-firebase.mjs.map +1 -1
- package/lib/auth/service/firebase.auth.service.delegate.d.ts +14 -0
- package/lib/auth/service/index.d.ts +1 -0
- package/lib/model/loader/collection.loader.instance.d.ts +8 -8
- package/lib/model/store/index.d.ts +1 -0
- package/lib/model/store/store.collection.d.ts +7 -7
- package/lib/model/store/store.collection.directive.d.ts +1 -1
- package/lib/model/store/store.subcollection.d.ts +29 -9
- package/lib/model/store/store.subcollection.directive.d.ts +23 -0
- package/lib/model/store/store.subcollection.document.d.ts +9 -8
- package/lib/model/store/store.subcollection.rxjs.d.ts +7 -6
- package/package.json +6 -6
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { urlWithoutParameters, addToSet, removeFromSet, filterMaybeValues, mapIterable, asArray, excludeValuesFromArray, containsStringAnyCase, forEachKeyValue, readableError, isMaybeSo } from '@dereekb/util';
|
|
1
|
+
import { urlWithoutParameters, addToSet, removeFromSet, filterMaybeValues, mapIterable, asArray, excludeValuesFromArray, containsStringAnyCase, addToSetCopy, forEachKeyValue, readableError, isMaybeSo } from '@dereekb/util';
|
|
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';
|
|
@@ -11,7 +11,7 @@ import * as i2 from '@angular/material/icon';
|
|
|
11
11
|
import { MatIconModule } from '@angular/material/icon';
|
|
12
12
|
import * as i6 from '@angular/common';
|
|
13
13
|
import { CommonModule } from '@angular/common';
|
|
14
|
-
import { filterMaybe, isNot, SubscriptionObject, cleanupDestroyable, accumulatorFlattenPageListLoadingState, useFirst, successResult, beginLoading, loadingStateFromObs, errorResult, cleanup } from '@dereekb/rxjs';
|
|
14
|
+
import { filterMaybe, isNot, tapLog, SubscriptionObject, cleanupDestroyable, accumulatorFlattenPageListLoadingState, useFirst, successResult, beginLoading, loadingStateFromObs, errorResult, cleanup } from '@dereekb/rxjs';
|
|
15
15
|
import * as i3$1 from '@dereekb/dbx-core';
|
|
16
16
|
import { loggedInObsFromIsLoggedIn, loggedOutObsFromIsLoggedIn, authUserIdentifier, DbxInjectionContext, AbstractForwardDbxInjectionContextDirective, DBX_INJECTION_COMPONENT_DATA, DbxInjectionComponentModule, DbxAuthService, AbstractSubscriptionDirective, AbstractIfDirective, LockSetComponentStore } from '@dereekb/dbx-core';
|
|
17
17
|
import * as i1$1 from '@angular/fire/auth';
|
|
@@ -57,8 +57,8 @@ class DbxFirebaseAppCheckHttpInterceptor {
|
|
|
57
57
|
if (appCheck != null) {
|
|
58
58
|
routes = (this.dbxFirebaseOptions.appCheck?.appCheckRoutes ?? ['/api/*']).map((route) => {
|
|
59
59
|
const wildcardIndex = route.indexOf('*');
|
|
60
|
-
const isWildcard =
|
|
61
|
-
const match =
|
|
60
|
+
const isWildcard = wildcardIndex === route.length - 1;
|
|
61
|
+
const match = isWildcard ? route.substring(0, wildcardIndex) : route;
|
|
62
62
|
return {
|
|
63
63
|
isWildcard,
|
|
64
64
|
match
|
|
@@ -106,7 +106,7 @@ class DbxFirebaseAppCheckHttpInterceptor {
|
|
|
106
106
|
return url === enabledRoute.match;
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
|
-
return from(this._appCheckRoutes).pipe(first((route) => isEnabledRouteMatch(route), false), map(x => Boolean(x)));
|
|
109
|
+
return from(this._appCheckRoutes).pipe(first((route) => isEnabledRouteMatch(route), false), map((x) => Boolean(x)));
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
DbxFirebaseAppCheckHttpInterceptor.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: DbxFirebaseAppCheckHttpInterceptor, deps: [{ token: DBX_FIREBASE_OPTIONS_TOKEN }, { token: i1.AppCheck }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
@@ -118,6 +118,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
118
118
|
args: [DBX_FIREBASE_OPTIONS_TOKEN]
|
|
119
119
|
}] }, { type: i1.AppCheck }]; } });
|
|
120
120
|
|
|
121
|
+
function authUserInfoFromAuthUser(user) {
|
|
122
|
+
return {
|
|
123
|
+
displayName: user?.displayName,
|
|
124
|
+
email: user.email,
|
|
125
|
+
phoneNumber: user.phoneNumber,
|
|
126
|
+
photoURL: user.photoURL,
|
|
127
|
+
uid: user.uid
|
|
128
|
+
};
|
|
129
|
+
}
|
|
130
|
+
|
|
121
131
|
/**
|
|
122
132
|
* Derives a user state from the input firebase auth service.
|
|
123
133
|
*
|
|
@@ -156,16 +166,7 @@ function readValueFromIdToken(dbxFirebaseAuthService, readBooleanFromIdToken, de
|
|
|
156
166
|
}));
|
|
157
167
|
}
|
|
158
168
|
|
|
159
|
-
|
|
160
|
-
return {
|
|
161
|
-
displayName: user?.displayName,
|
|
162
|
-
email: user.email,
|
|
163
|
-
phoneNumber: user.phoneNumber,
|
|
164
|
-
photoURL: user.photoURL,
|
|
165
|
-
uid: user.uid
|
|
166
|
-
};
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
+
// MARK: Delegate
|
|
169
170
|
class DbxFirebaseAuthServiceDelegate {
|
|
170
171
|
}
|
|
171
172
|
const DEFAULT_DBX_FIREBASE_AUTH_SERVICE_DELEGATE = {
|
|
@@ -179,6 +180,7 @@ const DEFAULT_DBX_FIREBASE_AUTH_SERVICE_DELEGATE = {
|
|
|
179
180
|
return dbxFirebaseAuthService.authUserState$.pipe(map((x) => x === 'user'));
|
|
180
181
|
}
|
|
181
182
|
};
|
|
183
|
+
// MARK: Service
|
|
182
184
|
class DbxFirebaseAuthService {
|
|
183
185
|
constructor(firebaseAuth, delegate) {
|
|
184
186
|
this.firebaseAuth = firebaseAuth;
|
|
@@ -1340,6 +1342,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
1340
1342
|
}]
|
|
1341
1343
|
}], ctorParameters: function () { return [{ type: DbxFirebaseLoginModuleRootConfig }, { type: DbxFirebaseAuthLoginService }]; } });
|
|
1342
1344
|
|
|
1345
|
+
function authRolesObsWithClaimsService(config) {
|
|
1346
|
+
const { addAuthUserStateToRoles: addAuthUserState, claimsService } = config;
|
|
1347
|
+
return (dbxFirebaseAuthService) => {
|
|
1348
|
+
let obs = dbxFirebaseAuthService.idTokenResult$.pipe(tapLog('a'), map((x) => claimsService.toRoles(x.claims)));
|
|
1349
|
+
if (addAuthUserState) {
|
|
1350
|
+
obs = obs.pipe(tapLog('b'), switchMap((authRoleSet) => dbxFirebaseAuthService.authUserState$.pipe(map((userState) => addToSetCopy(authRoleSet, [userState])))), tapLog('c'));
|
|
1351
|
+
}
|
|
1352
|
+
return obs;
|
|
1353
|
+
};
|
|
1354
|
+
}
|
|
1355
|
+
function defaultDbxFirebaseAuthServiceDelegateWithClaimsService(config) {
|
|
1356
|
+
return {
|
|
1357
|
+
authUserStateObs: DEFAULT_DBX_FIREBASE_AUTH_SERVICE_DELEGATE.authUserStateObs,
|
|
1358
|
+
authRolesObs: authRolesObsWithClaimsService(config),
|
|
1359
|
+
isOnboarded: DEFAULT_DBX_FIREBASE_AUTH_SERVICE_DELEGATE.isOnboarded
|
|
1360
|
+
};
|
|
1361
|
+
}
|
|
1362
|
+
|
|
1343
1363
|
class DbxFirebaseAuthModule {
|
|
1344
1364
|
static forRoot(config) {
|
|
1345
1365
|
const providers = [
|
|
@@ -2307,7 +2327,7 @@ function setParentStoreEffect(store) {
|
|
|
2307
2327
|
return input.pipe(map((parentStore) => {
|
|
2308
2328
|
let result;
|
|
2309
2329
|
if (parentStore) {
|
|
2310
|
-
result = store.
|
|
2330
|
+
result = store._setParent(parentStore.currentDocument$);
|
|
2311
2331
|
}
|
|
2312
2332
|
else {
|
|
2313
2333
|
result = undefined;
|
|
@@ -2322,56 +2342,79 @@ function setParentStoreEffect(store) {
|
|
|
2322
2342
|
}));
|
|
2323
2343
|
});
|
|
2324
2344
|
}
|
|
2325
|
-
function setParentEffect(store) {
|
|
2326
|
-
return store.effect((input) => {
|
|
2327
|
-
return input.pipe(switchMap((parent) => {
|
|
2328
|
-
store._setParentDocument(parent);
|
|
2329
|
-
if (parent) {
|
|
2330
|
-
return store.collectionFactory$.pipe(tap((collectionFactory) => {
|
|
2331
|
-
const collection = collectionFactory(parent);
|
|
2332
|
-
store.setFirestoreCollection(collection);
|
|
2333
|
-
}));
|
|
2334
|
-
}
|
|
2335
|
-
else {
|
|
2336
|
-
// clear the current collection
|
|
2337
|
-
store.setFirestoreCollection(undefined);
|
|
2338
|
-
// do nothing until a parent is returned.
|
|
2339
|
-
return NEVER;
|
|
2340
|
-
}
|
|
2341
|
-
}));
|
|
2342
|
-
});
|
|
2343
|
-
}
|
|
2344
2345
|
|
|
2345
2346
|
/**
|
|
2346
2347
|
* Abstract DbxFirebaseCollectionStore that has a parent document from which is derives it's FiresbaseCollection from.
|
|
2347
2348
|
*/
|
|
2348
2349
|
class AbstractDbxFirebaseCollectionWithParentStore extends AbstractDbxFirebaseCollectionStore {
|
|
2349
|
-
constructor() {
|
|
2350
|
-
super(
|
|
2350
|
+
constructor(state, defaultSourceMode) {
|
|
2351
|
+
super(state);
|
|
2351
2352
|
// MARK: Effects
|
|
2352
|
-
this.setParent = setParentEffect(this);
|
|
2353
2353
|
this.setParentStore = setParentStoreEffect(this);
|
|
2354
|
+
this.setSourceMode = this.effect((input) => {
|
|
2355
|
+
return input.pipe(distinctUntilChanged(), switchMap((inputMode) => {
|
|
2356
|
+
const mode = inputMode?.toLowerCase() ?? 'parent'; // default to parent mode
|
|
2357
|
+
if (mode === 'group') {
|
|
2358
|
+
return this.currentCollectionGroup$.pipe(tap((collectionGroup) => {
|
|
2359
|
+
this.setFirestoreCollection(collectionGroup);
|
|
2360
|
+
}));
|
|
2361
|
+
}
|
|
2362
|
+
else {
|
|
2363
|
+
// parent document collection
|
|
2364
|
+
return this.currentParent$.pipe(switchMap((parent) => {
|
|
2365
|
+
if (parent) {
|
|
2366
|
+
return this.collectionFactory$.pipe(tap((collectionFactory) => {
|
|
2367
|
+
const collection = collectionFactory(parent);
|
|
2368
|
+
this.setFirestoreCollection(collection);
|
|
2369
|
+
}));
|
|
2370
|
+
}
|
|
2371
|
+
else {
|
|
2372
|
+
this.setFirestoreCollection(undefined);
|
|
2373
|
+
return NEVER;
|
|
2374
|
+
}
|
|
2375
|
+
}));
|
|
2376
|
+
}
|
|
2377
|
+
}));
|
|
2378
|
+
});
|
|
2354
2379
|
// MARK: Accessors
|
|
2355
2380
|
this.currentParent$ = this.state$.pipe(map((x) => x.parent), distinctUntilChanged(), shareReplay(1));
|
|
2356
2381
|
this.parent$ = this.currentParent$.pipe(filterMaybe());
|
|
2357
2382
|
this.currentCollectionFactory$ = this.state$.pipe(map((x) => x.collectionFactory), distinctUntilChanged(), shareReplay(1));
|
|
2358
2383
|
this.collectionFactory$ = this.currentCollectionFactory$.pipe(filterMaybe());
|
|
2384
|
+
this.currentCollectionGroup$ = this.state$.pipe(map((x) => x.collectionGroup), distinctUntilChanged(), shareReplay(1));
|
|
2385
|
+
this.collectionGroup$ = this.currentCollectionGroup$.pipe(filterMaybe());
|
|
2359
2386
|
// MARK: State Changes
|
|
2360
2387
|
/**
|
|
2361
2388
|
* Sets the collection factory function to use.
|
|
2362
2389
|
*/
|
|
2363
2390
|
this.setCollectionFactory = this.updater((state, collectionFactory) => ({ ...state, collectionFactory }));
|
|
2391
|
+
/**
|
|
2392
|
+
* Sets the collection group to use.
|
|
2393
|
+
*/
|
|
2394
|
+
this.setCollectionGroup = this.updater((state, collectionGroup) => ({ ...state, collectionGroup }));
|
|
2364
2395
|
/**
|
|
2365
2396
|
* Sets the parent on the current state.
|
|
2366
2397
|
*/
|
|
2367
2398
|
this._setParentDocument = this.updater((state, parent) => ({ ...state, parent }));
|
|
2399
|
+
this._setParent = this._setParentDocument;
|
|
2400
|
+
this.setSourceMode(defaultSourceMode || 'parent');
|
|
2368
2401
|
}
|
|
2369
2402
|
}
|
|
2370
|
-
AbstractDbxFirebaseCollectionWithParentStore.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AbstractDbxFirebaseCollectionWithParentStore, deps: null, target: i0.ɵɵFactoryTarget.Injectable });
|
|
2403
|
+
AbstractDbxFirebaseCollectionWithParentStore.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AbstractDbxFirebaseCollectionWithParentStore, deps: [{ token: null, optional: true }, { token: null, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2371
2404
|
AbstractDbxFirebaseCollectionWithParentStore.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AbstractDbxFirebaseCollectionWithParentStore });
|
|
2372
2405
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: AbstractDbxFirebaseCollectionWithParentStore, decorators: [{
|
|
2373
2406
|
type: Injectable
|
|
2374
|
-
}]
|
|
2407
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
2408
|
+
type: Inject,
|
|
2409
|
+
args: [null]
|
|
2410
|
+
}, {
|
|
2411
|
+
type: Optional
|
|
2412
|
+
}] }, { type: undefined, decorators: [{
|
|
2413
|
+
type: Inject,
|
|
2414
|
+
args: [null]
|
|
2415
|
+
}, {
|
|
2416
|
+
type: Optional
|
|
2417
|
+
}] }]; } });
|
|
2375
2418
|
|
|
2376
2419
|
/**
|
|
2377
2420
|
* Abstract DbxFirebaseDocumentStore that has a parent document from which is derives it's FiresbaseCollection from.
|
|
@@ -2380,8 +2423,25 @@ class AbstractDbxFirebaseDocumentWithParentStore extends AbstractDbxFirebaseDocu
|
|
|
2380
2423
|
constructor() {
|
|
2381
2424
|
super(...arguments);
|
|
2382
2425
|
// MARK: Effects
|
|
2383
|
-
this.setParent = setParentEffect(this);
|
|
2384
2426
|
this.setParentStore = setParentStoreEffect(this);
|
|
2427
|
+
this.setParent = this.effect((input) => {
|
|
2428
|
+
return input.pipe(switchMap((parent) => {
|
|
2429
|
+
this._setParentDocument(parent);
|
|
2430
|
+
if (parent) {
|
|
2431
|
+
return this.collectionFactory$.pipe(tap((collectionFactory) => {
|
|
2432
|
+
const collection = collectionFactory(parent);
|
|
2433
|
+
this.setFirestoreCollection(collection);
|
|
2434
|
+
}));
|
|
2435
|
+
}
|
|
2436
|
+
else {
|
|
2437
|
+
// clear the current collection
|
|
2438
|
+
this.setFirestoreCollection(undefined);
|
|
2439
|
+
// do nothing until a parent is returned.
|
|
2440
|
+
return NEVER;
|
|
2441
|
+
}
|
|
2442
|
+
}));
|
|
2443
|
+
});
|
|
2444
|
+
this._setParent = this.setParent;
|
|
2385
2445
|
// MARK: Accessors
|
|
2386
2446
|
this.currentParent$ = this.state$.pipe(map((x) => x.parent), distinctUntilChanged(), shareReplay(1));
|
|
2387
2447
|
this.parent$ = this.currentParent$.pipe(filterMaybe());
|
|
@@ -2404,6 +2464,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
2404
2464
|
type: Injectable
|
|
2405
2465
|
}] });
|
|
2406
2466
|
|
|
2467
|
+
/**
|
|
2468
|
+
* Abstract directive that contains a DbxFirebaseCollectionWithParentStore and provides an interface for communicating with other directives.
|
|
2469
|
+
*/
|
|
2470
|
+
class DbxFirebaseCollectionWithParentStoreDirective extends DbxFirebaseCollectionStoreDirective {
|
|
2471
|
+
// MARK: Inputs
|
|
2472
|
+
set sourceMode(sourceMode) {
|
|
2473
|
+
this.store.setSourceMode(sourceMode);
|
|
2474
|
+
}
|
|
2475
|
+
}
|
|
2476
|
+
DbxFirebaseCollectionWithParentStoreDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: DbxFirebaseCollectionWithParentStoreDirective, deps: null, target: i0.ɵɵFactoryTarget.Directive });
|
|
2477
|
+
DbxFirebaseCollectionWithParentStoreDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.2", type: DbxFirebaseCollectionWithParentStoreDirective, inputs: { sourceMode: "sourceMode" }, usesInheritance: true, ngImport: i0 });
|
|
2478
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: DbxFirebaseCollectionWithParentStoreDirective, decorators: [{
|
|
2479
|
+
type: Directive
|
|
2480
|
+
}], propDecorators: { sourceMode: [{
|
|
2481
|
+
type: Input
|
|
2482
|
+
}] } });
|
|
2483
|
+
function provideDbxFirebaseCollectionWithParentStoreDirective(sourceType, storeType) {
|
|
2484
|
+
const providers = [
|
|
2485
|
+
...provideDbxFirebaseCollectionStoreDirective(sourceType, storeType),
|
|
2486
|
+
{
|
|
2487
|
+
provide: DbxFirebaseCollectionWithParentStoreDirective,
|
|
2488
|
+
useExisting: forwardRef(() => sourceType)
|
|
2489
|
+
}
|
|
2490
|
+
];
|
|
2491
|
+
return providers;
|
|
2492
|
+
}
|
|
2493
|
+
|
|
2407
2494
|
class DbxFirebaseModelModule {
|
|
2408
2495
|
}
|
|
2409
2496
|
DbxFirebaseModelModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.2", ngImport: i0, type: DbxFirebaseModelModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -2432,5 +2519,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.2", ngImpor
|
|
|
2432
2519
|
* Generated bundle index. Do not edit.
|
|
2433
2520
|
*/
|
|
2434
2521
|
|
|
2435
|
-
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, DbxFirebaseAuthLoginService, DbxFirebaseAuthModule, DbxFirebaseAuthService, DbxFirebaseAuthServiceDelegate, DbxFirebaseCollectionChangeDirective, DbxFirebaseCollectionHasChangeDirective, DbxFirebaseCollectionListDirective, DbxFirebaseCollectionLoaderInstance, DbxFirebaseCollectionStoreDirective, 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, authUserInfoFromAuthUser, authUserStateFromFirebaseAuthService, dbxFirebaseCollectionLoaderInstance, dbxFirebaseCollectionLoaderInstanceWithCollection, defaultFirebaseAuthLoginProvidersFactory, enableAppCheckDebugTokenGeneration, firebaseAuthErrorToReadableError, modelDoesNotExistError, provideDbxFirebaseCollectionStoreDirective, provideDbxFirebaseDocumentStoreDirective, readValueFromIdToken,
|
|
2522
|
+
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, 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, modelDoesNotExistError, provideDbxFirebaseCollectionStoreDirective, provideDbxFirebaseCollectionWithParentStoreDirective, provideDbxFirebaseDocumentStoreDirective, readValueFromIdToken, setParentStoreEffect };
|
|
2436
2523
|
//# sourceMappingURL=dereekb-dbx-firebase.mjs.map
|