├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── images ├── enter_data.png ├── select_addons.png ├── select_configure.png └── select_settings.png ├── index.js ├── manifest.json ├── package.json ├── package.sh └── thing-url-adapter.js /.eslintignore: -------------------------------------------------------------------------------- 1 | /.eslintrc.js 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/thing-url-adapter/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/thing-url-adapter/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/thing-url-adapter/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/thing-url-adapter/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/thing-url-adapter/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/thing-url-adapter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/thing-url-adapter/HEAD/README.md -------------------------------------------------------------------------------- /images/enter_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/thing-url-adapter/HEAD/images/enter_data.png -------------------------------------------------------------------------------- /images/select_addons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/thing-url-adapter/HEAD/images/select_addons.png -------------------------------------------------------------------------------- /images/select_configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/thing-url-adapter/HEAD/images/select_configure.png -------------------------------------------------------------------------------- /images/select_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/thing-url-adapter/HEAD/images/select_settings.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/thing-url-adapter/HEAD/index.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/thing-url-adapter/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/thing-url-adapter/HEAD/package.json -------------------------------------------------------------------------------- /package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/thing-url-adapter/HEAD/package.sh -------------------------------------------------------------------------------- /thing-url-adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebThingsIO/thing-url-adapter/HEAD/thing-url-adapter.js --------------------------------------------------------------------------------