├── .gitignore ├── BikeShopAgent.zip ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bike-shop-faq.csv ├── dialogflow-agent ├── agent.json ├── entities │ ├── AppointmentType.json │ └── AppointmentType_entries_en.json ├── intents │ ├── Fallback Intent.json │ ├── Hours.json │ ├── Hours_usersays_en.json │ ├── Make Appointment - custom.json │ ├── Make Appointment - custom_usersays_en.json │ ├── Make Appointment.json │ ├── Make Appointment_usersays_en.json │ ├── Welcome Intent.json │ └── Welcome Intent_usersays_en.json └── package.json ├── firebase.json └── functions ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store -------------------------------------------------------------------------------- /BikeShopAgent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-bike-shop-nodejs/HEAD/BikeShopAgent.zip -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-bike-shop-nodejs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-bike-shop-nodejs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-bike-shop-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /bike-shop-faq.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-bike-shop-nodejs/HEAD/bike-shop-faq.csv -------------------------------------------------------------------------------- /dialogflow-agent/agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-bike-shop-nodejs/HEAD/dialogflow-agent/agent.json -------------------------------------------------------------------------------- /dialogflow-agent/entities/AppointmentType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-bike-shop-nodejs/HEAD/dialogflow-agent/entities/AppointmentType.json -------------------------------------------------------------------------------- /dialogflow-agent/entities/AppointmentType_entries_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-bike-shop-nodejs/HEAD/dialogflow-agent/entities/AppointmentType_entries_en.json -------------------------------------------------------------------------------- /dialogflow-agent/intents/Fallback Intent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-bike-shop-nodejs/HEAD/dialogflow-agent/intents/Fallback Intent.json -------------------------------------------------------------------------------- /dialogflow-agent/intents/Hours.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-bike-shop-nodejs/HEAD/dialogflow-agent/intents/Hours.json -------------------------------------------------------------------------------- /dialogflow-agent/intents/Hours_usersays_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-bike-shop-nodejs/HEAD/dialogflow-agent/intents/Hours_usersays_en.json -------------------------------------------------------------------------------- /dialogflow-agent/intents/Make Appointment - custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-bike-shop-nodejs/HEAD/dialogflow-agent/intents/Make Appointment - custom.json -------------------------------------------------------------------------------- /dialogflow-agent/intents/Make Appointment - custom_usersays_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-bike-shop-nodejs/HEAD/dialogflow-agent/intents/Make Appointment - custom_usersays_en.json -------------------------------------------------------------------------------- /dialogflow-agent/intents/Make Appointment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-bike-shop-nodejs/HEAD/dialogflow-agent/intents/Make Appointment.json -------------------------------------------------------------------------------- /dialogflow-agent/intents/Make Appointment_usersays_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-bike-shop-nodejs/HEAD/dialogflow-agent/intents/Make Appointment_usersays_en.json -------------------------------------------------------------------------------- /dialogflow-agent/intents/Welcome Intent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-bike-shop-nodejs/HEAD/dialogflow-agent/intents/Welcome Intent.json -------------------------------------------------------------------------------- /dialogflow-agent/intents/Welcome Intent_usersays_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-bike-shop-nodejs/HEAD/dialogflow-agent/intents/Welcome Intent_usersays_en.json -------------------------------------------------------------------------------- /dialogflow-agent/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.0" 3 | } -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-bike-shop-nodejs/HEAD/functions/index.js -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/fulfillment-bike-shop-nodejs/HEAD/functions/package.json --------------------------------------------------------------------------------