@dereekb/dbx-firebase 13.38.0 → 13.40.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/package.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-firebase",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.40.0",
|
|
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.
|
|
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.
|
|
8
|
+
"@dereekb/date": "13.40.0",
|
|
9
|
+
"@dereekb/dbx-analytics": "13.40.0",
|
|
10
|
+
"@dereekb/dbx-core": "13.40.0",
|
|
11
|
+
"@dereekb/dbx-form": "13.40.0",
|
|
12
|
+
"@dereekb/dbx-web": "13.40.0",
|
|
13
|
+
"@dereekb/firebase": "13.40.0",
|
|
14
|
+
"@dereekb/model": "13.40.0",
|
|
15
|
+
"@dereekb/rxjs": "13.40.0",
|
|
16
|
+
"@dereekb/util": "13.40.0",
|
|
17
|
+
"@dereekb/vitest": "13.40.0",
|
|
18
18
|
"@ng-forge/dynamic-forms": "0.10.0-next.4",
|
|
19
19
|
"@ngrx/component-store": "^21.1.0",
|
|
20
20
|
"firebase": "^12.12.1",
|
|
@@ -5228,10 +5228,12 @@ type DbxFirebaseNotificationHealthCheckProbeActionMap = NotificationDeliveryMeth
|
|
|
5228
5228
|
* dialog, an admin view). The per-method test message actions are an input for the same reason: the
|
|
5229
5229
|
* report renders them, whoever owns the store supplies them.
|
|
5230
5230
|
*
|
|
5231
|
-
* The view is client-facing, so it shows only what the user can act on. The
|
|
5232
|
-
*
|
|
5233
|
-
*
|
|
5234
|
-
*
|
|
5231
|
+
* The view is client-facing, so it shows only what the user can act on. The account-wide findings
|
|
5232
|
+
* (`is`) lead, because they are frequently the whole answer and no method section repeats them — a
|
|
5233
|
+
* global opt-out or a disabled account leaves every method looking correctly configured. Any method
|
|
5234
|
+
* the system has no send service for, and the methods in
|
|
5235
|
+
* {@link HIDDEN_NOTIFICATION_DELIVERY_METHODS}, are left out — both remain on the check itself for an
|
|
5236
|
+
* API/callModel consumer.
|
|
5235
5237
|
*/
|
|
5236
5238
|
declare class DbxFirebaseNotificationHealthCheckComponent {
|
|
5237
5239
|
private readonly _presentationService;
|
|
@@ -5242,6 +5244,14 @@ declare class DbxFirebaseNotificationHealthCheckComponent {
|
|
|
5242
5244
|
* Left unset the report is read-only, which is what an admin or historical view wants.
|
|
5243
5245
|
*/
|
|
5244
5246
|
readonly probeActions: i0.InputSignal<Maybe<Partial<Record<NotificationDeliveryMethod, Maybe<DbxFirebaseNotificationHealthCheckMethodProbeActionConfig>>>>>;
|
|
5247
|
+
/**
|
|
5248
|
+
* The account-wide findings, which apply however each individual method is configured.
|
|
5249
|
+
*
|
|
5250
|
+
* Shown in full rather than filtered: unlike a method section there is no "this channel is off"
|
|
5251
|
+
* noise here, and an account-level finding is often the only explanation the report has — a global
|
|
5252
|
+
* opt-out, a disabled account, or an unreadable auth record leaves every method looking fine.
|
|
5253
|
+
*/
|
|
5254
|
+
readonly accountIssuesSignal: i0.Signal<_dereekb_firebase.NotificationHealthCheckIssue[]>;
|
|
5245
5255
|
readonly statusColorSignal: i0.Signal<i1.DbxThemeColor>;
|
|
5246
5256
|
readonly statusIconSignal: i0.Signal<string>;
|
|
5247
5257
|
readonly statusLabelSignal: i0.Signal<string>;
|