@dereekb/firebase 12.5.6 → 12.5.8
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/index.cjs.js
CHANGED
|
@@ -9545,6 +9545,12 @@ class SendQueuedNotificationsParams {
|
|
|
9545
9545
|
* No limit by default.
|
|
9546
9546
|
*/
|
|
9547
9547
|
this.maxSendNotificationLoops = void 0;
|
|
9548
|
+
/**
|
|
9549
|
+
* The max number of parallel send tasks to run.
|
|
9550
|
+
*
|
|
9551
|
+
* Defaults to 5.
|
|
9552
|
+
*/
|
|
9553
|
+
this.maxParellelSendTasks = void 0;
|
|
9548
9554
|
/**
|
|
9549
9555
|
* The threshold to use when to log a warning for an excessive of notification loops.
|
|
9550
9556
|
*/
|
|
@@ -9552,6 +9558,7 @@ class SendQueuedNotificationsParams {
|
|
|
9552
9558
|
}
|
|
9553
9559
|
}
|
|
9554
9560
|
__decorate([classTransformer.Expose(), classValidator.IsOptional(), classValidator.IsNumber(), __metadata("design:type", Object)], SendQueuedNotificationsParams.prototype, "maxSendNotificationLoops", void 0);
|
|
9561
|
+
__decorate([classTransformer.Expose(), classValidator.IsOptional(), classValidator.IsNumber(), __metadata("design:type", Object)], SendQueuedNotificationsParams.prototype, "maxParellelSendTasks", void 0);
|
|
9555
9562
|
__decorate([classTransformer.Expose(), classValidator.IsOptional(), classValidator.IsNumber(), __metadata("design:type", Object)], SendQueuedNotificationsParams.prototype, "sendNotificationLoopsTaskExcessThreshold", void 0);
|
|
9556
9563
|
/**
|
|
9557
9564
|
* Used for sending queued notifications in the system.
|
package/index.esm.js
CHANGED
|
@@ -9543,6 +9543,12 @@ class SendQueuedNotificationsParams {
|
|
|
9543
9543
|
* No limit by default.
|
|
9544
9544
|
*/
|
|
9545
9545
|
this.maxSendNotificationLoops = void 0;
|
|
9546
|
+
/**
|
|
9547
|
+
* The max number of parallel send tasks to run.
|
|
9548
|
+
*
|
|
9549
|
+
* Defaults to 5.
|
|
9550
|
+
*/
|
|
9551
|
+
this.maxParellelSendTasks = void 0;
|
|
9546
9552
|
/**
|
|
9547
9553
|
* The threshold to use when to log a warning for an excessive of notification loops.
|
|
9548
9554
|
*/
|
|
@@ -9550,6 +9556,7 @@ class SendQueuedNotificationsParams {
|
|
|
9550
9556
|
}
|
|
9551
9557
|
}
|
|
9552
9558
|
__decorate([Expose(), IsOptional(), IsNumber(), __metadata("design:type", Object)], SendQueuedNotificationsParams.prototype, "maxSendNotificationLoops", void 0);
|
|
9559
|
+
__decorate([Expose(), IsOptional(), IsNumber(), __metadata("design:type", Object)], SendQueuedNotificationsParams.prototype, "maxParellelSendTasks", void 0);
|
|
9553
9560
|
__decorate([Expose(), IsOptional(), IsNumber(), __metadata("design:type", Object)], SendQueuedNotificationsParams.prototype, "sendNotificationLoopsTaskExcessThreshold", void 0);
|
|
9554
9561
|
/**
|
|
9555
9562
|
* Used for sending queued notifications in the system.
|
package/package.json
CHANGED
|
@@ -408,6 +408,12 @@ export declare class SendQueuedNotificationsParams {
|
|
|
408
408
|
* No limit by default.
|
|
409
409
|
*/
|
|
410
410
|
readonly maxSendNotificationLoops?: Maybe<number>;
|
|
411
|
+
/**
|
|
412
|
+
* The max number of parallel send tasks to run.
|
|
413
|
+
*
|
|
414
|
+
* Defaults to 5.
|
|
415
|
+
*/
|
|
416
|
+
readonly maxParellelSendTasks?: Maybe<number>;
|
|
411
417
|
/**
|
|
412
418
|
* The threshold to use when to log a warning for an excessive of notification loops.
|
|
413
419
|
*/
|
|
@@ -122,11 +122,15 @@ export interface NotificationTaskServiceHandleNotificationTaskResult<D extends N
|
|
|
122
122
|
/**
|
|
123
123
|
* Updates the metadata for the notification item if the task is successful but not yet marked done.
|
|
124
124
|
*
|
|
125
|
+
* Is merged with the existing metadata.
|
|
126
|
+
*
|
|
125
127
|
* Does not update the metadata if the completion type is true or false.
|
|
126
128
|
*/
|
|
127
129
|
readonly updateMetadata?: Maybe<Partial<D>>;
|
|
128
130
|
/**
|
|
129
131
|
* Delays the next run of the task by the specified amount of time or until the given date.
|
|
132
|
+
*
|
|
133
|
+
* If milliseconds are provided, it is the amount of time relative from when the notification started this run, not from "now".
|
|
130
134
|
*/
|
|
131
135
|
readonly delayUntil?: Maybe<Date | Milliseconds>;
|
|
132
136
|
/**
|
package/test/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [12.5.8](https://github.com/dereekb/dbx-components/compare/v12.5.7-dev...v12.5.8) (2025-11-06)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
## [12.5.7](https://github.com/dereekb/dbx-components/compare/v12.5.6-dev...v12.5.7) (2025-11-05)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
5
13
|
## [12.5.6](https://github.com/dereekb/dbx-components/compare/v12.5.5-dev...v12.5.6) (2025-11-02)
|
|
6
14
|
|
|
7
15
|
|