├── .eslintrc.json ├── .gitignore ├── README.md ├── dist ├── app.js ├── cloud.js ├── intents │ ├── fallback.js │ ├── intentHandler.js │ ├── testWebhook.js │ ├── welcome.js │ └── zendeskGetTicketById.js ├── server.js └── util │ └── zendesk.js ├── firebase.json ├── package.json ├── src ├── app.ts ├── cloud.ts ├── intents │ ├── fallback.ts │ ├── intentHandler.ts │ ├── testWebhook.ts │ ├── welcome.ts │ └── zendeskGetTicketById.ts ├── server.ts └── util │ └── zendesk.ts ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/README.md -------------------------------------------------------------------------------- /dist/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/dist/app.js -------------------------------------------------------------------------------- /dist/cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/dist/cloud.js -------------------------------------------------------------------------------- /dist/intents/fallback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/dist/intents/fallback.js -------------------------------------------------------------------------------- /dist/intents/intentHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/dist/intents/intentHandler.js -------------------------------------------------------------------------------- /dist/intents/testWebhook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/dist/intents/testWebhook.js -------------------------------------------------------------------------------- /dist/intents/welcome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/dist/intents/welcome.js -------------------------------------------------------------------------------- /dist/intents/zendeskGetTicketById.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/dist/intents/zendeskGetTicketById.js -------------------------------------------------------------------------------- /dist/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/dist/server.js -------------------------------------------------------------------------------- /dist/util/zendesk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/dist/util/zendesk.js -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/firebase.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/package.json -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/cloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/src/cloud.ts -------------------------------------------------------------------------------- /src/intents/fallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/src/intents/fallback.ts -------------------------------------------------------------------------------- /src/intents/intentHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/src/intents/intentHandler.ts -------------------------------------------------------------------------------- /src/intents/testWebhook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/src/intents/testWebhook.ts -------------------------------------------------------------------------------- /src/intents/welcome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/src/intents/welcome.ts -------------------------------------------------------------------------------- /src/intents/zendeskGetTicketById.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/src/intents/zendeskGetTicketById.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/src/server.ts -------------------------------------------------------------------------------- /src/util/zendesk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/src/util/zendesk.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Botcopy/dialogflow-custom-webhook-template/HEAD/yarn.lock --------------------------------------------------------------------------------