├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── agent.zip ├── firebase.json └── functions ├── .eslintrc.json ├── app.js ├── helper-intents ├── ask-for-confirmation.js ├── ask-for-datetime.js ├── ask-for-permission.js ├── ask-for-place.js └── ask-for-sign-in.js ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | *.DS_store 4 | *.log 5 | .firebaserc 6 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-helper-intents-nodejs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-helper-intents-nodejs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-helper-intents-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /agent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-helper-intents-nodejs/HEAD/agent.zip -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /functions/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-helper-intents-nodejs/HEAD/functions/.eslintrc.json -------------------------------------------------------------------------------- /functions/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-helper-intents-nodejs/HEAD/functions/app.js -------------------------------------------------------------------------------- /functions/helper-intents/ask-for-confirmation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-helper-intents-nodejs/HEAD/functions/helper-intents/ask-for-confirmation.js -------------------------------------------------------------------------------- /functions/helper-intents/ask-for-datetime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-helper-intents-nodejs/HEAD/functions/helper-intents/ask-for-datetime.js -------------------------------------------------------------------------------- /functions/helper-intents/ask-for-permission.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-helper-intents-nodejs/HEAD/functions/helper-intents/ask-for-permission.js -------------------------------------------------------------------------------- /functions/helper-intents/ask-for-place.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-helper-intents-nodejs/HEAD/functions/helper-intents/ask-for-place.js -------------------------------------------------------------------------------- /functions/helper-intents/ask-for-sign-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-helper-intents-nodejs/HEAD/functions/helper-intents/ask-for-sign-in.js -------------------------------------------------------------------------------- /functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-helper-intents-nodejs/HEAD/functions/index.js -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-helper-intents-nodejs/HEAD/functions/package.json --------------------------------------------------------------------------------