@onesignal/node-onesignal 1.0.0-beta5 → 1.0.0-beta6
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/.github/workflows/npm_deploy.yml +2 -0
- package/CHANGELOG.md +13 -10
- package/package.json +1 -1
|
@@ -14,6 +14,8 @@ jobs:
|
|
|
14
14
|
node-version: 18
|
|
15
15
|
- name: Install Node types
|
|
16
16
|
run: npm install @types/node
|
|
17
|
+
- name: Run build
|
|
18
|
+
run: npm run build
|
|
17
19
|
- name: Publish package
|
|
18
20
|
if: github.event_name == 'release' && github.event.action == 'created'
|
|
19
21
|
uses: JS-DevTools/npm-publish@v1
|
package/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,8 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
|
|
4
|
-
##
|
|
5
|
-
|
|
6
|
-
### `1.0.0-beta4` - 02/25/2022
|
|
7
|
-
#### Added
|
|
8
|
-
- .npmignore file
|
|
9
|
-
|
|
10
|
-
#### Fixed
|
|
11
|
-
- Missing `dist` directory since npm was ignoring it due to lack of .npmignore
|
|
12
|
-
|
|
13
|
-
### `1.0.0-beta5` - 10/1/2022
|
|
4
|
+
## November 2022
|
|
5
|
+
### `1.0.0-beta5` - 11/14/2022
|
|
14
6
|
#### Api Changes
|
|
15
7
|
- Configuration setup has been simplified and streamlined. Now it looks like this:
|
|
16
8
|
```js
|
|
@@ -24,3 +16,14 @@ All notable changes to this project will be documented in this file.
|
|
|
24
16
|
#### Fixed
|
|
25
17
|
- Bug in the OpenAPI schema not allowing users to use filters when creating a notification.
|
|
26
18
|
- Bug in the OpenAPI schema not allowing to set the notification name.
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
## February 2022
|
|
22
|
+
|
|
23
|
+
### `1.0.0-beta4` - 02/25/2022
|
|
24
|
+
#### Added
|
|
25
|
+
- .npmignore file
|
|
26
|
+
|
|
27
|
+
#### Fixed
|
|
28
|
+
- Missing `dist` directory since npm was ignoring it due to lack of .npmignore
|
|
29
|
+
|