├── .gitignore ├── CONTRIBUTING.md ├── HumanHandoffDemonstrationAgent.zip ├── LICENSE ├── README.md ├── app.js ├── appConstants.js ├── chatConnectionHandler.js ├── customerConnectionHandler.js ├── customerStore.js ├── messageRouter.js ├── operatorConnectionHandler.js ├── package.json └── static ├── customer.html └── operator.html /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | package-lock.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/agent-human-handoff-nodejs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HumanHandoffDemonstrationAgent.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/agent-human-handoff-nodejs/HEAD/HumanHandoffDemonstrationAgent.zip -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/agent-human-handoff-nodejs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/agent-human-handoff-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/agent-human-handoff-nodejs/HEAD/app.js -------------------------------------------------------------------------------- /appConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/agent-human-handoff-nodejs/HEAD/appConstants.js -------------------------------------------------------------------------------- /chatConnectionHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/agent-human-handoff-nodejs/HEAD/chatConnectionHandler.js -------------------------------------------------------------------------------- /customerConnectionHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/agent-human-handoff-nodejs/HEAD/customerConnectionHandler.js -------------------------------------------------------------------------------- /customerStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/agent-human-handoff-nodejs/HEAD/customerStore.js -------------------------------------------------------------------------------- /messageRouter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/agent-human-handoff-nodejs/HEAD/messageRouter.js -------------------------------------------------------------------------------- /operatorConnectionHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/agent-human-handoff-nodejs/HEAD/operatorConnectionHandler.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/agent-human-handoff-nodejs/HEAD/package.json -------------------------------------------------------------------------------- /static/customer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/agent-human-handoff-nodejs/HEAD/static/customer.html -------------------------------------------------------------------------------- /static/operator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dialogflow/agent-human-handoff-nodejs/HEAD/static/operator.html --------------------------------------------------------------------------------