├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ ├── feature-request.md │ └── support-request.md └── workflows │ └── build.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config.schema.json ├── nodemon.json ├── package.json ├── src ├── PollingService.ts ├── SynologyAccessory.ts └── syno.d.ts └── tsconfig.json /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfnhmplr/homebridge-synology/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfnhmplr/homebridge-synology/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfnhmplr/homebridge-synology/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfnhmplr/homebridge-synology/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfnhmplr/homebridge-synology/HEAD/.github/ISSUE_TEMPLATE/support-request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfnhmplr/homebridge-synology/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfnhmplr/homebridge-synology/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfnhmplr/homebridge-synology/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfnhmplr/homebridge-synology/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfnhmplr/homebridge-synology/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfnhmplr/homebridge-synology/HEAD/README.md -------------------------------------------------------------------------------- /config.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfnhmplr/homebridge-synology/HEAD/config.schema.json -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfnhmplr/homebridge-synology/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfnhmplr/homebridge-synology/HEAD/package.json -------------------------------------------------------------------------------- /src/PollingService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfnhmplr/homebridge-synology/HEAD/src/PollingService.ts -------------------------------------------------------------------------------- /src/SynologyAccessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfnhmplr/homebridge-synology/HEAD/src/SynologyAccessory.ts -------------------------------------------------------------------------------- /src/syno.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'syno'; 2 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stfnhmplr/homebridge-synology/HEAD/tsconfig.json --------------------------------------------------------------------------------