@dereekb/dbx-firebase 13.11.2 → 13.11.4

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/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "name": "@dereekb/dbx-firebase",
3
- "version": "13.11.2",
3
+ "version": "13.11.4",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "21.2.11",
6
6
  "@angular/core": "21.2.11",
7
7
  "@angular/material": "^21.2.9",
8
- "@dereekb/date": "13.11.2",
9
- "@dereekb/dbx-analytics": "13.11.2",
10
- "@dereekb/dbx-core": "13.11.2",
11
- "@dereekb/dbx-form": "13.11.2",
12
- "@dereekb/dbx-web": "13.11.2",
13
- "@dereekb/firebase": "13.11.2",
14
- "@dereekb/model": "13.11.2",
15
- "@dereekb/rxjs": "13.11.2",
16
- "@dereekb/util": "13.11.2",
17
- "@dereekb/vitest": "13.11.2",
8
+ "@dereekb/date": "13.11.4",
9
+ "@dereekb/dbx-analytics": "13.11.4",
10
+ "@dereekb/dbx-core": "13.11.4",
11
+ "@dereekb/dbx-form": "13.11.4",
12
+ "@dereekb/dbx-web": "13.11.4",
13
+ "@dereekb/firebase": "13.11.4",
14
+ "@dereekb/model": "13.11.4",
15
+ "@dereekb/rxjs": "13.11.4",
16
+ "@dereekb/util": "13.11.4",
17
+ "@dereekb/vitest": "13.11.4",
18
18
  "@ng-forge/dynamic-forms": "0.9.0-next.6",
19
19
  "@ngrx/component-store": "^21.1.0",
20
20
  "@ngx-formly/core": "git+https://git@github.com/dereekb/ngx-formly#996d1041c8d2afbe429985a5ad394e59327bfa1d",
@@ -1,26 +1,32 @@
1
- import * as _angular_core from '@angular/core';
2
- import { OnDestroy, Signal, Type, EnvironmentProviders } from '@angular/core';
1
+ import * as i0 from '@angular/core';
2
+ import { OnDestroy, Signal, Type, OnInit, EnvironmentProviders } from '@angular/core';
3
3
  import * as _dereekb_util from '@dereekb/util';
4
4
  import { Maybe, ErrorInput } from '@dereekb/util';
5
5
  import * as _dereekb_dbx_core from '@dereekb/dbx-core';
6
6
  import { DbxInjectionComponentConfig, SegueRefOrSegueRefRouterLink } from '@dereekb/dbx-core';
7
7
  import * as _dereekb_firebase from '@dereekb/firebase';
