Skip to content

Commit

Permalink
Fix node-alarm-dot-com imports (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
chase9 committed Feb 6, 2021
1 parent 8db428b commit 8b0191a
Show file tree
Hide file tree
Showing 3 changed files with 89 additions and 13 deletions.
88 changes: 81 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "homebridge-node-alarm-dot-com",
"version": "1.7.0",
"version": "1.7.1",
"description": "Alarm.com plugin for Homebridge using Node.js",
"author": {
"name": "Mike Kormendy",
Expand Down
12 changes: 7 additions & 5 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ import {
} from 'homebridge';

import fs from 'fs';
import {
GARAGE_STATES,
LIGHT_STATES,
LOCK_STATES,
SENSOR_STATES,
SYSTEM_STATES
} from 'node-alarm-dot-com/dist/_models/States';
import path from 'path';
import {
armAway,
Expand All @@ -25,11 +32,6 @@ import {
setLockSecure,
setLockUnsecure,
AuthOpts,
GARAGE_STATES,
LIGHT_STATES,
LOCK_STATES,
SENSOR_STATES,
SYSTEM_STATES,
GarageState,
LightState,
LockState,
Expand Down

0 comments on commit 8b0191a

Please sign in to comment.