@or-sdk/notifications 1.5.0-beta.3369.0 → 1.5.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/CHANGELOG.md +9 -0
- package/package.json +3 -2
- package/src/Notifications.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [1.5.0](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/notifications@1.4.0...@or-sdk/notifications@1.5.0) (2025-02-04)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **@or-sdk/notifications:** add a method to push notification for the user role group ([5785ce1](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/commit/5785ce11f5efbc4f7f9672a99e53a156ceb42699))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## [1.4.0](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/notifications@1.3.3...@or-sdk/notifications@1.4.0) (2025-01-21)
|
|
7
16
|
|
|
8
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@or-sdk/notifications",
|
|
3
|
-
"version": "1.5.0
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -27,5 +27,6 @@
|
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|
|
30
|
-
}
|
|
30
|
+
},
|
|
31
|
+
"gitHead": "555cf1d49bb1339b230ecfca9e984faafaca2287"
|
|
31
32
|
}
|
package/src/Notifications.ts
CHANGED
|
@@ -251,7 +251,7 @@ export class Notifications extends Base {
|
|
|
251
251
|
}
|
|
252
252
|
|
|
253
253
|
/**
|
|
254
|
-
* @description Send push notification to all
|
|
254
|
+
* @description Send push notification to all users with specific role
|
|
255
255
|
* @param {string} role
|
|
256
256
|
* @param data
|
|
257
257
|
* ```typescript
|