forked from rodtoll/isy-js
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Cleanup * Fixes * updated lerna config * v1.0.1-alpha.0 * publish fixes * Fixes * v1.0.1-alpha.1 * Minor fixes * Cleanup package.json * lerna config * v1.0.1-alpha.2 * Bugfix * v1.0.1-alpha.3 * temporary fixes * v1.0.1-alpha.4 * minor fix * v1.0.1-alpha.5 * added matter server as separate service * matter server updates * Add lerna.json to the staging area * chore(release): publish v1.0.1-alpha.6 * reccommit: 1 * reccommit: 1 * 1 * 1 * updated scope * various updates * Prepare for init server release * fixes * cleanup * various updates * cleanup * fixes * updated async logic for server.listen * chore(release): publish v1.0.1-alpha.11 * updates to auth * chore(release): publish v1.0.1-alpha.12 * auth fixes * chore(release): publish v1.0.1-alpha.13 * fixes * chore(release): publish v1.0.1-alpha.14 * remove xmldoc dep * remove xmldoc * chore(release): publish v1.0.1-alpha.15 * various fixes * chore(release): publish v1.0.1-alpha.16 * import fix * chore(release): publish v1.0.1-alpha.17 * Fixes * chore(release): publish v1.0.1-alpha.18 * cleanup * chore(release): publish v1.0.1-alpha.19 * version check cleanup * chore(release): publish v1.0.1-alpha.20 * fixes * chore(release): publish v1.0.1-alpha.21 * minor fixes * fixes * chore(release): publish v1.0.1-alpha.22 * updates to env. variable loading * chore(release): publish v1.0.1-alpha.23 * updated event handling logic for bridged device behavior * chore(release): publish v1.0.1-alpha.24 * src * chore(release): publish v1.0.1-alpha.25 * Fixes #1 * cleanup * chore(release): publish v1.0.1-alpha.26 * Mapping updates * chore(release): publish v1.0.1-alpha.27 * updates * chore(release): publish v1.0.1-alpha.28 * cleanup
- Loading branch information
1 parent
13f7e92
commit 0c348c1
Showing
1,327 changed files
with
17,127 additions
and
116,212 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
{ | ||
"ecmaFeatures": { | ||
"jsx": true, | ||
"experimentalObjectRestSpread": true, | ||
}, | ||
"parserOptions": { | ||
"ecmaVersion": 6, | ||
"sourceType": "module", | ||
"ecmaFeatures": { | ||
"jsx": true, | ||
}, | ||
}, | ||
"rules": { | ||
"@typescript-eslint/sort-type-constituents":"warn", | ||
"sort-keys": "warn", | ||
}, | ||
"plugins": [ | ||
"@typescript-eslint", | ||
], | ||
"ecmaFeatures": { | ||
"jsx": true, | ||
"experimentalObjectRestSpread": true, | ||
}, | ||
"parserOptions": { | ||
"ecmaVersion": 6, | ||
"sourceType": "module", | ||
"ecmaFeatures": { | ||
"jsx": true, | ||
}, | ||
}, | ||
"rules": { | ||
"@typescript-eslint/sort-type-constituents": "warn", | ||
"sort-keys": "warn", | ||
}, | ||
"plugins": [ | ||
"@typescript-eslint", | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
module.exports = { | ||
"env": { | ||
"browser": true, | ||
"es6": true | ||
}, | ||
"extends": "eslint:recommended", | ||
"parserOptions": { | ||
"sourceType": "module" | ||
}, | ||
"plugins": [ | ||
"@typescript-eslint", | ||
], | ||
"rules": { | ||
"indent": [ | ||
"warn", | ||
"tab" | ||
], | ||
"linebreak-style": [ | ||
"warn", | ||
"unix" | ||
], | ||
"quotes": [ | ||
"warn", | ||
"single" | ||
], | ||
"semi": [ | ||
"warn", | ||
"always" | ||
] | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
ISY_HOST_URL=eisy.local | ||
ISY_HOST_PORT=8080 | ||
ISY_USERNAME=admin | ||
ISY_PASSWORD=qazWSX12 | ||
ISY_HOST_PROTOCOL=http | ||
MATTER_PORT=5540 | ||
MATTER_VENDORID=65521 | ||
MATTER_PRODUCTID=32768 | ||
MATTER_DISCRIMINATOR=3840 | ||
MATTER_PASSCODE=20202021 | ||
WORKING_DIR= | ||
LOG_LEVEL=debug | ||
LOG_FILE=${WORKING_DIR}log/matter_server.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
ISY_HOST_URL=eisy.local | ||
ISY_HOST_PORT=8080 | ||
ISY_USERNAME=<--username--> | ||
ISY_PASSWORD=<--password--> | ||
ISY_HOST_PROTOCOL=http | ||
MATTER_PORT=5540 | ||
MATTER_VENDORID=65521 | ||
MATTER_PRODUCTID=32768 | ||
MATTER_DISCRIMINATOR=3840 | ||
MATTER_PASSCODE=20202021 | ||
WORKING_DIR= | ||
LOG_LEVEL=debug | ||
LOG_FILE=${WORKING_DIR}matter_server.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# `isy-matter-server` | ||
|
||
> TODO: description | ||
## Usage | ||
|
||
``` | ||
const isyMatterServer = require('isy-matter-server'); | ||
// TODO: DEMONSTRATE API | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
'use strict'; | ||
|
||
const isyMatterServer = require('..'); | ||
const assert = require('assert').strict; | ||
|
||
assert.strictEqual(isyMatterServer(), 'Hello from isyMatterServer'); | ||
console.info('isyMatterServer tests passed'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export declare function authenticate(credential: any): Promise<boolean>; | ||
//# sourceMappingURL=authenticate.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env node | ||
import './utils.js'; | ||
//# sourceMappingURL=server.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.