├── .codeclimate.yml ├── .editorconfig ├── .gitignore ├── .ignore ├── .npmignore ├── .nvmrc ├── .nycrc ├── .snyk ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── Makefile ├── README.md ├── _config.yml ├── docs ├── _static │ └── .gitignore ├── alexa-apis.rst ├── alexa-directives.rst ├── alexa-event.rst ├── alexa-reply.rst ├── botframework-directives.rst ├── botframework-event.rst ├── canFulfillIntentRequest.rst ├── conf.py ├── controllers.rst ├── debugging.rst ├── dialogflow-events.rst ├── dialogflow-platforms.rst ├── gadgetController.rst ├── gameEngine.rst ├── google-assistant-directives.rst ├── google-sign-in.rst ├── index.rst ├── lwa.rst ├── models.rst ├── mvc-description.png ├── mvc-description.rst ├── new-alexa-user.rst ├── plugins.rst ├── request-flow.png ├── request-flow.rst ├── transition.rst ├── views-and-variables.rst ├── voxa-app.rst ├── voxa-event.rst ├── voxa-platform.rst └── voxa-reply.rst ├── hello-world ├── .gitignore ├── HelloWorldHttpTrigger │ ├── function.json │ ├── index.js │ └── sample.dat ├── alexa-model.json ├── dialogflowmodel │ ├── agent.json │ ├── intents │ │ ├── Default Fallback Intent.json │ │ ├── Default Welcome Intent.json │ │ ├── Default Welcome Intent_usersays_en.json │ │ ├── NoIntent.json │ │ ├── NoIntent_usersays_en.json │ │ ├── UserIdIntent.json │ │ ├── YesIntent.json │ │ └── YesIntent_usersays_en.json │ └── package.json ├── hello-world.js ├── hello-world.spec.js ├── host.json ├── package.json ├── views.json └── yarn.lock ├── package.json ├── run-ci.sh ├── src ├── Model.ts ├── StateMachine │ ├── State.ts │ ├── StateMachine.ts │ ├── index.ts │ └── transitions.ts ├── VoxaApp.ts ├── VoxaEvent.ts ├── VoxaReply.ts ├── azure.ts ├── directives.ts ├── errors │ ├── NotImplementedError.ts │ ├── OnSessionEndedError.ts │ ├── SSMLError.ts │ ├── TimeoutError.ts │ ├── handler.ts │ └── index.ts ├── index.ts ├── lambda.ts ├── platforms │ ├── VoxaPlatform.ts │ ├── alexa │ │ ├── AlexaEvent.ts │ │ ├── AlexaIntent.ts │ │ ├── AlexaPlatform.ts │ │ ├── AlexaReply.ts │ │ ├── DisplayTemplateBuilder.ts │ │ ├── GadgetController.ts │ │ ├── GameEngine.ts │ │ ├── apis │ │ │ ├── ApiBase.ts │ │ │ ├── AuthenticationBase.ts │ │ │ ├── CustomerContact.ts │ │ │ ├── DeviceAddress.ts │ │ │ ├── DeviceBase.ts │ │ │ ├── DeviceSettings.ts │ │ │ ├── InSkillPurchase.ts │ │ │ ├── Lists.ts │ │ │ ├── Messaging.ts │ │ │ ├── ProactiveEvents.ts │ │ │ ├── Reminders.ts │ │ │ ├── index.ts │ │ │ └── proactiveEventBuilders │ │ │ │ ├── EventBuilder.ts │ │ │ │ ├── MediaContentEventBuilder.ts │ │ │ │ ├── MessageAlertEventBuilder.ts │ │ │ │ ├── OccasionEventBuilder.ts │ │ │ │ ├── OrderStatusEventBuilder.ts │ │ │ │ ├── SocialGameInviteEventBuilder.ts │ │ │ │ ├── SportsEventBuilder.ts │ │ │ │ ├── TrashCollectionAlertEventBuilder.ts │ │ │ │ ├── WeatherAlertEventBuilder.ts │ │ │ │ └── index.ts │ │ ├── directives.ts │ │ ├── index.ts │ │ └── utils.ts │ ├── botframework │ │ ├── BotFrameworkEvent.ts │ │ ├── BotFrameworkInterfaces.ts │ │ ├── BotFrameworkPlatform.ts │ │ ├── BotFrameworkReply.ts │ │ ├── directives.ts │ │ └── index.ts │ ├── create-server.ts │ ├── dialogflow │ │ ├── DialogflowEvent.ts │ │ ├── DialogflowIntent.ts │ │ ├── DialogflowPlatform.ts │ │ ├── DialogflowReply.ts │ │ ├── DialogflowSession.ts │ │ ├── facebook │ │ │ ├── FacebookEvent.ts │ │ │ ├── FacebookPlatform.ts │ │ │ ├── FacebookReply.ts │ │ │ ├── builders │ │ │ │ ├── FacebookButtonTemplateBuilder.ts │ │ │ │ ├── FacebookElementTemplateBuilder.ts │ │ │ │ ├── FacebookTemplateBuilder.ts │ │ │ │ └── index.ts │ │ │ └── directives.ts │ │ ├── google │ │ │ ├── GoogleAssistantEvent.ts │ │ │ ├── GoogleAssistantPlatform.ts │ │ │ ├── apis │ │ │ │ ├── ApiBase.ts │ │ │ │ ├── DigitalGoods.ts │ │ │ │ ├── ITransactionOptions.ts │ │ │ │ └── index.ts │ │ │ └── directives.ts │ │ └── index.ts │ └── index.ts ├── plugins │ ├── auto-load.ts │ ├── index.ts │ ├── replace-intent.ts │ ├── s3-persistence.ts │ └── state-flow.ts └── renderers │ └── Renderer.ts ├── test ├── Gadgets.spec.ts ├── Renderer.spec.ts ├── StateMachineSkillDirectives.spec.ts ├── StateMachineSkillHelp.spec.ts ├── States.spec.ts ├── VoxaApp.spec.ts ├── VoxaPlatform.spec.ts ├── VoxaReply.spec.ts ├── alexa │ ├── AlexaEvent.spec.ts │ ├── AlexaPlatform.spec.ts │ ├── AlexaReply.spec.ts │ ├── CustomerContact.spec.ts │ ├── DeviceAddress.spec.ts │ ├── DeviceSettings.spec.ts │ ├── DisplayTemplate.spec.ts │ ├── InSkillPurchase.spec.ts │ ├── Lists.spec.ts │ ├── Messaging.spec.ts │ ├── ProactiveEvents.spec.ts │ ├── Reminders.spec.ts │ └── directives.spec.ts ├── botframework │ ├── BotFrameworkEvent.spec.ts │ ├── BotFrameworkPlatform.spec.ts │ ├── BotFrameworkReply.spec.ts │ └── directives.spec.ts ├── create-server.spec.ts ├── dialogflow │ ├── DialogflowEvent.spec.ts │ ├── DialogflowPlatform.spec.ts │ ├── DialogflowReply.spec.ts │ ├── facebook │ │ ├── FacebookUserInformation.spec.ts │ │ └── directives.spec.ts │ └── google │ │ ├── DigitalGoods.spec.ts │ │ ├── directives.spec.ts │ │ └── order.json ├── directives.spec.ts ├── e2e │ ├── alexa.spec.ts │ └── dialogflow.spec.ts ├── mocha.opts ├── plugins │ ├── auto-load.spec.ts │ ├── autoLoadAdapter.ts │ ├── replace-intent.spec.ts │ ├── s3-persistence.spec.ts │ └── state-flow.spec.ts ├── requests │ ├── alexa │ │ └── launchRequest.json │ ├── botframework │ │ ├── StaintIntent.json │ │ ├── conversationUpdate.json │ │ ├── endOfRequest.json │ │ ├── luis.json │ │ └── microsoft.launch.json │ └── dialogflow │ │ ├── actions.intent.COMPLETE_PURCHASE.json │ │ ├── actions.intent.CONFIRMATION.json │ │ ├── actions.intent.DATETIME.json │ │ ├── actions.intent.MEDIA_STATUS.json │ │ ├── actions.intent.NEW_SURFACE.json │ │ ├── actions.intent.OPTION.json │ │ ├── actions.intent.PERMISSION.json │ │ ├── actions.intent.PLACE.json │ │ ├── actions.intent.SIGN_IN.json │ │ ├── buyProductIntent.json │ │ ├── client_secret_test.json │ │ ├── facebookButtonTemplatePayload.json │ │ ├── facebookCarouselPayload.json │ │ ├── facebookLaunchIntent.json │ │ ├── facebookListPayload.json │ │ ├── facebookOpenGraphTemplatePayload.json │ │ ├── helpIntent.json │ │ ├── itemsInPlayStore.json │ │ ├── lambdaProxyLaunchIntent.json │ │ ├── launchIntent.json │ │ └── slots.json ├── tools.ts ├── variables.ts └── views.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/.gitignore -------------------------------------------------------------------------------- /.ignore: -------------------------------------------------------------------------------- 1 | lib/* 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v8.10 2 | -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/.nycrc -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/.snyk -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/_config.yml -------------------------------------------------------------------------------- /docs/_static/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/alexa-apis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/alexa-apis.rst -------------------------------------------------------------------------------- /docs/alexa-directives.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/alexa-directives.rst -------------------------------------------------------------------------------- /docs/alexa-event.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/alexa-event.rst -------------------------------------------------------------------------------- /docs/alexa-reply.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/alexa-reply.rst -------------------------------------------------------------------------------- /docs/botframework-directives.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/botframework-directives.rst -------------------------------------------------------------------------------- /docs/botframework-event.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/botframework-event.rst -------------------------------------------------------------------------------- /docs/canFulfillIntentRequest.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/canFulfillIntentRequest.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/controllers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/controllers.rst -------------------------------------------------------------------------------- /docs/debugging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/debugging.rst -------------------------------------------------------------------------------- /docs/dialogflow-events.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/dialogflow-events.rst -------------------------------------------------------------------------------- /docs/dialogflow-platforms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/dialogflow-platforms.rst -------------------------------------------------------------------------------- /docs/gadgetController.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/gadgetController.rst -------------------------------------------------------------------------------- /docs/gameEngine.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/gameEngine.rst -------------------------------------------------------------------------------- /docs/google-assistant-directives.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/google-assistant-directives.rst -------------------------------------------------------------------------------- /docs/google-sign-in.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/google-sign-in.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/lwa.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/lwa.rst -------------------------------------------------------------------------------- /docs/models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/models.rst -------------------------------------------------------------------------------- /docs/mvc-description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/mvc-description.png -------------------------------------------------------------------------------- /docs/mvc-description.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/mvc-description.rst -------------------------------------------------------------------------------- /docs/new-alexa-user.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/new-alexa-user.rst -------------------------------------------------------------------------------- /docs/plugins.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/plugins.rst -------------------------------------------------------------------------------- /docs/request-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/request-flow.png -------------------------------------------------------------------------------- /docs/request-flow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/request-flow.rst -------------------------------------------------------------------------------- /docs/transition.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/transition.rst -------------------------------------------------------------------------------- /docs/views-and-variables.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/views-and-variables.rst -------------------------------------------------------------------------------- /docs/voxa-app.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/voxa-app.rst -------------------------------------------------------------------------------- /docs/voxa-event.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/voxa-event.rst -------------------------------------------------------------------------------- /docs/voxa-platform.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/voxa-platform.rst -------------------------------------------------------------------------------- /docs/voxa-reply.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/docs/voxa-reply.rst -------------------------------------------------------------------------------- /hello-world/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/hello-world/.gitignore -------------------------------------------------------------------------------- /hello-world/HelloWorldHttpTrigger/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/hello-world/HelloWorldHttpTrigger/function.json -------------------------------------------------------------------------------- /hello-world/HelloWorldHttpTrigger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/hello-world/HelloWorldHttpTrigger/index.js -------------------------------------------------------------------------------- /hello-world/HelloWorldHttpTrigger/sample.dat: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Azure" 3 | } -------------------------------------------------------------------------------- /hello-world/alexa-model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/hello-world/alexa-model.json -------------------------------------------------------------------------------- /hello-world/dialogflowmodel/agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/hello-world/dialogflowmodel/agent.json -------------------------------------------------------------------------------- /hello-world/dialogflowmodel/intents/Default Fallback Intent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/hello-world/dialogflowmodel/intents/Default Fallback Intent.json -------------------------------------------------------------------------------- /hello-world/dialogflowmodel/intents/Default Welcome Intent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/hello-world/dialogflowmodel/intents/Default Welcome Intent.json -------------------------------------------------------------------------------- /hello-world/dialogflowmodel/intents/Default Welcome Intent_usersays_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/hello-world/dialogflowmodel/intents/Default Welcome Intent_usersays_en.json -------------------------------------------------------------------------------- /hello-world/dialogflowmodel/intents/NoIntent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/hello-world/dialogflowmodel/intents/NoIntent.json -------------------------------------------------------------------------------- /hello-world/dialogflowmodel/intents/NoIntent_usersays_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/hello-world/dialogflowmodel/intents/NoIntent_usersays_en.json -------------------------------------------------------------------------------- /hello-world/dialogflowmodel/intents/UserIdIntent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/hello-world/dialogflowmodel/intents/UserIdIntent.json -------------------------------------------------------------------------------- /hello-world/dialogflowmodel/intents/YesIntent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/hello-world/dialogflowmodel/intents/YesIntent.json -------------------------------------------------------------------------------- /hello-world/dialogflowmodel/intents/YesIntent_usersays_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/hello-world/dialogflowmodel/intents/YesIntent_usersays_en.json -------------------------------------------------------------------------------- /hello-world/dialogflowmodel/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.0" 3 | } -------------------------------------------------------------------------------- /hello-world/hello-world.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/hello-world/hello-world.js -------------------------------------------------------------------------------- /hello-world/hello-world.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/hello-world/hello-world.spec.js -------------------------------------------------------------------------------- /hello-world/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/hello-world/host.json -------------------------------------------------------------------------------- /hello-world/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/hello-world/package.json -------------------------------------------------------------------------------- /hello-world/views.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/hello-world/views.json -------------------------------------------------------------------------------- /hello-world/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/hello-world/yarn.lock -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/package.json -------------------------------------------------------------------------------- /run-ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/run-ci.sh -------------------------------------------------------------------------------- /src/Model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/Model.ts -------------------------------------------------------------------------------- /src/StateMachine/State.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/StateMachine/State.ts -------------------------------------------------------------------------------- /src/StateMachine/StateMachine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/StateMachine/StateMachine.ts -------------------------------------------------------------------------------- /src/StateMachine/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/StateMachine/index.ts -------------------------------------------------------------------------------- /src/StateMachine/transitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/StateMachine/transitions.ts -------------------------------------------------------------------------------- /src/VoxaApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/VoxaApp.ts -------------------------------------------------------------------------------- /src/VoxaEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/VoxaEvent.ts -------------------------------------------------------------------------------- /src/VoxaReply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/VoxaReply.ts -------------------------------------------------------------------------------- /src/azure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/azure.ts -------------------------------------------------------------------------------- /src/directives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/directives.ts -------------------------------------------------------------------------------- /src/errors/NotImplementedError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/errors/NotImplementedError.ts -------------------------------------------------------------------------------- /src/errors/OnSessionEndedError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/errors/OnSessionEndedError.ts -------------------------------------------------------------------------------- /src/errors/SSMLError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/errors/SSMLError.ts -------------------------------------------------------------------------------- /src/errors/TimeoutError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/errors/TimeoutError.ts -------------------------------------------------------------------------------- /src/errors/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/errors/handler.ts -------------------------------------------------------------------------------- /src/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/errors/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lambda.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/lambda.ts -------------------------------------------------------------------------------- /src/platforms/VoxaPlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/VoxaPlatform.ts -------------------------------------------------------------------------------- /src/platforms/alexa/AlexaEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/AlexaEvent.ts -------------------------------------------------------------------------------- /src/platforms/alexa/AlexaIntent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/AlexaIntent.ts -------------------------------------------------------------------------------- /src/platforms/alexa/AlexaPlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/AlexaPlatform.ts -------------------------------------------------------------------------------- /src/platforms/alexa/AlexaReply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/AlexaReply.ts -------------------------------------------------------------------------------- /src/platforms/alexa/DisplayTemplateBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/DisplayTemplateBuilder.ts -------------------------------------------------------------------------------- /src/platforms/alexa/GadgetController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/GadgetController.ts -------------------------------------------------------------------------------- /src/platforms/alexa/GameEngine.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/GameEngine.ts -------------------------------------------------------------------------------- /src/platforms/alexa/apis/ApiBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/apis/ApiBase.ts -------------------------------------------------------------------------------- /src/platforms/alexa/apis/AuthenticationBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/apis/AuthenticationBase.ts -------------------------------------------------------------------------------- /src/platforms/alexa/apis/CustomerContact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/apis/CustomerContact.ts -------------------------------------------------------------------------------- /src/platforms/alexa/apis/DeviceAddress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/apis/DeviceAddress.ts -------------------------------------------------------------------------------- /src/platforms/alexa/apis/DeviceBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/apis/DeviceBase.ts -------------------------------------------------------------------------------- /src/platforms/alexa/apis/DeviceSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/apis/DeviceSettings.ts -------------------------------------------------------------------------------- /src/platforms/alexa/apis/InSkillPurchase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/apis/InSkillPurchase.ts -------------------------------------------------------------------------------- /src/platforms/alexa/apis/Lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/apis/Lists.ts -------------------------------------------------------------------------------- /src/platforms/alexa/apis/Messaging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/apis/Messaging.ts -------------------------------------------------------------------------------- /src/platforms/alexa/apis/ProactiveEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/apis/ProactiveEvents.ts -------------------------------------------------------------------------------- /src/platforms/alexa/apis/Reminders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/apis/Reminders.ts -------------------------------------------------------------------------------- /src/platforms/alexa/apis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/apis/index.ts -------------------------------------------------------------------------------- /src/platforms/alexa/apis/proactiveEventBuilders/EventBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/apis/proactiveEventBuilders/EventBuilder.ts -------------------------------------------------------------------------------- /src/platforms/alexa/apis/proactiveEventBuilders/MediaContentEventBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/apis/proactiveEventBuilders/MediaContentEventBuilder.ts -------------------------------------------------------------------------------- /src/platforms/alexa/apis/proactiveEventBuilders/MessageAlertEventBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/apis/proactiveEventBuilders/MessageAlertEventBuilder.ts -------------------------------------------------------------------------------- /src/platforms/alexa/apis/proactiveEventBuilders/OccasionEventBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/apis/proactiveEventBuilders/OccasionEventBuilder.ts -------------------------------------------------------------------------------- /src/platforms/alexa/apis/proactiveEventBuilders/OrderStatusEventBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/apis/proactiveEventBuilders/OrderStatusEventBuilder.ts -------------------------------------------------------------------------------- /src/platforms/alexa/apis/proactiveEventBuilders/SocialGameInviteEventBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/apis/proactiveEventBuilders/SocialGameInviteEventBuilder.ts -------------------------------------------------------------------------------- /src/platforms/alexa/apis/proactiveEventBuilders/SportsEventBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/apis/proactiveEventBuilders/SportsEventBuilder.ts -------------------------------------------------------------------------------- /src/platforms/alexa/apis/proactiveEventBuilders/TrashCollectionAlertEventBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/apis/proactiveEventBuilders/TrashCollectionAlertEventBuilder.ts -------------------------------------------------------------------------------- /src/platforms/alexa/apis/proactiveEventBuilders/WeatherAlertEventBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/apis/proactiveEventBuilders/WeatherAlertEventBuilder.ts -------------------------------------------------------------------------------- /src/platforms/alexa/apis/proactiveEventBuilders/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/apis/proactiveEventBuilders/index.ts -------------------------------------------------------------------------------- /src/platforms/alexa/directives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/directives.ts -------------------------------------------------------------------------------- /src/platforms/alexa/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/index.ts -------------------------------------------------------------------------------- /src/platforms/alexa/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/alexa/utils.ts -------------------------------------------------------------------------------- /src/platforms/botframework/BotFrameworkEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/botframework/BotFrameworkEvent.ts -------------------------------------------------------------------------------- /src/platforms/botframework/BotFrameworkInterfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/botframework/BotFrameworkInterfaces.ts -------------------------------------------------------------------------------- /src/platforms/botframework/BotFrameworkPlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/botframework/BotFrameworkPlatform.ts -------------------------------------------------------------------------------- /src/platforms/botframework/BotFrameworkReply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/botframework/BotFrameworkReply.ts -------------------------------------------------------------------------------- /src/platforms/botframework/directives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/botframework/directives.ts -------------------------------------------------------------------------------- /src/platforms/botframework/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/botframework/index.ts -------------------------------------------------------------------------------- /src/platforms/create-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/create-server.ts -------------------------------------------------------------------------------- /src/platforms/dialogflow/DialogflowEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/dialogflow/DialogflowEvent.ts -------------------------------------------------------------------------------- /src/platforms/dialogflow/DialogflowIntent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/dialogflow/DialogflowIntent.ts -------------------------------------------------------------------------------- /src/platforms/dialogflow/DialogflowPlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/dialogflow/DialogflowPlatform.ts -------------------------------------------------------------------------------- /src/platforms/dialogflow/DialogflowReply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/dialogflow/DialogflowReply.ts -------------------------------------------------------------------------------- /src/platforms/dialogflow/DialogflowSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/dialogflow/DialogflowSession.ts -------------------------------------------------------------------------------- /src/platforms/dialogflow/facebook/FacebookEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/dialogflow/facebook/FacebookEvent.ts -------------------------------------------------------------------------------- /src/platforms/dialogflow/facebook/FacebookPlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/dialogflow/facebook/FacebookPlatform.ts -------------------------------------------------------------------------------- /src/platforms/dialogflow/facebook/FacebookReply.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/dialogflow/facebook/FacebookReply.ts -------------------------------------------------------------------------------- /src/platforms/dialogflow/facebook/builders/FacebookButtonTemplateBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/dialogflow/facebook/builders/FacebookButtonTemplateBuilder.ts -------------------------------------------------------------------------------- /src/platforms/dialogflow/facebook/builders/FacebookElementTemplateBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/dialogflow/facebook/builders/FacebookElementTemplateBuilder.ts -------------------------------------------------------------------------------- /src/platforms/dialogflow/facebook/builders/FacebookTemplateBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/dialogflow/facebook/builders/FacebookTemplateBuilder.ts -------------------------------------------------------------------------------- /src/platforms/dialogflow/facebook/builders/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/dialogflow/facebook/builders/index.ts -------------------------------------------------------------------------------- /src/platforms/dialogflow/facebook/directives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/dialogflow/facebook/directives.ts -------------------------------------------------------------------------------- /src/platforms/dialogflow/google/GoogleAssistantEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/dialogflow/google/GoogleAssistantEvent.ts -------------------------------------------------------------------------------- /src/platforms/dialogflow/google/GoogleAssistantPlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/dialogflow/google/GoogleAssistantPlatform.ts -------------------------------------------------------------------------------- /src/platforms/dialogflow/google/apis/ApiBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/dialogflow/google/apis/ApiBase.ts -------------------------------------------------------------------------------- /src/platforms/dialogflow/google/apis/DigitalGoods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/dialogflow/google/apis/DigitalGoods.ts -------------------------------------------------------------------------------- /src/platforms/dialogflow/google/apis/ITransactionOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/dialogflow/google/apis/ITransactionOptions.ts -------------------------------------------------------------------------------- /src/platforms/dialogflow/google/apis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/dialogflow/google/apis/index.ts -------------------------------------------------------------------------------- /src/platforms/dialogflow/google/directives.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/dialogflow/google/directives.ts -------------------------------------------------------------------------------- /src/platforms/dialogflow/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/dialogflow/index.ts -------------------------------------------------------------------------------- /src/platforms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/platforms/index.ts -------------------------------------------------------------------------------- /src/plugins/auto-load.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/plugins/auto-load.ts -------------------------------------------------------------------------------- /src/plugins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/plugins/index.ts -------------------------------------------------------------------------------- /src/plugins/replace-intent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/plugins/replace-intent.ts -------------------------------------------------------------------------------- /src/plugins/s3-persistence.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/plugins/s3-persistence.ts -------------------------------------------------------------------------------- /src/plugins/state-flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/plugins/state-flow.ts -------------------------------------------------------------------------------- /src/renderers/Renderer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/src/renderers/Renderer.ts -------------------------------------------------------------------------------- /test/Gadgets.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/Gadgets.spec.ts -------------------------------------------------------------------------------- /test/Renderer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/Renderer.spec.ts -------------------------------------------------------------------------------- /test/StateMachineSkillDirectives.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/StateMachineSkillDirectives.spec.ts -------------------------------------------------------------------------------- /test/StateMachineSkillHelp.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/StateMachineSkillHelp.spec.ts -------------------------------------------------------------------------------- /test/States.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/States.spec.ts -------------------------------------------------------------------------------- /test/VoxaApp.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/VoxaApp.spec.ts -------------------------------------------------------------------------------- /test/VoxaPlatform.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/VoxaPlatform.spec.ts -------------------------------------------------------------------------------- /test/VoxaReply.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/VoxaReply.spec.ts -------------------------------------------------------------------------------- /test/alexa/AlexaEvent.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/alexa/AlexaEvent.spec.ts -------------------------------------------------------------------------------- /test/alexa/AlexaPlatform.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/alexa/AlexaPlatform.spec.ts -------------------------------------------------------------------------------- /test/alexa/AlexaReply.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/alexa/AlexaReply.spec.ts -------------------------------------------------------------------------------- /test/alexa/CustomerContact.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/alexa/CustomerContact.spec.ts -------------------------------------------------------------------------------- /test/alexa/DeviceAddress.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/alexa/DeviceAddress.spec.ts -------------------------------------------------------------------------------- /test/alexa/DeviceSettings.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/alexa/DeviceSettings.spec.ts -------------------------------------------------------------------------------- /test/alexa/DisplayTemplate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/alexa/DisplayTemplate.spec.ts -------------------------------------------------------------------------------- /test/alexa/InSkillPurchase.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/alexa/InSkillPurchase.spec.ts -------------------------------------------------------------------------------- /test/alexa/Lists.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/alexa/Lists.spec.ts -------------------------------------------------------------------------------- /test/alexa/Messaging.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/alexa/Messaging.spec.ts -------------------------------------------------------------------------------- /test/alexa/ProactiveEvents.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/alexa/ProactiveEvents.spec.ts -------------------------------------------------------------------------------- /test/alexa/Reminders.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/alexa/Reminders.spec.ts -------------------------------------------------------------------------------- /test/alexa/directives.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/alexa/directives.spec.ts -------------------------------------------------------------------------------- /test/botframework/BotFrameworkEvent.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/botframework/BotFrameworkEvent.spec.ts -------------------------------------------------------------------------------- /test/botframework/BotFrameworkPlatform.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/botframework/BotFrameworkPlatform.spec.ts -------------------------------------------------------------------------------- /test/botframework/BotFrameworkReply.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/botframework/BotFrameworkReply.spec.ts -------------------------------------------------------------------------------- /test/botframework/directives.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/botframework/directives.spec.ts -------------------------------------------------------------------------------- /test/create-server.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/create-server.spec.ts -------------------------------------------------------------------------------- /test/dialogflow/DialogflowEvent.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/dialogflow/DialogflowEvent.spec.ts -------------------------------------------------------------------------------- /test/dialogflow/DialogflowPlatform.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/dialogflow/DialogflowPlatform.spec.ts -------------------------------------------------------------------------------- /test/dialogflow/DialogflowReply.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/dialogflow/DialogflowReply.spec.ts -------------------------------------------------------------------------------- /test/dialogflow/facebook/FacebookUserInformation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/dialogflow/facebook/FacebookUserInformation.spec.ts -------------------------------------------------------------------------------- /test/dialogflow/facebook/directives.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/dialogflow/facebook/directives.spec.ts -------------------------------------------------------------------------------- /test/dialogflow/google/DigitalGoods.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/dialogflow/google/DigitalGoods.spec.ts -------------------------------------------------------------------------------- /test/dialogflow/google/directives.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/dialogflow/google/directives.spec.ts -------------------------------------------------------------------------------- /test/dialogflow/google/order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/dialogflow/google/order.json -------------------------------------------------------------------------------- /test/directives.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/directives.spec.ts -------------------------------------------------------------------------------- /test/e2e/alexa.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/e2e/alexa.spec.ts -------------------------------------------------------------------------------- /test/e2e/dialogflow.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/e2e/dialogflow.spec.ts -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/plugins/auto-load.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/plugins/auto-load.spec.ts -------------------------------------------------------------------------------- /test/plugins/autoLoadAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/plugins/autoLoadAdapter.ts -------------------------------------------------------------------------------- /test/plugins/replace-intent.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/plugins/replace-intent.spec.ts -------------------------------------------------------------------------------- /test/plugins/s3-persistence.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/plugins/s3-persistence.spec.ts -------------------------------------------------------------------------------- /test/plugins/state-flow.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/plugins/state-flow.spec.ts -------------------------------------------------------------------------------- /test/requests/alexa/launchRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/alexa/launchRequest.json -------------------------------------------------------------------------------- /test/requests/botframework/StaintIntent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/botframework/StaintIntent.json -------------------------------------------------------------------------------- /test/requests/botframework/conversationUpdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/botframework/conversationUpdate.json -------------------------------------------------------------------------------- /test/requests/botframework/endOfRequest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/botframework/endOfRequest.json -------------------------------------------------------------------------------- /test/requests/botframework/luis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/botframework/luis.json -------------------------------------------------------------------------------- /test/requests/botframework/microsoft.launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/botframework/microsoft.launch.json -------------------------------------------------------------------------------- /test/requests/dialogflow/actions.intent.COMPLETE_PURCHASE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/dialogflow/actions.intent.COMPLETE_PURCHASE.json -------------------------------------------------------------------------------- /test/requests/dialogflow/actions.intent.CONFIRMATION.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/dialogflow/actions.intent.CONFIRMATION.json -------------------------------------------------------------------------------- /test/requests/dialogflow/actions.intent.DATETIME.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/dialogflow/actions.intent.DATETIME.json -------------------------------------------------------------------------------- /test/requests/dialogflow/actions.intent.MEDIA_STATUS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/dialogflow/actions.intent.MEDIA_STATUS.json -------------------------------------------------------------------------------- /test/requests/dialogflow/actions.intent.NEW_SURFACE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/dialogflow/actions.intent.NEW_SURFACE.json -------------------------------------------------------------------------------- /test/requests/dialogflow/actions.intent.OPTION.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/dialogflow/actions.intent.OPTION.json -------------------------------------------------------------------------------- /test/requests/dialogflow/actions.intent.PERMISSION.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/dialogflow/actions.intent.PERMISSION.json -------------------------------------------------------------------------------- /test/requests/dialogflow/actions.intent.PLACE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/dialogflow/actions.intent.PLACE.json -------------------------------------------------------------------------------- /test/requests/dialogflow/actions.intent.SIGN_IN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/dialogflow/actions.intent.SIGN_IN.json -------------------------------------------------------------------------------- /test/requests/dialogflow/buyProductIntent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/dialogflow/buyProductIntent.json -------------------------------------------------------------------------------- /test/requests/dialogflow/client_secret_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/dialogflow/client_secret_test.json -------------------------------------------------------------------------------- /test/requests/dialogflow/facebookButtonTemplatePayload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/dialogflow/facebookButtonTemplatePayload.json -------------------------------------------------------------------------------- /test/requests/dialogflow/facebookCarouselPayload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/dialogflow/facebookCarouselPayload.json -------------------------------------------------------------------------------- /test/requests/dialogflow/facebookLaunchIntent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/dialogflow/facebookLaunchIntent.json -------------------------------------------------------------------------------- /test/requests/dialogflow/facebookListPayload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/dialogflow/facebookListPayload.json -------------------------------------------------------------------------------- /test/requests/dialogflow/facebookOpenGraphTemplatePayload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/dialogflow/facebookOpenGraphTemplatePayload.json -------------------------------------------------------------------------------- /test/requests/dialogflow/helpIntent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/dialogflow/helpIntent.json -------------------------------------------------------------------------------- /test/requests/dialogflow/itemsInPlayStore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/dialogflow/itemsInPlayStore.json -------------------------------------------------------------------------------- /test/requests/dialogflow/lambdaProxyLaunchIntent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/dialogflow/lambdaProxyLaunchIntent.json -------------------------------------------------------------------------------- /test/requests/dialogflow/launchIntent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/dialogflow/launchIntent.json -------------------------------------------------------------------------------- /test/requests/dialogflow/slots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/requests/dialogflow/slots.json -------------------------------------------------------------------------------- /test/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/tools.ts -------------------------------------------------------------------------------- /test/variables.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/variables.ts -------------------------------------------------------------------------------- /test/views.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/test/views.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VoxaAI/voxa/HEAD/yarn.lock --------------------------------------------------------------------------------