├── .eslintrc.json ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── README.md ├── data ├── accountLinkingRequest.json ├── common.js ├── interactionModel.json ├── manifest_v0.json ├── manifest_v1.json ├── request.json └── responses.json ├── test_smapi_client.js └── utils ├── mockAdapter.js └── responses.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/node-alexa-smapi/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/node-alexa-smapi/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/node-alexa-smapi/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/node-alexa-smapi/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/node-alexa-smapi/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/node-alexa-smapi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/node-alexa-smapi/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/node-alexa-smapi/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/node-alexa-smapi/HEAD/package.json -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/node-alexa-smapi/HEAD/test/README.md -------------------------------------------------------------------------------- /test/data/accountLinkingRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/node-alexa-smapi/HEAD/test/data/accountLinkingRequest.json -------------------------------------------------------------------------------- /test/data/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/node-alexa-smapi/HEAD/test/data/common.js -------------------------------------------------------------------------------- /test/data/interactionModel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/node-alexa-smapi/HEAD/test/data/interactionModel.json -------------------------------------------------------------------------------- /test/data/manifest_v0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/node-alexa-smapi/HEAD/test/data/manifest_v0.json -------------------------------------------------------------------------------- /test/data/manifest_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/node-alexa-smapi/HEAD/test/data/manifest_v1.json -------------------------------------------------------------------------------- /test/data/request.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/node-alexa-smapi/HEAD/test/data/request.json -------------------------------------------------------------------------------- /test/data/responses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/node-alexa-smapi/HEAD/test/data/responses.json -------------------------------------------------------------------------------- /test/test_smapi_client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/node-alexa-smapi/HEAD/test/test_smapi_client.js -------------------------------------------------------------------------------- /test/utils/mockAdapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/node-alexa-smapi/HEAD/test/utils/mockAdapter.js -------------------------------------------------------------------------------- /test/utils/responses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tejashah88/node-alexa-smapi/HEAD/test/utils/responses.js --------------------------------------------------------------------------------