react-onesignal 3.4.4 → 3.4.5
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/README.md +4 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -83,6 +83,7 @@ OneSignal.init({ appId: 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx' }).then(() => {
|
|
|
83
83
|
```
|
|
84
84
|
|
|
85
85
|
### Init Options
|
|
86
|
+
|
|
86
87
|
You can pass other [options](https://documentation.onesignal.com/docs/web-sdk-reference#init) to the `init` function. Use these options to configure personalized prompt options, auto-resubscribe, and more.
|
|
87
88
|
|
|
88
89
|
<details>
|
|
@@ -109,7 +110,7 @@ You can pass other [options](https://documentation.onesignal.com/docs/web-sdk-re
|
|
|
109
110
|
| `[key: string]` | `any` | Additional properties can be added as needed. |
|
|
110
111
|
|
|
111
112
|
**Service Worker Params**
|
|
112
|
-
You can customize the location and filenames of service worker assets. You are also able to specify the specific scope that your service worker should control. You can read more [here](https://documentation.onesignal.com/docs/onesignal-service-worker
|
|
113
|
+
You can customize the location and filenames of service worker assets. You are also able to specify the specific scope that your service worker should control. You can read more [here](https://documentation.onesignal.com/docs/onesignal-service-worker#custom-code-setup).
|
|
113
114
|
|
|
114
115
|
In this distribution, you can specify the parameters via the following:
|
|
115
116
|
|
|
@@ -124,7 +125,7 @@ In this distribution, you can specify the parameters via the following:
|
|
|
124
125
|
|
|
125
126
|
### Service Worker File
|
|
126
127
|
|
|
127
|
-
If you haven't done so already, you will need to add the [OneSignal Service Worker file](https://github.com/OneSignal/OneSignal-Website-SDK/files/11480764/OneSignalSDK-v16-ServiceWorker.zip) to your site ([learn more](https://documentation.onesignal.com/docs/
|
|
128
|
+
If you haven't done so already, you will need to add the [OneSignal Service Worker file](https://github.com/OneSignal/OneSignal-Website-SDK/files/11480764/OneSignalSDK-v16-ServiceWorker.zip) to your site ([learn more](https://documentation.onesignal.com/docs/onesignal-service-worker#upload-the-js-file-to-your-server)).
|
|
128
129
|
|
|
129
130
|
The OneSignal SDK file must be publicly accessible. You can put them in your top-level root or a subdirectory. However, if you are placing the file not on top-level root make sure to specify the path via the service worker params in the init options (see section above).
|
|
130
131
|
|
|
@@ -194,9 +195,7 @@ OneSignal.Notifications.addEventListener('click', (event) => {
|
|
|
194
195
|
});
|
|
195
196
|
```
|
|
196
197
|
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
See the [OneSignal WebSDK Reference](https://documentation.onesignal.com/docs/web-sdk-reference#addeventlistener-push-notification) for all available event listeners.
|
|
198
|
+
See the [OneSignal WebSDK Reference](https://documentation.onesignal.com/docs/web-sdk-reference#addeventlistener-notifications) for all available event listeners.
|
|
200
199
|
|
|
201
200
|
## Troubleshooting
|
|
202
201
|
|