Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

homebridge-fordpass

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

homebridge-fordpass - npm Package Compare versions

Comparing version 1.8.0 to 1.8.1-test.0

4

dist/fordpass.js

@@ -74,3 +74,5 @@ "use strict";

catch (error) {
this.log.error(`Status failed with error: ${error.code || error.response.status}`);
if (error.code !== 'ETIMEDOUT') {
this.log.error(`Status failed with error: ${error.code || error.response.status}`);
}
}

@@ -77,0 +79,0 @@ finally {

@@ -265,5 +265,8 @@ "use strict";

const status = yield vehicle.status();
if (!status) {
return;
}
this.log.debug(`Updating info for ${vehicle.name}`);
this.log.debug(`Vehicle Status : ${JSON.stringify(status, null, 2)}`);
const lockStatus = status === null || status === void 0 ? void 0 : status.lockStatus.value;
const lockStatus = status.lockStatus.value;
let lockNumber = hap.Characteristic.LockCurrentState.UNSECURED;

@@ -273,3 +276,3 @@ if (lockStatus === 'LOCKED') {

}
const engineStatus = (status === null || status === void 0 ? void 0 : status.remoteStartStatus.value) || 0;
const engineStatus = status.remoteStartStatus.value || 0;
let started = false;

@@ -276,0 +279,0 @@ if (engineStatus > 0) {

{
"displayName": "Homebridge FordPass",
"name": "homebridge-fordpass",
"version": "1.8.0",
"version": "1.8.1-test.0",
"description": "Fordpass plugin for homebridge: https://homebridge.io/",

@@ -6,0 +6,0 @@ "main": "dist/index.js",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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