New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

fritz-callmonitor

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fritz-callmonitor - npm Package Compare versions

Comparing version 3.1.3 to 3.1.4

8

lib/fritz-callmonitor.js

@@ -57,9 +57,9 @@ "use strict";

case EventKind.HangUp:
return Object.assign({}, res, { kind: eventKind, callDuration: parseInt(splitLines[3]) });
return Object.assign(Object.assign({}, res), { kind: eventKind, callDuration: parseInt(splitLines[3]) });
case EventKind.Call:
return Object.assign({}, res, { kind: eventKind, extension: splitLines[3], caller: splitLines[4], callee: splitLines[5] });
return Object.assign(Object.assign({}, res), { kind: eventKind, extension: splitLines[3], caller: splitLines[4], callee: splitLines[5] });
case EventKind.PickUp:
return Object.assign({}, res, { kind: eventKind, extension: splitLines[3], phoneNumber: splitLines[4] });
return Object.assign(Object.assign({}, res), { kind: eventKind, extension: splitLines[3], phoneNumber: splitLines[4] });
case EventKind.Ring:
return Object.assign({}, res, { kind: eventKind, caller: splitLines[3], callee: splitLines[4] });
return Object.assign(Object.assign({}, res), { kind: eventKind, caller: splitLines[3], callee: splitLines[4] });
}

@@ -66,0 +66,0 @@ }

{
"name": "fritz-callmonitor",
"version": "3.1.3",
"version": "3.1.4",
"description": "Provides a TypeScript Node.js wrapper for the call monitor api of the AVM Fritz!Box.",

@@ -17,5 +17,5 @@ "main": "lib/index.js",

"devDependencies": {
"@types/node": "^11.13.6",
"rimraf": "^2.6.3",
"typescript": "^3.4.4"
"@types/node": "^12.7.3",
"rimraf": "^3.0.0",
"typescript": "^3.6.2"
},

@@ -22,0 +22,0 @@ "scripts": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc