@dereekb/firebase 12.3.8 → 12.3.9

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/firebase",
3
- "version": "12.3.8",
3
+ "version": "12.3.9",
4
4
  "exports": {
5
5
  ".": {
6
6
  "types": "./src/index.d.ts",
@@ -33,6 +33,14 @@ export type NotificationWeekId = FirestoreModelId;
33
33
  export type NotificationWeekKey = FirestoreModelKey;
34
34
  export type NotificationId = FirestoreModelId;
35
35
  export type NotificationKey = FirestoreModelKey;
36
+ /**
37
+ * Equivalent to NotificationId, but can be used to more specifically refer to a Notification with a task type.
38
+ */
39
+ export type NotificationTaskId = NotificationId;
40
+ /**
41
+ * Equivalent to NotificationKey, but can be used to more specifically refer to a Notification with a task type.
42
+ */
43
+ export type NotificationTaskKey = NotificationKey;
36
44
  /**
37
45
  * The default notification template type that can be provided to subscribe to notifications not specified in the configurations.
38
46
  */
@@ -69,6 +77,12 @@ export type NotificationTaskType = string;
69
77
  * If a unique key is reused, the new task will replace the old task.
70
78
  */
71
79
  export type NotificationTaskUniqueId = FirestoreModelId;
80
+ /**
81
+ * Reference to a notification task key
82
+ */
83
+ export interface NotificationTaskKeyRef {
84
+ readonly taskKey: NotificationTaskKey;
85
+ }
72
86
  /**
73
87
  * Creates a NotificationTaskUniqueId from the input model id and task type.
74
88
  *
package/test/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [12.3.9](https://github.com/dereekb/dbx-components/compare/v12.3.8-dev...v12.3.9) (2025-08-15)
6
+
7
+
8
+
5
9
  ## [12.3.8](https://github.com/dereekb/dbx-components/compare/v12.3.7-dev...v12.3.8) (2025-08-14)
6
10
 
7
11
 
package/test/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/firebase/test",
3
- "version": "12.3.8",
3
+ "version": "12.3.9",
4
4
  "type": "commonjs",
5
5
  "peerDependencies": {
6
6
  "@dereekb/util": "*",