├── .gitignore ├── Config ├── LICENSE.txt ├── NOTICE ├── README.md ├── server ├── .gitignore ├── README.md ├── client │ ├── demo.css │ ├── index.html │ ├── index.js │ ├── sessionStore.js │ ├── webrtc.js │ └── websocketHandler.js ├── package.json └── src │ ├── alexa.js │ ├── routes.js │ ├── server.js │ └── webapp.js └── skill ├── lambda ├── index.js ├── languageStrings.js ├── package.json └── util.js └── skill-package ├── images ├── de-DE_largeIconUri.png ├── de-DE_smallIconUri.png ├── en-GB_largeIconUri.png ├── en-GB_smallIconUri.png ├── en-US_largeIconUri.png ├── en-US_smallIconUri.png ├── es-ES_largeIconUri.png ├── es-ES_smallIconUri.png ├── fr-FR_largeIconUri.png ├── fr-FR_smallIconUri.png ├── it-IT_largeIconUri.png └── it-IT_smallIconUri.png ├── interactionModels └── custom │ ├── de-DE.json │ ├── en-GB.json │ ├── en-US.json │ ├── es-ES.json │ ├── es-US.json │ ├── fr-CA.json │ ├── fr-FR.json │ └── it-IT.json └── skill.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/.gitignore -------------------------------------------------------------------------------- /Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/Config -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/README.md -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | package-lock.json -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/server/README.md -------------------------------------------------------------------------------- /server/client/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/server/client/demo.css -------------------------------------------------------------------------------- /server/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/server/client/index.html -------------------------------------------------------------------------------- /server/client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/server/client/index.js -------------------------------------------------------------------------------- /server/client/sessionStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/server/client/sessionStore.js -------------------------------------------------------------------------------- /server/client/webrtc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/server/client/webrtc.js -------------------------------------------------------------------------------- /server/client/websocketHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/server/client/websocketHandler.js -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/alexa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/server/src/alexa.js -------------------------------------------------------------------------------- /server/src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/server/src/routes.js -------------------------------------------------------------------------------- /server/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/server/src/server.js -------------------------------------------------------------------------------- /server/src/webapp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/server/src/webapp.js -------------------------------------------------------------------------------- /skill/lambda/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/lambda/index.js -------------------------------------------------------------------------------- /skill/lambda/languageStrings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/lambda/languageStrings.js -------------------------------------------------------------------------------- /skill/lambda/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/lambda/package.json -------------------------------------------------------------------------------- /skill/lambda/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/lambda/util.js -------------------------------------------------------------------------------- /skill/skill-package/images/de-DE_largeIconUri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/skill-package/images/de-DE_largeIconUri.png -------------------------------------------------------------------------------- /skill/skill-package/images/de-DE_smallIconUri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/skill-package/images/de-DE_smallIconUri.png -------------------------------------------------------------------------------- /skill/skill-package/images/en-GB_largeIconUri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/skill-package/images/en-GB_largeIconUri.png -------------------------------------------------------------------------------- /skill/skill-package/images/en-GB_smallIconUri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/skill-package/images/en-GB_smallIconUri.png -------------------------------------------------------------------------------- /skill/skill-package/images/en-US_largeIconUri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/skill-package/images/en-US_largeIconUri.png -------------------------------------------------------------------------------- /skill/skill-package/images/en-US_smallIconUri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/skill-package/images/en-US_smallIconUri.png -------------------------------------------------------------------------------- /skill/skill-package/images/es-ES_largeIconUri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/skill-package/images/es-ES_largeIconUri.png -------------------------------------------------------------------------------- /skill/skill-package/images/es-ES_smallIconUri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/skill-package/images/es-ES_smallIconUri.png -------------------------------------------------------------------------------- /skill/skill-package/images/fr-FR_largeIconUri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/skill-package/images/fr-FR_largeIconUri.png -------------------------------------------------------------------------------- /skill/skill-package/images/fr-FR_smallIconUri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/skill-package/images/fr-FR_smallIconUri.png -------------------------------------------------------------------------------- /skill/skill-package/images/it-IT_largeIconUri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/skill-package/images/it-IT_largeIconUri.png -------------------------------------------------------------------------------- /skill/skill-package/images/it-IT_smallIconUri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/skill-package/images/it-IT_smallIconUri.png -------------------------------------------------------------------------------- /skill/skill-package/interactionModels/custom/de-DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/skill-package/interactionModels/custom/de-DE.json -------------------------------------------------------------------------------- /skill/skill-package/interactionModels/custom/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/skill-package/interactionModels/custom/en-GB.json -------------------------------------------------------------------------------- /skill/skill-package/interactionModels/custom/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/skill-package/interactionModels/custom/en-US.json -------------------------------------------------------------------------------- /skill/skill-package/interactionModels/custom/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/skill-package/interactionModels/custom/es-ES.json -------------------------------------------------------------------------------- /skill/skill-package/interactionModels/custom/es-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/skill-package/interactionModels/custom/es-US.json -------------------------------------------------------------------------------- /skill/skill-package/interactionModels/custom/fr-CA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/skill-package/interactionModels/custom/fr-CA.json -------------------------------------------------------------------------------- /skill/skill-package/interactionModels/custom/fr-FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/skill-package/interactionModels/custom/fr-FR.json -------------------------------------------------------------------------------- /skill/skill-package/interactionModels/custom/it-IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/skill-package/interactionModels/custom/it-IT.json -------------------------------------------------------------------------------- /skill/skill-package/skill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexa-smart-properties/skill-sample-for-webrtc-asp/HEAD/skill/skill-package/skill.json --------------------------------------------------------------------------------