@dereekb/dbx-firebase 13.2.2 → 13.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/fesm2022/dereekb-dbx-firebase-oidc.mjs +1378 -0
- package/fesm2022/dereekb-dbx-firebase-oidc.mjs.map +1 -0
- package/fesm2022/dereekb-dbx-firebase.mjs +122 -6
- package/fesm2022/dereekb-dbx-firebase.mjs.map +1 -1
- package/package.json +14 -10
- package/types/dereekb-dbx-firebase-oidc.d.ts +616 -0
- package/types/dereekb-dbx-firebase.d.ts +145 -9
|
@@ -6,7 +6,7 @@ import { Auth, User as User$1, IdTokenResult, ParsedToken, UserCredential, AuthP
|
|
|
6
6
|
import * as rxjs from 'rxjs';
|
|
7
7
|
import { Observable, BehaviorSubject, Subject, OperatorFunction, Subscription } from 'rxjs';
|
|
8
8
|
import * as _dereekb_firebase from '@dereekb/firebase';
|
|
9
|
-
import { FirebaseAuthToken, FirebaseAuthContextInfo, FirebaseDevelopmentFunctions, ScheduledFunctionDevelopmentFirebaseFunctionListEntry, FirestoreContext, NotificationFirestoreCollections, StorageFileFirestoreCollections, SystemStateFirestoreCollections, FirebaseFunctionsMap, FirebaseFunctionsConfigMap, FirestoreQueryConstraint, FirestoreItemPageIterationInstance, DocumentDataWithIdAndKey, IterationQueryDocChangeWatcher, FirebaseQuerySnapshotAccumulator, FirebaseQueryItemAccumulator, FirebaseQueryItemAccumulatorNextPageUntilResultsCountFunction, IterationQueryDocChangeWatcherEvent, FirestoreDocument, FirestoreCollectionLike, FirestoreModelKey, DocumentReference, FirestoreItemPageIteratorFilter, FirestoreModelId, DocumentSnapshot, FirestoreDocumentAccessor, LimitedFirestoreDocumentAccessor, FirestoreModelType, FirestoreDocumentData, FirestoreAccessorStreamMode, SnapshotOptions, FirebasePermissionErrorContext, InModelContextFirebaseModelService, InContextFirebaseModelsService, FirebaseModelsService, FirestoreModelIdentityTypeMap, FirestoreModelIdentity, FirestoreCollectionType, FirestoreCollection, FlatFirestoreModelKey, TwoWayFlatFirestoreModelKey, FirestoreModelCollectionAndIdPair, FirestoreModelCollectionAndIdPairObject, IterationQueryDocChangeWatcherChangeType, OnCallCreateModelResult, ModelFirebaseCreateFunction, ModelFirebaseCrudFunction, TargetModelParams, InferredTargetModelParams, ModelFirebaseDeleteFunction, ModelFirebaseReadFunction, ModelFirebaseUpdateFunction, FirestoreCollectionWithParentFactory, FirestoreCollectionGroup, SystemState, SystemStateDocument, SystemStateStoredData, SystemStateTypeIdentifier, AppNotificationTemplateTypeInfoRecordService, NotificationItemMetadata, NotificationItem, NotificationItemSubjectMessagePair, NotificationId, Notification, NotificationBox, NotificationDocument, NotificationBoxDocument, NotificationFunctions, NotificationSummary, NotificationSummaryDocument, UnreadNotificationItemsResult, NotificationUser, NotificationUserDocument, NotificationTemplateType, NotificationTemplateTypeInfo, FirebaseAuthUserId, StorageFileId, StorageFileSignedDownloadUrl, FirestoreModelIdInput, StorageFileFunctions, StorageFileKey, DownloadStorageFileParams, DownloadStorageFileResult, StorageFileDownloadUrl, StoragePathInput, FirebaseStorageAccessorFile, StorageFile, StorageFileDocument, StorageFileGroup, StorageFileGroupDocument, FirebaseStorageAccessor, FirebaseStorageContext, FirebaseStorageAccessorFolder, StorageUploadTask, StorageUploadOptions, StorageCustomMetadata, FirebaseStorageContextFactoryConfig } from '@dereekb/firebase';
|
|
9
|
+
import { FirebaseAuthToken, FirebaseAuthIdToken, FirebaseAuthContextInfo, FirebaseDevelopmentFunctions, ScheduledFunctionDevelopmentFirebaseFunctionListEntry, FirestoreContext, NotificationFirestoreCollections, StorageFileFirestoreCollections, SystemStateFirestoreCollections, FirebaseFunctionsMap, FirebaseFunctionsConfigMap, FirestoreQueryConstraint, FirestoreItemPageIterationInstance, DocumentDataWithIdAndKey, IterationQueryDocChangeWatcher, FirebaseQuerySnapshotAccumulator, FirebaseQueryItemAccumulator, FirebaseQueryItemAccumulatorNextPageUntilResultsCountFunction, IterationQueryDocChangeWatcherEvent, FirestoreDocument, FirestoreCollectionLike, FirestoreModelKey, DocumentReference, FirestoreItemPageIteratorFilter, FirestoreModelId, DocumentSnapshot, FirestoreDocumentAccessor, LimitedFirestoreDocumentAccessor, FirestoreModelType, FirestoreDocumentData, FirestoreAccessorStreamMode, SnapshotOptions, FirebasePermissionErrorContext, InModelContextFirebaseModelService, InContextFirebaseModelsService, FirebaseModelsService, FirestoreModelIdentityTypeMap, FirestoreModelIdentity, FirestoreCollectionType, FirestoreCollection, FlatFirestoreModelKey, TwoWayFlatFirestoreModelKey, FirestoreModelCollectionAndIdPair, FirestoreModelCollectionAndIdPairObject, IterationQueryDocChangeWatcherChangeType, OnCallCreateModelResult, ModelFirebaseCreateFunction, ModelFirebaseCrudFunction, TargetModelParams, InferredTargetModelParams, ModelFirebaseDeleteFunction, ModelFirebaseReadFunction, ModelFirebaseUpdateFunction, FirestoreCollectionWithParentFactory, FirestoreCollectionGroup, SystemState, SystemStateDocument, SystemStateStoredData, SystemStateTypeIdentifier, AppNotificationTemplateTypeInfoRecordService, NotificationItemMetadata, NotificationItem, NotificationItemSubjectMessagePair, NotificationId, Notification, NotificationBox, NotificationDocument, NotificationBoxDocument, NotificationFunctions, NotificationSummary, NotificationSummaryDocument, UnreadNotificationItemsResult, NotificationUser, NotificationUserDocument, NotificationTemplateType, NotificationTemplateTypeInfo, FirebaseAuthUserId, StorageFileId, StorageFileSignedDownloadUrl, FirestoreModelIdInput, StorageFileFunctions, StorageFileKey, DownloadStorageFileParams, DownloadStorageFileResult, StorageFileDownloadUrl, StoragePathInput, FirebaseStorageAccessorFile, StorageFile, StorageFileDocument, StorageFileGroup, StorageFileGroupDocument, FirebaseStorageAccessor, FirebaseStorageContext, FirebaseStorageAccessorFolder, StorageUploadTask, StorageUploadOptions, StorageCustomMetadata, FirebaseStorageContextFactoryConfig } from '@dereekb/firebase';
|
|
10
10
|
import { UserInfo, User, IdTokenResult as IdTokenResult$1 } from 'firebase/auth';
|
|
11
11
|
import * as i0 from '@angular/core';
|
|
12
12
|
import { EnvironmentProviders, Type, InjectionToken, OnInit, Component, EventEmitter, Injector, AfterViewInit, ElementRef, Signal, Provider, PipeTransform } from '@angular/core';
|
|
@@ -84,8 +84,8 @@ declare class DbxFirebaseAuthService implements DbxAuthService {
|
|
|
84
84
|
* Alias for uid$
|
|
85
85
|
*/
|
|
86
86
|
readonly userIdentifier$: Observable<AuthUserIdentifier | NoAuthUserIdentifier>;
|
|
87
|
-
readonly currentIdTokenString$: Observable<Maybe<
|
|
88
|
-
readonly idTokenString$: Observable<
|
|
87
|
+
readonly currentIdTokenString$: Observable<Maybe<FirebaseAuthIdToken>>;
|
|
88
|
+
readonly idTokenString$: Observable<FirebaseAuthIdToken>;
|
|
89
89
|
readonly currentIdTokenResult$: Observable<Maybe<IdTokenResult>>;
|
|
90
90
|
readonly idTokenResult$: Observable<IdTokenResult>;
|
|
91
91
|
readonly currentClaims$: Observable<Maybe<ParsedToken>>;
|
|
@@ -196,15 +196,24 @@ declare class DbxFirebaseAppCheckHttpInterceptor implements HttpInterceptor {
|
|
|
196
196
|
static ɵprov: i0.ɵɵInjectableDeclaration<DbxFirebaseAppCheckHttpInterceptor>;
|
|
197
197
|
}
|
|
198
198
|
|
|
199
|
+
/** String identifier for a Firebase authentication method (e.g., 'email', 'google'). */
|
|
199
200
|
type FirebaseLoginMethodType = string;
|
|
201
|
+
/** Category grouping for login methods (e.g., 'default', 'oauth'). */
|
|
200
202
|
type FirebaseLoginMethodCategory = string;
|
|
203
|
+
/** Known Firebase login method types supported by the login UI. */
|
|
201
204
|
type KnownFirebaseLoginMethodType = 'email' | 'phone' | 'google' | 'facebook' | 'github' | 'twitter' | 'apple' | 'microsoft' | 'anonymous';
|
|
205
|
+
/** Category for built-in login methods (email, phone, anonymous). */
|
|
202
206
|
declare const DEFAULT_FIREBASE_LOGIN_METHOD_CATEGORY = "default";
|
|
207
|
+
/** Category for OAuth-based login methods (Google, Facebook, etc.). */
|
|
203
208
|
declare const OAUTH_FIREBASE_LOGIN_METHOD_CATEGORY = "oauth";
|
|
209
|
+
/** Known categories for Firebase login methods. */
|
|
204
210
|
type KnownFirebaseLoginMethodCategory = typeof DEFAULT_FIREBASE_LOGIN_METHOD_CATEGORY | typeof OAUTH_FIREBASE_LOGIN_METHOD_CATEGORY;
|
|
211
|
+
/** Mode for the login UI — either signing in or creating a new account. */
|
|
205
212
|
type DbxFirebaseLoginMode = 'login' | 'register';
|
|
206
213
|
|
|
214
|
+
/** Password validation configuration for Firebase email/password login forms. */
|
|
207
215
|
type DbxFirebaseAuthLoginPasswordConfig = TextPasswordFieldPasswordParameters;
|
|
216
|
+
/** Default password config requiring a minimum of 6 characters (Firebase Auth minimum). */
|
|
208
217
|
declare const DEFAULT_FIREBASE_AUTH_LOGIN_PASSWORD_CONFIG: DbxFirebaseAuthLoginPasswordConfig;
|
|
209
218
|
|
|
210
219
|
/**
|
|
@@ -367,6 +376,7 @@ declare class DbxFirebaseAuthLoginService {
|
|
|
367
376
|
declare abstract class DbxFirebaseLoginContext extends DbxInjectionContext {
|
|
368
377
|
}
|
|
369
378
|
|
|
379
|
+
/** Configuration for a login button's appearance and action handler. */
|
|
370
380
|
interface DbxFirebaseLoginButtonConfig {
|
|
371
381
|
text: string;
|
|
372
382
|
iconUrl?: string;
|
|
@@ -376,7 +386,9 @@ interface DbxFirebaseLoginButtonConfig {
|
|
|
376
386
|
handleLogin: () => Promise<unknown>;
|
|
377
387
|
}
|
|
378
388
|
/**
|
|
379
|
-
*
|
|
389
|
+
* Renders a styled login button that triggers a login action handler on click.
|
|
390
|
+
*
|
|
391
|
+
* Displays a logo image or icon alongside the login text with configurable colors.
|
|
380
392
|
*/
|
|
381
393
|
declare class DbxFirebaseLoginButtonComponent {
|
|
382
394
|
readonly config: i0.ModelSignal<Maybe<DbxFirebaseLoginButtonConfig>>;
|
|
@@ -391,12 +403,19 @@ declare class DbxFirebaseLoginButtonComponent {
|
|
|
391
403
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseLoginButtonComponent, never>;
|
|
392
404
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginButtonComponent, "dbx-firebase-login-button", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; }, { "config": "configChange"; }, never, never, true, never>;
|
|
393
405
|
}
|
|
406
|
+
/** Container component that wraps login button content with consistent spacing. */
|
|
394
407
|
declare class DbxFirebaseLoginButtonContainerComponent {
|
|
395
408
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseLoginButtonContainerComponent, never>;
|
|
396
409
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginButtonContainerComponent, "dbx-firebase-login-button-container", never, {}, {}, never, ["*"], true, never>;
|
|
397
410
|
}
|
|
411
|
+
/** Default template for configured login button components. */
|
|
398
412
|
declare const DEFAULT_CONFIGURED_DBX_FIREBASE_LOGIN_BUTTON_TEMPLATE = "\n <dbx-firebase-login-button-container>\n <dbx-firebase-login-button [config]=\"configSignal()\"></dbx-firebase-login-button>\n </dbx-firebase-login-button-container>\n";
|
|
413
|
+
/** Shared component configuration for OAuth-style login button components. */
|
|
399
414
|
declare const DBX_CONFIGURED_DBX_FIREBASE_LOGIN_BUTTON_COMPONENT_CONFIGURATION: Pick<Component, 'template' | 'imports' | 'changeDetection'>;
|
|
415
|
+
/**
|
|
416
|
+
* Abstract base directive for login provider buttons that auto-configures appearance
|
|
417
|
+
* from the registered provider assets and delegates login handling to subclasses.
|
|
418
|
+
*/
|
|
400
419
|
declare abstract class AbstractConfiguredDbxFirebaseLoginButtonDirective implements OnInit {
|
|
401
420
|
abstract readonly loginProvider: FirebaseLoginMethodType;
|
|
402
421
|
readonly dbxFirebaseAuthService: DbxFirebaseAuthService;
|
|
@@ -413,6 +432,7 @@ declare abstract class AbstractConfiguredDbxFirebaseLoginButtonDirective impleme
|
|
|
413
432
|
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractConfiguredDbxFirebaseLoginButtonDirective, never, never, {}, {}, never, never, true, never>;
|
|
414
433
|
}
|
|
415
434
|
|
|
435
|
+
/** Login button component for anonymous (guest) authentication. */
|
|
416
436
|
declare class DbxFirebaseLoginAnonymousComponent extends AbstractConfiguredDbxFirebaseLoginButtonDirective {
|
|
417
437
|
readonly loginProvider = "anonymous";
|
|
418
438
|
handleLogin(): Promise<_firebase_auth.UserCredential>;
|
|
@@ -420,6 +440,7 @@ declare class DbxFirebaseLoginAnonymousComponent extends AbstractConfiguredDbxFi
|
|
|
420
440
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginAnonymousComponent, "dbx-firebase-login-anonymous", never, {}, {}, never, never, true, never>;
|
|
421
441
|
}
|
|
422
442
|
|
|
443
|
+
/** Login button component for Apple OAuth authentication. */
|
|
423
444
|
declare class DbxFirebaseLoginAppleComponent extends AbstractConfiguredDbxFirebaseLoginButtonDirective {
|
|
424
445
|
readonly loginProvider = "apple";
|
|
425
446
|
handleLogin(): Promise<_firebase_auth.UserCredential>;
|
|
@@ -439,6 +460,7 @@ declare class DbxFirebaseLoginComponent {
|
|
|
439
460
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginComponent, "dbx-firebase-login", never, { "loginMode": { "alias": "loginMode"; "required": false; "isSignal": true; }; "providerTypes": { "alias": "providerTypes"; "required": false; "isSignal": true; }; "omitProviderTypes": { "alias": "omitProviderTypes"; "required": false; "isSignal": true; }; "providerCategories": { "alias": "providerCategories"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
440
461
|
}
|
|
441
462
|
|
|
463
|
+
/** Navigation component that allows users to return to the login method selection list. */
|
|
442
464
|
declare class DbxFirebaseLoginContextBackButtonComponent {
|
|
443
465
|
readonly cancelLogin: i0.OutputEmitterRef<void>;
|
|
444
466
|
readonly anchor: ClickableAnchor;
|
|
@@ -447,13 +469,16 @@ declare class DbxFirebaseLoginContextBackButtonComponent {
|
|
|
447
469
|
}
|
|
448
470
|
|
|
449
471
|
/**
|
|
450
|
-
* DbxFirebaseLoginContext
|
|
472
|
+
* Directive providing a {@link DbxFirebaseLoginContext} for login component injection.
|
|
473
|
+
*
|
|
474
|
+
* Apply to a host element to establish a login context scope for child login components.
|
|
451
475
|
*/
|
|
452
476
|
declare class DbxFirebaseLoginContextDirective extends AbstractForwardDbxInjectionContextDirective implements DbxFirebaseLoginContext {
|
|
453
477
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseLoginContextDirective, never>;
|
|
454
478
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFirebaseLoginContextDirective, "[dbxFirebaseLoginContext]", never, {}, {}, never, never, true, never>;
|
|
455
479
|
}
|
|
456
480
|
|
|
481
|
+
/** Login button component for email/password authentication. Opens the email login context on click. */
|
|
457
482
|
declare class DbxFirebaseLoginEmailComponent extends AbstractConfiguredDbxFirebaseLoginButtonDirective {
|
|
458
483
|
readonly loginProvider = "email";
|
|
459
484
|
handleLogin(): Promise<boolean>;
|
|
@@ -461,30 +486,46 @@ declare class DbxFirebaseLoginEmailComponent extends AbstractConfiguredDbxFireba
|
|
|
461
486
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginEmailComponent, "dbx-firebase-login-email", never, {}, {}, never, never, true, never>;
|
|
462
487
|
}
|
|
463
488
|
|
|
489
|
+
/** Form value for the password recovery form containing the email address. */
|
|
464
490
|
interface DbxFirebaseEmailRecoveryFormValue {
|
|
465
491
|
email: string;
|
|
466
492
|
}
|
|
493
|
+
/** Formly-based form component for password recovery, containing a single email field. */
|
|
467
494
|
declare class DbxFirebaseEmailRecoveryFormComponent extends AbstractSyncFormlyFormDirective<DbxFirebaseEmailRecoveryFormValue> {
|
|
468
495
|
readonly fields: FormlyFieldConfig[];
|
|
469
496
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseEmailRecoveryFormComponent, never>;
|
|
470
497
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseEmailRecoveryFormComponent, "dbx-firebase-email-recovery-form", never, {}, {}, never, never, true, never>;
|
|
471
498
|
}
|
|
472
499
|
|
|
500
|
+
/** Form value containing email (username) and password fields. */
|
|
473
501
|
type DbxFirebaseEmailFormValue = DefaultUsernameLoginFieldsValue;
|
|
502
|
+
/** Configuration for the email login form, specifying mode and optional password constraints. */
|
|
474
503
|
interface DbxFirebaseEmailFormConfig {
|
|
475
504
|
readonly loginMode: DbxFirebaseLoginMode;
|
|
476
505
|
readonly passwordConfig?: TextPasswordFieldConfig;
|
|
477
506
|
}
|
|
507
|
+
/**
|
|
508
|
+
* Formly-based email/password login form that adapts fields based on login vs. register mode.
|
|
509
|
+
*
|
|
510
|
+
* In register mode, includes a password verification field.
|
|
511
|
+
*/
|
|
478
512
|
declare class DbxFirebaseEmailFormComponent extends AbstractConfigAsyncFormlyFormDirective<DbxFirebaseEmailFormValue, DbxFirebaseEmailFormConfig> {
|
|
479
513
|
readonly fields$: Observable<Maybe<FormlyFieldConfig[]>>;
|
|
480
514
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseEmailFormComponent, never>;
|
|
481
515
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseEmailFormComponent, "dbx-firebase-email-form", never, {}, {}, never, never, true, never>;
|
|
482
516
|
}
|
|
483
517
|
|
|
518
|
+
/** Configuration for the email login content component, specifying mode and password rules. */
|
|
484
519
|
interface DbxFirebaseLoginEmailContentComponentConfig extends DbxFirebaseEmailFormConfig {
|
|
485
520
|
readonly loginMode: DbxFirebaseLoginMode;
|
|
486
521
|
}
|
|
522
|
+
/** UI state of the email login content: login form, password recovery form, or recovery sent confirmation. */
|
|
487
523
|
type DbxFirebaseLoginEmailContentMode = 'login' | 'recover' | 'recoversent';
|
|
524
|
+
/**
|
|
525
|
+
* Full email login/registration flow component with login form, password recovery, and recovery confirmation states.
|
|
526
|
+
*
|
|
527
|
+
* Opened via the {@link DbxFirebaseLoginContext} injection context from the email login button.
|
|
528
|
+
*/
|
|
488
529
|
declare class DbxFirebaseLoginEmailContentComponent {
|
|
489
530
|
readonly dbxFirebaseAuthService: DbxFirebaseAuthService;
|
|
490
531
|
readonly config: DbxFirebaseLoginEmailContentComponentConfig;
|
|
@@ -513,6 +554,7 @@ declare class DbxFirebaseLoginEmailContentComponent {
|
|
|
513
554
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginEmailContentComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
514
555
|
}
|
|
515
556
|
|
|
557
|
+
/** Login button component for Facebook OAuth authentication. */
|
|
516
558
|
declare class DbxFirebaseLoginFacebookComponent extends AbstractConfiguredDbxFirebaseLoginButtonDirective {
|
|
517
559
|
readonly loginProvider = "facebook";
|
|
518
560
|
handleLogin(): Promise<_firebase_auth.UserCredential>;
|
|
@@ -520,6 +562,7 @@ declare class DbxFirebaseLoginFacebookComponent extends AbstractConfiguredDbxFir
|
|
|
520
562
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginFacebookComponent, "dbx-firebase-login-facebook", never, {}, {}, never, never, true, never>;
|
|
521
563
|
}
|
|
522
564
|
|
|
565
|
+
/** Login button component for GitHub OAuth authentication. */
|
|
523
566
|
declare class DbxFirebaseLoginGitHubComponent extends AbstractConfiguredDbxFirebaseLoginButtonDirective {
|
|
524
567
|
readonly loginProvider = "github";
|
|
525
568
|
handleLogin(): Promise<_firebase_auth.UserCredential>;
|
|
@@ -527,6 +570,7 @@ declare class DbxFirebaseLoginGitHubComponent extends AbstractConfiguredDbxFireb
|
|
|
527
570
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginGitHubComponent, "dbx-firebase-login-github", never, {}, {}, never, never, true, never>;
|
|
528
571
|
}
|
|
529
572
|
|
|
573
|
+
/** Login button component for Google OAuth authentication. */
|
|
530
574
|
declare class DbxFirebaseLoginGoogleComponent extends AbstractConfiguredDbxFirebaseLoginButtonDirective {
|
|
531
575
|
readonly loginProvider = "google";
|
|
532
576
|
handleLogin(): Promise<_firebase_auth.UserCredential>;
|
|
@@ -534,9 +578,12 @@ declare class DbxFirebaseLoginGoogleComponent extends AbstractConfiguredDbxFireb
|
|
|
534
578
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginGoogleComponent, "dbx-firebase-login-google", never, {}, {}, never, never, true, never>;
|
|
535
579
|
}
|
|
536
580
|
|
|
581
|
+
/** Injection config for a single login list item, enriched with the login method type for tracking. */
|
|
537
582
|
type DbxFirebaseLoginListItemInjectionComponentConfig = DbxInjectionComponentConfig & Pick<DbxFirebaseAuthLoginProvider, 'loginMethodType'>;
|
|
538
583
|
/**
|
|
539
|
-
*
|
|
584
|
+
* Renders a list of login provider buttons, filtered by enabled types and categories.
|
|
585
|
+
*
|
|
586
|
+
* Switches between login and registration component classes based on the current login mode.
|
|
540
587
|
*/
|
|
541
588
|
declare class DbxFirebaseLoginListComponent {
|
|
542
589
|
readonly dbxFirebaseAuthLoginService: DbxFirebaseAuthLoginService;
|
|
@@ -551,6 +598,7 @@ declare class DbxFirebaseLoginListComponent {
|
|
|
551
598
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginListComponent, "dbx-firebase-login-list", never, { "loginMode": { "alias": "loginMode"; "required": false; "isSignal": true; }; "providerTypes": { "alias": "providerTypes"; "required": false; "isSignal": true; }; "omitProviderTypes": { "alias": "omitProviderTypes"; "required": false; "isSignal": true; }; "providerCategories": { "alias": "providerCategories"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
552
599
|
}
|
|
553
600
|
|
|
601
|
+
/** Login button component for Microsoft OAuth authentication. */
|
|
554
602
|
declare class DbxFirebaseLoginMicrosoftComponent extends AbstractConfiguredDbxFirebaseLoginButtonDirective {
|
|
555
603
|
readonly loginProvider = "microsoft";
|
|
556
604
|
handleLogin(): Promise<_firebase_auth.UserCredential>;
|
|
@@ -558,6 +606,7 @@ declare class DbxFirebaseLoginMicrosoftComponent extends AbstractConfiguredDbxFi
|
|
|
558
606
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginMicrosoftComponent, "dbx-firebase-login-microsoft", never, {}, {}, never, never, true, never>;
|
|
559
607
|
}
|
|
560
608
|
|
|
609
|
+
/** Renders the configured terms of service component via dynamic injection from the login service. */
|
|
561
610
|
declare class DbxFirebaseLoginTermsComponent {
|
|
562
611
|
readonly dbxFirebaseAuthLoginService: DbxFirebaseAuthLoginService;
|
|
563
612
|
readonly config: DbxInjectionComponentConfig;
|
|
@@ -565,6 +614,7 @@ declare class DbxFirebaseLoginTermsComponent {
|
|
|
565
614
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginTermsComponent, "dbx-firebase-login-terms", never, {}, {}, never, never, true, never>;
|
|
566
615
|
}
|
|
567
616
|
|
|
617
|
+
/** Default terms of service display component with links to Terms and Privacy Policy URLs. */
|
|
568
618
|
declare class DbxFirebaseLoginTermsSimpleComponent {
|
|
569
619
|
readonly dbxFirebaseLoginTermsConfig: DbxFirebaseLoginTermsOfServiceUrlsConfig;
|
|
570
620
|
readonly tosAnchor: ClickableAnchor;
|
|
@@ -573,6 +623,7 @@ declare class DbxFirebaseLoginTermsSimpleComponent {
|
|
|
573
623
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginTermsSimpleComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
574
624
|
}
|
|
575
625
|
|
|
626
|
+
/** Login button component for Twitter OAuth authentication. */
|
|
576
627
|
declare class DbxFirebaseLoginTwitterComponent extends AbstractConfiguredDbxFirebaseLoginButtonDirective {
|
|
577
628
|
readonly loginProvider = "twitter";
|
|
578
629
|
handleLogin(): Promise<_firebase_auth.UserCredential>;
|
|
@@ -591,6 +642,7 @@ declare class DbxFirebaseRegisterComponent {
|
|
|
591
642
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseRegisterComponent, "dbx-firebase-register", never, { "providerTypes": { "alias": "providerTypes"; "required": false; "isSignal": true; }; "omitProviderTypes": { "alias": "omitProviderTypes"; "required": false; "isSignal": true; }; "providerCategories": { "alias": "providerCategories"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
592
643
|
}
|
|
593
644
|
|
|
645
|
+
/** Registration button component for email/password. Opens the email login context in register mode. */
|
|
594
646
|
declare class DbxFirebaseRegisterEmailComponent extends AbstractConfiguredDbxFirebaseLoginButtonDirective {
|
|
595
647
|
readonly loginProvider = "email";
|
|
596
648
|
handleLogin(): Promise<boolean>;
|
|
@@ -2208,6 +2260,12 @@ interface DbxFirebaseModelEntitiesComponentAllEntities {
|
|
|
2208
2260
|
readonly unregisteredEntities: DbxFirebaseModelEntityWithKeyAndStore[];
|
|
2209
2261
|
readonly onlyShowRegisteredTypes?: Maybe<boolean>;
|
|
2210
2262
|
}
|
|
2263
|
+
/**
|
|
2264
|
+
* Renders a list of model entities as an expandable accordion.
|
|
2265
|
+
*
|
|
2266
|
+
* Groups entities by registration status (registered vs unregistered) and sorts
|
|
2267
|
+
* by widget priority. Supports toggling visibility of unregistered entity types.
|
|
2268
|
+
*/
|
|
2211
2269
|
declare class DbxFirebaseModelEntitiesComponent {
|
|
2212
2270
|
readonly entitiesWidgetService: DbxFirebaseModelEntitiesWidgetService;
|
|
2213
2271
|
/**
|
|
@@ -2241,6 +2299,7 @@ declare class DbxFirebaseModelEntitiesComponent {
|
|
|
2241
2299
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseModelEntitiesComponent, "dbx-firebase-model-entities", never, { "multi": { "alias": "multi"; "required": false; "isSignal": true; }; "onlyShowRegisteredTypes": { "alias": "onlyShowRegisteredTypes"; "required": false; "isSignal": true; }; "entities": { "alias": "entities"; "required": false; "isSignal": true; }; }, {}, never, ["[empty]"], true, never>;
|
|
2242
2300
|
}
|
|
2243
2301
|
|
|
2302
|
+
/** Configuration for the model entities popover, specifying display options and data source. */
|
|
2244
2303
|
interface DbxFirebaseModelEntitiesPopoverConfig {
|
|
2245
2304
|
/**
|
|
2246
2305
|
* Custom icon
|
|
@@ -2281,6 +2340,7 @@ interface DbxFirebaseModelEntitiesPopoverConfig {
|
|
|
2281
2340
|
}
|
|
2282
2341
|
type DbxFirebaseModelEntitiesPopoverConfigWithoutOrigin = Omit<DbxFirebaseModelEntitiesPopoverConfig, 'origin' | 'entities$'>;
|
|
2283
2342
|
declare const DEFAULT_DBX_FIREBASE_MODEL_ENTITIES_COMPONENT_POPOVER_KEY = "entities";
|
|
2343
|
+
/** Popover component that displays model entities in a scrollable panel with configurable header and empty text. */
|
|
2284
2344
|
declare class DbxFirebaseModelEntitiesPopoverComponent extends AbstractPopoverDirective<unknown, DbxFirebaseModelEntitiesPopoverConfig> {
|
|
2285
2345
|
readonly entities$: Observable<LoadingState<DbxFirebaseModelEntity[]>> | undefined;
|
|
2286
2346
|
static openPopover(popupService: DbxPopoverService, config: DbxFirebaseModelEntitiesPopoverConfig, popoverKey?: DbxPopoverKey): NgPopoverRef;
|
|
@@ -2293,6 +2353,7 @@ declare class DbxFirebaseModelEntitiesPopoverComponent extends AbstractPopoverDi
|
|
|
2293
2353
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseModelEntitiesPopoverComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
2294
2354
|
}
|
|
2295
2355
|
|
|
2356
|
+
/** Configuration for the entities popover button, combining popover config with button display options. */
|
|
2296
2357
|
interface DbxFirebaseModelEntitiesPopoverButtonConfig extends DbxFirebaseModelEntitiesPopoverConfigWithoutOrigin {
|
|
2297
2358
|
/**
|
|
2298
2359
|
* The display configuration for the button.
|
|
@@ -2303,6 +2364,7 @@ interface DbxFirebaseModelEntitiesPopoverButtonConfig extends DbxFirebaseModelEn
|
|
|
2303
2364
|
*/
|
|
2304
2365
|
readonly buttonStyle?: Maybe<DbxButtonStyle>;
|
|
2305
2366
|
}
|
|
2367
|
+
/** Button component that opens an entities popover showing model entities from the injected source. */
|
|
2306
2368
|
declare class DbxFirebaseModelEntitiesPopoverButtonComponent extends AbstractPopoverRefDirective<unknown, unknown> {
|
|
2307
2369
|
private readonly _dbxPopoverService;
|
|
2308
2370
|
readonly entitiesSource: DbxFirebaseModelEntitiesSource;
|
|
@@ -2391,7 +2453,12 @@ declare class DbxFirebaseDocumentStoreContextStore extends ComponentStore<DbxFir
|
|
|
2391
2453
|
static ɵprov: i0.ɵɵInjectableDeclaration<DbxFirebaseDocumentStoreContextStore>;
|
|
2392
2454
|
}
|
|
2393
2455
|
|
|
2456
|
+
/**
|
|
2457
|
+
* Factory that creates a {@link DbxFirebaseModelEntitiesSource} from a {@link DbxFirebaseDocumentStoreContextStore},
|
|
2458
|
+
* mapping its entries into model entities grouped by identity.
|
|
2459
|
+
*/
|
|
2394
2460
|
declare const dbxFirebaseDocumentStoreContextModelEntitiesSourceFactory: (storeContextStore: DbxFirebaseDocumentStoreContextStore) => DbxFirebaseModelEntitiesSource;
|
|
2461
|
+
/** Directive that provides a {@link DbxFirebaseModelEntitiesSource} from the current document store context. */
|
|
2395
2462
|
declare class DbxFirebaseDocumentStoreContextModelEntitiesSourceDirective {
|
|
2396
2463
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseDocumentStoreContextModelEntitiesSourceDirective, never>;
|
|
2397
2464
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFirebaseDocumentStoreContextModelEntitiesSourceDirective, "[dbxFirebaseDocumentStoreContextModelEntitiesSource]", never, {}, {}, never, never, true, never>;
|
|
@@ -2892,15 +2959,28 @@ interface DbxFirebaseDocumentStoreContextState<T, D extends FirestoreDocument<T>
|
|
|
2892
2959
|
readonly ref?: Maybe<DocumentReference<T>>;
|
|
2893
2960
|
}
|
|
2894
2961
|
|
|
2962
|
+
/**
|
|
2963
|
+
* Optional configuration for store CRUD wrapper functions.
|
|
2964
|
+
*
|
|
2965
|
+
* Provides an `onResult` callback that fires after the wrapped function resolves.
|
|
2966
|
+
* Useful for capturing one-time values (e.g. `client_secret`) from the response.
|
|
2967
|
+
*/
|
|
2968
|
+
interface FirebaseDocumentStoreFunctionConfig<I, O = unknown> {
|
|
2969
|
+
/**
|
|
2970
|
+
* Called after the function resolves with the original params and the result.
|
|
2971
|
+
*/
|
|
2972
|
+
readonly onResult?: (params: I, result: O) => void;
|
|
2973
|
+
}
|
|
2895
2974
|
type DbxFirebaseDocumentStoreCreateFunction<I, O extends OnCallCreateModelResult = OnCallCreateModelResult> = (params: I) => Observable<LoadingState<O>>;
|
|
2896
2975
|
/**
|
|
2897
2976
|
* Creates a function for a store that DbxFirebaseDocumentStore captures the ModelFirebaseCreateFunction result and sets the key of the created value.
|
|
2898
2977
|
*
|
|
2899
2978
|
* @param store
|
|
2900
2979
|
* @param fn
|
|
2980
|
+
* @param config - Optional config with an `onResult` callback.
|
|
2901
2981
|
* @returns
|
|
2902
2982
|
*/
|
|
2903
|
-
declare function firebaseDocumentStoreCreateFunction<I, O extends OnCallCreateModelResult = OnCallCreateModelResult>(store: DbxFirebaseDocumentStore<any, any>, fn: ModelFirebaseCreateFunction<I, O>): DbxFirebaseDocumentStoreCreateFunction<I, O>;
|
|
2983
|
+
declare function firebaseDocumentStoreCreateFunction<I, O extends OnCallCreateModelResult = OnCallCreateModelResult>(store: DbxFirebaseDocumentStore<any, any>, fn: ModelFirebaseCreateFunction<I, O>, config?: FirebaseDocumentStoreFunctionConfig<I, O>): DbxFirebaseDocumentStoreCreateFunction<I, O>;
|
|
2904
2984
|
type DbxFirebaseDocumentStoreCrudFunction<I, O = void> = (input: I) => Observable<LoadingState<O>>;
|
|
2905
2985
|
/**
|
|
2906
2986
|
* Creates a DbxfirebaseDocumentStoreCrudFunction from the input ModelFirebaseCrudFunction.
|
|
@@ -2939,7 +3019,7 @@ declare function firebaseDocumentStoreReadFunction<I extends DbxFirebaseDocument
|
|
|
2939
3019
|
* @param fn
|
|
2940
3020
|
* @returns
|
|
2941
3021
|
*/
|
|
2942
|
-
declare function firebaseDocumentStoreUpdateFunction<I extends DbxFirebaseDocumentStoreFunctionParams, O = void>(store: DbxFirebaseDocumentStore<any, any>, fn: ModelFirebaseUpdateFunction<I, O>): DbxFirebaseDocumentStoreFunction<I, O>;
|
|
3022
|
+
declare function firebaseDocumentStoreUpdateFunction<I extends DbxFirebaseDocumentStoreFunctionParams, O = void>(store: DbxFirebaseDocumentStore<any, any>, fn: ModelFirebaseUpdateFunction<I, O>, config?: FirebaseDocumentStoreFunctionConfig<DbxFirebaseDocumentStoreFunctionParamsInput<I>, O>): DbxFirebaseDocumentStoreFunction<I, O>;
|
|
2943
3023
|
/**
|
|
2944
3024
|
* Creates a DbxFirebaseDocumentStoreFunction for delete.
|
|
2945
3025
|
*
|
|
@@ -3119,18 +3199,21 @@ declare class DbxFirebaseDocumentStoreContextStoreDirective {
|
|
|
3119
3199
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFirebaseDocumentStoreContextStoreDirective, "[dbxFirebaseDocumentStoreContextStore]", never, {}, {}, never, never, true, never>;
|
|
3120
3200
|
}
|
|
3121
3201
|
|
|
3202
|
+
/** Collection store for querying SystemState documents. */
|
|
3122
3203
|
declare class SystemStateCollectionStore extends AbstractDbxFirebaseCollectionStore<SystemState, SystemStateDocument> {
|
|
3123
3204
|
constructor();
|
|
3124
3205
|
static ɵfac: i0.ɵɵFactoryDeclaration<SystemStateCollectionStore, never>;
|
|
3125
3206
|
static ɵprov: i0.ɵɵInjectableDeclaration<SystemStateCollectionStore>;
|
|
3126
3207
|
}
|
|
3127
3208
|
|
|
3209
|
+
/** Directive providing a {@link SystemStateCollectionStore} for querying system state documents. */
|
|
3128
3210
|
declare class DbxFirebaseSystemStateCollectionStoreDirective extends DbxFirebaseCollectionStoreDirective<SystemState, SystemStateDocument, SystemStateCollectionStore> {
|
|
3129
3211
|
constructor();
|
|
3130
3212
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseSystemStateCollectionStoreDirective, never>;
|
|
3131
3213
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFirebaseSystemStateCollectionStoreDirective, "[dbxFirebaseSystemStateCollection]", never, {}, {}, never, never, true, never>;
|
|
3132
3214
|
}
|
|
3133
3215
|
|
|
3216
|
+
/** Document store for a single typed SystemState document. */
|
|
3134
3217
|
declare class SystemStateDocumentStore<T extends SystemStateStoredData = SystemStateStoredData> extends AbstractDbxFirebaseDocumentStore<SystemState<T>, SystemStateDocument<T>> {
|
|
3135
3218
|
constructor();
|
|
3136
3219
|
static ɵfac: i0.ɵɵFactoryDeclaration<SystemStateDocumentStore<any>, never>;
|
|
@@ -3153,6 +3236,7 @@ declare abstract class AbstractSystemStateDocumentStoreAccessor<T extends System
|
|
|
3153
3236
|
static ɵprov: i0.ɵɵInjectableDeclaration<AbstractSystemStateDocumentStoreAccessor<any>>;
|
|
3154
3237
|
}
|
|
3155
3238
|
|
|
3239
|
+
/** Directive providing a {@link SystemStateDocumentStore} for accessing a single system state document. */
|
|
3156
3240
|
declare class DbxFirebaseSystemStateDocumentStoreDirective<T extends SystemStateStoredData = SystemStateStoredData> extends DbxFirebaseDocumentStoreDirective<SystemState<T>, SystemStateDocument<T>, SystemStateDocumentStore<T>> {
|
|
3157
3241
|
constructor();
|
|
3158
3242
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseSystemStateDocumentStoreDirective<any>, never>;
|
|
@@ -3178,17 +3262,21 @@ declare class DbxFirebaseNotificationTemplateService {
|
|
|
3178
3262
|
static ɵprov: i0.ɵɵInjectableDeclaration<DbxFirebaseNotificationTemplateService>;
|
|
3179
3263
|
}
|
|
3180
3264
|
|
|
3265
|
+
/** A notification item wrapped with list selection state. */
|
|
3181
3266
|
type NotificationItemWithSelection = DbxValueAsListItem<NotificationItem>;
|
|
3267
|
+
/** Selection list wrapper for notification items with view-only default selection mode. */
|
|
3182
3268
|
declare class DbxFirebaseNotificationItemListComponent extends AbstractDbxSelectionListWrapperDirective<NotificationItem> {
|
|
3183
3269
|
constructor();
|
|
3184
3270
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseNotificationItemListComponent, never>;
|
|
3185
3271
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseNotificationItemListComponent, "dbx-firebase-notificationitem-list", never, {}, {}, never, ["[top]", "[bottom]", "[empty]", "[emptyLoading]", "[end]"], true, never>;
|
|
3186
3272
|
}
|
|
3273
|
+
/** List view component that renders notification items using the selection list pattern. */
|
|
3187
3274
|
declare class DbxFirebaseNotificationItemListViewComponent extends AbstractDbxSelectionListViewDirective<NotificationItem> {
|
|
3188
3275
|
readonly config: DbxSelectionValueListViewConfig<NotificationItemWithSelection>;
|
|
3189
3276
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseNotificationItemListViewComponent, never>;
|
|
3190
3277
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseNotificationItemListViewComponent, "dbx-firebase-notificationitem-list-view", never, {}, {}, never, never, true, never>;
|
|
3191
3278
|
}
|
|
3279
|
+
/** Individual list view item component rendering a notification's subject, message, and date. */
|
|
3192
3280
|
declare class DbxFirebaseNotificationItemListViewItemComponent extends AbstractDbxValueListViewItemComponent<NotificationItem> {
|
|
3193
3281
|
readonly dbxFirebaseNotificationTemplateService: DbxFirebaseNotificationTemplateService;
|
|
3194
3282
|
readonly pairGetter: _dereekb_util.CachedFactoryWithInput<_dereekb_firebase.NotificationItemSubjectMessagePair<{}>, unknown>;
|
|
@@ -3199,6 +3287,7 @@ declare class DbxFirebaseNotificationItemListViewItemComponent extends AbstractD
|
|
|
3199
3287
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseNotificationItemListViewItemComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
3200
3288
|
}
|
|
3201
3289
|
|
|
3290
|
+
/** Presentational component for notification item content, displaying subject, message, and date. */
|
|
3202
3291
|
declare class DbxFirebaseNotificationItemContentComponent {
|
|
3203
3292
|
readonly subject: i0.InputSignal<Maybe<string>>;
|
|
3204
3293
|
readonly message: i0.InputSignal<Maybe<string>>;
|
|
@@ -3207,6 +3296,10 @@ declare class DbxFirebaseNotificationItemContentComponent {
|
|
|
3207
3296
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseNotificationItemContentComponent, "dbx-firebase-notificationitem-content", never, { "subject": { "alias": "subject"; "required": false; "isSignal": true; }; "message": { "alias": "message"; "required": false; "isSignal": true; }; "date": { "alias": "date"; "required": false; "isSignal": true; }; }, {}, never, ["[header]", "[premessage]", "*"], true, never>;
|
|
3208
3297
|
}
|
|
3209
3298
|
|
|
3299
|
+
/**
|
|
3300
|
+
* Renders a notification item using the widget system, resolving the appropriate
|
|
3301
|
+
* display component based on the notification's template type.
|
|
3302
|
+
*/
|
|
3210
3303
|
declare class DbxFirebaseNotificationItemViewComponent<D extends NotificationItemMetadata = {}> {
|
|
3211
3304
|
readonly item: i0.InputSignal<Maybe<NotificationItem<D>>>;
|
|
3212
3305
|
readonly configSignal: i0.Signal<DbxWidgetViewComponentConfig<unknown> | undefined>;
|
|
@@ -3214,12 +3307,18 @@ declare class DbxFirebaseNotificationItemViewComponent<D extends NotificationIte
|
|
|
3214
3307
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseNotificationItemViewComponent<any>, "dbx-firebase-notificationitem-view", never, { "item": { "alias": "item"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3215
3308
|
}
|
|
3216
3309
|
|
|
3310
|
+
/**
|
|
3311
|
+
* Abstract base directive for notification item widget display components.
|
|
3312
|
+
*
|
|
3313
|
+
* Provides typed access to the {@link NotificationItem} data for custom rendering.
|
|
3314
|
+
*/
|
|
3217
3315
|
declare abstract class AbstractDbxFirebaseNotificationItemWidgetComponent<D extends NotificationItemMetadata = {}> extends AbstractDbxWidgetComponent<NotificationItem<D>> {
|
|
3218
3316
|
get notificationItem(): NotificationItem<D>;
|
|
3219
3317
|
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractDbxFirebaseNotificationItemWidgetComponent<any>, never>;
|
|
3220
3318
|
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractDbxFirebaseNotificationItemWidgetComponent<any>, never, never, {}, {}, never, never, true, never>;
|
|
3221
3319
|
}
|
|
3222
3320
|
|
|
3321
|
+
/** Default notification item view component that renders subject, message, and creation date. */
|
|
3223
3322
|
declare class DbxFirebaseNotificationItemDefaultViewComponent extends AbstractDbxFirebaseNotificationItemWidgetComponent {
|
|
3224
3323
|
get subject(): _dereekb_util.Maybe<string>;
|
|
3225
3324
|
get message(): _dereekb_util.Maybe<string>;
|
|
@@ -3307,6 +3406,7 @@ declare class DbxFirebaseNotificationItemStore extends ComponentStore<DbxFirebas
|
|
|
3307
3406
|
static ɵprov: i0.ɵɵInjectableDeclaration<DbxFirebaseNotificationItemStore>;
|
|
3308
3407
|
}
|
|
3309
3408
|
|
|
3409
|
+
/** Document store for a single Notification, providing derived observables for creation date, send state, and update functions. */
|
|
3310
3410
|
declare class NotificationDocumentStore extends AbstractDbxFirebaseDocumentWithParentStore<Notification, NotificationBox, NotificationDocument, NotificationBoxDocument> {
|
|
3311
3411
|
readonly notificationFunctions: NotificationFunctions;
|
|
3312
3412
|
constructor();
|
|
@@ -3320,24 +3420,28 @@ declare class NotificationDocumentStore extends AbstractDbxFirebaseDocumentWithP
|
|
|
3320
3420
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationDocumentStore>;
|
|
3321
3421
|
}
|
|
3322
3422
|
|
|
3423
|
+
/** Directive providing a {@link NotificationDocumentStore} for accessing a single notification document. */
|
|
3323
3424
|
declare class DbxFirebaseNotificationDocumentStoreDirective extends DbxFirebaseDocumentStoreDirective<Notification, NotificationDocument, NotificationDocumentStore> {
|
|
3324
3425
|
constructor();
|
|
3325
3426
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseNotificationDocumentStoreDirective, never>;
|
|
3326
3427
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFirebaseNotificationDocumentStoreDirective, "[dbxFirebaseNotificationDocument]", never, {}, {}, never, never, true, never>;
|
|
3327
3428
|
}
|
|
3328
3429
|
|
|
3430
|
+
/** Collection store for Notification documents, scoped to a parent NotificationBox when available. */
|
|
3329
3431
|
declare class NotificationCollectionStore extends AbstractDbxFirebaseCollectionWithParentStore<Notification, NotificationBox, NotificationDocument, NotificationBoxDocument> {
|
|
3330
3432
|
constructor();
|
|
3331
3433
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationCollectionStore, never>;
|
|
3332
3434
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationCollectionStore>;
|
|
3333
3435
|
}
|
|
3334
3436
|
|
|
3437
|
+
/** Directive providing a {@link NotificationCollectionStore} for querying notifications within a template. */
|
|
3335
3438
|
declare class DbxFirebaseNotificationCollectionStoreDirective extends DbxFirebaseCollectionWithParentStoreDirective<Notification, NotificationBox, NotificationDocument, NotificationBoxDocument, NotificationCollectionStore> {
|
|
3336
3439
|
constructor();
|
|
3337
3440
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseNotificationCollectionStoreDirective, never>;
|
|
3338
3441
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFirebaseNotificationCollectionStoreDirective, "[dbxFirebaseNotificationCollection]", never, {}, {}, never, never, true, never>;
|
|
3339
3442
|
}
|
|
3340
3443
|
|
|
3444
|
+
/** Document store for a single NotificationBox, providing derived observables for creation date, recipients, and update functions. */
|
|
3341
3445
|
declare class NotificationBoxDocumentStore extends AbstractDbxFirebaseDocumentStore<NotificationBox, NotificationBoxDocument> {
|
|
3342
3446
|
readonly notificationFunctions: NotificationFunctions;
|
|
3343
3447
|
constructor();
|
|
@@ -3349,36 +3453,42 @@ declare class NotificationBoxDocumentStore extends AbstractDbxFirebaseDocumentSt
|
|
|
3349
3453
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationBoxDocumentStore>;
|
|
3350
3454
|
}
|
|
3351
3455
|
|
|
3456
|
+
/** Directive providing a {@link NotificationBoxDocumentStore} for accessing a single notification box document. */
|
|
3352
3457
|
declare class DbxFirebaseNotificationBoxDocumentStoreDirective extends DbxFirebaseDocumentStoreDirective<NotificationBox, NotificationBoxDocument, NotificationBoxDocumentStore> {
|
|
3353
3458
|
constructor();
|
|
3354
3459
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseNotificationBoxDocumentStoreDirective, never>;
|
|
3355
3460
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFirebaseNotificationBoxDocumentStoreDirective, "[dbxFirebaseNotificationBoxDocument]", never, {}, {}, never, never, true, never>;
|
|
3356
3461
|
}
|
|
3357
3462
|
|
|
3463
|
+
/** Collection store for querying NotificationBox documents. */
|
|
3358
3464
|
declare class NotificationBoxCollectionStore extends AbstractDbxFirebaseCollectionStore<NotificationBox, NotificationBoxDocument> {
|
|
3359
3465
|
constructor();
|
|
3360
3466
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationBoxCollectionStore, never>;
|
|
3361
3467
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationBoxCollectionStore>;
|
|
3362
3468
|
}
|
|
3363
3469
|
|
|
3470
|
+
/** Directive providing a {@link NotificationBoxCollectionStore} for querying notification boxes. */
|
|
3364
3471
|
declare class DbxFirebaseNotificationBoxCollectionStoreDirective extends DbxFirebaseCollectionStoreDirective<NotificationBox, NotificationBoxDocument, NotificationBoxCollectionStore> {
|
|
3365
3472
|
constructor();
|
|
3366
3473
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseNotificationBoxCollectionStoreDirective, never>;
|
|
3367
3474
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFirebaseNotificationBoxCollectionStoreDirective, "[dbxFirebaseNotificationBoxCollection]", never, {}, {}, never, never, true, never>;
|
|
3368
3475
|
}
|
|
3369
3476
|
|
|
3477
|
+
/** Collection store for querying NotificationSummary documents. */
|
|
3370
3478
|
declare class NotificationSummaryCollectionStore extends AbstractDbxFirebaseCollectionStore<NotificationSummary, NotificationSummaryDocument> {
|
|
3371
3479
|
constructor();
|
|
3372
3480
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationSummaryCollectionStore, never>;
|
|
3373
3481
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationSummaryCollectionStore>;
|
|
3374
3482
|
}
|
|
3375
3483
|
|
|
3484
|
+
/** Directive providing a {@link NotificationSummaryCollectionStore} for querying notification summaries. */
|
|
3376
3485
|
declare class DbxFirebaseNotificationSummaryCollectionStoreDirective extends DbxFirebaseCollectionStoreDirective<NotificationSummary, NotificationSummaryDocument, NotificationSummaryCollectionStore> {
|
|
3377
3486
|
constructor();
|
|
3378
3487
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseNotificationSummaryCollectionStoreDirective, never>;
|
|
3379
3488
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFirebaseNotificationSummaryCollectionStoreDirective, "[dbxFirebaseNotificationSummaryCollection]", never, {}, {}, never, never, true, never>;
|
|
3380
3489
|
}
|
|
3381
3490
|
|
|
3491
|
+
/** Document store for a single NotificationSummary, providing derived observables for items, timestamps, sync state, and update functions. */
|
|
3382
3492
|
declare class NotificationSummaryDocumentStore extends AbstractDbxFirebaseDocumentStore<NotificationSummary, NotificationSummaryDocument> {
|
|
3383
3493
|
readonly notificationFunctions: NotificationFunctions;
|
|
3384
3494
|
constructor();
|
|
@@ -3395,24 +3505,28 @@ declare class NotificationSummaryDocumentStore extends AbstractDbxFirebaseDocume
|
|
|
3395
3505
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationSummaryDocumentStore>;
|
|
3396
3506
|
}
|
|
3397
3507
|
|
|
3508
|
+
/** Directive providing a {@link NotificationSummaryDocumentStore} for accessing a single notification summary. */
|
|
3398
3509
|
declare class DbxFirebaseNotificationSummaryDocumentStoreDirective extends DbxFirebaseDocumentStoreDirective<NotificationSummary, NotificationSummaryDocument, NotificationSummaryDocumentStore> {
|
|
3399
3510
|
constructor();
|
|
3400
3511
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseNotificationSummaryDocumentStoreDirective, never>;
|
|
3401
3512
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFirebaseNotificationSummaryDocumentStoreDirective, "[dbxFirebaseNotificationSummaryDocument]", never, {}, {}, never, never, true, never>;
|
|
3402
3513
|
}
|
|
3403
3514
|
|
|
3515
|
+
/** Collection store for querying NotificationUser documents. */
|
|
3404
3516
|
declare class NotificationUserCollectionStore extends AbstractDbxFirebaseCollectionStore<NotificationUser, NotificationUserDocument> {
|
|
3405
3517
|
constructor();
|
|
3406
3518
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationUserCollectionStore, never>;
|
|
3407
3519
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationUserCollectionStore>;
|
|
3408
3520
|
}
|
|
3409
3521
|
|
|
3522
|
+
/** Directive providing a {@link NotificationUserCollectionStore} for querying notification user documents. */
|
|
3410
3523
|
declare class DbxFirebaseNotificationUserCollectionStoreDirective extends DbxFirebaseCollectionStoreDirective<NotificationUser, NotificationUserDocument, NotificationUserCollectionStore> {
|
|
3411
3524
|
constructor();
|
|
3412
3525
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseNotificationUserCollectionStoreDirective, never>;
|
|
3413
3526
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFirebaseNotificationUserCollectionStoreDirective, "[dbxFirebaseNotificationUserCollection]", never, {}, {}, never, never, true, never>;
|
|
3414
3527
|
}
|
|
3415
3528
|
|
|
3529
|
+
/** Document store for a single NotificationUser with update and resync functions. */
|
|
3416
3530
|
declare class NotificationUserDocumentStore extends AbstractDbxFirebaseDocumentStore<NotificationUser, NotificationUserDocument> {
|
|
3417
3531
|
readonly notificationFunctions: NotificationFunctions;
|
|
3418
3532
|
constructor();
|
|
@@ -3422,6 +3536,7 @@ declare class NotificationUserDocumentStore extends AbstractDbxFirebaseDocumentS
|
|
|
3422
3536
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationUserDocumentStore>;
|
|
3423
3537
|
}
|
|
3424
3538
|
|
|
3539
|
+
/** Directive providing a {@link NotificationUserDocumentStore} for accessing a single notification user document. */
|
|
3425
3540
|
declare class DbxFirebaseNotificationUserDocumentStoreDirective extends DbxFirebaseDocumentStoreDirective<NotificationUser, NotificationUserDocument, NotificationUserDocumentStore> {
|
|
3426
3541
|
constructor();
|
|
3427
3542
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseNotificationUserDocumentStoreDirective, never>;
|
|
@@ -4276,12 +4391,33 @@ declare function defaultDbxFirebaseStorageFileDownloadStorageAccessorFactory(sto
|
|
|
4276
4391
|
*/
|
|
4277
4392
|
declare function provideDbxFirebaseStorageFileService(): EnvironmentProviders;
|
|
4278
4393
|
|
|
4394
|
+
/**
|
|
4395
|
+
* Angular pipe that flattens a Firestore model key path into a single string identifier.
|
|
4396
|
+
*
|
|
4397
|
+
* Returns an empty string for null/undefined input.
|
|
4398
|
+
*
|
|
4399
|
+
* @example
|
|
4400
|
+
* ```html
|
|
4401
|
+
* <span>{{ document.key | flatFirestoreModelKey }}</span>
|
|
4402
|
+
* ```
|
|
4403
|
+
*/
|
|
4279
4404
|
declare class FlatFirestoreModelKeyPipe implements PipeTransform {
|
|
4280
4405
|
transform(input: Maybe<FirestoreModelKey>): string;
|
|
4281
4406
|
static ɵfac: i0.ɵɵFactoryDeclaration<FlatFirestoreModelKeyPipe, never>;
|
|
4282
4407
|
static ɵpipe: i0.ɵɵPipeDeclaration<FlatFirestoreModelKeyPipe, "flatFirestoreModelKey", true>;
|
|
4283
4408
|
}
|
|
4284
4409
|
|
|
4410
|
+
/**
|
|
4411
|
+
* Angular pipe that converts a Firestore model key to a two-way flat key format,
|
|
4412
|
+
* enabling reversible encoding/decoding of the full path.
|
|
4413
|
+
*
|
|
4414
|
+
* Returns an empty string for null/undefined input.
|
|
4415
|
+
*
|
|
4416
|
+
* @example
|
|
4417
|
+
* ```html
|
|
4418
|
+
* <span>{{ document.key | twoWayFlatFirestoreModelKey }}</span>
|
|
4419
|
+
* ```
|
|
4420
|
+
*/
|
|
4285
4421
|
declare class TwoWayFlatFirestoreModelKeyPipe implements PipeTransform {
|
|
4286
4422
|
transform(input: Maybe<FirestoreModelKey>): string;
|
|
4287
4423
|
static ɵfac: i0.ɵɵFactoryDeclaration<TwoWayFlatFirestoreModelKeyPipe, never>;
|
|
@@ -4436,4 +4572,4 @@ interface ProvideDbxFirebaseConfig<T, M extends FirebaseFunctionsMap = FirebaseF
|
|
|
4436
4572
|
declare function provideDbxFirebase<T, M extends FirebaseFunctionsMap = FirebaseFunctionsMap>(config: ProvideDbxFirebaseConfig<T, M>): EnvironmentProviders;
|
|
4437
4573
|
|
|
4438
4574
|
export { AbstractConfiguredDbxFirebaseLoginButtonDirective, AbstractDbxFirebaseCollectionStore, AbstractDbxFirebaseCollectionWithParentStore, AbstractDbxFirebaseDocumentStore, AbstractDbxFirebaseDocumentWithParentStore, AbstractDbxFirebaseModelEntityWidgetDirective, AbstractDbxFirebaseNotificationItemWidgetComponent, AbstractRootSingleItemDbxFirebaseDocument, AbstractSingleItemDbxFirebaseDocument, AbstractSystemStateDocumentStoreAccessor, DBX_CONFIGURED_DBX_FIREBASE_LOGIN_BUTTON_COMPONENT_CONFIGURATION, DBX_FIREBASE_APP_OPTIONS_TOKEN, DBX_FIREBASE_DOCUMENT_STORE_CONTEXT_STORE_TOKEN, DBX_FIREBASE_ID_ROUTER_PARAM_DEFAULT_ID_PARAM_KEY, DBX_FIREBASE_ID_ROUTER_PARAM_DEFAULT_KEY_PARAM_KEY, DBX_FIREBASE_ID_ROUTER_PARAM_DEFAULT_USE_PARAM_VALUE, DBX_FIREBASE_MODEL_DOES_NOT_EXIST_ERROR, DBX_FIREBASE_MODEL_ENTITY_WITH_STORE_TOKEN, DBX_FIREBASE_STORAGEFILE_DOWNLOAD_STORAGE_ACCESSOR_TOKEN, DBX_FIREBASE_STORAGE_CONTEXT_CONFIG_TOKEN, DBX_FIREBASE_STORAGE_CONTEXT_TOKEN, DBX_FIRESTORE_CONTEXT_TOKEN, DEFAULT_CONFIGURED_DBX_FIREBASE_LOGIN_BUTTON_TEMPLATE, DEFAULT_DBX_FIREBASE_ANALYTICS_USER_PROPERTIES_FACTORY, DEFAULT_DBX_FIREBASE_AUTH_SERVICE_DELEGATE, DEFAULT_DBX_FIREBASE_MODEL_ENTITIES_COMPONENT_POPOVER_KEY, DEFAULT_DBX_FIREBASE_MODEL_HISTORY_COMPONENT_POPOVER_KEY, DEFAULT_DBX_FIREBASE_NOTIFICATION_ITEM_STORE_POPOVER_KEY, 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_DEVELOPMENT_ENABLED_TOKEN, DEFAULT_FIREBASE_DEVELOPMENT_POPUP_KEY, DEFAULT_FIREBASE_DEVELOPMENT_SCHEDULER_ENABLED_TOKEN, DEFAULT_FIREBASE_DEVELOPMENT_WIDGET_PROVIDERS_TOKEN, DEFAULT_FIREBASE_LOGIN_METHOD_CATEGORY, DEFAULT_FIREBASE_NOTIFICATION_ITEM_WIDGET_TYPE, DEVELOPMENT_FIREBASE_SERVER_SCHEDULER_WIDGET_KEY, DbxFirebaseAnalyticsUserEventsListenerService, DbxFirebaseAnalyticsUserSource, DbxFirebaseAppCheckHttpInterceptor, DbxFirebaseAuthLoginService, DbxFirebaseAuthService, DbxFirebaseAuthServiceDelegate, DbxFirebaseCollectionChangeDirective, DbxFirebaseCollectionChangeTriggerInstance, DbxFirebaseCollectionHasChangeDirective, DbxFirebaseCollectionListDirective, DbxFirebaseCollectionLoaderInstance, DbxFirebaseCollectionStoreDirective, DbxFirebaseCollectionWithParentStoreDirective, DbxFirebaseDevelopmentDirective, DbxFirebaseDevelopmentModule, DbxFirebaseDevelopmentPopupComponent, DbxFirebaseDevelopmentPopupContentComponent, DbxFirebaseDevelopmentPopupContentFormComponent, DbxFirebaseDevelopmentSchedulerListComponent, DbxFirebaseDevelopmentSchedulerListViewComponent, DbxFirebaseDevelopmentSchedulerListViewItemComponent, DbxFirebaseDevelopmentSchedulerService, DbxFirebaseDevelopmentSchedulerWidgetComponent, DbxFirebaseDevelopmentService, DbxFirebaseDevelopmentWidgetService, DbxFirebaseDocumentLoaderInstance, DbxFirebaseDocumentStoreContextModelEntitiesSourceDirective, DbxFirebaseDocumentStoreContextStore, DbxFirebaseDocumentStoreContextStoreDirective, DbxFirebaseDocumentStoreDirective, DbxFirebaseDocumentStoreIdFromTwoWayModelKeyDirective, DbxFirebaseDocumentStoreTwoWayKeyProvider, DbxFirebaseDocumentStoreTwoWayModelKeySourceDirective, DbxFirebaseEmailFormComponent, DbxFirebaseEmailRecoveryFormComponent, DbxFirebaseEmulatorService, DbxFirebaseLoginAnonymousComponent, DbxFirebaseLoginAppleComponent, DbxFirebaseLoginButtonComponent, DbxFirebaseLoginButtonContainerComponent, DbxFirebaseLoginComponent, DbxFirebaseLoginContext, DbxFirebaseLoginContextBackButtonComponent, DbxFirebaseLoginContextDirective, DbxFirebaseLoginEmailComponent, DbxFirebaseLoginEmailContentComponent, DbxFirebaseLoginFacebookComponent, DbxFirebaseLoginGitHubComponent, DbxFirebaseLoginGoogleComponent, DbxFirebaseLoginListComponent, DbxFirebaseLoginMicrosoftComponent, DbxFirebaseLoginTermsComponent, DbxFirebaseLoginTermsSimpleComponent, DbxFirebaseLoginTwitterComponent, DbxFirebaseModelContextService, DbxFirebaseModelEntitiesComponent, DbxFirebaseModelEntitiesDebugWidgetComponent, DbxFirebaseModelEntitiesPopoverButtonComponent, DbxFirebaseModelEntitiesPopoverComponent, DbxFirebaseModelEntitiesSource, DbxFirebaseModelEntitiesWidgetService, DbxFirebaseModelEntitiesWidgetServiceConfig, DbxFirebaseModelHistoryComponent, DbxFirebaseModelHistoryPopoverButtonComponent, DbxFirebaseModelHistoryPopoverComponent, DbxFirebaseModelKeyComponent, DbxFirebaseModelModule, DbxFirebaseModelStoreModule, DbxFirebaseModelTrackerService, DbxFirebaseModelTypeInstanceListComponent, DbxFirebaseModelTypeInstanceListViewComponent, DbxFirebaseModelTypeInstanceListViewItemComponent, DbxFirebaseModelTypesService, DbxFirebaseModelTypesServiceConfig, DbxFirebaseModelViewedEventDirective, DbxFirebaseModule, DbxFirebaseNotificationBoxCollectionStoreDirective, DbxFirebaseNotificationBoxDocumentStoreDirective, DbxFirebaseNotificationCollectionStoreDirective, DbxFirebaseNotificationDocumentStoreDirective, DbxFirebaseNotificationItemContentComponent, DbxFirebaseNotificationItemDefaultViewComponent, DbxFirebaseNotificationItemListComponent, DbxFirebaseNotificationItemListViewComponent, DbxFirebaseNotificationItemListViewItemComponent, DbxFirebaseNotificationItemStore, DbxFirebaseNotificationItemStorePopoverButtonComponent, DbxFirebaseNotificationItemStorePopoverComponent, DbxFirebaseNotificationItemViewComponent, DbxFirebaseNotificationItemWidgetService, DbxFirebaseNotificationSummaryCollectionStoreDirective, DbxFirebaseNotificationSummaryDocumentStoreDirective, DbxFirebaseNotificationTemplateService, DbxFirebaseNotificationUserCollectionStoreDirective, DbxFirebaseNotificationUserDocumentStoreDirective, DbxFirebaseParsedEmulatorsConfig, DbxFirebaseRegisterComponent, DbxFirebaseRegisterEmailComponent, DbxFirebaseStorageFileCollectionStoreDirective, DbxFirebaseStorageFileDocumentStoreDirective, DbxFirebaseStorageFileDownloadButtonComponent, DbxFirebaseStorageFileDownloadService, DbxFirebaseStorageFileDownloadStorage, DbxFirebaseStorageFileGroupDocumentStoreDirective, DbxFirebaseStorageFileUploadActionHandlerDirective, DbxFirebaseStorageFileUploadInitializeDocumentDirective, DbxFirebaseStorageFileUploadModule, DbxFirebaseStorageFileUploadStore, DbxFirebaseStorageFileUploadStoreDirective, DbxFirebaseStorageFileUploadSyncDirective, DbxFirebaseStorageService, DbxFirebaseSystemStateCollectionStoreDirective, DbxFirebaseSystemStateDocumentStoreDirective, DbxFirestoreContextService, DbxLimitedFirebaseDocumentLoaderInstance, FIREBASE_NOTIFICATION_ITEM_WIDGET_TYPE_PREFIX, FlatFirestoreModelKeyPipe, NotificationBoxCollectionStore, NotificationBoxDocumentStore, NotificationCollectionStore, NotificationDocumentStore, NotificationSummaryCollectionStore, NotificationSummaryDocumentStore, NotificationUserCollectionStore, NotificationUserDocumentStore, OAUTH_FIREBASE_LOGIN_METHOD_CATEGORY, StorageFileCollectionStore, StorageFileDocumentStore, StorageFileGroupDocumentStore, StorageFileUploadFilesError, SystemStateCollectionStore, SystemStateDocumentStore, TwoWayFlatFirestoreModelKeyPipe, authRolesObsWithClaimsService, authUserInfoFromAuthUser, authUserStateFromFirebaseAuthServiceFunction, dbxFirebaseAuthContextInfo, dbxFirebaseCollectionChangeTrigger, dbxFirebaseCollectionChangeTriggerForStore, dbxFirebaseCollectionChangeTriggerForWatcher, dbxFirebaseCollectionChangeWatcher, dbxFirebaseCollectionLoaderInstance, dbxFirebaseCollectionLoaderInstanceWithCollection, dbxFirebaseDocumentLoaderInstance, dbxFirebaseDocumentLoaderInstanceWithAccessor, dbxFirebaseDocumentStoreContextModelEntitiesSourceFactory, dbxFirebaseIdRouteParamRedirect, dbxFirebaseInContextFirebaseModelServiceInstance, dbxFirebaseInContextFirebaseModelServiceInstanceFactory, dbxFirebaseKeyRouteParamRedirect, dbxFirebaseModelContextServiceInfoInstanceFactory, dbxFirebaseModelEntityWidgetInjectionConfigFactory, dbxFirebaseModelTypesServiceInstance, dbxFirebaseModelTypesServiceInstancePairForKeysFactory, dbxFirebaseSourceSelectLoadSource, dbxFirebaseStorageFileDownloadServiceCustomSourceFromObs, dbxFirebaseStorageProvidersContextConfigFactory, dbxLimitedFirebaseDocumentLoaderInstance, dbxLimitedFirebaseDocumentLoaderInstanceWithAccessor, dbxWidgetTypeForNotificationTemplateType, defaultDbxFirebaseAuthServiceDelegateWithClaimsService, defaultDbxFirebaseStorageFileDownloadStorageAccessorFactory, developmentFirebaseServerSchedulerWidgetEntry, enableAppCheckDebugTokenGeneration, firebaseAuthTokenFromUser, firebaseCollectionStoreCreateFunction, firebaseCollectionStoreCrudFunction, firebaseContextServiceEntityMap, firebaseDocumentStoreCreateFunction, firebaseDocumentStoreCrudFunction, firebaseDocumentStoreDeleteFunction, firebaseDocumentStoreReadFunction, firebaseDocumentStoreUpdateFunction, importsAndExports, isDbxFirebaseModelEntityWithStore, linkDocumentStoreToParentContextStores, modelDoesNotExistError, provideDbxFirebase, provideDbxFirebaseAnalyticsUserEventsListenerService, provideDbxFirebaseApp, provideDbxFirebaseAuth, provideDbxFirebaseCollectionStoreDirective, provideDbxFirebaseCollectionWithParentStoreDirective, provideDbxFirebaseDevelopment, provideDbxFirebaseDocumentStoreContextStore, provideDbxFirebaseDocumentStoreDirective, provideDbxFirebaseDocumentStoreTwoWayKeyProvider, provideDbxFirebaseEmulator, provideDbxFirebaseFunctions, provideDbxFirebaseLogin, provideDbxFirebaseModelContextService, provideDbxFirebaseModelEntitiesWidgetService, provideDbxFirebaseNotifications, provideDbxFirebaseStorageFileService, provideDbxFirestoreCollection, provideNotificationFirestoreCollections, provideStorageFileFirestoreCollections, provideSystemStateFirestoreCollections, providedDbxFirebaseStorage, readDbxAnalyticsUserPropertiesFromAuthUserInfo, readValueFromIdToken, setParentStoreEffect, stateFromTokenForLoggedInUserFunction, storageFileUploadFiles, storageFileUploadHandler };
|
|
4439
|
-
export type { AuthRolesObsWithClaimsServiceConfig, AuthUserInfo, AuthUserStateObsFunction, DbxFirebaseAnalyticsUserPropertiesFactory, DbxFirebaseAppCheckConfig, DbxFirebaseAppOptions, DbxFirebaseAuthContextInfo, DbxFirebaseAuthLoginPasswordConfig, DbxFirebaseAuthLoginProvider, DbxFirebaseAuthLoginProviderAssets, DbxFirebaseCollectionChangeTrigger, DbxFirebaseCollectionChangeTriggerFunction, DbxFirebaseCollectionChangeTriggerInstanceConfig, DbxFirebaseCollectionChangeWatcher, DbxFirebaseCollectionChangeWatcherEvent, DbxFirebaseCollectionChangeWatcherInstance, DbxFirebaseCollectionChangeWatcherTriggerMode, DbxFirebaseCollectionHasChangeDirectiveMode, DbxFirebaseCollectionLoader, DbxFirebaseCollectionLoaderAccessor, DbxFirebaseCollectionLoaderAccessorWithAccumulator, DbxFirebaseCollectionLoaderInstanceData, DbxFirebaseCollectionLoaderInstanceInitConfig, DbxFirebaseCollectionLoaderWithAccumulator, DbxFirebaseCollectionMode, DbxFirebaseCollectionStore, DbxFirebaseCollectionStoreContextState, DbxFirebaseCollectionStoreCreateFunction, DbxFirebaseCollectionStoreCrudFunction, DbxFirebaseCollectionWithParentStore, DbxFirebaseCollectionWithParentStoreContextState, DbxFirebaseComponentStoreSetParentEffectFunction, DbxFirebaseComponentStoreWithParent, DbxFirebaseComponentStoreWithParentContextState, DbxFirebaseComponentStoreWithParentSetParentEffectFunction, DbxFirebaseComponentStoreWithParentSetParentSourceModeFunction, DbxFirebaseComponentStoreWithParentSetParentStoreEffectFunction, DbxFirebaseComponentStoreWithParentSourceMode, DbxFirebaseDevelopmentPopupContentFormInput, DbxFirebaseDevelopmentPopupContentFormValue, DbxFirebaseDevelopmentWidgetEntry, DbxFirebaseDocumentLoader, DbxFirebaseDocumentLoaderInstanceInitConfig, DbxFirebaseDocumentReadOnlyStore, DbxFirebaseDocumentStore, DbxFirebaseDocumentStoreContextState, DbxFirebaseDocumentStoreContextStoreEntry, DbxFirebaseDocumentStoreContextStoreEntryNumber, DbxFirebaseDocumentStoreContextStoreEntryWithIdentity, DbxFirebaseDocumentStoreContextStoreState, DbxFirebaseDocumentStoreCreateFunction, DbxFirebaseDocumentStoreCrudFunction, DbxFirebaseDocumentStoreFunction, DbxFirebaseDocumentStoreFunctionParams, DbxFirebaseDocumentStoreFunctionParamsInput, DbxFirebaseDocumentWithParentStore, DbxFirebaseDocumentWithParentStoreContextState, DbxFirebaseEmailFormConfig, DbxFirebaseEmailFormValue, DbxFirebaseEmailRecoveryFormValue, DbxFirebaseEmulatorConfig, DbxFirebaseEmulatorsConfig, DbxFirebaseEnvironmentOptions, DbxFirebaseIdRouteParamRedirect, DbxFirebaseIdRouteParamRedirectInstance, DbxFirebaseInContextFirebaseModelInfoServiceInstance, DbxFirebaseInContextFirebaseModelRolesServiceInstance, DbxFirebaseInContextFirebaseModelServiceInstance, DbxFirebaseInContextFirebaseModelServiceInstanceFactory, DbxFirebaseLoginButtonConfig, DbxFirebaseLoginEmailContentComponentConfig, DbxFirebaseLoginEmailContentMode, DbxFirebaseLoginListItemInjectionComponentConfig, DbxFirebaseLoginMode, DbxFirebaseModelContextServiceFactory, DbxFirebaseModelContextServiceInfoInstanceFactory, DbxFirebaseModelContextServiceInfoInstanceFactoryConfig, DbxFirebaseModelDisplayInfo, DbxFirebaseModelEntitiesPopoverButtonConfig, DbxFirebaseModelEntitiesPopoverConfig, DbxFirebaseModelEntitiesPopoverConfigWithoutOrigin, DbxFirebaseModelEntitiesWidgetEntry, DbxFirebaseModelEntitiesWidgetInjectionConfig, DbxFirebaseModelEntitiesWidgetInjectionConfigFactory, DbxFirebaseModelEntitiesWidgetServiceConfigFactory, DbxFirebaseModelEntity, DbxFirebaseModelEntityWithKey, DbxFirebaseModelEntityWithKeyAndStore, DbxFirebaseModelEntityWithStore, DbxFirebaseModelHistoryPopoverButtonConfig, DbxFirebaseModelHistoryPopoverConfig, DbxFirebaseModelHistoryPopoverConfigWithoutOrigin, DbxFirebaseModelTrackerFilterItem, DbxFirebaseModelTrackerHistoryFilter, DbxFirebaseModelTypeInfo, DbxFirebaseModelTypeInstanceListItem, DbxFirebaseModelTypesMap, DbxFirebaseModelTypesServiceEntry, DbxFirebaseModelTypesServiceInstance, DbxFirebaseModelTypesServiceInstancePair, DbxFirebaseModelTypesServiceInstancePairForKeysFactory, DbxFirebaseNotificationItemStorePopoverButtonConfig, DbxFirebaseNotificationItemStorePopoverParams, DbxFirebaseNotificationItemStoreState, DbxFirebaseNotificationItemWidgetEntry, DbxFirebaseNotificationItemWidgetEntryRegistration, DbxFirebaseSourceSelectLoadSourceConfig, DbxFirebaseStorageContextConfigFactory, DbxFirebaseStorageFileDownloadButtonConfig, DbxFirebaseStorageFileDownloadButtonSource, DbxFirebaseStorageFileDownloadDetails, DbxFirebaseStorageFileDownloadServiceCustomSource, DbxFirebaseStorageFileDownloadServiceCustomSourceDownloadFunction, DbxFirebaseStorageFileDownloadUrlPair, DbxFirebaseStorageFileDownloadUrlPairString, DbxFirebaseStorageFileDownloadUrlPairsRecord, DbxFirebaseStorageFileDownloadUserCache, DbxFirebaseStorageFileUploadStoreAllowedTypes, DbxFirebaseStorageFileUploadStoreFileProgress, DbxFirebaseStorageFileUploadStoreState, DbxFirebaseStorageFileUploadStoreUploadStage, DbxLimitedFirebaseDocumentLoader, DefaultDbxFirebaseAuthServiceDelegateWithClaimsServiceConfig, FirebaseLoginMethodCategory, FirebaseLoginMethodType, KnownFirebaseLoginMethodCategory, KnownFirebaseLoginMethodType, NotificationItemWithSelection, ProvideDbxFirebaseAppConfig, ProvideDbxFirebaseAuthConfig, ProvideDbxFirebaseConfig, ProvideDbxFirebaseDevelopmentConfig, ProvideDbxFirebaseEmulatorsConfig, ProvideDbxFirebaseFirestoreCollectionConfig, ProvideDbxFirebaseFunctionsConfig, ProvideDbxFirebaseLoginConfig, ProvideDbxFirebaseModelContextServiceConfig, ProvideDbxFirebaseModelEntitiesWidgetServiceConfig, ProvideDbxFirebaseNotificationsConfig, ProvideDbxFirebaseStorageConfig, ScheduledFunctionDevelopmentFirebaseFunctionListEntryWithSelection, StateFromTokenFunction, StorageFileUploadConfig, StorageFileUploadConfigFactory, StorageFileUploadConfigOptions, StorageFileUploadFilesEvent, StorageFileUploadFilesFinalFileResult, StorageFileUploadFilesFinalResult, StorageFileUploadFilesInput, StorageFileUploadFilesInstance, StorageFileUploadHandler, StorageFileUploadHandlerConfig, StorageFileUploadHandlerFunction, StorageFileUploadHandlerInstance };
|
|
4575
|
+
export type { AuthRolesObsWithClaimsServiceConfig, AuthUserInfo, AuthUserStateObsFunction, DbxFirebaseAnalyticsUserPropertiesFactory, DbxFirebaseAppCheckConfig, DbxFirebaseAppOptions, DbxFirebaseAuthContextInfo, DbxFirebaseAuthLoginPasswordConfig, DbxFirebaseAuthLoginProvider, DbxFirebaseAuthLoginProviderAssets, DbxFirebaseCollectionChangeTrigger, DbxFirebaseCollectionChangeTriggerFunction, DbxFirebaseCollectionChangeTriggerInstanceConfig, DbxFirebaseCollectionChangeWatcher, DbxFirebaseCollectionChangeWatcherEvent, DbxFirebaseCollectionChangeWatcherInstance, DbxFirebaseCollectionChangeWatcherTriggerMode, DbxFirebaseCollectionHasChangeDirectiveMode, DbxFirebaseCollectionLoader, DbxFirebaseCollectionLoaderAccessor, DbxFirebaseCollectionLoaderAccessorWithAccumulator, DbxFirebaseCollectionLoaderInstanceData, DbxFirebaseCollectionLoaderInstanceInitConfig, DbxFirebaseCollectionLoaderWithAccumulator, DbxFirebaseCollectionMode, DbxFirebaseCollectionStore, DbxFirebaseCollectionStoreContextState, DbxFirebaseCollectionStoreCreateFunction, DbxFirebaseCollectionStoreCrudFunction, DbxFirebaseCollectionWithParentStore, DbxFirebaseCollectionWithParentStoreContextState, DbxFirebaseComponentStoreSetParentEffectFunction, DbxFirebaseComponentStoreWithParent, DbxFirebaseComponentStoreWithParentContextState, DbxFirebaseComponentStoreWithParentSetParentEffectFunction, DbxFirebaseComponentStoreWithParentSetParentSourceModeFunction, DbxFirebaseComponentStoreWithParentSetParentStoreEffectFunction, DbxFirebaseComponentStoreWithParentSourceMode, DbxFirebaseDevelopmentPopupContentFormInput, DbxFirebaseDevelopmentPopupContentFormValue, DbxFirebaseDevelopmentWidgetEntry, DbxFirebaseDocumentLoader, DbxFirebaseDocumentLoaderInstanceInitConfig, DbxFirebaseDocumentReadOnlyStore, DbxFirebaseDocumentStore, DbxFirebaseDocumentStoreContextState, DbxFirebaseDocumentStoreContextStoreEntry, DbxFirebaseDocumentStoreContextStoreEntryNumber, DbxFirebaseDocumentStoreContextStoreEntryWithIdentity, DbxFirebaseDocumentStoreContextStoreState, DbxFirebaseDocumentStoreCreateFunction, DbxFirebaseDocumentStoreCrudFunction, DbxFirebaseDocumentStoreFunction, DbxFirebaseDocumentStoreFunctionParams, DbxFirebaseDocumentStoreFunctionParamsInput, DbxFirebaseDocumentWithParentStore, DbxFirebaseDocumentWithParentStoreContextState, DbxFirebaseEmailFormConfig, DbxFirebaseEmailFormValue, DbxFirebaseEmailRecoveryFormValue, DbxFirebaseEmulatorConfig, DbxFirebaseEmulatorsConfig, DbxFirebaseEnvironmentOptions, DbxFirebaseIdRouteParamRedirect, DbxFirebaseIdRouteParamRedirectInstance, DbxFirebaseInContextFirebaseModelInfoServiceInstance, DbxFirebaseInContextFirebaseModelRolesServiceInstance, DbxFirebaseInContextFirebaseModelServiceInstance, DbxFirebaseInContextFirebaseModelServiceInstanceFactory, DbxFirebaseLoginButtonConfig, DbxFirebaseLoginEmailContentComponentConfig, DbxFirebaseLoginEmailContentMode, DbxFirebaseLoginListItemInjectionComponentConfig, DbxFirebaseLoginMode, DbxFirebaseModelContextServiceFactory, DbxFirebaseModelContextServiceInfoInstanceFactory, DbxFirebaseModelContextServiceInfoInstanceFactoryConfig, DbxFirebaseModelDisplayInfo, DbxFirebaseModelEntitiesPopoverButtonConfig, DbxFirebaseModelEntitiesPopoverConfig, DbxFirebaseModelEntitiesPopoverConfigWithoutOrigin, DbxFirebaseModelEntitiesWidgetEntry, DbxFirebaseModelEntitiesWidgetInjectionConfig, DbxFirebaseModelEntitiesWidgetInjectionConfigFactory, DbxFirebaseModelEntitiesWidgetServiceConfigFactory, DbxFirebaseModelEntity, DbxFirebaseModelEntityWithKey, DbxFirebaseModelEntityWithKeyAndStore, DbxFirebaseModelEntityWithStore, DbxFirebaseModelHistoryPopoverButtonConfig, DbxFirebaseModelHistoryPopoverConfig, DbxFirebaseModelHistoryPopoverConfigWithoutOrigin, DbxFirebaseModelTrackerFilterItem, DbxFirebaseModelTrackerHistoryFilter, DbxFirebaseModelTypeInfo, DbxFirebaseModelTypeInstanceListItem, DbxFirebaseModelTypesMap, DbxFirebaseModelTypesServiceEntry, DbxFirebaseModelTypesServiceInstance, DbxFirebaseModelTypesServiceInstancePair, DbxFirebaseModelTypesServiceInstancePairForKeysFactory, DbxFirebaseNotificationItemStorePopoverButtonConfig, DbxFirebaseNotificationItemStorePopoverParams, DbxFirebaseNotificationItemStoreState, DbxFirebaseNotificationItemWidgetEntry, DbxFirebaseNotificationItemWidgetEntryRegistration, DbxFirebaseSourceSelectLoadSourceConfig, DbxFirebaseStorageContextConfigFactory, DbxFirebaseStorageFileDownloadButtonConfig, DbxFirebaseStorageFileDownloadButtonSource, DbxFirebaseStorageFileDownloadDetails, DbxFirebaseStorageFileDownloadServiceCustomSource, DbxFirebaseStorageFileDownloadServiceCustomSourceDownloadFunction, DbxFirebaseStorageFileDownloadUrlPair, DbxFirebaseStorageFileDownloadUrlPairString, DbxFirebaseStorageFileDownloadUrlPairsRecord, DbxFirebaseStorageFileDownloadUserCache, DbxFirebaseStorageFileUploadStoreAllowedTypes, DbxFirebaseStorageFileUploadStoreFileProgress, DbxFirebaseStorageFileUploadStoreState, DbxFirebaseStorageFileUploadStoreUploadStage, DbxLimitedFirebaseDocumentLoader, DefaultDbxFirebaseAuthServiceDelegateWithClaimsServiceConfig, FirebaseDocumentStoreFunctionConfig, FirebaseLoginMethodCategory, FirebaseLoginMethodType, KnownFirebaseLoginMethodCategory, KnownFirebaseLoginMethodType, NotificationItemWithSelection, ProvideDbxFirebaseAppConfig, ProvideDbxFirebaseAuthConfig, ProvideDbxFirebaseConfig, ProvideDbxFirebaseDevelopmentConfig, ProvideDbxFirebaseEmulatorsConfig, ProvideDbxFirebaseFirestoreCollectionConfig, ProvideDbxFirebaseFunctionsConfig, ProvideDbxFirebaseLoginConfig, ProvideDbxFirebaseModelContextServiceConfig, ProvideDbxFirebaseModelEntitiesWidgetServiceConfig, ProvideDbxFirebaseNotificationsConfig, ProvideDbxFirebaseStorageConfig, ScheduledFunctionDevelopmentFirebaseFunctionListEntryWithSelection, StateFromTokenFunction, StorageFileUploadConfig, StorageFileUploadConfigFactory, StorageFileUploadConfigOptions, StorageFileUploadFilesEvent, StorageFileUploadFilesFinalFileResult, StorageFileUploadFilesFinalResult, StorageFileUploadFilesInput, StorageFileUploadFilesInstance, StorageFileUploadHandler, StorageFileUploadHandlerConfig, StorageFileUploadHandlerFunction, StorageFileUploadHandlerInstance };
|