├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── agent.zip ├── agent ├── agent.json ├── intents │ ├── Default Fallback Intent.json │ ├── Default Welcome Intent.json │ ├── Delivery Address Complete.json │ ├── Delivery Address.json │ ├── Delivery Address_usersays_en.json │ ├── Transaction Check Complete.json │ ├── Transaction Decision Complete.json │ ├── Transaction Decision.json │ ├── Transaction Decision_usersays_en.json │ ├── Transaction Google.json │ ├── Transaction Google_usersays_en.json │ ├── Transaction Merchant.json │ └── Transaction Merchant_usersays_en.json └── package.json ├── firebase.json └── functions ├── .eslintrc ├── index.js ├── order-update.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-transactions-nodejs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-transactions-nodejs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-transactions-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /agent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-transactions-nodejs/HEAD/agent.zip -------------------------------------------------------------------------------- /agent/agent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-transactions-nodejs/HEAD/agent/agent.json -------------------------------------------------------------------------------- /agent/intents/Default Fallback Intent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-transactions-nodejs/HEAD/agent/intents/Default Fallback Intent.json -------------------------------------------------------------------------------- /agent/intents/Default Welcome Intent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-transactions-nodejs/HEAD/agent/intents/Default Welcome Intent.json -------------------------------------------------------------------------------- /agent/intents/Delivery Address Complete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-transactions-nodejs/HEAD/agent/intents/Delivery Address Complete.json -------------------------------------------------------------------------------- /agent/intents/Delivery Address.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-transactions-nodejs/HEAD/agent/intents/Delivery Address.json -------------------------------------------------------------------------------- /agent/intents/Delivery Address_usersays_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-transactions-nodejs/HEAD/agent/intents/Delivery Address_usersays_en.json -------------------------------------------------------------------------------- /agent/intents/Transaction Check Complete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-transactions-nodejs/HEAD/agent/intents/Transaction Check Complete.json -------------------------------------------------------------------------------- /agent/intents/Transaction Decision Complete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-transactions-nodejs/HEAD/agent/intents/Transaction Decision Complete.json -------------------------------------------------------------------------------- /agent/intents/Transaction Decision.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-transactions-nodejs/HEAD/agent/intents/Transaction Decision.json -------------------------------------------------------------------------------- /agent/intents/Transaction Decision_usersays_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-transactions-nodejs/HEAD/agent/intents/Transaction Decision_usersays_en.json -------------------------------------------------------------------------------- /agent/intents/Transaction Google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-transactions-nodejs/HEAD/agent/intents/Transaction Google.json -------------------------------------------------------------------------------- /agent/intents/Transaction Google_usersays_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-transactions-nodejs/HEAD/agent/intents/Transaction Google_usersays_en.json -------------------------------------------------------------------------------- /agent/intents/Transaction Merchant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-transactions-nodejs/HEAD/agent/intents/Transaction Merchant.json -------------------------------------------------------------------------------- /agent/intents/Transaction Merchant_usersays_en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-transactions-nodejs/HEAD/agent/intents/Transaction Merchant_usersays_en.json -------------------------------------------------------------------------------- /agent/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "1.0.0" 3 | } -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /functions/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-transactions-nodejs/HEAD/functions/.eslintrc -------------------------------------------------------------------------------- /functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-transactions-nodejs/HEAD/functions/index.js -------------------------------------------------------------------------------- /functions/order-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-transactions-nodejs/HEAD/functions/order-update.js -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/actions-on-google/dialogflow-transactions-nodejs/HEAD/functions/package.json --------------------------------------------------------------------------------