1.5.7 • Published 3 years ago

@wealize/branded-chatbot-window v1.5.7

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

Branded Chatbot Window

version

A simple chatbot window written in React and based on @wealize/react-chat-window that lets your connect with a chatbot endpoint and themize the appearance of the chat to fit a branding.

Usage

Just include this snippet of code inside your HTML and set your configuration variables to communicate with your chatbot endpoint.

window.chatbotSettings = {
  chatbotEndpoint: 'https://your-endpoint.here/webhooks/webhook_id',
  agentProfile: {
    teamName: 'Your bot name',
    teamExplanation: 'your bot short description'
  }
};

(function(){var w=window;var d=document;var l=function(){var x=d.getElementsByTagName('script')[0];var c=d.createElement('div');c.id='chatbotContainer';x.parentNode.insertBefore(c,x);var s=d.createElement('script');s.type='text/javascript';s.async=true;s.src='https://d1hbk1yt8xmke0.cloudfront.net/latest/branded-chatbot-window.min.js';x.parentNode.insertBefore(s,x);};if(d.readyState==='complete'){l();}else if(w.attachEvent){w.attachEvent('onload',l);}else{w.addEventListener('load',l,false);}})();

Configuration

variabletyperequireddescription
chatbotEndpointstringyesThe endpoint you want to connect your chatbot to.
agentProfileobjectyesInformation about the chatbot visible to the users.
     teamNamestringyesVisible chatbot name in the application.
     teamExplanationstringNoShort description for your chatbot
showEmojiboolnoWhether or not to show the emoji button in the input bar. Defaults to true.
showFileIconboolnoWhether or not to show the file button in the input bar. Defaults to true.
userTimeoutintegernoNumber of seconds until a new conversation is created. Defaults to 2147483647
isWebViewbooleannoEnable webchat for webview in apps. Defaults to false
themeobjectnoTheme of the chatbot
     brandColorstringYesColor of the brand

Releasing new versions

If you want to publish a new version of the chatbot window to our CDN servers, you must configure an IAM Access Keys and populate your .env file with the provided AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_S3_BUCKET.

IMPORTANT

Check that your package.json has a newer version number for the release!

Then just run the following command: yarn release

1.5.7

3 years ago

1.5.6

3 years ago

1.5.5

3 years ago

1.5.4

3 years ago

1.5.3

3 years ago

1.5.2

3 years ago

1.4.9

3 years ago

1.5.1

3 years ago

1.4.8

3 years ago

1.4.6

3 years ago