@dereekb/dbx-firebase 13.4.0 → 13.4.2
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 +98 -13
- package/fesm2022/dereekb-dbx-firebase-oidc.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-firebase.mjs +410 -131
- package/fesm2022/dereekb-dbx-firebase.mjs.map +1 -1
- package/package.json +10 -10
- package/types/dereekb-dbx-firebase-oidc.d.ts +97 -10
- package/types/dereekb-dbx-firebase.d.ts +419 -92
|
@@ -44,7 +44,19 @@ type AuthUserInfo = Omit<UserInfo, 'providerId'> & {
|
|
|
44
44
|
*/
|
|
45
45
|
readonly lastSignInTime?: Maybe<ISO8601DateString>;
|
|
46
46
|
};
|
|
47
|
+
/**
|
|
48
|
+
* Converts a Firebase Auth {@link User} into an {@link AuthUserInfo} containing display name, email, phone, photo URL, UID, and metadata timestamps.
|
|
49
|
+
*
|
|
50
|
+
* @param user - The Firebase Auth user to convert.
|
|
51
|
+
* @returns An AuthUserInfo object with the user's profile and metadata.
|
|
52
|
+
*/
|
|
47
53
|
declare function authUserInfoFromAuthUser(user: User): AuthUserInfo;
|
|
54
|
+
/**
|
|
55
|
+
* Extracts a {@link FirebaseAuthToken} from a Firebase Auth {@link User}, including email verification status and metadata timestamps.
|
|
56
|
+
*
|
|
57
|
+
* @param user - The Firebase Auth user to extract token info from.
|
|
58
|
+
* @returns A FirebaseAuthToken with the user's auth-related properties.
|
|
59
|
+
*/
|
|
48
60
|
declare function firebaseAuthTokenFromUser(user: User): FirebaseAuthToken;
|
|
49
61
|
|
|
50
62
|
/**
|
|
@@ -137,6 +149,12 @@ interface DbxFirebaseAuthContextInfo extends FirebaseAuthContextInfo {
|
|
|
137
149
|
declare function dbxFirebaseAuthContextInfo(service: DbxFirebaseAuthService, user: User$1, jwtToken: IdTokenResult): DbxFirebaseAuthContextInfo;
|
|
138
150
|
|
|
139
151
|
type DbxFirebaseAnalyticsUserPropertiesFactory = FactoryWithRequiredInput<Observable<AnalyticsUserProperties>, AuthUserInfo>;
|
|
152
|
+
/**
|
|
153
|
+
* Extracts analytics user properties (name, email, creation time) from an {@link AuthUserInfo} instance.
|
|
154
|
+
*
|
|
155
|
+
* @param user - The authenticated user info to extract properties from.
|
|
156
|
+
* @returns AnalyticsUserProperties populated from the user info.
|
|
157
|
+
*/
|
|
140
158
|
declare function readDbxAnalyticsUserPropertiesFromAuthUserInfo(user: AuthUserInfo): AnalyticsUserProperties;
|
|
141
159
|
declare const DEFAULT_DBX_FIREBASE_ANALYTICS_USER_PROPERTIES_FACTORY: DbxFirebaseAnalyticsUserPropertiesFactory;
|
|
142
160
|
/**
|
|
@@ -196,24 +214,42 @@ declare class DbxFirebaseAppCheckHttpInterceptor implements HttpInterceptor {
|
|
|
196
214
|
static ɵprov: i0.ɵɵInjectableDeclaration<DbxFirebaseAppCheckHttpInterceptor>;
|
|
197
215
|
}
|
|
198
216
|
|
|
199
|
-
/**
|
|
217
|
+
/**
|
|
218
|
+
* String identifier for a Firebase authentication method (e.g., 'email', 'google').
|
|
219
|
+
*/
|
|
200
220
|
type FirebaseLoginMethodType = string;
|
|
201
|
-
/**
|
|
221
|
+
/**
|
|
222
|
+
* Category grouping for login methods (e.g., 'default', 'oauth').
|
|
223
|
+
*/
|
|
202
224
|
type FirebaseLoginMethodCategory = string;
|
|
203
|
-
/**
|
|
225
|
+
/**
|
|
226
|
+
* Known Firebase login method types supported by the login UI.
|
|
227
|
+
*/
|
|
204
228
|
type KnownFirebaseLoginMethodType = 'email' | 'phone' | 'google' | 'facebook' | 'github' | 'twitter' | 'apple' | 'microsoft' | 'anonymous';
|
|
205
|
-
/**
|
|
229
|
+
/**
|
|
230
|
+
* Category for built-in login methods (email, phone, anonymous).
|
|
231
|
+
*/
|
|
206
232
|
declare const DEFAULT_FIREBASE_LOGIN_METHOD_CATEGORY = "default";
|
|
207
|
-
/**
|
|
233
|
+
/**
|
|
234
|
+
* Category for OAuth-based login methods (Google, Facebook, etc.).
|
|
235
|
+
*/
|
|
208
236
|
declare const OAUTH_FIREBASE_LOGIN_METHOD_CATEGORY = "oauth";
|
|
209
|
-
/**
|
|
237
|
+
/**
|
|
238
|
+
* Known categories for Firebase login methods.
|
|
239
|
+
*/
|
|
210
240
|
type KnownFirebaseLoginMethodCategory = typeof DEFAULT_FIREBASE_LOGIN_METHOD_CATEGORY | typeof OAUTH_FIREBASE_LOGIN_METHOD_CATEGORY;
|
|
211
|
-
/**
|
|
241
|
+
/**
|
|
242
|
+
* Mode for the login UI — either signing in or creating a new account.
|
|
243
|
+
*/
|
|
212
244
|
type DbxFirebaseLoginMode = 'login' | 'register';
|
|
213
245
|
|
|
214
|
-
/**
|
|
246
|
+
/**
|
|
247
|
+
* Password validation configuration for Firebase email/password login forms.
|
|
248
|
+
*/
|
|
215
249
|
type DbxFirebaseAuthLoginPasswordConfig = TextPasswordFieldPasswordParameters;
|
|
216
|
-
/**
|
|
250
|
+
/**
|
|
251
|
+
* Default password config requiring a minimum of 6 characters (Firebase Auth minimum).
|
|
252
|
+
*/
|
|
217
253
|
declare const DEFAULT_FIREBASE_AUTH_LOGIN_PASSWORD_CONFIG: DbxFirebaseAuthLoginPasswordConfig;
|
|
218
254
|
|
|
219
255
|
/**
|
|
@@ -334,8 +370,9 @@ declare class DbxFirebaseAuthLoginService {
|
|
|
334
370
|
/**
|
|
335
371
|
* Used to register a provider. If a provider is already registered, this will override it by default.
|
|
336
372
|
*
|
|
337
|
-
* @param provider
|
|
338
|
-
* @param override
|
|
373
|
+
* @param provider - The login provider to register.
|
|
374
|
+
* @param override - Whether to override an existing provider of the same type. Defaults to true.
|
|
375
|
+
* @returns True if the provider was registered, false if it already existed and override was false.
|
|
339
376
|
*/
|
|
340
377
|
register(provider: DbxFirebaseAuthLoginProvider, override?: boolean): boolean;
|
|
341
378
|
/**
|
|
@@ -347,6 +384,8 @@ declare class DbxFirebaseAuthLoginService {
|
|
|
347
384
|
updateAssetsForProvider(type: FirebaseLoginMethodType, assets: Partial<DbxFirebaseAuthLoginProviderAssets>): void;
|
|
348
385
|
/**
|
|
349
386
|
* Enables all providers and any providers that will be registered.
|
|
387
|
+
*
|
|
388
|
+
* @param enableAll - Whether to enable all providers. Defaults to true.
|
|
350
389
|
*/
|
|
351
390
|
setEnableAll(enableAll?: boolean): void;
|
|
352
391
|
clearEnabled(): void;
|
|
@@ -376,7 +415,9 @@ declare class DbxFirebaseAuthLoginService {
|
|
|
376
415
|
declare abstract class DbxFirebaseLoginContext extends DbxInjectionContext {
|
|
377
416
|
}
|
|
378
417
|
|
|
379
|
-
/**
|
|
418
|
+
/**
|
|
419
|
+
* Configuration for a login button's appearance and action handler.
|
|
420
|
+
*/
|
|
380
421
|
interface DbxFirebaseLoginButtonConfig {
|
|
381
422
|
text: string;
|
|
382
423
|
iconUrl?: string;
|
|
@@ -403,14 +444,20 @@ declare class DbxFirebaseLoginButtonComponent {
|
|
|
403
444
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseLoginButtonComponent, never>;
|
|
404
445
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginButtonComponent, "dbx-firebase-login-button", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; }, { "config": "configChange"; }, never, never, true, never>;
|
|
405
446
|
}
|
|
406
|
-
/**
|
|
447
|
+
/**
|
|
448
|
+
* Container component that wraps login button content with consistent spacing.
|
|
449
|
+
*/
|
|
407
450
|
declare class DbxFirebaseLoginButtonContainerComponent {
|
|
408
451
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseLoginButtonContainerComponent, never>;
|
|
409
452
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginButtonContainerComponent, "dbx-firebase-login-button-container", never, {}, {}, never, ["*"], true, never>;
|
|
410
453
|
}
|
|
411
|
-
/**
|
|
454
|
+
/**
|
|
455
|
+
* Default template for configured login button components.
|
|
456
|
+
*/
|
|
412
457
|
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
|
-
/**
|
|
458
|
+
/**
|
|
459
|
+
* Shared component configuration for OAuth-style login button components.
|
|
460
|
+
*/
|
|
414
461
|
declare const DBX_CONFIGURED_DBX_FIREBASE_LOGIN_BUTTON_COMPONENT_CONFIGURATION: Pick<Component, 'template' | 'imports' | 'changeDetection'>;
|
|
415
462
|
/**
|
|
416
463
|
* Abstract base directive for login provider buttons that auto-configures appearance
|
|
@@ -432,7 +479,9 @@ declare abstract class AbstractConfiguredDbxFirebaseLoginButtonDirective impleme
|
|
|
432
479
|
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractConfiguredDbxFirebaseLoginButtonDirective, never, never, {}, {}, never, never, true, never>;
|
|
433
480
|
}
|
|
434
481
|
|
|
435
|
-
/**
|
|
482
|
+
/**
|
|
483
|
+
* Login button component for anonymous (guest) authentication.
|
|
484
|
+
*/
|
|
436
485
|
declare class DbxFirebaseLoginAnonymousComponent extends AbstractConfiguredDbxFirebaseLoginButtonDirective {
|
|
437
486
|
readonly loginProvider = "anonymous";
|
|
438
487
|
handleLogin(): Promise<_firebase_auth.UserCredential>;
|
|
@@ -440,7 +489,9 @@ declare class DbxFirebaseLoginAnonymousComponent extends AbstractConfiguredDbxFi
|
|
|
440
489
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginAnonymousComponent, "dbx-firebase-login-anonymous", never, {}, {}, never, never, true, never>;
|
|
441
490
|
}
|
|
442
491
|
|
|
443
|
-
/**
|
|
492
|
+
/**
|
|
493
|
+
* Login button component for Apple OAuth authentication.
|
|
494
|
+
*/
|
|
444
495
|
declare class DbxFirebaseLoginAppleComponent extends AbstractConfiguredDbxFirebaseLoginButtonDirective {
|
|
445
496
|
readonly loginProvider = "apple";
|
|
446
497
|
handleLogin(): Promise<_firebase_auth.UserCredential>;
|
|
@@ -460,7 +511,9 @@ declare class DbxFirebaseLoginComponent {
|
|
|
460
511
|
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>;
|
|
461
512
|
}
|
|
462
513
|
|
|
463
|
-
/**
|
|
514
|
+
/**
|
|
515
|
+
* Navigation component that allows users to return to the login method selection list.
|
|
516
|
+
*/
|
|
464
517
|
declare class DbxFirebaseLoginContextBackButtonComponent {
|
|
465
518
|
readonly cancelLogin: i0.OutputEmitterRef<void>;
|
|
466
519
|
readonly anchor: ClickableAnchor;
|
|
@@ -478,7 +531,9 @@ declare class DbxFirebaseLoginContextDirective extends AbstractForwardDbxInjecti
|
|
|
478
531
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFirebaseLoginContextDirective, "[dbxFirebaseLoginContext]", never, {}, {}, never, never, true, never>;
|
|
479
532
|
}
|
|
480
533
|
|
|
481
|
-
/**
|
|
534
|
+
/**
|
|
535
|
+
* Login button component for email/password authentication. Opens the email login context on click.
|
|
536
|
+
*/
|
|
482
537
|
declare class DbxFirebaseLoginEmailComponent extends AbstractConfiguredDbxFirebaseLoginButtonDirective {
|
|
483
538
|
readonly loginProvider = "email";
|
|
484
539
|
handleLogin(): Promise<boolean>;
|
|
@@ -486,20 +541,28 @@ declare class DbxFirebaseLoginEmailComponent extends AbstractConfiguredDbxFireba
|
|
|
486
541
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginEmailComponent, "dbx-firebase-login-email", never, {}, {}, never, never, true, never>;
|
|
487
542
|
}
|
|
488
543
|
|
|
489
|
-
/**
|
|
544
|
+
/**
|
|
545
|
+
* Form value for the password recovery form containing the email address.
|
|
546
|
+
*/
|
|
490
547
|
interface DbxFirebaseEmailRecoveryFormValue {
|
|
491
548
|
email: string;
|
|
492
549
|
}
|
|
493
|
-
/**
|
|
550
|
+
/**
|
|
551
|
+
* Formly-based form component for password recovery, containing a single email field.
|
|
552
|
+
*/
|
|
494
553
|
declare class DbxFirebaseEmailRecoveryFormComponent extends AbstractSyncFormlyFormDirective<DbxFirebaseEmailRecoveryFormValue> {
|
|
495
554
|
readonly fields: FormlyFieldConfig[];
|
|
496
555
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseEmailRecoveryFormComponent, never>;
|
|
497
556
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseEmailRecoveryFormComponent, "dbx-firebase-email-recovery-form", never, {}, {}, never, never, true, never>;
|
|
498
557
|
}
|
|
499
558
|
|
|
500
|
-
/**
|
|
559
|
+
/**
|
|
560
|
+
* Form value containing email (username) and password fields.
|
|
561
|
+
*/
|
|
501
562
|
type DbxFirebaseEmailFormValue = DefaultUsernameLoginFieldsValue;
|
|
502
|
-
/**
|
|
563
|
+
/**
|
|
564
|
+
* Configuration for the email login form, specifying mode and optional password constraints.
|
|
565
|
+
*/
|
|
503
566
|
interface DbxFirebaseEmailFormConfig {
|
|
504
567
|
readonly loginMode: DbxFirebaseLoginMode;
|
|
505
568
|
readonly passwordConfig?: TextPasswordFieldConfig;
|
|
@@ -515,11 +578,15 @@ declare class DbxFirebaseEmailFormComponent extends AbstractConfigAsyncFormlyFor
|
|
|
515
578
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseEmailFormComponent, "dbx-firebase-email-form", never, {}, {}, never, never, true, never>;
|
|
516
579
|
}
|
|
517
580
|
|
|
518
|
-
/**
|
|
581
|
+
/**
|
|
582
|
+
* Configuration for the email login content component, specifying mode and password rules.
|
|
583
|
+
*/
|
|
519
584
|
interface DbxFirebaseLoginEmailContentComponentConfig extends DbxFirebaseEmailFormConfig {
|
|
520
585
|
readonly loginMode: DbxFirebaseLoginMode;
|
|
521
586
|
}
|
|
522
|
-
/**
|
|
587
|
+
/**
|
|
588
|
+
* UI state of the email login content: login form, password recovery form, or recovery sent confirmation.
|
|
589
|
+
*/
|
|
523
590
|
type DbxFirebaseLoginEmailContentMode = 'login' | 'recover' | 'recoversent';
|
|
524
591
|
/**
|
|
525
592
|
* Full email login/registration flow component with login form, password recovery, and recovery confirmation states.
|
|
@@ -554,7 +621,9 @@ declare class DbxFirebaseLoginEmailContentComponent {
|
|
|
554
621
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginEmailContentComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
555
622
|
}
|
|
556
623
|
|
|
557
|
-
/**
|
|
624
|
+
/**
|
|
625
|
+
* Login button component for Facebook OAuth authentication.
|
|
626
|
+
*/
|
|
558
627
|
declare class DbxFirebaseLoginFacebookComponent extends AbstractConfiguredDbxFirebaseLoginButtonDirective {
|
|
559
628
|
readonly loginProvider = "facebook";
|
|
560
629
|
handleLogin(): Promise<_firebase_auth.UserCredential>;
|
|
@@ -562,7 +631,9 @@ declare class DbxFirebaseLoginFacebookComponent extends AbstractConfiguredDbxFir
|
|
|
562
631
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginFacebookComponent, "dbx-firebase-login-facebook", never, {}, {}, never, never, true, never>;
|
|
563
632
|
}
|
|
564
633
|
|
|
565
|
-
/**
|
|
634
|
+
/**
|
|
635
|
+
* Login button component for GitHub OAuth authentication.
|
|
636
|
+
*/
|
|
566
637
|
declare class DbxFirebaseLoginGitHubComponent extends AbstractConfiguredDbxFirebaseLoginButtonDirective {
|
|
567
638
|
readonly loginProvider = "github";
|
|
568
639
|
handleLogin(): Promise<_firebase_auth.UserCredential>;
|
|
@@ -570,7 +641,9 @@ declare class DbxFirebaseLoginGitHubComponent extends AbstractConfiguredDbxFireb
|
|
|
570
641
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginGitHubComponent, "dbx-firebase-login-github", never, {}, {}, never, never, true, never>;
|
|
571
642
|
}
|
|
572
643
|
|
|
573
|
-
/**
|
|
644
|
+
/**
|
|
645
|
+
* Login button component for Google OAuth authentication.
|
|
646
|
+
*/
|
|
574
647
|
declare class DbxFirebaseLoginGoogleComponent extends AbstractConfiguredDbxFirebaseLoginButtonDirective {
|
|
575
648
|
readonly loginProvider = "google";
|
|
576
649
|
handleLogin(): Promise<_firebase_auth.UserCredential>;
|
|
@@ -578,7 +651,9 @@ declare class DbxFirebaseLoginGoogleComponent extends AbstractConfiguredDbxFireb
|
|
|
578
651
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginGoogleComponent, "dbx-firebase-login-google", never, {}, {}, never, never, true, never>;
|
|
579
652
|
}
|
|
580
653
|
|
|
581
|
-
/**
|
|
654
|
+
/**
|
|
655
|
+
* Injection config for a single login list item, enriched with the login method type for tracking.
|
|
656
|
+
*/
|
|
582
657
|
type DbxFirebaseLoginListItemInjectionComponentConfig = DbxInjectionComponentConfig & Pick<DbxFirebaseAuthLoginProvider, 'loginMethodType'>;
|
|
583
658
|
/**
|
|
584
659
|
* Renders a list of login provider buttons, filtered by enabled types and categories.
|
|
@@ -598,7 +673,9 @@ declare class DbxFirebaseLoginListComponent {
|
|
|
598
673
|
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>;
|
|
599
674
|
}
|
|
600
675
|
|
|
601
|
-
/**
|
|
676
|
+
/**
|
|
677
|
+
* Login button component for Microsoft OAuth authentication.
|
|
678
|
+
*/
|
|
602
679
|
declare class DbxFirebaseLoginMicrosoftComponent extends AbstractConfiguredDbxFirebaseLoginButtonDirective {
|
|
603
680
|
readonly loginProvider = "microsoft";
|
|
604
681
|
handleLogin(): Promise<_firebase_auth.UserCredential>;
|
|
@@ -606,7 +683,9 @@ declare class DbxFirebaseLoginMicrosoftComponent extends AbstractConfiguredDbxFi
|
|
|
606
683
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginMicrosoftComponent, "dbx-firebase-login-microsoft", never, {}, {}, never, never, true, never>;
|
|
607
684
|
}
|
|
608
685
|
|
|
609
|
-
/**
|
|
686
|
+
/**
|
|
687
|
+
* Renders the configured terms of service component via dynamic injection from the login service.
|
|
688
|
+
*/
|
|
610
689
|
declare class DbxFirebaseLoginTermsComponent {
|
|
611
690
|
readonly dbxFirebaseAuthLoginService: DbxFirebaseAuthLoginService;
|
|
612
691
|
readonly config: DbxInjectionComponentConfig;
|
|
@@ -614,7 +693,9 @@ declare class DbxFirebaseLoginTermsComponent {
|
|
|
614
693
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginTermsComponent, "dbx-firebase-login-terms", never, {}, {}, never, never, true, never>;
|
|
615
694
|
}
|
|
616
695
|
|
|
617
|
-
/**
|
|
696
|
+
/**
|
|
697
|
+
* Default terms of service display component with links to Terms and Privacy Policy URLs.
|
|
698
|
+
*/
|
|
618
699
|
declare class DbxFirebaseLoginTermsSimpleComponent {
|
|
619
700
|
readonly dbxFirebaseLoginTermsConfig: DbxFirebaseLoginTermsOfServiceUrlsConfig;
|
|
620
701
|
readonly tosAnchor: ClickableAnchor;
|
|
@@ -623,7 +704,9 @@ declare class DbxFirebaseLoginTermsSimpleComponent {
|
|
|
623
704
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseLoginTermsSimpleComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
624
705
|
}
|
|
625
706
|
|
|
626
|
-
/**
|
|
707
|
+
/**
|
|
708
|
+
* Login button component for Twitter OAuth authentication.
|
|
709
|
+
*/
|
|
627
710
|
declare class DbxFirebaseLoginTwitterComponent extends AbstractConfiguredDbxFirebaseLoginButtonDirective {
|
|
628
711
|
readonly loginProvider = "twitter";
|
|
629
712
|
handleLogin(): Promise<_firebase_auth.UserCredential>;
|
|
@@ -642,7 +725,9 @@ declare class DbxFirebaseRegisterComponent {
|
|
|
642
725
|
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>;
|
|
643
726
|
}
|
|
644
727
|
|
|
645
|
-
/**
|
|
728
|
+
/**
|
|
729
|
+
* Registration button component for email/password. Opens the email login context in register mode.
|
|
730
|
+
*/
|
|
646
731
|
declare class DbxFirebaseRegisterEmailComponent extends AbstractConfiguredDbxFirebaseLoginButtonDirective {
|
|
647
732
|
readonly loginProvider = "email";
|
|
648
733
|
handleLogin(): Promise<boolean>;
|
|
@@ -658,6 +743,13 @@ declare class DbxFirebaseRegisterEmailComponent extends AbstractConfiguredDbxFir
|
|
|
658
743
|
*/
|
|
659
744
|
declare function authUserStateFromFirebaseAuthServiceFunction(stateForLoggedInUser?: AuthUserStateObsFunction): AuthUserStateObsFunction;
|
|
660
745
|
type StateFromTokenFunction = (token: IdTokenResult$1) => ObservableOrValue<AuthUserState>;
|
|
746
|
+
/**
|
|
747
|
+
* Creates an AuthUserStateObsFunction that derives the user state from the current ID token using the provided mapping function.
|
|
748
|
+
*
|
|
749
|
+
* @param stateFromToken - Function that maps an IdTokenResult to an AuthUserState.
|
|
750
|
+
* @param defaultState - The fallback state when no token is available. Defaults to 'user'.
|
|
751
|
+
* @returns An AuthUserStateObsFunction that reads state from the ID token.
|
|
752
|
+
*/
|
|
661
753
|
declare function stateFromTokenForLoggedInUserFunction(stateFromToken: StateFromTokenFunction, defaultState?: AuthUserState): AuthUserStateObsFunction;
|
|
662
754
|
/**
|
|
663
755
|
* Convenience function to read a value from an IdTokenResult off of the current user.
|
|
@@ -687,8 +779,24 @@ interface AuthRolesObsWithClaimsServiceConfig<T extends AuthClaimsObject> extend
|
|
|
687
779
|
*/
|
|
688
780
|
readonly addAuthUserStateToRoles?: boolean;
|
|
689
781
|
}
|
|
782
|
+
/**
|
|
783
|
+
* Creates a function that derives an {@link AuthRoleSet} observable from the current user's ID token claims using the configured claims service.
|
|
784
|
+
*
|
|
785
|
+
* Optionally adds the current AuthUserState to the role set.
|
|
786
|
+
*
|
|
787
|
+
* @param config - Configuration specifying the claims service and optional auth user state inclusion.
|
|
788
|
+
* @returns A function that, given a DbxFirebaseAuthService, returns an Observable of the decoded AuthRoleSet.
|
|
789
|
+
*/
|
|
690
790
|
declare function authRolesObsWithClaimsService<T extends AuthClaimsObject>(config: AuthRolesObsWithClaimsServiceConfig<T>): (dbxFirebaseAuthService: DbxFirebaseAuthService) => Observable<AuthRoleSet>;
|
|
691
791
|
type DefaultDbxFirebaseAuthServiceDelegateWithClaimsServiceConfig<T extends AuthClaimsObject> = AuthRolesObsWithClaimsServiceConfig<T>;
|
|
792
|
+
/**
|
|
793
|
+
* Creates a {@link DbxFirebaseAuthServiceDelegate} that derives auth roles and user state from the given claims service configuration.
|
|
794
|
+
*
|
|
795
|
+
* Only one of `stateForLoggedInUser`, `stateForLoggedInUserToken`, or `authUserStateObs` may be specified.
|
|
796
|
+
*
|
|
797
|
+
* @param config - Configuration with the claims service and optional auth state customization.
|
|
798
|
+
* @returns A DbxFirebaseAuthServiceDelegate configured for claims-based auth.
|
|
799
|
+
*/
|
|
692
800
|
declare function defaultDbxFirebaseAuthServiceDelegateWithClaimsService<T extends AuthClaimsObject>(config: DefaultDbxFirebaseAuthServiceDelegateWithClaimsServiceConfig<T>): DbxFirebaseAuthServiceDelegate;
|
|
693
801
|
|
|
694
802
|
/**
|
|
@@ -776,17 +884,19 @@ declare const DEFAULT_FIREBASE_DEVELOPMENT_WIDGET_PROVIDERS_TOKEN: InjectionToke
|
|
|
776
884
|
declare class DbxFirebaseDevelopmentWidgetService {
|
|
777
885
|
readonly dbxWidgetService: DbxWidgetService;
|
|
778
886
|
private readonly _entries;
|
|
779
|
-
|
|
887
|
+
private readonly _defaultEntries;
|
|
888
|
+
constructor();
|
|
780
889
|
/**
|
|
781
890
|
* Used to register a provider. If a provider is already registered, this will override it by default.
|
|
782
891
|
*
|
|
783
|
-
* @param provider
|
|
784
|
-
* @param override
|
|
892
|
+
* @param provider - The development widget entry to register.
|
|
893
|
+
* @param override - Whether to override an existing entry of the same type. Defaults to true.
|
|
894
|
+
* @returns True if the entry was registered, false if it already existed and override was false.
|
|
785
895
|
*/
|
|
786
896
|
register(provider: DbxFirebaseDevelopmentWidgetEntry, override?: boolean): boolean;
|
|
787
897
|
getEntryWidgetIdentifiers(): DbxWidgetType[];
|
|
788
898
|
getEntries(): DbxFirebaseDevelopmentWidgetEntry[];
|
|
789
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseDevelopmentWidgetService,
|
|
899
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseDevelopmentWidgetService, never>;
|
|
790
900
|
static ɵprov: i0.ɵɵInjectableDeclaration<DbxFirebaseDevelopmentWidgetService>;
|
|
791
901
|
}
|
|
792
902
|
|
|
@@ -934,6 +1044,11 @@ declare class DbxFirebaseDevelopmentPopupComponent extends AbstractPopupDirectiv
|
|
|
934
1044
|
}
|
|
935
1045
|
|
|
936
1046
|
declare const DEVELOPMENT_FIREBASE_SERVER_SCHEDULER_WIDGET_KEY = "DEVELOPMENT_FIREBASE_SERVER_SCHEDULER_WIDGET";
|
|
1047
|
+
/**
|
|
1048
|
+
* Creates a development widget entry for the Firebase server scheduler, allowing scheduled tasks to be triggered from the development UI.
|
|
1049
|
+
*
|
|
1050
|
+
* @returns A DbxFirebaseDevelopmentWidgetEntry for the scheduler widget.
|
|
1051
|
+
*/
|
|
937
1052
|
declare function developmentFirebaseServerSchedulerWidgetEntry(): DbxFirebaseDevelopmentWidgetEntry;
|
|
938
1053
|
declare class DbxFirebaseDevelopmentSchedulerWidgetComponent {
|
|
939
1054
|
readonly dbxFirebaseDevelopmentSchedulerService: DbxFirebaseDevelopmentSchedulerService;
|
|
@@ -1332,6 +1447,13 @@ interface DbxFirebaseCollectionChangeWatcherInstance<S extends DbxFirebaseCollec
|
|
|
1332
1447
|
*/
|
|
1333
1448
|
setMode(mode: DbxFirebaseCollectionChangeWatcherTriggerMode): void;
|
|
1334
1449
|
}
|
|
1450
|
+
/**
|
|
1451
|
+
* Creates a {@link DbxFirebaseCollectionChangeWatcherInstance} that monitors a store's query for document changes and can trigger actions based on those changes.
|
|
1452
|
+
*
|
|
1453
|
+
* @param store - The collection loader accessor to watch for changes.
|
|
1454
|
+
* @param initialMode - The initial trigger mode ('auto' or 'off'). Defaults to 'off'.
|
|
1455
|
+
* @returns A new change watcher instance with observable change state and configurable trigger mode.
|
|
1456
|
+
*/
|
|
1335
1457
|
declare function dbxFirebaseCollectionChangeWatcher<S extends DbxFirebaseCollectionLoaderAccessor<any>>(store: S, initialMode?: DbxFirebaseCollectionChangeWatcherTriggerMode): DbxFirebaseCollectionChangeWatcherInstance<S>;
|
|
1336
1458
|
|
|
1337
1459
|
type DbxFirebaseCollectionChangeTriggerFunction<S extends DbxFirebaseCollectionLoaderAccessor<any>> = (instance: DbxFirebaseCollectionChangeTriggerInstance<S>) => ObservableOrValue<void>;
|
|
@@ -1385,7 +1507,20 @@ declare class DbxFirebaseCollectionChangeTriggerInstance<S extends DbxFirebaseCo
|
|
|
1385
1507
|
* @returns
|
|
1386
1508
|
*/
|
|
1387
1509
|
declare function dbxFirebaseCollectionChangeTriggerForStore<S extends DbxFirebaseCollectionLoaderAccessor<any>>(store: S, triggerFunction?: Maybe<DbxFirebaseCollectionChangeTriggerFunction<S>>): DbxFirebaseCollectionChangeTriggerInstance<S>;
|
|
1510
|
+
/**
|
|
1511
|
+
* Creates a {@link DbxFirebaseCollectionChangeTriggerInstance} for an existing watcher without taking ownership of its lifecycle.
|
|
1512
|
+
*
|
|
1513
|
+
* @param watcher - The collection change watcher to attach the trigger to.
|
|
1514
|
+
* @param triggerFunction - Optional custom trigger function. Defaults to restarting the store.
|
|
1515
|
+
* @returns A new trigger instance bound to the given watcher.
|
|
1516
|
+
*/
|
|
1388
1517
|
declare function dbxFirebaseCollectionChangeTriggerForWatcher<S extends DbxFirebaseCollectionLoaderAccessor<any>>(watcher: DbxFirebaseCollectionChangeWatcher<S>, triggerFunction?: Maybe<DbxFirebaseCollectionChangeTriggerFunction<S>>): DbxFirebaseCollectionChangeTriggerInstance<S>;
|
|
1518
|
+
/**
|
|
1519
|
+
* Creates a new {@link DbxFirebaseCollectionChangeTriggerInstance} from the provided configuration.
|
|
1520
|
+
*
|
|
1521
|
+
* @param config - Configuration specifying the watcher, lifecycle options, and trigger function.
|
|
1522
|
+
* @returns A new trigger instance ready to be initialized.
|
|
1523
|
+
*/
|
|
1389
1524
|
declare function dbxFirebaseCollectionChangeTrigger<S extends DbxFirebaseCollectionLoaderAccessor<any>>(config: DbxFirebaseCollectionChangeTriggerInstanceConfig<S>): DbxFirebaseCollectionChangeTriggerInstance<S>;
|
|
1390
1525
|
|
|
1391
1526
|
/**
|
|
@@ -1491,7 +1626,19 @@ declare class DbxFirebaseCollectionLoaderInstance<T = unknown, D extends Firesto
|
|
|
1491
1626
|
loadToPage(page: PageNumber): Observable<PageNumber>;
|
|
1492
1627
|
loadAllResults(): Observable<PageNumber>;
|
|
1493
1628
|
}
|
|
1629
|
+
/**
|
|
1630
|
+
* Creates a new {@link DbxFirebaseCollectionLoaderInstance} from the given configuration.
|
|
1631
|
+
*
|
|
1632
|
+
* @param config - Initial configuration including collection, constraints, pagination, and mode settings.
|
|
1633
|
+
* @returns A new collection loader instance.
|
|
1634
|
+
*/
|
|
1494
1635
|
declare function dbxFirebaseCollectionLoaderInstance<T, D extends FirestoreDocument<T> = FirestoreDocument<T>>(config: DbxFirebaseCollectionLoaderInstanceInitConfig<T, D>): DbxFirebaseCollectionLoaderInstance<T, D>;
|
|
1636
|
+
/**
|
|
1637
|
+
* Convenience function that creates a {@link DbxFirebaseCollectionLoaderInstance} initialized with the given Firestore collection.
|
|
1638
|
+
*
|
|
1639
|
+
* @param collection - The Firestore collection to load from.
|
|
1640
|
+
* @returns A new collection loader instance using the specified collection.
|
|
1641
|
+
*/
|
|
1495
1642
|
declare function dbxFirebaseCollectionLoaderInstanceWithCollection<T, D extends FirestoreDocument<T> = FirestoreDocument<T>>(collection: Maybe<FirestoreCollectionLike<T, D>>): DbxFirebaseCollectionLoaderInstance<T, D>;
|
|
1496
1643
|
|
|
1497
1644
|
/**
|
|
@@ -1600,12 +1747,36 @@ declare class DbxLimitedFirebaseDocumentLoaderInstance<T = unknown, D extends Fi
|
|
|
1600
1747
|
setRefs(refs: Maybe<ObservableOrValue<ArrayOrValue<DocumentReference<T>>>>): void;
|
|
1601
1748
|
setDocuments(docs: Maybe<ObservableOrValue<ArrayOrValue<D>>>): void;
|
|
1602
1749
|
}
|
|
1750
|
+
/**
|
|
1751
|
+
* Creates a new {@link DbxLimitedFirebaseDocumentLoaderInstance} from the given configuration.
|
|
1752
|
+
*
|
|
1753
|
+
* @param config - Configuration providing the limited document accessor.
|
|
1754
|
+
* @returns A new limited document loader instance.
|
|
1755
|
+
*/
|
|
1603
1756
|
declare function dbxLimitedFirebaseDocumentLoaderInstance<T, D extends FirestoreDocument<T> = FirestoreDocument<T>, A extends LimitedFirestoreDocumentAccessor<T, D> = LimitedFirestoreDocumentAccessor<T, D>>(config: DbxFirebaseDocumentLoaderInstanceInitConfig<T, D, A>): DbxLimitedFirebaseDocumentLoaderInstance<T, D, A>;
|
|
1757
|
+
/**
|
|
1758
|
+
* Convenience function that creates a {@link DbxLimitedFirebaseDocumentLoaderInstance} initialized with the given accessor.
|
|
1759
|
+
*
|
|
1760
|
+
* @param accessor - The limited Firestore document accessor to use.
|
|
1761
|
+
* @returns A new limited document loader instance.
|
|
1762
|
+
*/
|
|
1604
1763
|
declare function dbxLimitedFirebaseDocumentLoaderInstanceWithAccessor<T, D extends FirestoreDocument<T> = FirestoreDocument<T>, A extends LimitedFirestoreDocumentAccessor<T, D> = LimitedFirestoreDocumentAccessor<T, D>>(accessor: A): DbxLimitedFirebaseDocumentLoaderInstance<T, D, A>;
|
|
1605
1764
|
declare class DbxFirebaseDocumentLoaderInstance<T = unknown, D extends FirestoreDocument<T> = FirestoreDocument<T>, A extends FirestoreDocumentAccessor<T, D> = FirestoreDocumentAccessor<T, D>> extends DbxLimitedFirebaseDocumentLoaderInstance<T, D, A> implements DbxFirebaseDocumentLoader<T>, Destroyable {
|
|
1606
1765
|
setIds(ids: Maybe<ObservableOrValue<ArrayOrValue<FirestoreModelKey>>>): void;
|
|
1607
1766
|
}
|
|
1767
|
+
/**
|
|
1768
|
+
* Creates a new {@link DbxFirebaseDocumentLoaderInstance} from the given configuration.
|
|
1769
|
+
*
|
|
1770
|
+
* @param config - Configuration providing the full document accessor.
|
|
1771
|
+
* @returns A new document loader instance with full accessor capabilities.
|
|
1772
|
+
*/
|
|
1608
1773
|
declare function dbxFirebaseDocumentLoaderInstance<T, D extends FirestoreDocument<T> = FirestoreDocument<T>, A extends FirestoreDocumentAccessor<T, D> = FirestoreDocumentAccessor<T, D>>(config: DbxFirebaseDocumentLoaderInstanceInitConfig<T, D, A>): DbxFirebaseDocumentLoaderInstance<T, D, A>;
|
|
1774
|
+
/**
|
|
1775
|
+
* Convenience function that creates a {@link DbxFirebaseDocumentLoaderInstance} initialized with the given accessor.
|
|
1776
|
+
*
|
|
1777
|
+
* @param accessor - The full Firestore document accessor to use.
|
|
1778
|
+
* @returns A new document loader instance.
|
|
1779
|
+
*/
|
|
1609
1780
|
declare function dbxFirebaseDocumentLoaderInstanceWithAccessor<T, D extends FirestoreDocument<T> = FirestoreDocument<T>, A extends FirestoreDocumentAccessor<T, D> = FirestoreDocumentAccessor<T, D>>(accessor: A): DbxFirebaseDocumentLoaderInstance<T, D, A>;
|
|
1610
1781
|
|
|
1611
1782
|
/**
|
|
@@ -1639,6 +1810,12 @@ interface DbxFirebaseInContextFirebaseModelInfoServiceInstance<D extends Firesto
|
|
|
1639
1810
|
}
|
|
1640
1811
|
|
|
1641
1812
|
type DbxFirebaseInContextFirebaseModelServiceInstanceFactory<S extends InContextFirebaseModelsService<any>, C extends FirebasePermissionErrorContext = FirebasePermissionErrorContext> = <D extends FirestoreDocument<any>, R extends GrantedRole = GrantedRole>(type: S extends InContextFirebaseModelsService<infer Y> ? (Y extends FirebaseModelsService<infer X, infer C> ? keyof X : never) : never, keyObs: ObservableOrValue<ModelKey>) => DbxFirebaseInContextFirebaseModelServiceInstance<D, R, C>;
|
|
1813
|
+
/**
|
|
1814
|
+
* Factory function that creates typed model service instance accessors from an observable context.
|
|
1815
|
+
*
|
|
1816
|
+
* @param context$ - Observable of the in-context Firebase models service.
|
|
1817
|
+
* @returns A factory function for creating model service instances by type and key.
|
|
1818
|
+
*/
|
|
1642
1819
|
declare function dbxFirebaseInContextFirebaseModelServiceInstanceFactory<S extends InContextFirebaseModelsService<any>, C extends FirebasePermissionErrorContext = FirebasePermissionErrorContext>(context$: Observable<S>): DbxFirebaseInContextFirebaseModelServiceInstanceFactory<S, C>;
|
|
1643
1820
|
interface DbxFirebaseInContextFirebaseModelServiceInstance<D extends FirestoreDocument<any>, R extends GrantedRole = GrantedRole, C extends FirebasePermissionErrorContext = FirebasePermissionErrorContext> extends DbxFirebaseInContextFirebaseModelInfoServiceInstance<D, R> {
|
|
1644
1821
|
readonly modelService$: Observable<InModelContextFirebaseModelService<C, FirestoreDocumentData<D>, D, R>>;
|
|
@@ -1647,6 +1824,9 @@ interface DbxFirebaseInContextFirebaseModelServiceInstance<D extends FirestoreDo
|
|
|
1647
1824
|
* Creates a new DbxFirebaseInContextFirebaseModelServiceInstance.
|
|
1648
1825
|
*
|
|
1649
1826
|
* Wraps an InModelContextFirebaseModelService observable and provides different piped observables.
|
|
1827
|
+
*
|
|
1828
|
+
* @param modelService$ - Observable of the in-model-context Firebase model service to wrap.
|
|
1829
|
+
* @returns A DbxFirebaseInContextFirebaseModelServiceInstance with derived observables for model data, roles, and permissions.
|
|
1650
1830
|
*/
|
|
1651
1831
|
declare function dbxFirebaseInContextFirebaseModelServiceInstance<D extends FirestoreDocument<any>, R extends GrantedRole = GrantedRole, C extends FirebasePermissionErrorContext = FirebasePermissionErrorContext>(modelService$: Observable<InModelContextFirebaseModelService<C, FirestoreDocumentData<D>, D, R>>): DbxFirebaseInContextFirebaseModelServiceInstance<D, R, C>;
|
|
1652
1832
|
|
|
@@ -1666,6 +1846,12 @@ interface DbxFirebaseModelContextServiceInfoInstanceFactoryConfig<S extends InCo
|
|
|
1666
1846
|
readonly modelService: DbxFirebaseInContextFirebaseModelServiceInstanceFactory<S, C>;
|
|
1667
1847
|
readonly entityMap$: Observable<FirestoreModelIdentityTypeMap>;
|
|
1668
1848
|
}
|
|
1849
|
+
/**
|
|
1850
|
+
* Creates a factory that resolves model info instances by looking up the collection type from a model key and delegating to the model service.
|
|
1851
|
+
*
|
|
1852
|
+
* @param config - Configuration providing the model service factory and entity map observable.
|
|
1853
|
+
* @returns A factory function that creates model info instances from observable model keys.
|
|
1854
|
+
*/
|
|
1669
1855
|
declare function dbxFirebaseModelContextServiceInfoInstanceFactory<S extends InContextFirebaseModelsService<any>, C extends FirebasePermissionErrorContext = FirebasePermissionErrorContext>(config: DbxFirebaseModelContextServiceInfoInstanceFactoryConfig<S, C>): DbxFirebaseModelContextServiceInfoInstanceFactory;
|
|
1670
1856
|
/**
|
|
1671
1857
|
* Operator function that builds a FirestoreModelIdentityTypeMap from the input context and shares the replay.
|
|
@@ -1728,7 +1914,8 @@ type DbxFirebaseModelTypesMap = DbxModelTypesMap<DbxFirebaseModelTypeInfo>;
|
|
|
1728
1914
|
declare class DbxFirebaseModelTypesService {
|
|
1729
1915
|
readonly dbxFirebaseModelContextService: DbxFirebaseModelContextService;
|
|
1730
1916
|
readonly dbxModelTypesService: DbxModelTypesService<any>;
|
|
1731
|
-
|
|
1917
|
+
private readonly _initialConfig;
|
|
1918
|
+
constructor();
|
|
1732
1919
|
getDisplayInfo<T>(typeInfo: DbxFirebaseModelTypeInfo<T>, data: T): DbxFirebaseModelDisplayInfo;
|
|
1733
1920
|
getDefaultDisplayInfo<T = unknown>(typeInfo: DbxFirebaseModelTypeInfo<T>): {
|
|
1734
1921
|
title: string;
|
|
@@ -1752,6 +1939,12 @@ interface DbxFirebaseModelTypesServiceInstancePair<D extends FirestoreDocument<a
|
|
|
1752
1939
|
readonly segueRef: Maybe<ClickableAnchorLinkSegueRef>;
|
|
1753
1940
|
}
|
|
1754
1941
|
type DbxFirebaseModelTypesServiceInstancePairForKeysFactory = (keys: ArrayOrValue<ObservableOrValue<FirestoreModelKey>>) => Observable<DbxFirebaseModelTypesServiceInstancePair[]>;
|
|
1942
|
+
/**
|
|
1943
|
+
* Creates a factory function that produces an observable of instance pairs for the given model keys.
|
|
1944
|
+
*
|
|
1945
|
+
* @param service - The model types service used to resolve type info and instances.
|
|
1946
|
+
* @returns A factory that accepts model keys and returns an Observable of instance pairs with display info and segue refs.
|
|
1947
|
+
*/
|
|
1755
1948
|
declare function dbxFirebaseModelTypesServiceInstancePairForKeysFactory(service: DbxFirebaseModelTypesService): DbxFirebaseModelTypesServiceInstancePairForKeysFactory;
|
|
1756
1949
|
/**
|
|
1757
1950
|
* DbxFirebaseModelTypesService instance
|
|
@@ -1771,6 +1964,13 @@ interface DbxFirebaseModelTypesServiceInstance<D extends FirestoreDocument<any>
|
|
|
1771
1964
|
readonly safeInstancePair$: Observable<Maybe<DbxFirebaseModelTypesServiceInstancePair>>;
|
|
1772
1965
|
readonly instancePair$: Observable<DbxFirebaseModelTypesServiceInstancePair>;
|
|
1773
1966
|
}
|
|
1967
|
+
/**
|
|
1968
|
+
* Creates a {@link DbxFirebaseModelTypesServiceInstance} that provides observables for type info, display info, segue refs, and instance pairs for a single model.
|
|
1969
|
+
*
|
|
1970
|
+
* @param modelInfoInstance$ - Observable of the model info service instance providing data and role access.
|
|
1971
|
+
* @param dbxFirebaseModelTypesService - The model types service for resolving type configurations and display info.
|
|
1972
|
+
* @returns A DbxFirebaseModelTypesServiceInstance with derived observables.
|
|
1973
|
+
*/
|
|
1774
1974
|
declare function dbxFirebaseModelTypesServiceInstance<D extends FirestoreDocument<any> = any, R extends GrantedRole = GrantedRole>(modelInfoInstance$: Observable<DbxFirebaseInContextFirebaseModelInfoServiceInstance<D, R>>, dbxFirebaseModelTypesService: DbxFirebaseModelTypesService): DbxFirebaseModelTypesServiceInstance<D, R>;
|
|
1775
1975
|
|
|
1776
1976
|
interface DbxFirebaseModelTrackerFilterItem {
|
|
@@ -2299,7 +2499,9 @@ declare class DbxFirebaseModelEntitiesComponent {
|
|
|
2299
2499
|
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>;
|
|
2300
2500
|
}
|
|
2301
2501
|
|
|
2302
|
-
/**
|
|
2502
|
+
/**
|
|
2503
|
+
* Configuration for the model entities popover, specifying display options and data source.
|
|
2504
|
+
*/
|
|
2303
2505
|
interface DbxFirebaseModelEntitiesPopoverConfig {
|
|
2304
2506
|
/**
|
|
2305
2507
|
* Custom icon
|
|
@@ -2340,7 +2542,9 @@ interface DbxFirebaseModelEntitiesPopoverConfig {
|
|
|
2340
2542
|
}
|
|
2341
2543
|
type DbxFirebaseModelEntitiesPopoverConfigWithoutOrigin = Omit<DbxFirebaseModelEntitiesPopoverConfig, 'origin' | 'entities$'>;
|
|
2342
2544
|
declare const DEFAULT_DBX_FIREBASE_MODEL_ENTITIES_COMPONENT_POPOVER_KEY = "entities";
|
|
2343
|
-
/**
|
|
2545
|
+
/**
|
|
2546
|
+
* Popover component that displays model entities in a scrollable panel with configurable header and empty text.
|
|
2547
|
+
*/
|
|
2344
2548
|
declare class DbxFirebaseModelEntitiesPopoverComponent extends AbstractPopoverDirective<unknown, DbxFirebaseModelEntitiesPopoverConfig> {
|
|
2345
2549
|
readonly entities$: Observable<LoadingState<DbxFirebaseModelEntity[]>> | undefined;
|
|
2346
2550
|
static openPopover(popupService: DbxPopoverService, config: DbxFirebaseModelEntitiesPopoverConfig, popoverKey?: DbxPopoverKey): NgPopoverRef;
|
|
@@ -2353,7 +2557,9 @@ declare class DbxFirebaseModelEntitiesPopoverComponent extends AbstractPopoverDi
|
|
|
2353
2557
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseModelEntitiesPopoverComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
2354
2558
|
}
|
|
2355
2559
|
|
|
2356
|
-
/**
|
|
2560
|
+
/**
|
|
2561
|
+
* Configuration for the entities popover button, combining popover config with button display options.
|
|
2562
|
+
*/
|
|
2357
2563
|
interface DbxFirebaseModelEntitiesPopoverButtonConfig extends DbxFirebaseModelEntitiesPopoverConfigWithoutOrigin {
|
|
2358
2564
|
/**
|
|
2359
2565
|
* The display configuration for the button.
|
|
@@ -2364,7 +2570,9 @@ interface DbxFirebaseModelEntitiesPopoverButtonConfig extends DbxFirebaseModelEn
|
|
|
2364
2570
|
*/
|
|
2365
2571
|
readonly buttonStyle?: Maybe<DbxButtonStyle>;
|
|
2366
2572
|
}
|
|
2367
|
-
/**
|
|
2573
|
+
/**
|
|
2574
|
+
* Button component that opens an entities popover showing model entities from the injected source.
|
|
2575
|
+
*/
|
|
2368
2576
|
declare class DbxFirebaseModelEntitiesPopoverButtonComponent extends AbstractPopoverRefDirective<unknown, unknown> {
|
|
2369
2577
|
private readonly _dbxPopoverService;
|
|
2370
2578
|
readonly entitiesSource: DbxFirebaseModelEntitiesSource;
|
|
@@ -2456,9 +2664,14 @@ declare class DbxFirebaseDocumentStoreContextStore extends ComponentStore<DbxFir
|
|
|
2456
2664
|
/**
|
|
2457
2665
|
* Factory that creates a {@link DbxFirebaseModelEntitiesSource} from a {@link DbxFirebaseDocumentStoreContextStore},
|
|
2458
2666
|
* mapping its entries into model entities grouped by identity.
|
|
2667
|
+
*
|
|
2668
|
+
* @param storeContextStore - The document store context store providing entries grouped by identity.
|
|
2669
|
+
* @returns A DbxFirebaseModelEntitiesSource backed by the given store context.
|
|
2459
2670
|
*/
|
|
2460
2671
|
declare const dbxFirebaseDocumentStoreContextModelEntitiesSourceFactory: (storeContextStore: DbxFirebaseDocumentStoreContextStore) => DbxFirebaseModelEntitiesSource;
|
|
2461
|
-
/**
|
|
2672
|
+
/**
|
|
2673
|
+
* Directive that provides a {@link DbxFirebaseModelEntitiesSource} from the current document store context.
|
|
2674
|
+
*/
|
|
2462
2675
|
declare class DbxFirebaseDocumentStoreContextModelEntitiesSourceDirective {
|
|
2463
2676
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseDocumentStoreContextModelEntitiesSourceDirective, never>;
|
|
2464
2677
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFirebaseDocumentStoreContextModelEntitiesSourceDirective, "[dbxFirebaseDocumentStoreContextModelEntitiesSource]", never, {}, {}, never, never, true, never>;
|
|
@@ -2561,6 +2774,9 @@ declare abstract class DbxFirebaseDocumentStoreTwoWayKeyProvider {
|
|
|
2561
2774
|
}
|
|
2562
2775
|
/**
|
|
2563
2776
|
* Configures Providers for a DbxFirebaseDocumentStoreTwoWayKeyProvider.
|
|
2777
|
+
*
|
|
2778
|
+
* @param sourceType - The type to register as the DbxFirebaseDocumentStoreTwoWayKeyProvider.
|
|
2779
|
+
* @returns Array of Angular providers for the two-way key provider.
|
|
2564
2780
|
*/
|
|
2565
2781
|
declare function provideDbxFirebaseDocumentStoreTwoWayKeyProvider<S extends DbxFirebaseDocumentStoreTwoWayKeyProvider>(sourceType: Type<S>): Provider[];
|
|
2566
2782
|
|
|
@@ -2604,6 +2820,8 @@ declare abstract class DbxFirebaseDocumentStoreDirective<T = unknown, D extends
|
|
|
2604
2820
|
setStreamMode(streamMode: FirestoreAccessorStreamMode): void;
|
|
2605
2821
|
/**
|
|
2606
2822
|
* Replaces the internal store.
|
|
2823
|
+
*
|
|
2824
|
+
* @param store - The new document store to use.
|
|
2607
2825
|
*/
|
|
2608
2826
|
replaceStore(store: S): void;
|
|
2609
2827
|
useRouteModelIdParamsObservable(idFromParams: Observable<Maybe<ModelKey>>): Subscription;
|
|
@@ -2616,7 +2834,8 @@ declare abstract class DbxFirebaseDocumentStoreDirective<T = unknown, D extends
|
|
|
2616
2834
|
*
|
|
2617
2835
|
* Can optionally also provide the actual store type to include in the providers array so it is instantiated by Angular.
|
|
2618
2836
|
*
|
|
2619
|
-
* @param sourceType
|
|
2837
|
+
* @param sourceType - The directive type to register as the DbxFirebaseDocumentStoreDirective provider.
|
|
2838
|
+
* @returns Array of Angular providers for the directive and its route delegates.
|
|
2620
2839
|
*/
|
|
2621
2840
|
declare function provideDbxFirebaseDocumentStoreDirective<S extends DbxFirebaseDocumentStoreDirective<any, any, any>>(sourceType: Type<S>): Provider[];
|
|
2622
2841
|
declare function provideDbxFirebaseDocumentStoreDirective<S extends DbxFirebaseDocumentStore<any, any>, C extends DbxFirebaseDocumentStoreDirective<any, any, S> = DbxFirebaseDocumentStoreDirective<any, any, S>>(sourceType: Type<C>, storeType: Type<S>): Provider[];
|
|
@@ -2749,6 +2968,8 @@ declare abstract class DbxFirebaseCollectionStoreDirective<T = unknown, D extend
|
|
|
2749
2968
|
get store(): S;
|
|
2750
2969
|
/**
|
|
2751
2970
|
* Replaces the internal store.
|
|
2971
|
+
*
|
|
2972
|
+
* @param store - The new collection store to use.
|
|
2752
2973
|
*/
|
|
2753
2974
|
replaceStore(store: S): void;
|
|
2754
2975
|
setCollectionMode(collectionMode: DbxFirebaseCollectionMode): void;
|
|
@@ -2768,7 +2989,8 @@ declare abstract class DbxFirebaseCollectionStoreDirective<T = unknown, D extend
|
|
|
2768
2989
|
*
|
|
2769
2990
|
* Can optionally also provide the actual store type to include in the providers array so it is instantiated by Angular.
|
|
2770
2991
|
*
|
|
2771
|
-
* @param sourceType
|
|
2992
|
+
* @param sourceType - The directive type to register as the DbxFirebaseCollectionStoreDirective provider.
|
|
2993
|
+
* @returns Array of Angular providers for the directive.
|
|
2772
2994
|
*/
|
|
2773
2995
|
declare function provideDbxFirebaseCollectionStoreDirective<S extends DbxFirebaseCollectionStoreDirective<any, any, any>>(sourceType: Type<S>): Provider[];
|
|
2774
2996
|
declare function provideDbxFirebaseCollectionStoreDirective<S extends DbxFirebaseCollectionStore<any, any>, C extends DbxFirebaseCollectionStoreDirective<any, any, S> = DbxFirebaseCollectionStoreDirective<any, any, S>>(sourceType: Type<C>, storeType?: Type<S>): Provider[];
|
|
@@ -2963,7 +3185,7 @@ interface DbxFirebaseDocumentStoreContextState<T, D extends FirestoreDocument<T>
|
|
|
2963
3185
|
* Optional configuration for store CRUD wrapper functions.
|
|
2964
3186
|
*
|
|
2965
3187
|
* Provides an `onResult` callback that fires after the wrapped function resolves.
|
|
2966
|
-
* Useful for capturing one-time values (e.g
|
|
3188
|
+
* Useful for capturing one-time values (e.g., `client_secret`) from the response.
|
|
2967
3189
|
*/
|
|
2968
3190
|
interface FirebaseDocumentStoreFunctionConfig<I, O = unknown> {
|
|
2969
3191
|
/**
|
|
@@ -2975,10 +3197,10 @@ type DbxFirebaseDocumentStoreCreateFunction<I, O extends OnCallCreateModelResult
|
|
|
2975
3197
|
/**
|
|
2976
3198
|
* Creates a function for a store that DbxFirebaseDocumentStore captures the ModelFirebaseCreateFunction result and sets the key of the created value.
|
|
2977
3199
|
*
|
|
2978
|
-
* @param store
|
|
2979
|
-
* @param fn
|
|
3200
|
+
* @param store - The document store to capture the created model's key into.
|
|
3201
|
+
* @param fn - The Firebase create function to wrap.
|
|
2980
3202
|
* @param config - Optional config with an `onResult` callback.
|
|
2981
|
-
* @returns
|
|
3203
|
+
* @returns A function that executes the create and sets the resulting key on the store.
|
|
2982
3204
|
*/
|
|
2983
3205
|
declare function firebaseDocumentStoreCreateFunction<I, O extends OnCallCreateModelResult = OnCallCreateModelResult>(store: DbxFirebaseDocumentStore<any, any>, fn: ModelFirebaseCreateFunction<I, O>, config?: FirebaseDocumentStoreFunctionConfig<I, O>): DbxFirebaseDocumentStoreCreateFunction<I, O>;
|
|
2984
3206
|
type DbxFirebaseDocumentStoreCrudFunction<I, O = void> = (input: I) => Observable<LoadingState<O>>;
|
|
@@ -3015,9 +3237,10 @@ declare function firebaseDocumentStoreReadFunction<I extends DbxFirebaseDocument
|
|
|
3015
3237
|
*
|
|
3016
3238
|
* The store's current key is always injected into the params of the request.
|
|
3017
3239
|
*
|
|
3018
|
-
* @param store
|
|
3019
|
-
* @param fn
|
|
3020
|
-
* @
|
|
3240
|
+
* @param store - The document store whose current key is injected into the request params.
|
|
3241
|
+
* @param fn - The Firebase update function to wrap.
|
|
3242
|
+
* @param config - Optional config with an `onResult` callback.
|
|
3243
|
+
* @returns A function that executes the update with the store's key injected.
|
|
3021
3244
|
*/
|
|
3022
3245
|
declare function firebaseDocumentStoreUpdateFunction<I extends DbxFirebaseDocumentStoreFunctionParams, O = void>(store: DbxFirebaseDocumentStore<any, any>, fn: ModelFirebaseUpdateFunction<I, O>, config?: FirebaseDocumentStoreFunctionConfig<DbxFirebaseDocumentStoreFunctionParamsInput<I>, O>): DbxFirebaseDocumentStoreFunction<I, O>;
|
|
3023
3246
|
/**
|
|
@@ -3047,6 +3270,12 @@ interface DbxFirebaseComponentStoreWithParent<T, PT, D extends FirestoreDocument
|
|
|
3047
3270
|
readonly _setParentDocument: (() => void) | ((observableOrValue: ObservableOrValue<Maybe<PD>>) => Subscription);
|
|
3048
3271
|
readonly setFirestoreCollection: (() => void) | ((observableOrValue: ObservableOrValue<Maybe<A>>) => Subscription);
|
|
3049
3272
|
}
|
|
3273
|
+
/**
|
|
3274
|
+
* Creates a component store effect that links a parent document store to a subcollection store, propagating the parent document and lock set.
|
|
3275
|
+
*
|
|
3276
|
+
* @param store - The subcollection component store to connect to a parent store.
|
|
3277
|
+
* @returns An effect function that accepts an observable parent document store and manages the subscription lifecycle.
|
|
3278
|
+
*/
|
|
3050
3279
|
declare function setParentStoreEffect<T, PT, D extends FirestoreDocument<T> = FirestoreDocument<T>, PD extends FirestoreDocument<PT> = FirestoreDocument<PT>, A extends FirestoreCollectionLike<T, D> = FirestoreCollectionLike<T, D>>(store: DbxFirebaseComponentStoreWithParent<T, PT, D, PD, A>): DbxFirebaseComponentStoreWithParentSetParentStoreEffectFunction<PT, PD>;
|
|
3051
3280
|
|
|
3052
3281
|
/**
|
|
@@ -3171,7 +3400,8 @@ declare abstract class DbxFirebaseCollectionWithParentStoreDirective<T, PT, D ex
|
|
|
3171
3400
|
*
|
|
3172
3401
|
* Can optionally also provide the actual store type to include in the providers array so it is instantiated by Angular.
|
|
3173
3402
|
*
|
|
3174
|
-
* @param sourceType
|
|
3403
|
+
* @param sourceType - The directive type to register as the provider.
|
|
3404
|
+
* @returns Array of Angular providers for the subcollection directive and its parent collection directive.
|
|
3175
3405
|
*/
|
|
3176
3406
|
declare function provideDbxFirebaseCollectionWithParentStoreDirective<S extends DbxFirebaseCollectionWithParentStoreDirective<any, any, any, any, any>>(sourceType: Type<S>): Provider[];
|
|
3177
3407
|
declare function provideDbxFirebaseCollectionWithParentStoreDirective<S extends DbxFirebaseCollectionWithParentStore<any, any, any, any>, C extends DbxFirebaseCollectionWithParentStoreDirective<any, any, any, any, S> = DbxFirebaseCollectionWithParentStoreDirective<any, any, any, any, S>>(sourceType: Type<C>, storeType?: Type<S>): Provider[];
|
|
@@ -3182,12 +3412,16 @@ declare function provideDbxFirebaseCollectionWithParentStoreDirective<S extends
|
|
|
3182
3412
|
declare const DBX_FIREBASE_DOCUMENT_STORE_CONTEXT_STORE_TOKEN: InjectionToken<DbxFirebaseDocumentStoreContextStore[]>;
|
|
3183
3413
|
/**
|
|
3184
3414
|
* Provides the DbxFirebaseDocumentStoreContextStore.
|
|
3415
|
+
*
|
|
3416
|
+
* @returns Array of Angular providers that create and register a DbxFirebaseDocumentStoreContextStore.
|
|
3185
3417
|
*/
|
|
3186
3418
|
declare function provideDbxFirebaseDocumentStoreContextStore(): Provider[];
|
|
3187
3419
|
/**
|
|
3188
3420
|
* Links a DbxFirebaseDocumentStore to parent DbxFirebaseDocumentStoreContextStore instances.
|
|
3189
3421
|
*
|
|
3190
3422
|
* This should be called in an Angular injection context.
|
|
3423
|
+
*
|
|
3424
|
+
* @param store - The document store to register with all available parent context stores.
|
|
3191
3425
|
*/
|
|
3192
3426
|
declare function linkDocumentStoreToParentContextStores(store: DbxFirebaseDocumentStore<any, any>): void;
|
|
3193
3427
|
|
|
@@ -3199,21 +3433,27 @@ declare class DbxFirebaseDocumentStoreContextStoreDirective {
|
|
|
3199
3433
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFirebaseDocumentStoreContextStoreDirective, "[dbxFirebaseDocumentStoreContextStore]", never, {}, {}, never, never, true, never>;
|
|
3200
3434
|
}
|
|
3201
3435
|
|
|
3202
|
-
/**
|
|
3436
|
+
/**
|
|
3437
|
+
* Collection store for querying SystemState documents.
|
|
3438
|
+
*/
|
|
3203
3439
|
declare class SystemStateCollectionStore extends AbstractDbxFirebaseCollectionStore<SystemState, SystemStateDocument> {
|
|
3204
3440
|
constructor();
|
|
3205
3441
|
static ɵfac: i0.ɵɵFactoryDeclaration<SystemStateCollectionStore, never>;
|
|
3206
3442
|
static ɵprov: i0.ɵɵInjectableDeclaration<SystemStateCollectionStore>;
|
|
3207
3443
|
}
|
|
3208
3444
|
|
|
3209
|
-
/**
|
|
3445
|
+
/**
|
|
3446
|
+
* Directive providing a {@link SystemStateCollectionStore} for querying system state documents.
|
|
3447
|
+
*/
|
|
3210
3448
|
declare class DbxFirebaseSystemStateCollectionStoreDirective extends DbxFirebaseCollectionStoreDirective<SystemState, SystemStateDocument, SystemStateCollectionStore> {
|
|
3211
3449
|
constructor();
|
|
3212
3450
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseSystemStateCollectionStoreDirective, never>;
|
|
3213
3451
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFirebaseSystemStateCollectionStoreDirective, "[dbxFirebaseSystemStateCollection]", never, {}, {}, never, never, true, never>;
|
|
3214
3452
|
}
|
|
3215
3453
|
|
|
3216
|
-
/**
|
|
3454
|
+
/**
|
|
3455
|
+
* Document store for a single typed SystemState document.
|
|
3456
|
+
*/
|
|
3217
3457
|
declare class SystemStateDocumentStore<T extends SystemStateStoredData = SystemStateStoredData> extends AbstractDbxFirebaseDocumentStore<SystemState<T>, SystemStateDocument<T>> {
|
|
3218
3458
|
constructor();
|
|
3219
3459
|
static ɵfac: i0.ɵɵFactoryDeclaration<SystemStateDocumentStore<any>, never>;
|
|
@@ -3232,11 +3472,13 @@ declare abstract class AbstractSystemStateDocumentStoreAccessor<T extends System
|
|
|
3232
3472
|
readonly doesNotExist$: Observable<boolean>;
|
|
3233
3473
|
readonly type$: Observable<SystemStateTypeIdentifier>;
|
|
3234
3474
|
constructor(type: SystemStateTypeIdentifier);
|
|
3235
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractSystemStateDocumentStoreAccessor<any>,
|
|
3475
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractSystemStateDocumentStoreAccessor<any>, never>;
|
|
3236
3476
|
static ɵprov: i0.ɵɵInjectableDeclaration<AbstractSystemStateDocumentStoreAccessor<any>>;
|
|
3237
3477
|
}
|
|
3238
3478
|
|
|
3239
|
-
/**
|
|
3479
|
+
/**
|
|
3480
|
+
* Directive providing a {@link SystemStateDocumentStore} for accessing a single system state document.
|
|
3481
|
+
*/
|
|
3240
3482
|
declare class DbxFirebaseSystemStateDocumentStoreDirective<T extends SystemStateStoredData = SystemStateStoredData> extends DbxFirebaseDocumentStoreDirective<SystemState<T>, SystemStateDocument<T>, SystemStateDocumentStore<T>> {
|
|
3241
3483
|
constructor();
|
|
3242
3484
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseSystemStateDocumentStoreDirective<any>, never>;
|
|
@@ -3244,6 +3486,11 @@ declare class DbxFirebaseSystemStateDocumentStoreDirective<T extends SystemState
|
|
|
3244
3486
|
}
|
|
3245
3487
|
|
|
3246
3488
|
declare const DBX_FIREBASE_MODEL_DOES_NOT_EXIST_ERROR = "DOES_NOT_EXIST";
|
|
3489
|
+
/**
|
|
3490
|
+
* Creates a readable error indicating that the requested Firebase model document does not exist.
|
|
3491
|
+
*
|
|
3492
|
+
* @returns A readable error with the 'DOES_NOT_EXIST' code and a descriptive message.
|
|
3493
|
+
*/
|
|
3247
3494
|
declare function modelDoesNotExistError(): _dereekb_util.ReadableErrorWithCode<_dereekb_util.ReadableError>;
|
|
3248
3495
|
|
|
3249
3496
|
declare class DbxFirebaseModelModule {
|
|
@@ -3262,21 +3509,29 @@ declare class DbxFirebaseNotificationTemplateService {
|
|
|
3262
3509
|
static ɵprov: i0.ɵɵInjectableDeclaration<DbxFirebaseNotificationTemplateService>;
|
|
3263
3510
|
}
|
|
3264
3511
|
|
|
3265
|
-
/**
|
|
3512
|
+
/**
|
|
3513
|
+
* A notification item wrapped with list selection state.
|
|
3514
|
+
*/
|
|
3266
3515
|
type NotificationItemWithSelection = DbxValueAsListItem<NotificationItem>;
|
|
3267
|
-
/**
|
|
3516
|
+
/**
|
|
3517
|
+
* Selection list wrapper for notification items with view-only default selection mode.
|
|
3518
|
+
*/
|
|
3268
3519
|
declare class DbxFirebaseNotificationItemListComponent extends AbstractDbxSelectionListWrapperDirective<NotificationItem> {
|
|
3269
3520
|
constructor();
|
|
3270
3521
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseNotificationItemListComponent, never>;
|
|
3271
3522
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseNotificationItemListComponent, "dbx-firebase-notificationitem-list", never, {}, {}, never, ["[top]", "[bottom]", "[empty]", "[emptyLoading]", "[end]"], true, never>;
|
|
3272
3523
|
}
|
|
3273
|
-
/**
|
|
3524
|
+
/**
|
|
3525
|
+
* List view component that renders notification items using the selection list pattern.
|
|
3526
|
+
*/
|
|
3274
3527
|
declare class DbxFirebaseNotificationItemListViewComponent extends AbstractDbxSelectionListViewDirective<NotificationItem> {
|
|
3275
3528
|
readonly config: DbxSelectionValueListViewConfig<NotificationItemWithSelection>;
|
|
3276
3529
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseNotificationItemListViewComponent, never>;
|
|
3277
3530
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseNotificationItemListViewComponent, "dbx-firebase-notificationitem-list-view", never, {}, {}, never, never, true, never>;
|
|
3278
3531
|
}
|
|
3279
|
-
/**
|
|
3532
|
+
/**
|
|
3533
|
+
* Individual list view item component rendering a notification's subject, message, and date.
|
|
3534
|
+
*/
|
|
3280
3535
|
declare class DbxFirebaseNotificationItemListViewItemComponent extends AbstractDbxValueListViewItemComponent<NotificationItem> {
|
|
3281
3536
|
readonly dbxFirebaseNotificationTemplateService: DbxFirebaseNotificationTemplateService;
|
|
3282
3537
|
readonly pairGetter: _dereekb_util.CachedFactoryWithInput<_dereekb_firebase.NotificationItemSubjectMessagePair<{}>, unknown>;
|
|
@@ -3287,7 +3542,9 @@ declare class DbxFirebaseNotificationItemListViewItemComponent extends AbstractD
|
|
|
3287
3542
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseNotificationItemListViewItemComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
|
3288
3543
|
}
|
|
3289
3544
|
|
|
3290
|
-
/**
|
|
3545
|
+
/**
|
|
3546
|
+
* Presentational component for notification item content, displaying subject, message, and date.
|
|
3547
|
+
*/
|
|
3291
3548
|
declare class DbxFirebaseNotificationItemContentComponent {
|
|
3292
3549
|
readonly subject: i0.InputSignal<Maybe<string>>;
|
|
3293
3550
|
readonly message: i0.InputSignal<Maybe<string>>;
|
|
@@ -3318,7 +3575,9 @@ declare abstract class AbstractDbxFirebaseNotificationItemWidgetComponent<D exte
|
|
|
3318
3575
|
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractDbxFirebaseNotificationItemWidgetComponent<any>, never, never, {}, {}, never, never, true, never>;
|
|
3319
3576
|
}
|
|
3320
3577
|
|
|
3321
|
-
/**
|
|
3578
|
+
/**
|
|
3579
|
+
* Default notification item view component that renders subject, message, and creation date.
|
|
3580
|
+
*/
|
|
3322
3581
|
declare class DbxFirebaseNotificationItemDefaultViewComponent extends AbstractDbxFirebaseNotificationItemWidgetComponent {
|
|
3323
3582
|
get subject(): _dereekb_util.Maybe<string>;
|
|
3324
3583
|
get message(): _dereekb_util.Maybe<string>;
|
|
@@ -3406,7 +3665,9 @@ declare class DbxFirebaseNotificationItemStore extends ComponentStore<DbxFirebas
|
|
|
3406
3665
|
static ɵprov: i0.ɵɵInjectableDeclaration<DbxFirebaseNotificationItemStore>;
|
|
3407
3666
|
}
|
|
3408
3667
|
|
|
3409
|
-
/**
|
|
3668
|
+
/**
|
|
3669
|
+
* Document store for a single Notification, providing derived observables for creation date, send state, and update functions.
|
|
3670
|
+
*/
|
|
3410
3671
|
declare class NotificationDocumentStore extends AbstractDbxFirebaseDocumentWithParentStore<Notification, NotificationBox, NotificationDocument, NotificationBoxDocument> {
|
|
3411
3672
|
readonly notificationFunctions: NotificationFunctions;
|
|
3412
3673
|
constructor();
|
|
@@ -3420,28 +3681,36 @@ declare class NotificationDocumentStore extends AbstractDbxFirebaseDocumentWithP
|
|
|
3420
3681
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationDocumentStore>;
|
|
3421
3682
|
}
|
|
3422
3683
|
|
|
3423
|
-
/**
|
|
3684
|
+
/**
|
|
3685
|
+
* Directive providing a {@link NotificationDocumentStore} for accessing a single notification document.
|
|
3686
|
+
*/
|
|
3424
3687
|
declare class DbxFirebaseNotificationDocumentStoreDirective extends DbxFirebaseDocumentStoreDirective<Notification, NotificationDocument, NotificationDocumentStore> {
|
|
3425
3688
|
constructor();
|
|
3426
3689
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseNotificationDocumentStoreDirective, never>;
|
|
3427
3690
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFirebaseNotificationDocumentStoreDirective, "[dbxFirebaseNotificationDocument]", never, {}, {}, never, never, true, never>;
|
|
3428
3691
|
}
|
|
3429
3692
|
|
|
3430
|
-
/**
|
|
3693
|
+
/**
|
|
3694
|
+
* Collection store for Notification documents, scoped to a parent NotificationBox when available.
|
|
3695
|
+
*/
|
|
3431
3696
|
declare class NotificationCollectionStore extends AbstractDbxFirebaseCollectionWithParentStore<Notification, NotificationBox, NotificationDocument, NotificationBoxDocument> {
|
|
3432
3697
|
constructor();
|
|
3433
3698
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationCollectionStore, never>;
|
|
3434
3699
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationCollectionStore>;
|
|
3435
3700
|
}
|
|
3436
3701
|
|
|
3437
|
-
/**
|
|
3702
|
+
/**
|
|
3703
|
+
* Directive providing a {@link NotificationCollectionStore} for querying notifications within a template.
|
|
3704
|
+
*/
|
|
3438
3705
|
declare class DbxFirebaseNotificationCollectionStoreDirective extends DbxFirebaseCollectionWithParentStoreDirective<Notification, NotificationBox, NotificationDocument, NotificationBoxDocument, NotificationCollectionStore> {
|
|
3439
3706
|
constructor();
|
|
3440
3707
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseNotificationCollectionStoreDirective, never>;
|
|
3441
3708
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFirebaseNotificationCollectionStoreDirective, "[dbxFirebaseNotificationCollection]", never, {}, {}, never, never, true, never>;
|
|
3442
3709
|
}
|
|
3443
3710
|
|
|
3444
|
-
/**
|
|
3711
|
+
/**
|
|
3712
|
+
* Document store for a single NotificationBox, providing derived observables for creation date, recipients, and update functions.
|
|
3713
|
+
*/
|
|
3445
3714
|
declare class NotificationBoxDocumentStore extends AbstractDbxFirebaseDocumentStore<NotificationBox, NotificationBoxDocument> {
|
|
3446
3715
|
readonly notificationFunctions: NotificationFunctions;
|
|
3447
3716
|
constructor();
|
|
@@ -3453,42 +3722,54 @@ declare class NotificationBoxDocumentStore extends AbstractDbxFirebaseDocumentSt
|
|
|
3453
3722
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationBoxDocumentStore>;
|
|
3454
3723
|
}
|
|
3455
3724
|
|
|
3456
|
-
/**
|
|
3725
|
+
/**
|
|
3726
|
+
* Directive providing a {@link NotificationBoxDocumentStore} for accessing a single notification box document.
|
|
3727
|
+
*/
|
|
3457
3728
|
declare class DbxFirebaseNotificationBoxDocumentStoreDirective extends DbxFirebaseDocumentStoreDirective<NotificationBox, NotificationBoxDocument, NotificationBoxDocumentStore> {
|
|
3458
3729
|
constructor();
|
|
3459
3730
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseNotificationBoxDocumentStoreDirective, never>;
|
|
3460
3731
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFirebaseNotificationBoxDocumentStoreDirective, "[dbxFirebaseNotificationBoxDocument]", never, {}, {}, never, never, true, never>;
|
|
3461
3732
|
}
|
|
3462
3733
|
|
|
3463
|
-
/**
|
|
3734
|
+
/**
|
|
3735
|
+
* Collection store for querying NotificationBox documents.
|
|
3736
|
+
*/
|
|
3464
3737
|
declare class NotificationBoxCollectionStore extends AbstractDbxFirebaseCollectionStore<NotificationBox, NotificationBoxDocument> {
|
|
3465
3738
|
constructor();
|
|
3466
3739
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationBoxCollectionStore, never>;
|
|
3467
3740
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationBoxCollectionStore>;
|
|
3468
3741
|
}
|
|
3469
3742
|
|
|
3470
|
-
/**
|
|
3743
|
+
/**
|
|
3744
|
+
* Directive providing a {@link NotificationBoxCollectionStore} for querying notification boxes.
|
|
3745
|
+
*/
|
|
3471
3746
|
declare class DbxFirebaseNotificationBoxCollectionStoreDirective extends DbxFirebaseCollectionStoreDirective<NotificationBox, NotificationBoxDocument, NotificationBoxCollectionStore> {
|
|
3472
3747
|
constructor();
|
|
3473
3748
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseNotificationBoxCollectionStoreDirective, never>;
|
|
3474
3749
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFirebaseNotificationBoxCollectionStoreDirective, "[dbxFirebaseNotificationBoxCollection]", never, {}, {}, never, never, true, never>;
|
|
3475
3750
|
}
|
|
3476
3751
|
|
|
3477
|
-
/**
|
|
3752
|
+
/**
|
|
3753
|
+
* Collection store for querying NotificationSummary documents.
|
|
3754
|
+
*/
|
|
3478
3755
|
declare class NotificationSummaryCollectionStore extends AbstractDbxFirebaseCollectionStore<NotificationSummary, NotificationSummaryDocument> {
|
|
3479
3756
|
constructor();
|
|
3480
3757
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationSummaryCollectionStore, never>;
|
|
3481
3758
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationSummaryCollectionStore>;
|
|
3482
3759
|
}
|
|
3483
3760
|
|
|
3484
|
-
/**
|
|
3761
|
+
/**
|
|
3762
|
+
* Directive providing a {@link NotificationSummaryCollectionStore} for querying notification summaries.
|
|
3763
|
+
*/
|
|
3485
3764
|
declare class DbxFirebaseNotificationSummaryCollectionStoreDirective extends DbxFirebaseCollectionStoreDirective<NotificationSummary, NotificationSummaryDocument, NotificationSummaryCollectionStore> {
|
|
3486
3765
|
constructor();
|
|
3487
3766
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseNotificationSummaryCollectionStoreDirective, never>;
|
|
3488
3767
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFirebaseNotificationSummaryCollectionStoreDirective, "[dbxFirebaseNotificationSummaryCollection]", never, {}, {}, never, never, true, never>;
|
|
3489
3768
|
}
|
|
3490
3769
|
|
|
3491
|
-
/**
|
|
3770
|
+
/**
|
|
3771
|
+
* Document store for a single NotificationSummary, providing derived observables for items, timestamps, sync state, and update functions.
|
|
3772
|
+
*/
|
|
3492
3773
|
declare class NotificationSummaryDocumentStore extends AbstractDbxFirebaseDocumentStore<NotificationSummary, NotificationSummaryDocument> {
|
|
3493
3774
|
readonly notificationFunctions: NotificationFunctions;
|
|
3494
3775
|
constructor();
|
|
@@ -3505,28 +3786,36 @@ declare class NotificationSummaryDocumentStore extends AbstractDbxFirebaseDocume
|
|
|
3505
3786
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationSummaryDocumentStore>;
|
|
3506
3787
|
}
|
|
3507
3788
|
|
|
3508
|
-
/**
|
|
3789
|
+
/**
|
|
3790
|
+
* Directive providing a {@link NotificationSummaryDocumentStore} for accessing a single notification summary.
|
|
3791
|
+
*/
|
|
3509
3792
|
declare class DbxFirebaseNotificationSummaryDocumentStoreDirective extends DbxFirebaseDocumentStoreDirective<NotificationSummary, NotificationSummaryDocument, NotificationSummaryDocumentStore> {
|
|
3510
3793
|
constructor();
|
|
3511
3794
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseNotificationSummaryDocumentStoreDirective, never>;
|
|
3512
3795
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFirebaseNotificationSummaryDocumentStoreDirective, "[dbxFirebaseNotificationSummaryDocument]", never, {}, {}, never, never, true, never>;
|
|
3513
3796
|
}
|
|
3514
3797
|
|
|
3515
|
-
/**
|
|
3798
|
+
/**
|
|
3799
|
+
* Collection store for querying NotificationUser documents.
|
|
3800
|
+
*/
|
|
3516
3801
|
declare class NotificationUserCollectionStore extends AbstractDbxFirebaseCollectionStore<NotificationUser, NotificationUserDocument> {
|
|
3517
3802
|
constructor();
|
|
3518
3803
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotificationUserCollectionStore, never>;
|
|
3519
3804
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationUserCollectionStore>;
|
|
3520
3805
|
}
|
|
3521
3806
|
|
|
3522
|
-
/**
|
|
3807
|
+
/**
|
|
3808
|
+
* Directive providing a {@link NotificationUserCollectionStore} for querying notification user documents.
|
|
3809
|
+
*/
|
|
3523
3810
|
declare class DbxFirebaseNotificationUserCollectionStoreDirective extends DbxFirebaseCollectionStoreDirective<NotificationUser, NotificationUserDocument, NotificationUserCollectionStore> {
|
|
3524
3811
|
constructor();
|
|
3525
3812
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseNotificationUserCollectionStoreDirective, never>;
|
|
3526
3813
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFirebaseNotificationUserCollectionStoreDirective, "[dbxFirebaseNotificationUserCollection]", never, {}, {}, never, never, true, never>;
|
|
3527
3814
|
}
|
|
3528
3815
|
|
|
3529
|
-
/**
|
|
3816
|
+
/**
|
|
3817
|
+
* Document store for a single NotificationUser with update and resync functions.
|
|
3818
|
+
*/
|
|
3530
3819
|
declare class NotificationUserDocumentStore extends AbstractDbxFirebaseDocumentStore<NotificationUser, NotificationUserDocument> {
|
|
3531
3820
|
readonly notificationFunctions: NotificationFunctions;
|
|
3532
3821
|
constructor();
|
|
@@ -3536,7 +3825,9 @@ declare class NotificationUserDocumentStore extends AbstractDbxFirebaseDocumentS
|
|
|
3536
3825
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotificationUserDocumentStore>;
|
|
3537
3826
|
}
|
|
3538
3827
|
|
|
3539
|
-
/**
|
|
3828
|
+
/**
|
|
3829
|
+
* Directive providing a {@link NotificationUserDocumentStore} for accessing a single notification user document.
|
|
3830
|
+
*/
|
|
3540
3831
|
declare class DbxFirebaseNotificationUserDocumentStoreDirective extends DbxFirebaseDocumentStoreDirective<NotificationUser, NotificationUserDocument, NotificationUserDocumentStore> {
|
|
3541
3832
|
constructor();
|
|
3542
3833
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseNotificationUserDocumentStoreDirective, never>;
|
|
@@ -3550,6 +3841,12 @@ declare class DbxFirebaseNotificationUserDocumentStoreDirective extends DbxFireb
|
|
|
3550
3841
|
*/
|
|
3551
3842
|
declare const FIREBASE_NOTIFICATION_ITEM_WIDGET_TYPE_PREFIX: string;
|
|
3552
3843
|
declare const DEFAULT_FIREBASE_NOTIFICATION_ITEM_WIDGET_TYPE: DbxWidgetType;
|
|
3844
|
+
/**
|
|
3845
|
+
* Derives the widget type string for a given notification template type by prepending the standard prefix.
|
|
3846
|
+
*
|
|
3847
|
+
* @param notificationTemplateType - The notification template type to generate a widget type for.
|
|
3848
|
+
* @returns The prefixed widget type string.
|
|
3849
|
+
*/
|
|
3553
3850
|
declare function dbxWidgetTypeForNotificationTemplateType(notificationTemplateType: NotificationTemplateType): DbxWidgetType;
|
|
3554
3851
|
/**
|
|
3555
3852
|
* Used for registering a DbxFirebaseNotificationItemWidgetEntry.
|
|
@@ -3578,8 +3875,9 @@ declare class DbxFirebaseNotificationItemWidgetService {
|
|
|
3578
3875
|
/**
|
|
3579
3876
|
* Used to register a item widget. If widget for the given type is already registered, this will override it by default.
|
|
3580
3877
|
*
|
|
3581
|
-
* @param provider
|
|
3582
|
-
* @param override
|
|
3878
|
+
* @param provider - The notification item widget entry to register.
|
|
3879
|
+
* @param override - Whether to override an existing widget for the same notification template type. Defaults to true.
|
|
3880
|
+
* @returns True if the widget was registered, false if it already existed and override was false or the template type was unknown.
|
|
3583
3881
|
*/
|
|
3584
3882
|
register(provider: DbxFirebaseNotificationItemWidgetEntryRegistration, override?: boolean): boolean;
|
|
3585
3883
|
registerDefaultWidget(entry: Omit<DbxWidgetEntry, 'type'>, override?: boolean): boolean;
|
|
@@ -3644,8 +3942,8 @@ declare class DbxFirebaseStorageFileDownloadStorage {
|
|
|
3644
3942
|
*
|
|
3645
3943
|
* The pair may be expired.
|
|
3646
3944
|
*
|
|
3647
|
-
* @param key
|
|
3648
|
-
* @returns
|
|
3945
|
+
* @param input - The Firestore model ID or key identifying the storage file.
|
|
3946
|
+
* @returns Observable that emits the cached download URL pair, or undefined if not found.
|
|
3649
3947
|
*/
|
|
3650
3948
|
getDownloadUrlPair(input: FirestoreModelIdInput): Observable<DbxFirebaseStorageFileDownloadUrlPair | undefined>;
|
|
3651
3949
|
getAllDownloadUrlPairsRecord(uid: FirebaseAuthUserId): Observable<DbxFirebaseStorageFileDownloadUrlPairsRecord>;
|
|
@@ -3672,6 +3970,12 @@ interface DbxFirebaseStorageFileDownloadServiceCustomSource {
|
|
|
3672
3970
|
*/
|
|
3673
3971
|
downloadStorageFileResult: DbxFirebaseStorageFileDownloadServiceCustomSourceDownloadFunction;
|
|
3674
3972
|
}
|
|
3973
|
+
/**
|
|
3974
|
+
* Creates a {@link DbxFirebaseStorageFileDownloadServiceCustomSource} from a function that returns a LoadingState observable.
|
|
3975
|
+
*
|
|
3976
|
+
* @param obsForInput - Function that produces a LoadingState observable for the given download params and storage file ID.
|
|
3977
|
+
* @returns A custom source adapter that bridges observable-based downloads to the promise-based interface.
|
|
3978
|
+
*/
|
|
3675
3979
|
declare function dbxFirebaseStorageFileDownloadServiceCustomSourceFromObs(obsForInput: (params: DownloadStorageFileParams, storageFileId: StorageFileId) => Observable<LoadingState<DownloadStorageFileResult>>): DbxFirebaseStorageFileDownloadServiceCustomSource;
|
|
3676
3980
|
/**
|
|
3677
3981
|
* Service used for retrieving download links for StorageFiles.
|
|
@@ -3712,12 +4016,15 @@ declare class DbxFirebaseStorageFileDownloadService {
|
|
|
3712
4016
|
*
|
|
3713
4017
|
* These URLs are cached locally to prevent extra/redundant calls to the server.
|
|
3714
4018
|
*
|
|
3715
|
-
* @param storageFileIdOrKey
|
|
3716
|
-
* @
|
|
4019
|
+
* @param storageFileIdOrKey - The storage file ID or key to download.
|
|
4020
|
+
* @param source - Optional custom download source. Falls back to the default internal source if not provided.
|
|
4021
|
+
* @returns Observable that emits the cached or freshly downloaded URL pair.
|
|
3717
4022
|
*/
|
|
3718
4023
|
downloadPairForStorageFileUsingSource(storageFileIdOrKey: StorageFileId | StorageFileKey, source: Maybe<DbxFirebaseStorageFileDownloadServiceCustomSource>): Observable<DbxFirebaseStorageFileDownloadUrlPair>;
|
|
3719
4024
|
/**
|
|
3720
4025
|
* Adds the given download URL pair to the cache.
|
|
4026
|
+
*
|
|
4027
|
+
* @param downloadUrlPair - The download URL pair to store in the local cache.
|
|
3721
4028
|
*/
|
|
3722
4029
|
addPairForStorageFileToCache(downloadUrlPair: DbxFirebaseStorageFileDownloadUrlPair): void;
|
|
3723
4030
|
/**
|
|
@@ -4158,6 +4465,9 @@ interface StorageFileUploadHandlerConfig {
|
|
|
4158
4465
|
}
|
|
4159
4466
|
/**
|
|
4160
4467
|
* Default implementation of StorageFileUploadHandler.
|
|
4468
|
+
*
|
|
4469
|
+
* @param config - Configuration providing the storage service and file upload config factory.
|
|
4470
|
+
* @returns A StorageFileUploadHandler that manages resumable file uploads.
|
|
4161
4471
|
*/
|
|
4162
4472
|
declare function storageFileUploadHandler(config: StorageFileUploadHandlerConfig): StorageFileUploadHandler;
|
|
4163
4473
|
interface StorageFileUploadFilesInput {
|
|
@@ -4362,7 +4672,7 @@ declare class DbxFirebaseStorageFileUploadSyncDirective {
|
|
|
4362
4672
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DbxFirebaseStorageFileUploadSyncDirective, "[dbxFirebaseStorageFileUploadSync]", ["dbxFirebaseStorageFileUploadSync"], {}, {}, never, never, true, never>;
|
|
4363
4673
|
}
|
|
4364
4674
|
|
|
4365
|
-
declare const
|
|
4675
|
+
declare const IMPORTS_AND_EXPORTS: (typeof DbxActionModule | typeof DbxLoadingComponent | typeof DbxActionSnackbarErrorDirective | typeof DbxFirebaseStorageFileCollectionStoreDirective | typeof DbxFirebaseStorageFileDocumentStoreDirective | typeof DbxFirebaseStorageFileUploadActionHandlerDirective | typeof DbxFirebaseStorageFileUploadInitializeDocumentDirective | typeof DbxFirebaseStorageFileUploadStoreDirective | typeof DbxFirebaseStorageFileUploadSyncDirective | typeof DbxFileUploadComponent | typeof DbxActionLoadingContextDirective | typeof DbxFileUploadActionSyncDirective)[];
|
|
4366
4676
|
/**
|
|
4367
4677
|
* Convenience module for importing various modules/components that are relevant to the storage file upload feature.
|
|
4368
4678
|
*
|
|
@@ -4381,13 +4691,16 @@ declare class DbxFirebaseStorageFileUploadModule {
|
|
|
4381
4691
|
}
|
|
4382
4692
|
|
|
4383
4693
|
/**
|
|
4384
|
-
* Factory function for creating a StorageAccessor for the
|
|
4694
|
+
* Factory function for creating a StorageAccessor for the storage file download cache.
|
|
4695
|
+
*
|
|
4696
|
+
* @param storageAccessorFactory - The factory used to create prefixed storage accessors.
|
|
4697
|
+
* @returns A StorageAccessor scoped to the storage file download cache.
|
|
4385
4698
|
*/
|
|
4386
4699
|
declare function defaultDbxFirebaseStorageFileDownloadStorageAccessorFactory(storageAccessorFactory: SimpleStorageAccessorFactory): StorageAccessor<DbxFirebaseStorageFileDownloadUserCache>;
|
|
4387
4700
|
/**
|
|
4388
|
-
* Creates EnvironmentProviders for
|
|
4701
|
+
* Creates EnvironmentProviders for the storage file download service and its dependencies.
|
|
4389
4702
|
*
|
|
4390
|
-
* @returns EnvironmentProviders
|
|
4703
|
+
* @returns EnvironmentProviders that register the storage file download storage accessor, storage, and service.
|
|
4391
4704
|
*/
|
|
4392
4705
|
declare function provideDbxFirebaseStorageFileService(): EnvironmentProviders;
|
|
4393
4706
|
|
|
@@ -4459,7 +4772,21 @@ interface DbxFirebaseIdRouteParamRedirectInstance extends DbxFirebaseIdRoutePara
|
|
|
4459
4772
|
setDecider(decider: string | SwitchMapToDefaultFilterFunction<ModelKey>): void;
|
|
4460
4773
|
setParamValue(value: MaybeObservableOrValueGetter<string>): void;
|
|
4461
4774
|
}
|
|
4775
|
+
/**
|
|
4776
|
+
* Creates a {@link DbxFirebaseIdRouteParamRedirectInstance} configured to read a model key from route params.
|
|
4777
|
+
*
|
|
4778
|
+
* @param dbxRouterService - The router service used to read route parameters.
|
|
4779
|
+
* @param defaultParamKey - The route parameter key to read. Defaults to 'key'.
|
|
4780
|
+
* @returns A new route param redirect instance for model keys.
|
|
4781
|
+
*/
|
|
4462
4782
|
declare function dbxFirebaseKeyRouteParamRedirect(dbxRouterService: DbxRouterService, defaultParamKey?: string): DbxFirebaseIdRouteParamRedirectInstance;
|
|
4783
|
+
/**
|
|
4784
|
+
* Creates a {@link DbxFirebaseIdRouteParamRedirectInstance} that reads a model ID from route params and optionally redirects to a default value.
|
|
4785
|
+
*
|
|
4786
|
+
* @param dbxRouterService - The router service used to read route parameters.
|
|
4787
|
+
* @param defaultParamKey - The route parameter key to read. Defaults to 'id'.
|
|
4788
|
+
* @returns A new route param redirect instance for model IDs with configurable redirect behavior.
|
|
4789
|
+
*/
|
|
4463
4790
|
declare function dbxFirebaseIdRouteParamRedirect(dbxRouterService: DbxRouterService, defaultParamKey?: string): DbxFirebaseIdRouteParamRedirectInstance;
|
|
4464
4791
|
|
|
4465
4792
|
/**
|
|
@@ -4571,5 +4898,5 @@ interface ProvideDbxFirebaseConfig<T, M extends FirebaseFunctionsMap = FirebaseF
|
|
|
4571
4898
|
*/
|
|
4572
4899
|
declare function provideDbxFirebase<T, M extends FirebaseFunctionsMap = FirebaseFunctionsMap>(config: ProvideDbxFirebaseConfig<T, M>): EnvironmentProviders;
|
|
4573
4900
|
|
|
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,
|
|
4901
|
+
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, IMPORTS_AND_EXPORTS, 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, 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 };
|
|
4575
4902
|
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 };
|