🚀. Socket Launch Week Day 3:Socket Firewall Now Blocks Malicious VS Code and Open VSX Extensions.Learn more
Sign In

@superhuman/push-receiver

Package Overview
Dependencies
Maintainers
7
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@superhuman/push-receiver - npm Package Compare versions

Comparing version
1.1.13
to
1.1.14
+1
-1
package.json
{
"name": "@superhuman/push-receiver",
"version": "1.1.13",
"version": "1.1.14",
"description": "A module to subscribe to GCM/FCM and receive notifications within a node process.",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -55,2 +55,6 @@ const EventEmitter = require('events');

getPersistentIds() {
return this._persistentIds
}
async _checkIn() {

@@ -185,7 +189,6 @@ return checkIn(this._credentials.gcm.androidId, this._credentials.gcm.securityToken);

this.emit('ON_NOTIFICATION_RECEIVED', {
client: this,
notification : message,
// Needs to be saved by the client
persistentId : object.persistentId,
});
}
};