@dereekb/dbx-firebase 13.8.0 → 13.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/dereekb-dbx-firebase-oidc.mjs +38 -31
- package/fesm2022/dereekb-dbx-firebase-oidc.mjs.map +1 -1
- package/fesm2022/dereekb-dbx-firebase.mjs +188 -154
- package/fesm2022/dereekb-dbx-firebase.mjs.map +1 -1
- package/package.json +12 -12
- package/types/dereekb-dbx-firebase-oidc.d.ts +18 -17
- package/types/dereekb-dbx-firebase.d.ts +138 -21
package/package.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-firebase",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.10.0",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "21.2.4",
|
|
6
6
|
"@angular/core": "21.2.4",
|
|
7
7
|
"@angular/material": "^21.2.3",
|
|
8
|
-
"@dereekb/date": "13.
|
|
9
|
-
"@dereekb/dbx-analytics": "13.
|
|
10
|
-
"@dereekb/dbx-core": "13.
|
|
11
|
-
"@dereekb/dbx-form": "13.
|
|
12
|
-
"@dereekb/dbx-web": "13.
|
|
13
|
-
"@dereekb/firebase": "13.
|
|
14
|
-
"@dereekb/model": "13.
|
|
15
|
-
"@dereekb/rxjs": "13.
|
|
16
|
-
"@dereekb/util": "13.
|
|
17
|
-
"@dereekb/vitest": "13.
|
|
18
|
-
"@ng-forge/dynamic-forms": "
|
|
8
|
+
"@dereekb/date": "13.10.0",
|
|
9
|
+
"@dereekb/dbx-analytics": "13.10.0",
|
|
10
|
+
"@dereekb/dbx-core": "13.10.0",
|
|
11
|
+
"@dereekb/dbx-form": "13.10.0",
|
|
12
|
+
"@dereekb/dbx-web": "13.10.0",
|
|
13
|
+
"@dereekb/firebase": "13.10.0",
|
|
14
|
+
"@dereekb/model": "13.10.0",
|
|
15
|
+
"@dereekb/rxjs": "13.10.0",
|
|
16
|
+
"@dereekb/util": "13.10.0",
|
|
17
|
+
"@dereekb/vitest": "13.10.0",
|
|
18
|
+
"@ng-forge/dynamic-forms": "0.8.0-next.2",
|
|
19
19
|
"@ngrx/component-store": "^21.0.0",
|
|
20
20
|
"@ngx-formly/core": "git+https://git@github.com/dereekb/ngx-formly#996d1041c8d2afbe429985a5ad394e59327bfa1d",
|
|
21
21
|
"firebase": "^12.12.0",
|
|
@@ -8,9 +8,8 @@ import * as _dereekb_firebase from '@dereekb/firebase';
|
|
|
8
8
|
import { OAuthInteractionLoginDetails, OidcScope, OidcInteractionUid, OidcTokenEndpointAuthMethod, OidcRedirectUri, OidcScopeDetails, CreateOidcClientParams, UpdateOidcClientFieldParams, OidcEntry, OidcEntryDocument, OidcModelFunctions, CreateOidcClientResult, RotateOidcClientSecretResult, OidcModelFirestoreCollections, OAuthInteractionLoginResponse, OAuthInteractionConsentResponse } from '@dereekb/firebase';
|
|
9
9
|
import * as _dereekb_dbx_form from '@dereekb/dbx-form';
|
|
10
10
|
import { AbstractConfigAsyncForgeFormDirective } from '@dereekb/dbx-form';
|
|
11
|
-
import * as _ng_forge_dynamic_forms from '@ng-forge/dynamic-forms';
|
|
12
|
-
import { FormConfig } from '@ng-forge/dynamic-forms';
|
|
13
11
|
import * as _ng_forge_dynamic_forms_material from '@ng-forge/dynamic-forms-material';
|
|
12
|
+
import { ContainerField, FormConfig, RegisteredFieldTypes } from '@ng-forge/dynamic-forms';
|
|
14
13
|
import * as rxjs from 'rxjs';
|
|
15
14
|
import { Observable } from 'rxjs';
|
|
16
15
|
import { AbstractDbxSelectionListWrapperDirective, AbstractDbxSelectionListViewDirective, DbxSelectionValueListViewConfig, DbxValueAsListItem, AbstractDbxValueListViewItemComponent, DbxActionConfirmConfig } from '@dereekb/dbx-web';
|
|
@@ -253,7 +252,7 @@ declare function oidcEntryClientForgeFormFields(config?: OidcEntryClientFormFiel
|
|
|
253
252
|
* @param config - Optional configuration to filter the available auth method options.
|
|
254
253
|
* @returns A forge value selection field for the token endpoint auth method selector.
|
|
255
254
|
*/
|
|
256
|
-
declare function oidcClientTokenEndpointAuthMethodForgeField(config?: OidcEntryClientFormFieldsConfig):
|
|
255
|
+
declare function oidcClientTokenEndpointAuthMethodForgeField(config?: OidcEntryClientFormFieldsConfig): _dereekb_dbx_form.DbxForgeField<_dereekb_dbx_form.DbxForgeValueSelectionFieldDef<OidcTokenEndpointAuthMethod>>;
|
|
257
256
|
/**
|
|
258
257
|
* Creates forge fields for updating an existing OAuth client.
|
|
259
258
|
*
|
|
@@ -261,38 +260,40 @@ declare function oidcClientTokenEndpointAuthMethodForgeField(config?: OidcEntryC
|
|
|
261
260
|
*
|
|
262
261
|
* @returns Array of forge field definitions for the client update form.
|
|
263
262
|
*/
|
|
264
|
-
declare function oidcEntryClientUpdateForgeFormFields():
|
|
263
|
+
declare function oidcEntryClientUpdateForgeFormFields(): RegisteredFieldTypes[];
|
|
265
264
|
/**
|
|
266
265
|
* Creates a forge text field for the OAuth client display name.
|
|
267
266
|
*
|
|
268
267
|
* @returns A forge text field for the client name.
|
|
269
268
|
*/
|
|
270
|
-
declare function oidcClientNameForgeField(): _ng_forge_dynamic_forms_material.MatInputField
|
|
269
|
+
declare function oidcClientNameForgeField(): _dereekb_dbx_form.DbxForgeField<_ng_forge_dynamic_forms_material.MatInputField>;
|
|
271
270
|
/**
|
|
272
271
|
* Creates a forge searchable chip field for entering redirect URIs.
|
|
273
272
|
*
|
|
274
273
|
* @returns A forge searchable chip field for redirect URIs.
|
|
275
274
|
*/
|
|
276
|
-
declare function oidcClientRedirectUrisForgeField(): _dereekb_dbx_form.
|
|
275
|
+
declare function oidcClientRedirectUrisForgeField(): _dereekb_dbx_form.DbxForgeField<_dereekb_dbx_form.DbxForgeSearchableChipFieldDef<string, unknown, _dereekb_util.PrimativeKey>>;
|
|
277
276
|
/**
|
|
278
|
-
* Creates a forge
|
|
279
|
-
* when the token endpoint auth method is not `private_key_jwt`.
|
|
277
|
+
* Creates a forge container wrapping the JWKS URI field, conditionally hidden
|
|
278
|
+
* when the token endpoint auth method is not `private_key_jwt`. A container
|
|
279
|
+
* (not a group) is used so the `jwks_uri` field stays at the root level of
|
|
280
|
+
* the form value rather than being nested under an extra object.
|
|
280
281
|
*
|
|
281
|
-
* @returns A forge
|
|
282
|
+
* @returns A forge container field with conditional visibility logic.
|
|
282
283
|
*/
|
|
283
|
-
declare function oidcClientJwksUriForgeField():
|
|
284
|
+
declare function oidcClientJwksUriForgeField(): ContainerField;
|
|
284
285
|
/**
|
|
285
286
|
* Creates a forge text field for the optional client logo URL.
|
|
286
287
|
*
|
|
287
288
|
* @returns A forge text field for the logo URI.
|
|
288
289
|
*/
|
|
289
|
-
declare function oidcClientLogoUriForgeField(): _ng_forge_dynamic_forms_material.MatInputField
|
|
290
|
+
declare function oidcClientLogoUriForgeField(): _dereekb_dbx_form.DbxForgeField<_ng_forge_dynamic_forms_material.MatInputField>;
|
|
290
291
|
/**
|
|
291
292
|
* Creates a forge text field for the optional client homepage URL.
|
|
292
293
|
*
|
|
293
294
|
* @returns A forge text field for the homepage URL.
|
|
294
295
|
*/
|
|
295
|
-
declare function oidcClientHomepageUriForgeField(): _ng_forge_dynamic_forms_material.MatInputField
|
|
296
|
+
declare function oidcClientHomepageUriForgeField(): _dereekb_dbx_form.DbxForgeField<_ng_forge_dynamic_forms_material.MatInputField>;
|
|
296
297
|
interface OidcEntryClientTestFormFieldsConfig {
|
|
297
298
|
readonly redirectUris: OidcRedirectUri[];
|
|
298
299
|
readonly availableScopes: OidcScopeDetails[];
|
|
@@ -309,21 +310,21 @@ declare function oidcEntryClientTestForgeFormFields(config: OidcEntryClientTestF
|
|
|
309
310
|
*
|
|
310
311
|
* @returns A read-only forge text field for the client ID.
|
|
311
312
|
*/
|
|
312
|
-
declare function oidcClientTestClientIdForgeField(): _ng_forge_dynamic_forms_material.MatInputField
|
|
313
|
+
declare function oidcClientTestClientIdForgeField(): _dereekb_dbx_form.DbxForgeField<_ng_forge_dynamic_forms_material.MatInputField>;
|
|
313
314
|
/**
|
|
314
315
|
* Creates a forge selection field for choosing one of the client's registered redirect URIs for testing.
|
|
315
316
|
*
|
|
316
317
|
* @param redirectUris - The registered redirect URIs to display as options.
|
|
317
318
|
* @returns A forge selection field for the redirect URI.
|
|
318
319
|
*/
|
|
319
|
-
declare function oidcClientTestRedirectUriForgeField(redirectUris: OidcRedirectUri[]):
|
|
320
|
+
declare function oidcClientTestRedirectUriForgeField(redirectUris: OidcRedirectUri[]): _dereekb_dbx_form.DbxForgeField<_dereekb_dbx_form.DbxForgeValueSelectionFieldDef<string>>;
|
|
320
321
|
/**
|
|
321
322
|
* Creates a forge pickable chip field for selecting scopes to request during the test flow.
|
|
322
323
|
*
|
|
323
324
|
* @param availableScopes - The available scopes to display as selectable options.
|
|
324
325
|
* @returns A forge pickable chip field for scope selection.
|
|
325
326
|
*/
|
|
326
|
-
declare function oidcClientTestScopesForgeField(availableScopes: OidcScopeDetails[]): _dereekb_dbx_form.
|
|
327
|
+
declare function oidcClientTestScopesForgeField(availableScopes: OidcScopeDetails[]): _dereekb_dbx_form.DbxForgeField<_dereekb_dbx_form.DbxForgePickableChipFieldDef<unknown, OidcScopeDetails, _dereekb_util.PrimativeKey>>;
|
|
327
328
|
|
|
328
329
|
type DbxFirebaseOidcModelClientFormValue = CreateOidcClientParams;
|
|
329
330
|
type DbxFirebaseOidcModelClientUpdateFormValue = UpdateOidcClientFieldParams;
|
|
@@ -343,7 +344,7 @@ type DbxFirebaseOidcEntryClientFormComponentConfig = Omit<OidcEntryClientFormFie
|
|
|
343
344
|
*/
|
|
344
345
|
declare class DbxFirebaseOidcEntryClientForgeFormComponent extends AbstractConfigAsyncForgeFormDirective<DbxFirebaseOidcModelClientFormValue, DbxFirebaseOidcEntryClientFormComponentConfig> {
|
|
345
346
|
private readonly _oidcConfigService;
|
|
346
|
-
readonly
|
|
347
|
+
readonly formConfig$: Observable<Maybe<FormConfig>>;
|
|
347
348
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientForgeFormComponent, never>;
|
|
348
349
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientForgeFormComponent, "dbx-firebase-oidc-client-forge-form", never, {}, {}, never, never, true, never>;
|
|
349
350
|
}
|
|
@@ -360,7 +361,7 @@ type DbxFirebaseOidcEntryClientTestFormComponentConfig = OidcEntryClientTestForm
|
|
|
360
361
|
* Displays read-only client_id, a redirect URI selector, and scope picker.
|
|
361
362
|
*/
|
|
362
363
|
declare class DbxFirebaseOidcEntryClientTestForgeFormComponent extends AbstractConfigAsyncForgeFormDirective<DbxFirebaseOidcModelClientTestFormValue, DbxFirebaseOidcEntryClientTestFormComponentConfig> {
|
|
363
|
-
readonly
|
|
364
|
+
readonly formConfig$: Observable<Maybe<FormConfig>>;
|
|
364
365
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientTestForgeFormComponent, never>;
|
|
365
366
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientTestForgeFormComponent, "dbx-firebase-oidc-client-test-forge-form", never, {}, {}, never, never, true, never>;
|
|
366
367
|
}
|
|
@@ -23,10 +23,10 @@ import { FormConfig } from '@ng-forge/dynamic-forms';
|
|
|
23
23
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
24
24
|
import { NgPopoverRef } from 'ng-overlay-container';
|
|
25
25
|
import { AppCheckOptions, AppCheck } from 'firebase/app-check';
|
|
26
|
-
import { PersistentCacheSettings, Firestore } from 'firebase/firestore';
|
|
27
26
|
import { FirebaseOptions, FirebaseApp } from 'firebase/app';
|
|
28
|
-
import {
|
|
27
|
+
import { PersistentCacheSettings, Firestore } from 'firebase/firestore';
|
|
29
28
|
import { FirebaseStorage } from 'firebase/storage';
|
|
29
|
+
import { Functions } from 'firebase/functions';
|
|
30
30
|
import { GrantedRole, GrantedRoleMapReader, GrantedRoleMap, GrantedRoleTruthMapObject, GrantedRoleTruthMap } from '@dereekb/model';
|
|
31
31
|
import { ComponentStore } from '@ngrx/component-store';
|
|
32
32
|
import * as dist_packages_dbx_core_types_dereekb_dbx_core from 'dist/packages/dbx-core/types/dereekb-dbx-core';
|
|
@@ -792,7 +792,7 @@ interface DbxFirebaseEmailRecoveryFormValue {
|
|
|
792
792
|
* Forge-based form component for password recovery, containing a single email field.
|
|
793
793
|
*/
|
|
794
794
|
declare class DbxFirebaseEmailRecoveryForgeFormComponent extends AbstractSyncForgeFormDirective<DbxFirebaseEmailRecoveryFormValue> {
|
|
795
|
-
readonly
|
|
795
|
+
readonly formConfig: FormConfig;
|
|
796
796
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseEmailRecoveryForgeFormComponent, never>;
|
|
797
797
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseEmailRecoveryForgeFormComponent, "dbx-firebase-email-recovery-forge-form", never, {}, {}, never, never, true, never>;
|
|
798
798
|
}
|
|
@@ -814,7 +814,7 @@ interface DbxFirebaseEmailFormConfig {
|
|
|
814
814
|
* In register mode, includes a password verification field.
|
|
815
815
|
*/
|
|
816
816
|
declare class DbxFirebaseEmailForgeFormComponent extends AbstractConfigAsyncForgeFormDirective<DbxFirebaseEmailFormValue, DbxFirebaseEmailFormConfig> {
|
|
817
|
-
readonly
|
|
817
|
+
readonly formConfig$: Observable<Maybe<FormConfig>>;
|
|
818
818
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseEmailForgeFormComponent, never>;
|
|
819
819
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseEmailForgeFormComponent, "dbx-firebase-email-forge-form", never, {}, {}, never, never, true, never>;
|
|
820
820
|
}
|
|
@@ -947,7 +947,7 @@ interface DbxFirebasePasswordResetFormValue {
|
|
|
947
947
|
* Forge-based form component for completing a password reset, containing new password and verify password fields.
|
|
948
948
|
*/
|
|
949
949
|
declare class DbxFirebasePasswordResetFormComponent extends AbstractSyncForgeFormDirective<DbxFirebasePasswordResetFormValue> {
|
|
950
|
-
readonly
|
|
950
|
+
readonly formConfig: FormConfig;
|
|
951
951
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebasePasswordResetFormComponent, never>;
|
|
952
952
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebasePasswordResetFormComponent, "dbx-firebase-password-reset-form", never, {}, {}, never, never, true, never>;
|
|
953
953
|
}
|
|
@@ -1216,7 +1216,7 @@ interface DbxFirebaseDevelopmentPopupContentFormValue {
|
|
|
1216
1216
|
* Forge form component for selecting development widget entries from a popup.
|
|
1217
1217
|
*/
|
|
1218
1218
|
declare class DbxFirebaseDevelopmentPopupContentForgeFormComponent extends AbstractConfigAsyncForgeFormDirective<DbxFirebaseDevelopmentPopupContentFormValue, DbxFirebaseDevelopmentPopupContentFormInput> {
|
|
1219
|
-
readonly
|
|
1219
|
+
readonly formConfig$: Observable<Maybe<FormConfig>>;
|
|
1220
1220
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseDevelopmentPopupContentForgeFormComponent, never>;
|
|
1221
1221
|
static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseDevelopmentPopupContentForgeFormComponent, "dbx-firebase-development-popup-content-forge-form", never, {}, {}, never, never, true, never>;
|
|
1222
1222
|
}
|
|
@@ -1597,10 +1597,140 @@ interface ProvideDbxFirebaseAppConfig {
|
|
|
1597
1597
|
/**
|
|
1598
1598
|
* Provides EnvironmentProviders for all Firebase services.
|
|
1599
1599
|
*
|
|
1600
|
+
* Initializes the FirebaseApp and each requested service synchronously at call time, so:
|
|
1601
|
+
* - App Check is registered before any Firebase request can fire (required for prod enforcement).
|
|
1602
|
+
* - Firestore is initialized with custom settings (persistentLocalCache, emulator) before
|
|
1603
|
+
* anything can call `getFirestore(app)` for this app.
|
|
1604
|
+
*
|
|
1605
|
+
* Also provides the parsed emulator config and {@link DbxFirebaseEmulatorService}, which are
|
|
1606
|
+
* derived from `dbxFirebaseAppOptions.emulators`.
|
|
1607
|
+
*
|
|
1600
1608
|
* @param config
|
|
1601
1609
|
* @returns EnvironmentProviders
|
|
1610
|
+
*
|
|
1611
|
+
* @example
|
|
1612
|
+
* ```ts
|
|
1613
|
+
* provideDbxFirebaseApp({
|
|
1614
|
+
* dbxFirebaseAppOptions: environment.firebase
|
|
1615
|
+
* });
|
|
1616
|
+
* ```
|
|
1602
1617
|
*/
|
|
1603
1618
|
declare function provideDbxFirebaseApp(config: ProvideDbxFirebaseAppConfig): EnvironmentProviders;
|
|
1619
|
+
/**
|
|
1620
|
+
* Parses a {@link DbxFirebaseEmulatorsConfig} into a fully-resolved {@link DbxFirebaseParsedEmulatorsConfig}.
|
|
1621
|
+
*
|
|
1622
|
+
* @param config
|
|
1623
|
+
* @returns DbxFirebaseParsedEmulatorsConfig
|
|
1624
|
+
*
|
|
1625
|
+
* @example
|
|
1626
|
+
* ```ts
|
|
1627
|
+
* const emulators = parseDbxFirebaseEmulatorsConfig({
|
|
1628
|
+
* useEmulators: true,
|
|
1629
|
+
* firestore: { port: 8080 }
|
|
1630
|
+
* });
|
|
1631
|
+
* ```
|
|
1632
|
+
*/
|
|
1633
|
+
declare function parseDbxFirebaseEmulatorsConfig(config: DbxFirebaseEmulatorsConfig): DbxFirebaseParsedEmulatorsConfig;
|
|
1634
|
+
/**
|
|
1635
|
+
* Params for {@link createDbxFirebaseAppCheck}.
|
|
1636
|
+
*/
|
|
1637
|
+
interface CreateDbxFirebaseAppCheckParams {
|
|
1638
|
+
readonly app: FirebaseApp;
|
|
1639
|
+
readonly options: DbxFirebaseAppOptions;
|
|
1640
|
+
}
|
|
1641
|
+
/**
|
|
1642
|
+
* Initializes App Check for the given FirebaseApp using the provided options.
|
|
1643
|
+
*
|
|
1644
|
+
* Returns `undefined` when App Check is knowingly disabled (config flag or emulators in use)
|
|
1645
|
+
* or when no App Check options are configured.
|
|
1646
|
+
*
|
|
1647
|
+
* @param params
|
|
1648
|
+
* @returns AppCheck
|
|
1649
|
+
*
|
|
1650
|
+
* @example
|
|
1651
|
+
* ```ts
|
|
1652
|
+
* const appCheck = createDbxFirebaseAppCheck({ app, options });
|
|
1653
|
+
* ```
|
|
1654
|
+
*/
|
|
1655
|
+
declare function createDbxFirebaseAppCheck(params: CreateDbxFirebaseAppCheckParams): AppCheck;
|
|
1656
|
+
/**
|
|
1657
|
+
* Params for {@link createDbxFirebaseFirestore}.
|
|
1658
|
+
*/
|
|
1659
|
+
interface CreateDbxFirebaseFirestoreParams {
|
|
1660
|
+
readonly app: FirebaseApp;
|
|
1661
|
+
readonly options: DbxFirebaseAppOptions;
|
|
1662
|
+
readonly emulators: DbxFirebaseParsedEmulatorsConfig;
|
|
1663
|
+
}
|
|
1664
|
+
/**
|
|
1665
|
+
* Initializes Firestore for the given FirebaseApp with persistence and emulator settings derived from options.
|
|
1666
|
+
*
|
|
1667
|
+
* @param params
|
|
1668
|
+
* @returns Firestore
|
|
1669
|
+
*
|
|
1670
|
+
* @example
|
|
1671
|
+
* ```ts
|
|
1672
|
+
* const firestore = createDbxFirebaseFirestore({ app, options, emulators });
|
|
1673
|
+
* ```
|
|
1674
|
+
*/
|
|
1675
|
+
declare function createDbxFirebaseFirestore(params: CreateDbxFirebaseFirestoreParams): Firestore;
|
|
1676
|
+
/**
|
|
1677
|
+
* Params for {@link createDbxFirebaseAuth}.
|
|
1678
|
+
*/
|
|
1679
|
+
interface CreateDbxFirebaseAuthParams {
|
|
1680
|
+
readonly app: FirebaseApp;
|
|
1681
|
+
readonly emulators: DbxFirebaseParsedEmulatorsConfig;
|
|
1682
|
+
}
|
|
1683
|
+
/**
|
|
1684
|
+
* Returns the Firebase Auth instance for the given app, wired up to the auth emulator if configured.
|
|
1685
|
+
*
|
|
1686
|
+
* @param params
|
|
1687
|
+
* @returns Auth
|
|
1688
|
+
*
|
|
1689
|
+
* @example
|
|
1690
|
+
* ```ts
|
|
1691
|
+
* const auth = createDbxFirebaseAuth({ app, emulators });
|
|
1692
|
+
* ```
|
|
1693
|
+
*/
|
|
1694
|
+
declare function createDbxFirebaseAuth(params: CreateDbxFirebaseAuthParams): Auth;
|
|
1695
|
+
/**
|
|
1696
|
+
* Params for {@link createDbxFirebaseStorage}.
|
|
1697
|
+
*/
|
|
1698
|
+
interface CreateDbxFirebaseStorageParams {
|
|
1699
|
+
readonly app: FirebaseApp;
|
|
1700
|
+
readonly emulators: DbxFirebaseParsedEmulatorsConfig;
|
|
1701
|
+
}
|
|
1702
|
+
/**
|
|
1703
|
+
* Returns the Firebase Storage instance for the given app, wired up to the storage emulator if configured.
|
|
1704
|
+
*
|
|
1705
|
+
* @param params
|
|
1706
|
+
* @returns FirebaseStorage
|
|
1707
|
+
*
|
|
1708
|
+
* @example
|
|
1709
|
+
* ```ts
|
|
1710
|
+
* const storage = createDbxFirebaseStorage({ app, emulators });
|
|
1711
|
+
* ```
|
|
1712
|
+
*/
|
|
1713
|
+
declare function createDbxFirebaseStorage(params: CreateDbxFirebaseStorageParams): FirebaseStorage;
|
|
1714
|
+
/**
|
|
1715
|
+
* Params for {@link createDbxFirebaseFunctions}.
|
|
1716
|
+
*/
|
|
1717
|
+
interface CreateDbxFirebaseFunctionsParams {
|
|
1718
|
+
readonly app: FirebaseApp;
|
|
1719
|
+
readonly options: DbxFirebaseAppOptions;
|
|
1720
|
+
readonly emulators: DbxFirebaseParsedEmulatorsConfig;
|
|
1721
|
+
}
|
|
1722
|
+
/**
|
|
1723
|
+
* Returns the Firebase Functions instance for the given app, wired up to the functions emulator if configured.
|
|
1724
|
+
*
|
|
1725
|
+
* @param params
|
|
1726
|
+
* @returns Functions
|
|
1727
|
+
*
|
|
1728
|
+
* @example
|
|
1729
|
+
* ```ts
|
|
1730
|
+
* const functions = createDbxFirebaseFunctions({ app, options, emulators });
|
|
1731
|
+
* ```
|
|
1732
|
+
*/
|
|
1733
|
+
declare function createDbxFirebaseFunctions(params: CreateDbxFirebaseFunctionsParams): Functions;
|
|
1604
1734
|
|
|
1605
1735
|
/**
|
|
1606
1736
|
* Injection token for the Firebase App instance.
|
|
@@ -1629,18 +1759,6 @@ declare const FIREBASE_FUNCTIONS_TOKEN: InjectionToken<Functions>;
|
|
|
1629
1759
|
*/
|
|
1630
1760
|
declare const FIREBASE_APP_CHECK_TOKEN: InjectionToken<AppCheck>;
|
|
1631
1761
|
|
|
1632
|
-
/**
|
|
1633
|
-
* Config for provideDbxFirebaseEmulator().
|
|
1634
|
-
*/
|
|
1635
|
-
type ProvideDbxFirebaseEmulatorsConfig = DbxFirebaseEmulatorsConfig;
|
|
1636
|
-
/**
|
|
1637
|
-
* Creates EnvironmentProviders for the DbxFirebaseEmulatorService.
|
|
1638
|
-
*
|
|
1639
|
-
* @param config
|
|
1640
|
-
* @returns
|
|
1641
|
-
*/
|
|
1642
|
-
declare function provideDbxFirebaseEmulator(config: ProvideDbxFirebaseEmulatorsConfig): EnvironmentProviders;
|
|
1643
|
-
|
|
1644
1762
|
/**
|
|
1645
1763
|
* Convenience type used in .environment.ts files for building configuration.
|
|
1646
1764
|
*/
|
|
@@ -5277,7 +5395,6 @@ interface ProvideDbxFirebaseModelTypesServiceConfig {
|
|
|
5277
5395
|
|
|
5278
5396
|
interface ProvideDbxFirebaseConfig<T, M extends FirebaseFunctionsMap = FirebaseFunctionsMap> {
|
|
5279
5397
|
readonly app: ProvideDbxFirebaseAppConfig;
|
|
5280
|
-
readonly emulator: ProvideDbxFirebaseEmulatorsConfig;
|
|
5281
5398
|
readonly storage: ProvideDbxFirebaseStorageConfig;
|
|
5282
5399
|
readonly auth: ProvideDbxFirebaseAuthConfig;
|
|
5283
5400
|
readonly functions: ProvideDbxFirebaseFunctionsConfig<T, M>;
|
|
@@ -5326,5 +5443,5 @@ interface ProvideDbxFirebaseConfig<T, M extends FirebaseFunctionsMap = FirebaseF
|
|
|
5326
5443
|
*/
|
|
5327
5444
|
declare function provideDbxFirebase<T, M extends FirebaseFunctionsMap = FirebaseFunctionsMap>(config: ProvideDbxFirebaseConfig<T, M>): EnvironmentProviders;
|
|
5328
5445
|
|
|
5329
|
-
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, DbxFirebaseDevelopmentPopupContentForgeFormComponent, DbxFirebaseDevelopmentSchedulerListComponent, DbxFirebaseDevelopmentSchedulerListViewComponent, DbxFirebaseDevelopmentSchedulerListViewItemComponent, DbxFirebaseDevelopmentSchedulerService, DbxFirebaseDevelopmentSchedulerWidgetComponent, DbxFirebaseDevelopmentService, DbxFirebaseDevelopmentWidgetService, DbxFirebaseDocumentLoaderInstance, DbxFirebaseDocumentStoreContextModelEntitiesSourceDirective, DbxFirebaseDocumentStoreContextStore, DbxFirebaseDocumentStoreContextStoreDirective, DbxFirebaseDocumentStoreDirective, DbxFirebaseDocumentStoreIdFromTwoWayModelKeyDirective, DbxFirebaseDocumentStoreTwoWayKeyProvider, DbxFirebaseDocumentStoreTwoWayModelKeySourceDirective, DbxFirebaseEmailForgeFormComponent, DbxFirebaseEmailRecoveryForgeFormComponent, DbxFirebaseEmulatorService, DbxFirebaseLoginAnonymousComponent, DbxFirebaseLoginAppleComponent, DbxFirebaseLoginButtonComponent, DbxFirebaseLoginButtonContainerComponent, DbxFirebaseLoginComponent, DbxFirebaseLoginContext, DbxFirebaseLoginContextBackButtonComponent, DbxFirebaseLoginContextDirective, DbxFirebaseLoginEmailComponent, DbxFirebaseLoginEmailContentComponent, DbxFirebaseLoginFacebookComponent, DbxFirebaseLoginGitHubComponent, DbxFirebaseLoginGoogleComponent, DbxFirebaseLoginListComponent, DbxFirebaseLoginMicrosoftComponent, DbxFirebaseLoginTermsComponent, DbxFirebaseLoginTermsSimpleComponent, DbxFirebaseLoginTwitterComponent, DbxFirebaseManageAuthProvidersComponent, 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, DbxFirebasePasswordResetComponent, DbxFirebasePasswordResetFormComponent, DbxFirebaseRegisterComponent, DbxFirebaseRegisterEmailComponent, DbxFirebaseStorageFileCollectionStoreDirective, DbxFirebaseStorageFileDocumentStoreDirective, DbxFirebaseStorageFileDownloadButtonComponent, DbxFirebaseStorageFileDownloadService, DbxFirebaseStorageFileDownloadStorage, DbxFirebaseStorageFileGroupDocumentStoreDirective, DbxFirebaseStorageFileUploadActionHandlerDirective, DbxFirebaseStorageFileUploadInitializeDocumentDirective, DbxFirebaseStorageFileUploadModule, DbxFirebaseStorageFileUploadStore, DbxFirebaseStorageFileUploadStoreDirective, DbxFirebaseStorageFileUploadSyncDirective, DbxFirebaseStorageService, DbxFirebaseSystemStateCollectionStoreDirective, DbxFirebaseSystemStateDocumentStoreDirective, DbxFirestoreContextService, DbxLimitedFirebaseDocumentLoaderInstance, FIREBASE_APP_CHECK_TOKEN, FIREBASE_APP_TOKEN, FIREBASE_AUTH_TOKEN, FIREBASE_FIRESTORE_TOKEN, FIREBASE_FUNCTIONS_TOKEN, FIREBASE_NOTIFICATION_ITEM_WIDGET_TYPE_PREFIX, FIREBASE_PROVIDER_ID_TO_LOGIN_METHOD_TYPE_MAP, FIREBASE_STORAGE_TOKEN, FlatFirestoreModelKeyPipe, IMPORTS_AND_EXPORTS, LOGIN_METHOD_TYPE_TO_FIREBASE_PROVIDER_ID_MAP, 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, firebaseAuthState, firebaseAuthTokenFromUser, firebaseCollectionStoreCreateFunction, firebaseCollectionStoreCrudFunction, firebaseContextServiceEntityMap, firebaseDocumentStoreCreateFunction, firebaseDocumentStoreCrudFunction, firebaseDocumentStoreDeleteFunction, firebaseDocumentStoreReadFunction, firebaseDocumentStoreUpdateFunction, firebaseIdToken, firebaseProviderIdToLoginMethodType, isDbxFirebaseModelEntityWithStore, linkDocumentStoreToParentContextStores, loginMethodTypeToFirebaseProviderId, 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 };
|
|
5330
|
-
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, DbxFirebaseCompletePasswordResetInput, 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, DbxFirebaseLoginButtonInjectionData, 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, DbxFirebasePasswordResetFormValue, 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,
|
|
5446
|
+
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, DbxFirebaseDevelopmentPopupContentForgeFormComponent, DbxFirebaseDevelopmentSchedulerListComponent, DbxFirebaseDevelopmentSchedulerListViewComponent, DbxFirebaseDevelopmentSchedulerListViewItemComponent, DbxFirebaseDevelopmentSchedulerService, DbxFirebaseDevelopmentSchedulerWidgetComponent, DbxFirebaseDevelopmentService, DbxFirebaseDevelopmentWidgetService, DbxFirebaseDocumentLoaderInstance, DbxFirebaseDocumentStoreContextModelEntitiesSourceDirective, DbxFirebaseDocumentStoreContextStore, DbxFirebaseDocumentStoreContextStoreDirective, DbxFirebaseDocumentStoreDirective, DbxFirebaseDocumentStoreIdFromTwoWayModelKeyDirective, DbxFirebaseDocumentStoreTwoWayKeyProvider, DbxFirebaseDocumentStoreTwoWayModelKeySourceDirective, DbxFirebaseEmailForgeFormComponent, DbxFirebaseEmailRecoveryForgeFormComponent, DbxFirebaseEmulatorService, DbxFirebaseLoginAnonymousComponent, DbxFirebaseLoginAppleComponent, DbxFirebaseLoginButtonComponent, DbxFirebaseLoginButtonContainerComponent, DbxFirebaseLoginComponent, DbxFirebaseLoginContext, DbxFirebaseLoginContextBackButtonComponent, DbxFirebaseLoginContextDirective, DbxFirebaseLoginEmailComponent, DbxFirebaseLoginEmailContentComponent, DbxFirebaseLoginFacebookComponent, DbxFirebaseLoginGitHubComponent, DbxFirebaseLoginGoogleComponent, DbxFirebaseLoginListComponent, DbxFirebaseLoginMicrosoftComponent, DbxFirebaseLoginTermsComponent, DbxFirebaseLoginTermsSimpleComponent, DbxFirebaseLoginTwitterComponent, DbxFirebaseManageAuthProvidersComponent, 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, DbxFirebasePasswordResetComponent, DbxFirebasePasswordResetFormComponent, DbxFirebaseRegisterComponent, DbxFirebaseRegisterEmailComponent, DbxFirebaseStorageFileCollectionStoreDirective, DbxFirebaseStorageFileDocumentStoreDirective, DbxFirebaseStorageFileDownloadButtonComponent, DbxFirebaseStorageFileDownloadService, DbxFirebaseStorageFileDownloadStorage, DbxFirebaseStorageFileGroupDocumentStoreDirective, DbxFirebaseStorageFileUploadActionHandlerDirective, DbxFirebaseStorageFileUploadInitializeDocumentDirective, DbxFirebaseStorageFileUploadModule, DbxFirebaseStorageFileUploadStore, DbxFirebaseStorageFileUploadStoreDirective, DbxFirebaseStorageFileUploadSyncDirective, DbxFirebaseStorageService, DbxFirebaseSystemStateCollectionStoreDirective, DbxFirebaseSystemStateDocumentStoreDirective, DbxFirestoreContextService, DbxLimitedFirebaseDocumentLoaderInstance, FIREBASE_APP_CHECK_TOKEN, FIREBASE_APP_TOKEN, FIREBASE_AUTH_TOKEN, FIREBASE_FIRESTORE_TOKEN, FIREBASE_FUNCTIONS_TOKEN, FIREBASE_NOTIFICATION_ITEM_WIDGET_TYPE_PREFIX, FIREBASE_PROVIDER_ID_TO_LOGIN_METHOD_TYPE_MAP, FIREBASE_STORAGE_TOKEN, FlatFirestoreModelKeyPipe, IMPORTS_AND_EXPORTS, LOGIN_METHOD_TYPE_TO_FIREBASE_PROVIDER_ID_MAP, NotificationBoxCollectionStore, NotificationBoxDocumentStore, NotificationCollectionStore, NotificationDocumentStore, NotificationSummaryCollectionStore, NotificationSummaryDocumentStore, NotificationUserCollectionStore, NotificationUserDocumentStore, OAUTH_FIREBASE_LOGIN_METHOD_CATEGORY, StorageFileCollectionStore, StorageFileDocumentStore, StorageFileGroupDocumentStore, StorageFileUploadFilesError, SystemStateCollectionStore, SystemStateDocumentStore, TwoWayFlatFirestoreModelKeyPipe, authRolesObsWithClaimsService, authUserInfoFromAuthUser, authUserStateFromFirebaseAuthServiceFunction, createDbxFirebaseAppCheck, createDbxFirebaseAuth, createDbxFirebaseFirestore, createDbxFirebaseFunctions, createDbxFirebaseStorage, 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, firebaseAuthState, firebaseAuthTokenFromUser, firebaseCollectionStoreCreateFunction, firebaseCollectionStoreCrudFunction, firebaseContextServiceEntityMap, firebaseDocumentStoreCreateFunction, firebaseDocumentStoreCrudFunction, firebaseDocumentStoreDeleteFunction, firebaseDocumentStoreReadFunction, firebaseDocumentStoreUpdateFunction, firebaseIdToken, firebaseProviderIdToLoginMethodType, isDbxFirebaseModelEntityWithStore, linkDocumentStoreToParentContextStores, loginMethodTypeToFirebaseProviderId, modelDoesNotExistError, parseDbxFirebaseEmulatorsConfig, provideDbxFirebase, provideDbxFirebaseAnalyticsUserEventsListenerService, provideDbxFirebaseApp, provideDbxFirebaseAuth, provideDbxFirebaseCollectionStoreDirective, provideDbxFirebaseCollectionWithParentStoreDirective, provideDbxFirebaseDevelopment, provideDbxFirebaseDocumentStoreContextStore, provideDbxFirebaseDocumentStoreDirective, provideDbxFirebaseDocumentStoreTwoWayKeyProvider, provideDbxFirebaseFunctions, provideDbxFirebaseLogin, provideDbxFirebaseModelContextService, provideDbxFirebaseModelEntitiesWidgetService, provideDbxFirebaseNotifications, provideDbxFirebaseStorageFileService, provideDbxFirestoreCollection, provideNotificationFirestoreCollections, provideStorageFileFirestoreCollections, provideSystemStateFirestoreCollections, providedDbxFirebaseStorage, readDbxAnalyticsUserPropertiesFromAuthUserInfo, readValueFromIdToken, setParentStoreEffect, stateFromTokenForLoggedInUserFunction, storageFileUploadFiles, storageFileUploadHandler };
|
|
5447
|
+
export type { AuthRolesObsWithClaimsServiceConfig, AuthUserInfo, AuthUserStateObsFunction, CreateDbxFirebaseAppCheckParams, CreateDbxFirebaseAuthParams, CreateDbxFirebaseFirestoreParams, CreateDbxFirebaseFunctionsParams, CreateDbxFirebaseStorageParams, 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, DbxFirebaseCompletePasswordResetInput, 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, DbxFirebaseLoginButtonInjectionData, 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, DbxFirebasePasswordResetFormValue, 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, ProvideDbxFirebaseFirestoreCollectionConfig, ProvideDbxFirebaseFunctionsConfig, ProvideDbxFirebaseLoginConfig, ProvideDbxFirebaseModelContextServiceConfig, ProvideDbxFirebaseModelEntitiesWidgetServiceConfig, ProvideDbxFirebaseNotificationsConfig, ProvideDbxFirebaseStorageConfig, ScheduledFunctionDevelopmentFirebaseFunctionListEntryWithSelection, StateFromTokenFunction, StorageFileUploadConfig, StorageFileUploadConfigFactory, StorageFileUploadConfigOptions, StorageFileUploadFilesEvent, StorageFileUploadFilesFinalFileResult, StorageFileUploadFilesFinalResult, StorageFileUploadFilesInput, StorageFileUploadFilesInstance, StorageFileUploadHandler, StorageFileUploadHandlerConfig, StorageFileUploadHandlerFunction, StorageFileUploadHandlerInstance };
|