├── .cfignore ├── .dockerignore ├── .eslintignore ├── .eslintrc.yml ├── .gitignore ├── .travis.yml ├── ACKNOWLEDGEMENTS.md ├── CONTRIBUTING.md ├── DEVELOPING.md ├── Dockerfile ├── Dockerfile-tools ├── LICENSE ├── MAINTAINERS.md ├── README-ja.md ├── README-ko.md ├── README.md ├── app.js ├── blueprint.json ├── blueprint ├── appicon.svg └── thumbnail.svg ├── casper-runner.js ├── cli-config.yml ├── data └── watson-pizzeria.json ├── doc └── source │ ├── cf.md │ ├── iks.md │ ├── images │ ├── AssistantAlias.png │ ├── OpenShift-add-config-map-to-app.png │ ├── OpenShift-add-github-repo.png │ ├── OpenShift-add-workspace-id.png │ ├── OpenShift-browse-catalog.png │ ├── OpenShift-choose-nodejs.png │ ├── WatsonCred1.png │ ├── architecture.png │ ├── cf-get-assistant-creds.png │ ├── cf-set-runtime.png │ ├── copy-api-key.png │ ├── cpd-assistant-details.png │ ├── import_conversation_workspace.png │ ├── open_conversation_menu.png │ ├── pizza-bot-demo.png │ ├── pizza3circles.png │ ├── pizzaConfig2Pizza_typeBottomFound.png │ ├── pizzaConfig2Pizza_typeTop.png │ ├── pizzaConfig3NewNotFoundconfirm.png │ ├── pizzaConfig3NotFoundJson.png │ ├── pizzaConfig3Pizza_toppingsMid1ingredient.png │ ├── pizzaConfig3Pizza_toppingsMidBotGreater1.png │ ├── pizzaConfig3pizza_toppingsTop.png │ ├── pizzaConfig3toppingsNotFound.png │ ├── pizzaDialogBegin.png │ ├── pizzaEX1orderLarge.png │ ├── pizzaEX2WatsonUnderstandsOrderSize.png │ ├── pizzaEX3fillSlots.png │ ├── pizzaEX4slotsFilled.png │ ├── pizzaEX5eatThere.png │ ├── pizzaGearIcon.png │ ├── pizzaHandleHelp.png │ ├── pizzaManHandleJson.png │ ├── pizzaManHandleTop.png │ ├── pizzaManageHanlers.png │ ├── pizzaNewWay.png │ ├── pizzaOldWay.png │ ├── pizzaOrderFinish.png │ ├── pizzaOrderFinish1.png │ ├── pizzaOrderFinish2.png │ ├── pizzaResetNode.png │ └── slotsFlow.png │ ├── local.md │ └── openshift.md ├── env.sample ├── lib └── watson-conversation-setup.js ├── manifest.yml ├── package.json ├── public ├── conversation.svg ├── css │ └── app.css ├── favicon.ico ├── fonts │ ├── bold-italic │ │ ├── h-n-bold-italic.eot │ │ ├── h-n-bold-italic.ttf │ │ ├── h-n-bold-italic.woff │ │ └── h-n-bold-italic.woff2 │ ├── bold │ │ ├── h-n-bold.eot │ │ ├── h-n-bold.ttf │ │ ├── h-n-bold.woff │ │ └── h-n-bold.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ ├── ibm-glyph.svg │ ├── ibm-glyphs.eot │ ├── ibm-glyphs.ttf │ ├── ibm-glyphs.woff │ ├── ibm-icons.eot │ ├── ibm-icons.svg │ ├── ibm-icons.ttf │ ├── ibm-icons.woff │ ├── light-italic │ │ ├── h-n-light-italic.eot │ │ ├── h-n-light-italic.ttf │ │ ├── h-n-light-italic.woff │ │ └── h-n-light-italic.woff2 │ ├── light │ │ ├── h-n-light.eot │ │ ├── h-n-light.ttf │ │ ├── h-n-light.woff │ │ └── h-n-light.woff2 │ ├── medium-italic │ │ ├── h-n-medium-italic.eot │ │ ├── h-n-medium-italic.ttf │ │ ├── h-n-medium-italic.woff │ │ └── h-n-medium-italic.woff2 │ ├── medium │ │ ├── h-n-medium.eot │ │ ├── h-n-medium.ttf │ │ ├── h-n-medium.woff │ │ └── h-n-medium.woff2 │ ├── roman-italic │ │ ├── h-n-roman-italic.eot │ │ ├── h-n-roman-italic.ttf │ │ ├── h-n-roman-italic.woff │ │ └── h-n-roman-italic.woff2 │ └── roman │ │ ├── h-n-roman.eot │ │ ├── h-n-roman.ttf │ │ ├── h-n-roman.woff │ │ └── h-n-roman.woff2 ├── img │ ├── Chat Button.png │ ├── Code Button.png │ └── marker_image.png ├── index.html └── js │ ├── api.js │ ├── common.js │ ├── conversation.js │ ├── global.js │ └── payload.js ├── run-server.sh ├── server.js ├── test ├── README.md ├── integration │ └── test.mainpage.js └── unit │ └── test.express.js └── watson-pizzeria-pod.yml /.cfignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .env 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /coverage 3 | -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/.travis.yml -------------------------------------------------------------------------------- /ACKNOWLEDGEMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/ACKNOWLEDGEMENTS.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/DEVELOPING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile-tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/Dockerfile-tools -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/README-ja.md -------------------------------------------------------------------------------- /README-ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/README-ko.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/app.js -------------------------------------------------------------------------------- /blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/blueprint.json -------------------------------------------------------------------------------- /blueprint/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/blueprint/appicon.svg -------------------------------------------------------------------------------- /blueprint/thumbnail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/blueprint/thumbnail.svg -------------------------------------------------------------------------------- /casper-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/casper-runner.js -------------------------------------------------------------------------------- /cli-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/cli-config.yml -------------------------------------------------------------------------------- /data/watson-pizzeria.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/data/watson-pizzeria.json -------------------------------------------------------------------------------- /doc/source/cf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/cf.md -------------------------------------------------------------------------------- /doc/source/iks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/iks.md -------------------------------------------------------------------------------- /doc/source/images/AssistantAlias.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/AssistantAlias.png -------------------------------------------------------------------------------- /doc/source/images/OpenShift-add-config-map-to-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/OpenShift-add-config-map-to-app.png -------------------------------------------------------------------------------- /doc/source/images/OpenShift-add-github-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/OpenShift-add-github-repo.png -------------------------------------------------------------------------------- /doc/source/images/OpenShift-add-workspace-id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/OpenShift-add-workspace-id.png -------------------------------------------------------------------------------- /doc/source/images/OpenShift-browse-catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/OpenShift-browse-catalog.png -------------------------------------------------------------------------------- /doc/source/images/OpenShift-choose-nodejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/OpenShift-choose-nodejs.png -------------------------------------------------------------------------------- /doc/source/images/WatsonCred1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/WatsonCred1.png -------------------------------------------------------------------------------- /doc/source/images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/architecture.png -------------------------------------------------------------------------------- /doc/source/images/cf-get-assistant-creds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/cf-get-assistant-creds.png -------------------------------------------------------------------------------- /doc/source/images/cf-set-runtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/cf-set-runtime.png -------------------------------------------------------------------------------- /doc/source/images/copy-api-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/copy-api-key.png -------------------------------------------------------------------------------- /doc/source/images/cpd-assistant-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/cpd-assistant-details.png -------------------------------------------------------------------------------- /doc/source/images/import_conversation_workspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/import_conversation_workspace.png -------------------------------------------------------------------------------- /doc/source/images/open_conversation_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/open_conversation_menu.png -------------------------------------------------------------------------------- /doc/source/images/pizza-bot-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizza-bot-demo.png -------------------------------------------------------------------------------- /doc/source/images/pizza3circles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizza3circles.png -------------------------------------------------------------------------------- /doc/source/images/pizzaConfig2Pizza_typeBottomFound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaConfig2Pizza_typeBottomFound.png -------------------------------------------------------------------------------- /doc/source/images/pizzaConfig2Pizza_typeTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaConfig2Pizza_typeTop.png -------------------------------------------------------------------------------- /doc/source/images/pizzaConfig3NewNotFoundconfirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaConfig3NewNotFoundconfirm.png -------------------------------------------------------------------------------- /doc/source/images/pizzaConfig3NotFoundJson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaConfig3NotFoundJson.png -------------------------------------------------------------------------------- /doc/source/images/pizzaConfig3Pizza_toppingsMid1ingredient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaConfig3Pizza_toppingsMid1ingredient.png -------------------------------------------------------------------------------- /doc/source/images/pizzaConfig3Pizza_toppingsMidBotGreater1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaConfig3Pizza_toppingsMidBotGreater1.png -------------------------------------------------------------------------------- /doc/source/images/pizzaConfig3pizza_toppingsTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaConfig3pizza_toppingsTop.png -------------------------------------------------------------------------------- /doc/source/images/pizzaConfig3toppingsNotFound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaConfig3toppingsNotFound.png -------------------------------------------------------------------------------- /doc/source/images/pizzaDialogBegin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaDialogBegin.png -------------------------------------------------------------------------------- /doc/source/images/pizzaEX1orderLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaEX1orderLarge.png -------------------------------------------------------------------------------- /doc/source/images/pizzaEX2WatsonUnderstandsOrderSize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaEX2WatsonUnderstandsOrderSize.png -------------------------------------------------------------------------------- /doc/source/images/pizzaEX3fillSlots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaEX3fillSlots.png -------------------------------------------------------------------------------- /doc/source/images/pizzaEX4slotsFilled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaEX4slotsFilled.png -------------------------------------------------------------------------------- /doc/source/images/pizzaEX5eatThere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaEX5eatThere.png -------------------------------------------------------------------------------- /doc/source/images/pizzaGearIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaGearIcon.png -------------------------------------------------------------------------------- /doc/source/images/pizzaHandleHelp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaHandleHelp.png -------------------------------------------------------------------------------- /doc/source/images/pizzaManHandleJson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaManHandleJson.png -------------------------------------------------------------------------------- /doc/source/images/pizzaManHandleTop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaManHandleTop.png -------------------------------------------------------------------------------- /doc/source/images/pizzaManageHanlers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaManageHanlers.png -------------------------------------------------------------------------------- /doc/source/images/pizzaNewWay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaNewWay.png -------------------------------------------------------------------------------- /doc/source/images/pizzaOldWay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaOldWay.png -------------------------------------------------------------------------------- /doc/source/images/pizzaOrderFinish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaOrderFinish.png -------------------------------------------------------------------------------- /doc/source/images/pizzaOrderFinish1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaOrderFinish1.png -------------------------------------------------------------------------------- /doc/source/images/pizzaOrderFinish2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaOrderFinish2.png -------------------------------------------------------------------------------- /doc/source/images/pizzaResetNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/pizzaResetNode.png -------------------------------------------------------------------------------- /doc/source/images/slotsFlow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/images/slotsFlow.png -------------------------------------------------------------------------------- /doc/source/local.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/local.md -------------------------------------------------------------------------------- /doc/source/openshift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/doc/source/openshift.md -------------------------------------------------------------------------------- /env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/env.sample -------------------------------------------------------------------------------- /lib/watson-conversation-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/lib/watson-conversation-setup.js -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/manifest.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/package.json -------------------------------------------------------------------------------- /public/conversation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/conversation.svg -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/bold-italic/h-n-bold-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/bold-italic/h-n-bold-italic.eot -------------------------------------------------------------------------------- /public/fonts/bold-italic/h-n-bold-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/bold-italic/h-n-bold-italic.ttf -------------------------------------------------------------------------------- /public/fonts/bold-italic/h-n-bold-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/bold-italic/h-n-bold-italic.woff -------------------------------------------------------------------------------- /public/fonts/bold-italic/h-n-bold-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/bold-italic/h-n-bold-italic.woff2 -------------------------------------------------------------------------------- /public/fonts/bold/h-n-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/bold/h-n-bold.eot -------------------------------------------------------------------------------- /public/fonts/bold/h-n-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/bold/h-n-bold.ttf -------------------------------------------------------------------------------- /public/fonts/bold/h-n-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/bold/h-n-bold.woff -------------------------------------------------------------------------------- /public/fonts/bold/h-n-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/bold/h-n-bold.woff2 -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/fonts/ibm-glyph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/ibm-glyph.svg -------------------------------------------------------------------------------- /public/fonts/ibm-glyphs.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/ibm-glyphs.eot -------------------------------------------------------------------------------- /public/fonts/ibm-glyphs.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/ibm-glyphs.ttf -------------------------------------------------------------------------------- /public/fonts/ibm-glyphs.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/ibm-glyphs.woff -------------------------------------------------------------------------------- /public/fonts/ibm-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/ibm-icons.eot -------------------------------------------------------------------------------- /public/fonts/ibm-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/ibm-icons.svg -------------------------------------------------------------------------------- /public/fonts/ibm-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/ibm-icons.ttf -------------------------------------------------------------------------------- /public/fonts/ibm-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/ibm-icons.woff -------------------------------------------------------------------------------- /public/fonts/light-italic/h-n-light-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/light-italic/h-n-light-italic.eot -------------------------------------------------------------------------------- /public/fonts/light-italic/h-n-light-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/light-italic/h-n-light-italic.ttf -------------------------------------------------------------------------------- /public/fonts/light-italic/h-n-light-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/light-italic/h-n-light-italic.woff -------------------------------------------------------------------------------- /public/fonts/light-italic/h-n-light-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/light-italic/h-n-light-italic.woff2 -------------------------------------------------------------------------------- /public/fonts/light/h-n-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/light/h-n-light.eot -------------------------------------------------------------------------------- /public/fonts/light/h-n-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/light/h-n-light.ttf -------------------------------------------------------------------------------- /public/fonts/light/h-n-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/light/h-n-light.woff -------------------------------------------------------------------------------- /public/fonts/light/h-n-light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/light/h-n-light.woff2 -------------------------------------------------------------------------------- /public/fonts/medium-italic/h-n-medium-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/medium-italic/h-n-medium-italic.eot -------------------------------------------------------------------------------- /public/fonts/medium-italic/h-n-medium-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/medium-italic/h-n-medium-italic.ttf -------------------------------------------------------------------------------- /public/fonts/medium-italic/h-n-medium-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/medium-italic/h-n-medium-italic.woff -------------------------------------------------------------------------------- /public/fonts/medium-italic/h-n-medium-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/medium-italic/h-n-medium-italic.woff2 -------------------------------------------------------------------------------- /public/fonts/medium/h-n-medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/medium/h-n-medium.eot -------------------------------------------------------------------------------- /public/fonts/medium/h-n-medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/medium/h-n-medium.ttf -------------------------------------------------------------------------------- /public/fonts/medium/h-n-medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/medium/h-n-medium.woff -------------------------------------------------------------------------------- /public/fonts/medium/h-n-medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/medium/h-n-medium.woff2 -------------------------------------------------------------------------------- /public/fonts/roman-italic/h-n-roman-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/roman-italic/h-n-roman-italic.eot -------------------------------------------------------------------------------- /public/fonts/roman-italic/h-n-roman-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/roman-italic/h-n-roman-italic.ttf -------------------------------------------------------------------------------- /public/fonts/roman-italic/h-n-roman-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/roman-italic/h-n-roman-italic.woff -------------------------------------------------------------------------------- /public/fonts/roman-italic/h-n-roman-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/roman-italic/h-n-roman-italic.woff2 -------------------------------------------------------------------------------- /public/fonts/roman/h-n-roman.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/roman/h-n-roman.eot -------------------------------------------------------------------------------- /public/fonts/roman/h-n-roman.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/roman/h-n-roman.ttf -------------------------------------------------------------------------------- /public/fonts/roman/h-n-roman.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/roman/h-n-roman.woff -------------------------------------------------------------------------------- /public/fonts/roman/h-n-roman.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/fonts/roman/h-n-roman.woff2 -------------------------------------------------------------------------------- /public/img/Chat Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/img/Chat Button.png -------------------------------------------------------------------------------- /public/img/Code Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/img/Code Button.png -------------------------------------------------------------------------------- /public/img/marker_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/img/marker_image.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/index.html -------------------------------------------------------------------------------- /public/js/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/js/api.js -------------------------------------------------------------------------------- /public/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/js/common.js -------------------------------------------------------------------------------- /public/js/conversation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/js/conversation.js -------------------------------------------------------------------------------- /public/js/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/js/global.js -------------------------------------------------------------------------------- /public/js/payload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/public/js/payload.js -------------------------------------------------------------------------------- /run-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/run-server.sh -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/server.js -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/test/README.md -------------------------------------------------------------------------------- /test/integration/test.mainpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/test/integration/test.mainpage.js -------------------------------------------------------------------------------- /test/unit/test.express.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/test/unit/test.express.js -------------------------------------------------------------------------------- /watson-pizzeria-pod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/watson-assistant-slots-intro/HEAD/watson-pizzeria-pod.yml --------------------------------------------------------------------------------