@forge/notification 0.3.0-next.1 → 0.3.0-next.1-experimental-f57b265
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/CHANGELOG.md +10 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @forge/notification
|
|
2
2
|
|
|
3
|
+
## 0.3.0-next.1-experimental-f57b265
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- ff1594c: Modified NotificationPayload type to support custom templates. Added more types to types.ts. Since users can now specify template id, removed hardcoded template id used inside util.ts to instead use the template id supplied by user. Also had to remove validation check for htmlBody since not all templates use this field anymore. Modified existing unit tests to include 'id' field in NotificationPayload and added some unit tests for each of the new templates.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- @forge/api@7.0.1-next.0-experimental-f57b265
|
|
12
|
+
|
|
3
13
|
## 0.3.0-next.1
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forge/notification",
|
|
3
|
-
"version": "0.3.0-next.1",
|
|
3
|
+
"version": "0.3.0-next.1-experimental-f57b265",
|
|
4
4
|
"description": "Forge Notification SDK",
|
|
5
5
|
"main": "out/index.js",
|
|
6
6
|
"types": "out/index.d.ts",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"compile": "tsc -b -v"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@forge/api": "^7.0.1-next.0",
|
|
13
|
+
"@forge/api": "^7.0.1-next.0-experimental-f57b265",
|
|
14
14
|
"uuid": "^9.0.1"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|