@dereekb/firebase 12.6.13 → 12.6.15

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.6.13",
3
+ "version": "12.6.15",
4
4
  "exports": {
5
5
  ".": {
6
6
  "types": "./src/index.d.ts",
@@ -23,6 +23,18 @@ export type NotificationMessageEntityKey = string;
23
23
  * Arbitrary template name/key that is used to configure which template to use by the sending service.
24
24
  */
25
25
  export type NotificationSendMessageTemplateName = string;
26
+ /**
27
+ * Template configuration data for a notification message.
28
+ *
29
+ * This info is used by the sending service to configure the template, but is not passed directly to the template itself.
30
+ */
31
+ export type NotificationMessageTemplateConfiguration = Record<string, any>;
32
+ /**
33
+ * Template variables for a notification message.
34
+ *
35
+ * These variables may be directly passed to the template.
36
+ */
37
+ export type NotificationMessageTemplateVariables = Record<string, any>;
26
38
  /**
27
39
  * Generic notification message content.
28
40
  */
@@ -61,6 +73,14 @@ export interface NotificationMessageContent {
61
73
  * Url the action goes to.
62
74
  */
63
75
  readonly actionUrl?: Maybe<WebsiteUrl>;
76
+ /**
77
+ * Arbitrary template configuration data used by the sending service for configuration.
78
+ */
79
+ readonly templateConfig?: Maybe<NotificationMessageTemplateConfiguration>;
80
+ /**
81
+ * Arbitrary template data that may be directly passed to the template.
82
+ */
83
+ readonly templateVariables?: Maybe<NotificationMessageTemplateVariables>;
64
84
  }
65
85
  export interface NotificationMessageEmailContent extends NotificationMessageContent {
66
86
  /**
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.6.15](https://github.com/dereekb/dbx-components/compare/v12.6.14-dev...v12.6.15) (2026-02-07)
6
+
7
+
8
+
9
+ ## [12.6.14](https://github.com/dereekb/dbx-components/compare/v12.6.13-dev...v12.6.14) (2026-02-06)
10
+
11
+
12
+
5
13
  ## [12.6.13](https://github.com/dereekb/dbx-components/compare/v12.6.12-dev...v12.6.13) (2026-02-06)
6
14
 
7
15
 
package/test/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/firebase/test",
3
- "version": "12.6.13",
3
+ "version": "12.6.15",
4
4
  "type": "commonjs",
5
5
  "peerDependencies": {
6
6
  "@dereekb/util": "*",