8
- import { OAuthInteractionLoginDetails, OidcScope, OidcInteractionUid, OidcTokenEndpointAuthMethod, OidcRedirectUri, OidcScopeDetails, CreateOidcClientParams, UpdateOidcClientFieldParams, OidcEntry, OidcEntryDocument, OidcModelFunctions, CreateOidcClientResult, RotateOidcClientSecretResult, OidcModelFirestoreCollections, OAuthInteractionLoginResponse, OAuthInteractionConsentResponse } from '@dereekb/firebase';
8
+ import { OAuthInteractionLoginDetails, OidcScope, OidcInteractionUid, OidcTokenEndpointAuthMethod, OidcRedirectUri, OidcScopeDetails, CreateOidcClientParams, UpdateOidcClientFieldParams, OidcEntry, OidcEntryDocument, OidcModelFunctions, CreateOidcClientResult, RotateOidcClientSecretResult, FirestoreQueryConstraint, 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
11
  import * as _ng_forge_dynamic_forms_material from '@ng-forge/dynamic-forms-material';
12
12
  import { ContainerField, FormConfig, RegisteredFieldTypes } from '@ng-forge/dynamic-forms';
13
13
  import * as rxjs from 'rxjs';
14
14
  import { Observable } from 'rxjs';
15
- import { AbstractDbxSelectionListWrapperDirective, AbstractDbxSelectionListViewDirective, DbxSelectionValueListViewConfig, DbxValueAsListItem, AbstractDbxValueListViewItemComponent, DbxActionConfirmConfig } from '@dereekb/dbx-web';
15
+ import { AbstractDbxSelectionListWrapperDirective, AbstractDbxSelectionListViewDirective, DbxSelectionValueListViewConfig, AbstractDbxValueListViewItemComponent, DbxActionConfirmConfig, DbxValueAsListItem } from '@dereekb/dbx-web';
16
16
  import { WorkUsingContext } from '@dereekb/rxjs';
17
17
  import * as _dereekb_dbx_firebase from '@dereekb/dbx-firebase';
18
- import { AbstractDbxFirebaseDocumentStore, AbstractDbxFirebaseCollectionStore, DbxFirebaseCollectionStoreDirective, DbxFirebaseDocumentStoreDirective } from '@dereekb/dbx-firebase';
18
+ import { AbstractDbxFirebaseDocumentStore, AbstractDbxFirebaseCollectionStore, DbxFirebaseCollectionStoreDirective, DbxFirebaseAuthService, DbxFirebaseDocumentStoreDirective } from '@dereekb/dbx-firebase';
19
19
 
20
20
  /**
21
21
  * State cases for the OIDC login interaction flow.
22
+ *
23
+ * - `'unknown'` — Firebase auth state has not yet resolved. Render nothing/spinner to avoid flashing.
24
+ * - `'no_user'` — Auth resolved and there is no signed-in user. Project the login UI via ng-content.
25
+ * - `'user'` — Auth resolved and a user is signed in.
26
+ * - `'submitting'` — Submitting the ID token to the OIDC interaction endpoint.
27
+ * - `'error'` — Submission failed; allow retry.
22
28
  */
23
- type OidcLoginStateCase = 'no_user' | 'user' | 'submitting' | 'error';
29
+ type OidcLoginStateCase = 'unknown' | 'no_user' | 'user' | 'submitting' | 'error';
24
30
  /**
25
31
  * Presentational component for the OIDC OAuth login interaction.
26
32
  *
@@ -36,14 +42,24 @@ type OidcLoginStateCase = 'no_user' | 'user' | 'submitting' | 'error';
36
42
  * ```
37
43
  */
38
44
  declare class DbxFirebaseOAuthLoginViewComponent {
39
- readonly loginStateCase: _angular_core.InputSignal<OidcLoginStateCase>;
40
- readonly error: _angular_core.InputSignal<Maybe<string | ErrorInput>>;
41
- readonly resolvedError: _angular_core.Signal<Maybe<ErrorInput>>;
42
- readonly retryClick: _angular_core.OutputEmitterRef<void>;
43
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFirebaseOAuthLoginViewComponent, never>;
44
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFirebaseOAuthLoginViewComponent, "dbx-firebase-oauth-login-view", never, { "loginStateCase": { "alias": "loginStateCase"; "required": true; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; }, { "retryClick": "retryClick"; }, never, ["*"], true, never>;
45
+ readonly loginStateCase: i0.InputSignal<OidcLoginStateCase>;
46
+ readonly error: i0.InputSignal<Maybe<string | ErrorInput>>;
47
+ readonly resolvedError: i0.Signal<Maybe<ErrorInput>>;
48
+ readonly retryClick: i0.OutputEmitterRef<void>;
49
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseOAuthLoginViewComponent, never>;
50
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseOAuthLoginViewComponent, "dbx-firebase-oauth-login-view", never, { "loginStateCase": { "alias": "loginStateCase"; "required": true; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; }, { "retryClick": "retryClick"; }, never, ["*"], true, never>;
45
51
  }
46
52
 
53
+ /**
54
+ * State cases for the OIDC consent interaction flow.
55
+ *
56
+ * - `'unknown'` — Firebase auth state has not yet resolved. Render nothing/spinner to avoid flashing.
57
+ * - `'no_user'` — Auth resolved and there is no signed-in user. Project the login UI via ng-content.
58
+ * - `'user'` — Auth resolved and a user is signed in. Render the consent form.
59
+ * - `'submitting'` — Submitting the consent decision to the OIDC interaction endpoint.
60
+ * - `'error'` — Submission failed; allow retry.
61
+ */
62
+ type OidcConsentStateCase = 'unknown' | 'no_user' | 'user' | 'submitting' | 'error';
47
63
  /**
48
64
  * Presentational component for the OIDC OAuth consent screen.
49
65
  *
@@ -51,11 +67,14 @@ declare class DbxFirebaseOAuthLoginViewComponent {
51
67
  * information. Renders the client name, logo, client URL, scopes (via `<dbx-injection>`),
52
68
  * error/loading states, and approve/deny action buttons.
53
69
  *
70
+ * Supports ng-content projection — content provided is rendered for the `'no_user'` state
71
+ * (so apps can project a login view, mirroring `DbxFirebaseOAuthLoginViewComponent`).
72
+ *
54
73
  * @example
55
74
  * ```html
56
75
  * <dbx-firebase-oauth-consent-view
57
76
  * [details]="loginDetails"
58
- * [loading]="false"
77
+ * [consentStateCase]="'user'"
59
78
  * [scopeInjectionConfig]="scopeConfig"
60
79
  * (approveClick)="onApprove()"
61
80
  * (denyClick)="onDeny()">
@@ -63,20 +82,21 @@ declare class DbxFirebaseOAuthLoginViewComponent {
63
82
  * ```
64
83
  */
65
84
  declare class DbxFirebaseOAuthConsentViewComponent {
66
- readonly details: _angular_core.InputSignal<Maybe<OAuthInteractionLoginDetails<string>>>;
67
- readonly loading: _angular_core.InputSignal<boolean>;
68
- readonly error: _angular_core.InputSignal<Maybe<string | ErrorInput>>;
69
- readonly scopeInjectionConfig: _angular_core.InputSignal<DbxInjectionComponentConfig<unknown>>;
70
- readonly clientName: _angular_core.Signal<string>;
71
- readonly clientUri: _angular_core.Signal<Maybe<string>>;
72
- readonly logoUri: _angular_core.Signal<Maybe<string>>;
73
- readonly scopes: _angular_core.Signal<string[]>;
74
- readonly resolvedError: _angular_core.Signal<Maybe<ErrorInput>>;
75
- readonly approveClick: _angular_core.OutputEmitterRef<void>;
76
- readonly denyClick: _angular_core.OutputEmitterRef<void>;
77
- readonly resolvedScopeInjectionConfig: _angular_core.Signal<DbxInjectionComponentConfig<unknown>>;
78
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFirebaseOAuthConsentViewComponent, never>;
79
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFirebaseOAuthConsentViewComponent, "dbx-firebase-oauth-consent-view", never, { "details": { "alias": "details"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "scopeInjectionConfig": { "alias": "scopeInjectionConfig"; "required": true; "isSignal": true; }; }, { "approveClick": "approveClick"; "denyClick": "denyClick"; }, never, never, true, never>;
85
+ readonly details: i0.InputSignal<Maybe<OAuthInteractionLoginDetails<string>>>;
86
+ readonly consentStateCase: i0.InputSignal<OidcConsentStateCase>;
87
+ readonly error: i0.InputSignal<Maybe<string | ErrorInput>>;
88
+ readonly scopeInjectionConfig: i0.InputSignal<DbxInjectionComponentConfig<unknown>>;
89
+ readonly clientName: i0.Signal<string>;
90
+ readonly clientUri: i0.Signal<Maybe<string>>;
91
+ readonly logoUri: i0.Signal<Maybe<string>>;
92
+ readonly scopes: i0.Signal<string[]>;
93
+ readonly resolvedError: i0.Signal<Maybe<ErrorInput>>;
94
+ readonly approveClick: i0.OutputEmitterRef<void>;
95
+ readonly denyClick: i0.OutputEmitterRef<void>;
96
+ readonly retryClick: i0.OutputEmitterRef<void>;
97
+ readonly resolvedScopeInjectionConfig: i0.Signal<DbxInjectionComponentConfig<unknown>>;
98
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseOAuthConsentViewComponent, never>;
99
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseOAuthConsentViewComponent, "dbx-firebase-oauth-consent-view", never, { "details": { "alias": "details"; "required": false; "isSignal": true; }; "consentStateCase": { "alias": "consentStateCase"; "required": true; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "scopeInjectionConfig": { "alias": "scopeInjectionConfig"; "required": true; "isSignal": true; }; }, { "approveClick": "approveClick"; "denyClick": "denyClick"; "retryClick": "retryClick"; }, never, ["*"], true, never>;
80
100
  }
81
101
 
82
102
  interface OAuthConsentScope<T extends OidcScope = OidcScope> {
@@ -108,11 +128,11 @@ interface DbxFirebaseOAuthConsentScopesViewData {
108
128
  */
109
129
  declare abstract class AbstractDbxFirebaseOAuthConsentScopeViewComponent {
110
130
  private readonly data;
111
- readonly details: _angular_core.Signal<Maybe<OAuthInteractionLoginDetails<string>>>;
112
- readonly scopes: _angular_core.Signal<string[]>;
113
- readonly clientName: _angular_core.Signal<string>;
114
- readonly clientUri: _angular_core.Signal<Maybe<string>>;
115
- readonly logoUri: _angular_core.Signal<Maybe<string>>;
131
+ readonly details: i0.Signal<Maybe<OAuthInteractionLoginDetails<string>>>;
132
+ readonly scopes: i0.Signal<string[]>;
133
+ readonly clientName: i0.Signal<string>;
134
+ readonly clientUri: i0.Signal<Maybe<string>>;
135
+ readonly logoUri: i0.Signal<Maybe<string>>;
116
136
  }
117
137
 
118
138
  /**
@@ -124,9 +144,9 @@ declare abstract class AbstractDbxFirebaseOAuthConsentScopeViewComponent {
124
144
  * ```
125
145
  */
126
146
  declare class DbxFirebaseOAuthConsentScopeListComponent {
127
- readonly scopes: _angular_core.InputSignal<OAuthConsentScope<string>[]>;
128
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFirebaseOAuthConsentScopeListComponent, never>;
129
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFirebaseOAuthConsentScopeListComponent, "dbx-firebase-oauth-consent-scope-list", never, { "scopes": { "alias": "scopes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
147
+ readonly scopes: i0.InputSignal<OAuthConsentScope<string>[]>;
148
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseOAuthConsentScopeListComponent, never>;
149
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseOAuthConsentScopeListComponent, "dbx-firebase-oauth-consent-scope-list", never, { "scopes": { "alias": "scopes"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
130
150
  }
131
151
 
132
152
  /**
@@ -138,9 +158,9 @@ declare class DbxFirebaseOAuthConsentScopeListComponent {
138
158
  */
139
159
  declare class DbxFirebaseOAuthConsentScopeDefaultViewComponent extends AbstractDbxFirebaseOAuthConsentScopeViewComponent {
140
160
  private readonly oidcConfigService;
141
- readonly mappedScopes: _angular_core.Signal<OAuthConsentScope<string>[]>;
142
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFirebaseOAuthConsentScopeDefaultViewComponent, never>;
143
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFirebaseOAuthConsentScopeDefaultViewComponent, "dbx-firebase-oauth-consent-scope-default-view", never, {}, {}, never, never, true, never>;
161
+ readonly mappedScopes: i0.Signal<OAuthConsentScope<string>[]>;
162
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseOAuthConsentScopeDefaultViewComponent, never>;
163
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseOAuthConsentScopeDefaultViewComponent, "dbx-firebase-oauth-consent-scope-default-view", never, {}, {}, never, never, true, never>;
144
164
  }
145
165
 
146
166
  /**
@@ -162,16 +182,16 @@ declare class DbxFirebaseOAuthLoginComponent implements OnDestroy {
162
182
  private readonly interactionService;
163
183
  readonly uidParamReader: _dereekb_dbx_core.DbxRouteParamReaderInstance<string>;
164
184
  readonly interactionUid: Signal<Maybe<OidcInteractionUid>>;
165
- readonly isLoggedIn: Signal<boolean>;
166
- readonly submitting: _angular_core.WritableSignal<boolean>;
167
- readonly errorMessage: _angular_core.WritableSignal<string | null>;
185
+ readonly isLoggedIn: Signal<Maybe<boolean>>;
186
+ readonly submitting: i0.WritableSignal<boolean>;
187
+ readonly errorMessage: i0.WritableSignal<string | null>;
168
188
  readonly loginStateCase: Signal<OidcLoginStateCase>;
169
189
  constructor();
170
190
  ngOnDestroy(): void;
171
191
  retry(): void;
172
192
  private _submitIdToken;
173
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFirebaseOAuthLoginComponent, never>;
174
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFirebaseOAuthLoginComponent, "dbx-firebase-oauth-login", never, {}, {}, never, ["*"], true, never>;
193
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseOAuthLoginComponent, never>;
194
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseOAuthLoginComponent, "dbx-firebase-oauth-login", never, {}, {}, never, ["*"], true, never>;
175
195
  }
176
196
 
177
197
  /**
@@ -189,17 +209,21 @@ interface DbxOAuthConsentComponentConfig {
189
209
  /**
190
210
  * Container component for the OIDC OAuth consent screen.
191
211
  *
192
- * Manages all state: route param reading, consent submission, and error handling.
193
- * Delegates visual rendering to `DbxFirebaseOAuthConsentViewComponent`.
212
+ * Manages all state: route param reading, Firebase Auth observation, consent submission,
213
+ * and error handling. Delegates visual rendering to `DbxFirebaseOAuthConsentViewComponent`.
194
214
  *
195
215
  * Reads interaction UID and client details from route params (populated by
196
216
  * the server redirect), then assembles them into `OAuthInteractionLoginDetails`.
217
+ *
218
+ * Supports ng-content projection — any content provided is passed through to
219
+ * the view component for the `'no_user'` state (e.g. an app's login view).
197
220
  */
198
221
  declare class DbxOAuthConsentComponent implements OnDestroy {
199
222
  private readonly dbxRouterService;
223
+ private readonly dbxFirebaseAuthService;
200
224
  private readonly interactionService;
201
225
  private readonly oidcConfigService;
202
- readonly config: _angular_core.InputSignal<Maybe<DbxOAuthConsentComponentConfig>>;
226
+ readonly config: i0.InputSignal<Maybe<DbxOAuthConsentComponentConfig>>;
203
227
  readonly interactionUidParamReader: _dereekb_dbx_core.DbxRouteParamReaderInstance<string>;
204
228
  readonly clientIdParamReader: _dereekb_dbx_core.DbxRouteParamReaderInstance<string>;
205
229
  readonly clientNameParamReader: _dereekb_dbx_core.DbxRouteParamReaderInstance<string>;
@@ -212,17 +236,20 @@ declare class DbxOAuthConsentComponent implements OnDestroy {
212
236
  private readonly routeClientUri;
213
237
  private readonly routeLogoUri;
214
238
  private readonly routeScopes;
215
- readonly resolvedInteractionUid: _angular_core.Signal<Maybe<string>>;
216
- readonly resolvedDetails: _angular_core.Signal<Maybe<OAuthInteractionLoginDetails<string>>>;
217
- readonly scopeInjectionConfig: _angular_core.Signal<DbxInjectionComponentConfig<unknown>>;
218
- readonly loading: _angular_core.WritableSignal<boolean>;
219
- readonly error: _angular_core.WritableSignal<string | null>;
239
+ readonly isLoggedIn: Signal<Maybe<boolean>>;
240
+ readonly resolvedInteractionUid: Signal<Maybe<string>>;
241
+ readonly resolvedDetails: Signal<Maybe<OAuthInteractionLoginDetails<string>>>;
242
+ readonly scopeInjectionConfig: Signal<DbxInjectionComponentConfig<unknown>>;
243
+ readonly submitting: i0.WritableSignal<boolean>;
244
+ readonly errorMessage: i0.WritableSignal<string | null>;
245
+ readonly consentStateCase: Signal<OidcConsentStateCase>;
220
246
  ngOnDestroy(): void;
221
247
  approve(): void;
222
248
  deny(): void;
249
+ retry(): void;
223
250
  private _submitConsent;
224
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxOAuthConsentComponent, never>;
225
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxOAuthConsentComponent, "dbx-firebase-oauth-consent", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
251
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxOAuthConsentComponent, never>;
252
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxOAuthConsentComponent, "dbx-firebase-oauth-consent", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
226
253
  }
227
254
 
228
255
  interface OidcEntryClientFormFieldsConfig {
@@ -345,8 +372,8 @@ type DbxFirebaseOidcEntryClientFormComponentConfig = Omit<OidcEntryClientFormFie
345
372
  declare class DbxFirebaseOidcEntryClientForgeFormComponent extends AbstractConfigAsyncForgeFormDirective<DbxFirebaseOidcModelClientFormValue, DbxFirebaseOidcEntryClientFormComponentConfig> {
346
373
  private readonly _oidcConfigService;
347
374
  readonly formConfig$: Observable<Maybe<FormConfig>>;
348
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientForgeFormComponent, never>;
349
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientForgeFormComponent, "dbx-firebase-oidc-client-forge-form", never, {}, {}, never, never, true, never>;
375
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientForgeFormComponent, never>;
376
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientForgeFormComponent, "dbx-firebase-oidc-client-forge-form", never, {}, {}, never, never, true, never>;
350
377
  }
351
378
 
352
379
  interface DbxFirebaseOidcModelClientTestFormValue {
@@ -362,59 +389,133 @@ type DbxFirebaseOidcEntryClientTestFormComponentConfig = OidcEntryClientTestForm
362
389
  */
363
390
  declare class DbxFirebaseOidcEntryClientTestForgeFormComponent extends AbstractConfigAsyncForgeFormDirective<DbxFirebaseOidcModelClientTestFormValue, DbxFirebaseOidcEntryClientTestFormComponentConfig> {
364
391
  readonly formConfig$: Observable<Maybe<FormConfig>>;
365
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientTestForgeFormComponent, never>;
366
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientTestForgeFormComponent, "dbx-firebase-oidc-client-test-forge-form", never, {}, {}, never, never, true, never>;
392
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientTestForgeFormComponent, never>;
393
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientTestForgeFormComponent, "dbx-firebase-oidc-client-test-forge-form", never, {}, {}, never, never, true, never>;
394
+ }
395
+
396
+ /**
397
+ * Document store for a single {@link OidcEntry}.
398
+ */
399
+ declare class OidcEntryDocumentStore extends AbstractDbxFirebaseDocumentStore<OidcEntry, OidcEntryDocument> {
400
+ readonly oidcModelFunctions: OidcModelFunctions;
401
+ private readonly _latestClientSecret$;
402
+ /**
403
+ * The client secret from the most recent create operation.
404
+ *
405
+ * Only available immediately after creation — the server does not return it again.
406
+ */
407
+ readonly latestClientSecret$: rxjs.Observable<Maybe<string>>;
408
+ get latestClientSecret(): Maybe<string>;
409
+ constructor();
410
+ readonly createClient: _dereekb_dbx_firebase.DbxFirebaseDocumentStoreCreateFunction<_dereekb_firebase.CreateOidcClientParams, CreateOidcClientResult>;
411
+ readonly updateClient: _dereekb_dbx_firebase.DbxFirebaseDocumentStoreFunction<_dereekb_firebase.UpdateOidcClientParams, void>;
412
+ readonly rotateClientSecret: _dereekb_dbx_firebase.DbxFirebaseDocumentStoreFunction<_dereekb_firebase.TargetModelParams, RotateOidcClientSecretResult>;
413
+ readonly deleteClient: _dereekb_dbx_firebase.DbxFirebaseDocumentStoreFunction<_dereekb_firebase.TargetModelParams, void>;
414
+ readonly deleteToken: _dereekb_dbx_firebase.DbxFirebaseDocumentStoreFunction<_dereekb_firebase.TargetModelParams, void>;
415
+ static ɵfac: i0.ɵɵFactoryDeclaration<OidcEntryDocumentStore, never>;
416
+ static ɵprov: i0.ɵɵInjectableDeclaration<OidcEntryDocumentStore>;
417
+ }
418
+
419
+ /**
420
+ * Wrapper list of {@link OidcEntry} Grant rows belonging to the current user.
421
+ *
422
+ * Renders one row per Grant — i.e. one row per "app with access to my account" —
423
+ * with an inline Revoke button that cascades through every grantable token.
424
+ */
425
+ declare class DbxFirebaseOidcEntryGrantListComponent extends AbstractDbxSelectionListWrapperDirective<OidcEntry> {
426
+ constructor();
427
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryGrantListComponent, never>;
428
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseOidcEntryGrantListComponent, "dbx-firebase-oidc-grant-list", never, {}, {}, never, ["[top]", "[bottom]", "[empty]", "[emptyLoading]", "[end]"], true, never>;
429
+ }
430
+ declare class DbxFirebaseOidcEntryGrantListViewComponent extends AbstractDbxSelectionListViewDirective<OidcEntry> {
431
+ readonly config: DbxSelectionValueListViewConfig<OidcEntry & {
432
+ key: string;
433
+ itemValue: OidcEntry;
434
+ }>;
435
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryGrantListViewComponent, never>;
436
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseOidcEntryGrantListViewComponent, "dbx-firebase-oidc-grant-list-view", never, {}, {}, never, never, true, never>;
437
+ }
438
+ /**
439
+ * Per-row view for a Grant entry. Inline "Revoke" button uses a per-component
440
+ * {@link OidcEntryDocumentStore} keyed to this entry's id so calling
441
+ * `deleteToken` invokes the {@link DeleteOidcTokenParams} callModel against
442
+ * the right document.
443
+ */
444
+ declare class DbxFirebaseOidcEntryGrantListViewItemComponent extends AbstractDbxValueListViewItemComponent<OidcEntry> {
445
+ readonly oidcEntryDocumentStore: OidcEntryDocumentStore;
446
+ readonly clientIdSignal: i0.Signal<string>;
447
+ readonly scopeSignal: i0.Signal<string | null>;
448
+ readonly expiresAtSignal: i0.Signal<Date | null>;
449
+ readonly revokeConfirmConfig: DbxActionConfirmConfig;
450
+ readonly handleRevoke: WorkUsingContext;
451
+ constructor();
452
+ private _payload;
453
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryGrantListViewItemComponent, never>;
454
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseOidcEntryGrantListViewItemComponent, "dbx-firebase-oidc-grant-list-view-item", never, {}, {}, never, never, true, never>;
367
455
  }
368
456
 
369
457
  type OidcEntryWithSelection = DbxValueAsListItem<OidcEntry>;
370
458
  declare class DbxFirebaseOidcEntryClientListComponent extends AbstractDbxSelectionListWrapperDirective<OidcEntry> {
371
459
  constructor();
372
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientListComponent, never>;
373
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientListComponent, "dbx-firebase-oidc-client-list", never, {}, {}, never, ["[top]", "[bottom]", "[empty]", "[emptyLoading]", "[end]"], true, never>;
460
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientListComponent, never>;
461
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientListComponent, "dbx-firebase-oidc-client-list", never, {}, {}, never, ["[top]", "[bottom]", "[empty]", "[emptyLoading]", "[end]"], true, never>;
374
462
  }
375
463
  declare class DbxFirebaseOidcEntryClientListViewComponent extends AbstractDbxSelectionListViewDirective<OidcEntry> {
376
464
  readonly config: DbxSelectionValueListViewConfig<OidcEntryWithSelection>;
377
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientListViewComponent, never>;
378
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientListViewComponent, "dbx-firebase-oidc-client-list-view", never, {}, {}, never, never, true, never>;
465
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientListViewComponent, never>;
466
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientListViewComponent, "dbx-firebase-oidc-client-list-view", never, {}, {}, never, never, true, never>;
379
467
  }
380
468
  declare class DbxFirebaseOidcEntryClientListViewItemClientComponent {
381
- readonly entry: _angular_core.InputSignal<OidcEntry>;
469
+ readonly entry: i0.InputSignal<OidcEntry>;
382
470
  get name(): string;
383
471
  get clientId(): string;
384
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientListViewItemClientComponent, never>;
385
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientListViewItemClientComponent, "dbx-firebase-oidc-client-list-view-item-client", never, { "entry": { "alias": "entry"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
472
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientListViewItemClientComponent, never>;
473
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientListViewItemClientComponent, "dbx-firebase-oidc-client-list-view-item-client", never, { "entry": { "alias": "entry"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
386
474
  }
387
475
  declare class DbxFirebaseOidcEntryClientListViewItemDefaultComponent {
388
- readonly entry: _angular_core.InputSignal<OidcEntry>;
389
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientListViewItemDefaultComponent, never>;
390
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientListViewItemDefaultComponent, "dbx-firebase-oidc-client-list-view-item-default", never, { "entry": { "alias": "entry"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
476
+ readonly entry: i0.InputSignal<OidcEntry>;
477
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientListViewItemDefaultComponent, never>;
478
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientListViewItemDefaultComponent, "dbx-firebase-oidc-client-list-view-item-default", never, { "entry": { "alias": "entry"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
391
479
  }
392
480
  declare class DbxFirebaseOidcEntryClientListViewItemComponent extends AbstractDbxValueListViewItemComponent<OidcEntry> {
393
481
  readonly clientType: _dereekb_firebase.OidcEntryType;
394
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientListViewItemComponent, never>;
395
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientListViewItemComponent, "ng-component", never, {}, {}, never, never, true, never>;
482
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientListViewItemComponent, never>;
483
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientListViewItemComponent, "ng-component", never, {}, {}, never, never, true, never>;
396
484
  }
397
485
 
398
486
  /**
399
- * Document store for a single {@link OidcEntry}.
487
+ * Collection store for querying {@link OidcEntry} documents.
400
488
  */
401
- declare class OidcEntryDocumentStore extends AbstractDbxFirebaseDocumentStore<OidcEntry, OidcEntryDocument> {
402
- readonly oidcModelFunctions: OidcModelFunctions;
403
- private readonly _latestClientSecret$;
404
- /**
405
- * The client secret from the most recent create operation.
406
- *
407
- * Only available immediately after creation — the server does not return it again.
408
- */
409
- readonly latestClientSecret$: rxjs.Observable<Maybe<string>>;
410
- get latestClientSecret(): Maybe<string>;
489
+ declare class OidcEntryCollectionStore extends AbstractDbxFirebaseCollectionStore<OidcEntry, OidcEntryDocument> {
411
490
  constructor();
412
- readonly createClient: _dereekb_dbx_firebase.DbxFirebaseDocumentStoreCreateFunction<_dereekb_firebase.CreateOidcClientParams, CreateOidcClientResult>;
413
- readonly updateClient: _dereekb_dbx_firebase.DbxFirebaseDocumentStoreFunction<_dereekb_firebase.UpdateOidcClientParams, void>;
414
- readonly rotateClientSecret: _dereekb_dbx_firebase.DbxFirebaseDocumentStoreFunction<_dereekb_firebase.TargetModelParams, RotateOidcClientSecretResult>;
415
- readonly deleteClient: _dereekb_dbx_firebase.DbxFirebaseDocumentStoreFunction<_dereekb_firebase.TargetModelParams, void>;
416
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<OidcEntryDocumentStore, never>;
417
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<OidcEntryDocumentStore>;
491
+ static ɵfac: i0.ɵɵFactoryDeclaration<OidcEntryCollectionStore, never>;
492
+ static ɵprov: i0.ɵɵInjectableDeclaration<OidcEntryCollectionStore>;
493
+ }
494
+
495
+ /**
496
+ * Directive providing a {@link OidcEntryCollectionStore} for querying {@link OidcEntry} documents.
497
+ */
498
+ declare class OidcEntryCollectionStoreDirective extends DbxFirebaseCollectionStoreDirective<OidcEntry, OidcEntryDocument, OidcEntryCollectionStore> {
499
+ constructor();
500
+ static ɵfac: i0.ɵɵFactoryDeclaration<OidcEntryCollectionStoreDirective, never>;
501
+ static ɵdir: i0.ɵɵDirectiveDeclaration<OidcEntryCollectionStoreDirective, "[dbxOidcEntryCollection]", never, {}, {}, never, never, true, never>;
502
+ }
503
+
504
+ /**
505
+ * Drop-in container for the "apps with access to my account" management UI.
506
+ *
507
+ * Wires a {@link OidcEntryCollectionStoreDirective} to query Grant entries
508
+ * for the signed-in user, then renders {@link DbxFirebaseOidcEntryGrantListComponent}
509
+ * with inline Revoke buttons. No inputs — the container resolves the current
510
+ * user via {@link DbxFirebaseAuthService}.
511
+ */
512
+ declare class DbxFirebaseOidcEntryGrantListContainerComponent implements OnInit {
513
+ readonly dbxFirebaseAuthService: DbxFirebaseAuthService;
514
+ readonly oidcEntryCollectionStoreDirective: i0.Signal<OidcEntryCollectionStoreDirective | undefined>;
515
+ readonly grantConstraintsSignal: i0.Signal<FirestoreQueryConstraint<unknown>[] | undefined>;
516
+ ngOnInit(): void;
517
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryGrantListContainerComponent, never>;
518
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseOidcEntryGrantListContainerComponent, "dbx-firebase-oidc-grant-list-container", never, {}, {}, never, never, true, never>;
418
519
  }
419
520
 
420
521
  /**
@@ -426,11 +527,11 @@ declare class OidcEntryDocumentStore extends AbstractDbxFirebaseDocumentStore<Oi
426
527
  declare class DbxFirebaseOidcEntryClientCreateComponent {
427
528
  readonly oidcEntryDocumentStore: OidcEntryDocumentStore;
428
529
  readonly formConfig: DbxFirebaseOidcEntryClientFormComponentConfig;
429
- readonly createClientOwnerTarget: _angular_core.InputSignal<Maybe<string>>;
430
- readonly clientCreated: _angular_core.OutputEmitterRef<CreateOidcClientResult>;
530
+ readonly createClientOwnerTarget: i0.InputSignal<Maybe<string>>;
531
+ readonly clientCreated: i0.OutputEmitterRef<CreateOidcClientResult>;
431
532
  readonly handleCreateClient: WorkUsingContext<DbxFirebaseOidcModelClientFormValue>;
432
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientCreateComponent, never>;
433
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientCreateComponent, "dbx-firebase-oidc-entry-client-create", never, { "createClientOwnerTarget": { "alias": "createClientOwnerTarget"; "required": false; "isSignal": true; }; }, { "clientCreated": "clientCreated"; }, never, never, true, never>;
533
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientCreateComponent, never>;
534
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientCreateComponent, "dbx-firebase-oidc-entry-client-create", never, { "createClientOwnerTarget": { "alias": "createClientOwnerTarget"; "required": false; "isSignal": true; }; }, { "clientCreated": "clientCreated"; }, never, never, true, never>;
434
535
  }
435
536
 
436
537
  /**
@@ -445,33 +546,33 @@ declare class DbxFirebaseOidcEntryClientTestComponent {
445
546
  /**
446
547
  * Scopes the user can pick from. Overrides the service default when provided.
447
548
  */
448
- readonly availableScopes: _angular_core.InputSignal<Maybe<OidcScopeDetails[]>>;
549
+ readonly availableScopes: i0.InputSignal<Maybe<OidcScopeDetails[]>>;
449
550
  /**
450
551
  * Path to the authorization endpoint. Overrides the service default when provided.
451
552
  */
452
- readonly oidcAuthorizationEndpointApiPath: _angular_core.InputSignal<Maybe<string>>;
453
- readonly resolvedAvailableScopes: _angular_core.Signal<OidcScopeDetails[]>;
454
- readonly resolvedAuthorizationEndpointPath: _angular_core.Signal<string>;
455
- readonly redirectUrisSignal: _angular_core.Signal<string[] | undefined>;
456
- readonly clientIdSignal: _angular_core.Signal<string | undefined>;
457
- readonly formConfig: _angular_core.Signal<OidcEntryClientTestFormFieldsConfig>;
553
+ readonly oidcAuthorizationEndpointApiPath: i0.InputSignal<Maybe<string>>;
554
+ readonly resolvedAvailableScopes: i0.Signal<OidcScopeDetails[]>;
555
+ readonly resolvedAuthorizationEndpointPath: i0.Signal<string>;
556
+ readonly redirectUrisSignal: i0.Signal<string[] | undefined>;
557
+ readonly clientIdSignal: i0.Signal<string | undefined>;
558
+ readonly formConfig: i0.Signal<OidcEntryClientTestFormFieldsConfig>;
458
559
  readonly formTemplate$: rxjs.Observable<DbxFirebaseOidcModelClientTestFormValue>;
459
- readonly codeVerifier: _angular_core.WritableSignal<string>;
460
- readonly codeChallenge: _angular_core.WritableSignal<string>;
461
- readonly state: _angular_core.WritableSignal<string>;
462
- readonly nonce: _angular_core.WritableSignal<string>;
560
+ readonly codeVerifier: i0.WritableSignal<string>;
561
+ readonly codeChallenge: i0.WritableSignal<string>;
562
+ readonly state: i0.WritableSignal<string>;
563
+ readonly nonce: i0.WritableSignal<string>;
463
564
  /**
464
565
  * The current form value, updated by the form via dbxFormValueChange.
465
566
  */
466
- readonly formValue: _angular_core.WritableSignal<Maybe<DbxFirebaseOidcModelClientTestFormValue>>;
467
- readonly authorizationUrlSignal: _angular_core.Signal<string | undefined>;
567
+ readonly formValue: i0.WritableSignal<Maybe<DbxFirebaseOidcModelClientTestFormValue>>;
568
+ readonly authorizationUrlSignal: i0.Signal<string | undefined>;
468
569
  constructor();
469
570
  onFormValueChange(value: Maybe<DbxFirebaseOidcModelClientTestFormValue>): void;
470
571
  openAuthorizationUrl(): void;
471
572
  regeneratePkce(): void;
472
573
  private _updateCodeChallenge;
473
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientTestComponent, never>;
474
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientTestComponent, "dbx-firebase-oidc-entry-client-test", never, { "availableScopes": { "alias": "availableScopes"; "required": false; "isSignal": true; }; "oidcAuthorizationEndpointApiPath": { "alias": "oidcAuthorizationEndpointApiPath"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
574
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientTestComponent, never>;
575
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientTestComponent, "dbx-firebase-oidc-entry-client-test", never, { "availableScopes": { "alias": "availableScopes"; "required": false; "isSignal": true; }; "oidcAuthorizationEndpointApiPath": { "alias": "oidcAuthorizationEndpointApiPath"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
475
576
  }
476
577
 
477
578
  /**
@@ -484,8 +585,8 @@ declare class DbxFirebaseOidcEntryClientUpdateComponent {
484
585
  readonly formConfig: DbxFirebaseOidcEntryClientFormComponentConfig;
485
586
  readonly formTemplate$: rxjs.Observable<_dereekb_firebase.UpdateOidcClientFieldParams>;
486
587
  readonly handleUpdateClient: WorkUsingContext<DbxFirebaseOidcModelClientUpdateFormValue>;
487
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientUpdateComponent, never>;
488
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientUpdateComponent, "dbx-firebase-oidc-entry-client-update", never, {}, {}, never, never, true, never>;
588
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientUpdateComponent, never>;
589
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientUpdateComponent, "dbx-firebase-oidc-entry-client-update", never, {}, {}, never, never, true, never>;
489
590
  }
490
591
 
491
592
  /**
@@ -496,30 +597,12 @@ declare class DbxFirebaseOidcEntryClientUpdateComponent {
496
597
  */
497
598
  declare class DbxFirebaseOidcEntryClientViewComponent {
498
599
  readonly oidcEntryDocumentStore: OidcEntryDocumentStore;
499
- readonly clientIdSignal: _angular_core.Signal<string | undefined>;
500
- readonly latestClientSecretSignal: _angular_core.Signal<_dereekb_util.Maybe<string>>;
600
+ readonly clientIdSignal: i0.Signal<string | undefined>;
601
+ readonly latestClientSecretSignal: i0.Signal<_dereekb_util.Maybe<string>>;
501
602
  readonly rotateSecretConfirmConfig: DbxActionConfirmConfig;
502
603
  readonly handleRotateClientSecret: WorkUsingContext;
503
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientViewComponent, never>;
504
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientViewComponent, "dbx-firebase-oidc-entry-client-view", never, {}, {}, never, never, true, never>;
505
- }
506
-
507
- /**
508
- * Collection store for querying {@link OidcEntry} documents.
509
- */
510
- declare class OidcEntryCollectionStore extends AbstractDbxFirebaseCollectionStore<OidcEntry, OidcEntryDocument> {
511
- constructor();
512
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<OidcEntryCollectionStore, never>;
513
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<OidcEntryCollectionStore>;
514
- }
515
-
516
- /**
517
- * Directive providing a {@link OidcEntryCollectionStore} for querying {@link OidcEntry} documents.
518
- */
519
- declare class OidcEntryCollectionStoreDirective extends DbxFirebaseCollectionStoreDirective<OidcEntry, OidcEntryDocument, OidcEntryCollectionStore> {
520
- constructor();
521
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<OidcEntryCollectionStoreDirective, never>;
522
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<OidcEntryCollectionStoreDirective, "[dbxOidcEntryCollection]", never, {}, {}, never, never, true, never>;
604
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseOidcEntryClientViewComponent, never>;
605
+ static ɵcmp: i0.ɵɵComponentDeclaration<DbxFirebaseOidcEntryClientViewComponent, "dbx-firebase-oidc-entry-client-view", never, {}, {}, never, never, true, never>;
523
606
  }
524
607
 
525
608
  /**
@@ -527,8 +610,8 @@ declare class OidcEntryCollectionStoreDirective extends DbxFirebaseCollectionSto
527
610
  */
528
611
  declare class OidcEntryDocumentStoreDirective extends DbxFirebaseDocumentStoreDirective<OidcEntry, OidcEntryDocument, OidcEntryDocumentStore> {
529
612
  constructor();
530
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<OidcEntryDocumentStoreDirective, never>;
531
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<OidcEntryDocumentStoreDirective, "[dbxOidcEntryDocument]", never, {}, {}, never, never, true, never>;
613
+ static ɵfac: i0.ɵɵFactoryDeclaration<OidcEntryDocumentStoreDirective, never>;
614
+ static ɵdir: i0.ɵɵDirectiveDeclaration<OidcEntryDocumentStoreDirective, "[dbxOidcEntryDocument]", never, {}, {}, never, never, true, never>;
532
615
  }
533
616
 
534
617
  declare const DEFAULT_OIDC_AUTHORIZATION_ENDPOINT_PATH = "/oidc/auth";
@@ -597,8 +680,8 @@ declare class DbxFirebaseOidcConfigService {
597
680
  get tokenEndpointAuthMethods(): OidcTokenEndpointAuthMethod[];
598
681
  get oauthInteractionRoute(): Maybe<SegueRefOrSegueRefRouterLink>;
599
682
  get consentScopeListViewClass(): Maybe<Type<AbstractDbxFirebaseOAuthConsentScopeViewComponent>>;
600
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFirebaseOidcConfigService, never>;
601
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<DbxFirebaseOidcConfigService>;
683
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseOidcConfigService, never>;
684
+ static ɵprov: i0.ɵɵInjectableDeclaration<DbxFirebaseOidcConfigService>;
602
685
  }
603
686
 
604
687
  /**
@@ -681,9 +764,9 @@ declare class DbxFirebaseOidcInteractionService {
681
764
  * @returns Observable that emits the redirect URL from the server response.
682
765
  */
683
766
  submitConsent(uid: OidcInteractionUid, approved: boolean): Observable<OAuthInteractionConsentResponse>;
684
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DbxFirebaseOidcInteractionService, never>;
685
- static ɵprov: _angular_core.ɵɵInjectableDeclaration<DbxFirebaseOidcInteractionService>;
767
+ static ɵfac: i0.ɵɵFactoryDeclaration<DbxFirebaseOidcInteractionService, never>;
768
+ static ɵprov: i0.ɵɵInjectableDeclaration<DbxFirebaseOidcInteractionService>;
686
769
  }
687
770
 
688
- export { AbstractDbxFirebaseOAuthConsentScopeViewComponent, DEFAULT_OIDC_AUTHORIZATION_ENDPOINT_PATH, DEFAULT_OIDC_CLIENT_ID_PARAM_KEY, DEFAULT_OIDC_CLIENT_NAME_PARAM_KEY, DEFAULT_OIDC_CLIENT_URI_PARAM_KEY, DEFAULT_OIDC_INTERACTION_ENDPOINT_PATH, DEFAULT_OIDC_INTERACTION_UID_PARAM_KEY, DEFAULT_OIDC_LOGO_URI_PARAM_KEY, DEFAULT_OIDC_SCOPES_PARAM_KEY, DEFAULT_OIDC_TOKEN_ENDPOINT_AUTH_METHODS, DbxFirebaseOAuthConsentScopeDefaultViewComponent, DbxFirebaseOAuthConsentScopeListComponent, DbxFirebaseOAuthConsentViewComponent, DbxFirebaseOAuthLoginComponent, DbxFirebaseOAuthLoginViewComponent, DbxFirebaseOidcConfig, DbxFirebaseOidcConfigService, DbxFirebaseOidcEntryClientCreateComponent, DbxFirebaseOidcEntryClientForgeFormComponent, DbxFirebaseOidcEntryClientListComponent, DbxFirebaseOidcEntryClientListViewComponent, DbxFirebaseOidcEntryClientListViewItemClientComponent, DbxFirebaseOidcEntryClientListViewItemComponent, DbxFirebaseOidcEntryClientListViewItemDefaultComponent, DbxFirebaseOidcEntryClientTestComponent, DbxFirebaseOidcEntryClientTestForgeFormComponent, DbxFirebaseOidcEntryClientUpdateComponent, DbxFirebaseOidcEntryClientViewComponent, DbxFirebaseOidcInteractionService, DbxOAuthConsentComponent, OidcEntryCollectionStore, OidcEntryCollectionStoreDirective, OidcEntryDocumentStore, OidcEntryDocumentStoreDirective, oidcClientHomepageUriForgeField, oidcClientJwksUriForgeField, oidcClientLogoUriForgeField, oidcClientNameForgeField, oidcClientRedirectUrisForgeField, oidcClientTestClientIdForgeField, oidcClientTestRedirectUriForgeField, oidcClientTestScopesForgeField, oidcClientTokenEndpointAuthMethodForgeField, oidcEntryClientForgeFormFields, oidcEntryClientTestForgeFormFields, oidcEntryClientUpdateForgeFormFields, provideDbxFirebaseOidc, provideOidcModelFirestoreCollections };
689
- export type { DbxFirebaseOAuthConsentScopesViewData, DbxFirebaseOidcEntryClientFormComponentConfig, DbxFirebaseOidcEntryClientTestFormComponentConfig, DbxFirebaseOidcModelClientFormValue, DbxFirebaseOidcModelClientTestFormValue, DbxFirebaseOidcModelClientUpdateFormValue, DbxOAuthConsentComponentConfig, OAuthConsentScope, OidcEntryClientFormFieldsConfig, OidcEntryClientTestFormFieldsConfig, OidcEntryWithSelection, OidcLoginStateCase, ProvideDbxFirebaseOidcConfig };
771
+ export { AbstractDbxFirebaseOAuthConsentScopeViewComponent, DEFAULT_OIDC_AUTHORIZATION_ENDPOINT_PATH, DEFAULT_OIDC_CLIENT_ID_PARAM_KEY, DEFAULT_OIDC_CLIENT_NAME_PARAM_KEY, DEFAULT_OIDC_CLIENT_URI_PARAM_KEY, DEFAULT_OIDC_INTERACTION_ENDPOINT_PATH, DEFAULT_OIDC_INTERACTION_UID_PARAM_KEY, DEFAULT_OIDC_LOGO_URI_PARAM_KEY, DEFAULT_OIDC_SCOPES_PARAM_KEY, DEFAULT_OIDC_TOKEN_ENDPOINT_AUTH_METHODS, DbxFirebaseOAuthConsentScopeDefaultViewComponent, DbxFirebaseOAuthConsentScopeListComponent, DbxFirebaseOAuthConsentViewComponent, DbxFirebaseOAuthLoginComponent, DbxFirebaseOAuthLoginViewComponent, DbxFirebaseOidcConfig, DbxFirebaseOidcConfigService, DbxFirebaseOidcEntryClientCreateComponent, DbxFirebaseOidcEntryClientForgeFormComponent, DbxFirebaseOidcEntryClientListComponent, DbxFirebaseOidcEntryClientListViewComponent, DbxFirebaseOidcEntryClientListViewItemClientComponent, DbxFirebaseOidcEntryClientListViewItemComponent, DbxFirebaseOidcEntryClientListViewItemDefaultComponent, DbxFirebaseOidcEntryClientTestComponent, DbxFirebaseOidcEntryClientTestForgeFormComponent, DbxFirebaseOidcEntryClientUpdateComponent, DbxFirebaseOidcEntryClientViewComponent, DbxFirebaseOidcEntryGrantListComponent, DbxFirebaseOidcEntryGrantListContainerComponent, DbxFirebaseOidcEntryGrantListViewComponent, DbxFirebaseOidcEntryGrantListViewItemComponent, DbxFirebaseOidcInteractionService, DbxOAuthConsentComponent, OidcEntryCollectionStore, OidcEntryCollectionStoreDirective, OidcEntryDocumentStore, OidcEntryDocumentStoreDirective, oidcClientHomepageUriForgeField, oidcClientJwksUriForgeField, oidcClientLogoUriForgeField, oidcClientNameForgeField, oidcClientRedirectUrisForgeField, oidcClientTestClientIdForgeField, oidcClientTestRedirectUriForgeField, oidcClientTestScopesForgeField, oidcClientTokenEndpointAuthMethodForgeField, oidcEntryClientForgeFormFields, oidcEntryClientTestForgeFormFields, oidcEntryClientUpdateForgeFormFields, provideDbxFirebaseOidc, provideOidcModelFirestoreCollections };
772
+ export type { DbxFirebaseOAuthConsentScopesViewData, DbxFirebaseOidcEntryClientFormComponentConfig, DbxFirebaseOidcEntryClientTestFormComponentConfig, DbxFirebaseOidcModelClientFormValue, DbxFirebaseOidcModelClientTestFormValue, DbxFirebaseOidcModelClientUpdateFormValue, DbxOAuthConsentComponentConfig, OAuthConsentScope, OidcConsentStateCase, OidcEntryClientFormFieldsConfig, OidcEntryClientTestFormFieldsConfig, OidcEntryWithSelection, OidcLoginStateCase, ProvideDbxFirebaseOidcConfig };