Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for HVAC on/off. #9

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .babelrc

This file was deleted.

4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,9 @@ node_modules
# Source maps
maps

# Release directory
release

# Sample Secrets
sample/secrets.json
sample/*.js

# TypeScript Definitions
typings
37 changes: 0 additions & 37 deletions .vscode/launch.json

This file was deleted.

11 changes: 11 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"release/*.js": true,
"release": true
}
}
10 changes: 10 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "tsc",
"isShellCommand": true,
"args": ["-p", "."],
"showOutput": "silent",
"problemMatcher": "$tsc"
}
53 changes: 0 additions & 53 deletions gulpfile.babel.js

This file was deleted.

9 changes: 0 additions & 9 deletions jsconfig.json

This file was deleted.

26 changes: 9 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,25 @@
{
"name": "carwings2",
"version": "1.0.1",
"version": "1.0.2",
"description": "A Node.js client library for the Nissan Leaf \"Carwings\" API",
"main": "release/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/philliphoff/carwings2.git"
"url": "git+https://github.com/sirfergy/carwings2.git"
},
"author": "Phillip Hoff",
"license": "MIT",
"bugs": {
"url": "https://github.com/philliphoff/carwings2/issues"
"url": "https://github.com/sirfergy/carwings2/issues"
},
"homepage": "https://github.com/philliphoff/carwings2#readme",
"homepage": "https://github.com/sirfergy/carwings2#readme",
"devDependencies": {
"babel-core": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"del": "^2.2.0",
"gulp": "^3.9.1",
"gulp-sourcemaps": "^2.0.0-alpha",
"gulp-tslint": "^5.0.0",
"gulp-typescript": "^2.13.1",
"tslint": "^3.9.0",
"typings": "^0.8.1"
"tslint": "^5.4.3",
"typings": "^2.1.1",
"typescript": "^2.3.4"
},
"dependencies": {
"request": "^2.72.0"
"crypto": "0.0.3",
"request": "^2.81.0"
}
}
144 changes: 144 additions & 0 deletions release/Api.js

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

1 change: 1 addition & 0 deletions release/Api.js.map

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

Loading