@optimiser/common 1.0.357 → 1.0.359
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/dist/lib/event.js +5 -1
- package/package.json +1 -1
package/dist/lib/event.js
CHANGED
|
@@ -100,12 +100,16 @@ var Event = /** @class */ (function () {
|
|
|
100
100
|
body: notificationDataObj.message
|
|
101
101
|
},
|
|
102
102
|
android: {
|
|
103
|
+
notification: {
|
|
104
|
+
sound: 'default' // added by komal Include the default sound for Android
|
|
105
|
+
},
|
|
103
106
|
priority: 'high' // You can set the priority to 'high' or 'normal' for Android
|
|
104
107
|
},
|
|
105
108
|
apns: {
|
|
106
109
|
payload: {
|
|
107
110
|
aps: {
|
|
108
|
-
contentAvailable: true
|
|
111
|
+
contentAvailable: true,
|
|
112
|
+
sound: 'default' // added by komal Include the default sound for iOS
|
|
109
113
|
}
|
|
110
114
|
}
|
|
111
115
|
},
|