npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@livechat/chat-sdk

v0.2.0

Published

SDK for connecting LiveChat as agent

Downloads

71

Readme

LiveChat chat-sdk

​ Lightweight JavaScript SDK for LiveChat Messaging APIs. ​ Chat SDK was designed to help developers build apps in a quick and easy way. Under the hood, it makes use of the LiveChat Messaging APIs, taking care of this part for you. By default, Chat SDK comes with a method for sending plain text messages. Based on the method template we provide, you can easily build other methods. Thanks to that, you have the flexibility to cover the functionalities you need for your app. ​

For full documentation, please head to LiveChat Docs. ​

Installation

​ The package can be installed directly from NPM. ​

npm i @livechat/chat-sdk

Initial configuration

| Parameter | Required | Data type | Default | Notes | | ----------------- | -------- | --------- | --------- | -------------------------------------------------------- | | apiVersion | false | string | v3.4 | Call a different API version than the default one. | | debug | false | boolean | false | Display all messages exchanged with the LiveChat API. | | region | false | string | america | Specify a data center. Possible values: europe and america. | ​

const chatSDK = new ChatSDK({ debug: true })

Authorization

To use Chat SDK, you will need to provide an access token authorizing you with the Agent Chat API.

If you don't know how to get one, make sure to check out these resources:

Methods

init

​ It initializes the WebSocket connection, attaches event listeners, and then logs in the Agent. ​

chatSDK.init({
    access_token: access_token
    // OR 
    personal_access_token: personal_access_token
})

Parameters

| Parameter | Required | Data type | Notes | | -------------- | -------- | --------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | access_token | Yes/No1 | string | See Authorization to learn how to get an access token. Optionally, you can acquire it directly from Accounts SDK and pass it in to the init() method. The Simple Agent app uses this mechanism. | | personal_access_token | Yes/No1 | string | See Authorization docs to learn how to get a Personal Access Token. Provided value should be encoded in base64. |

1) The init function requires one of the parameters to be provided.

destroy

​ It clears any stored resources, removes all listeners, and disconnects from the network. After using this method you won't be able to use the destroyed SDK instance. ​

chatSDK.destroy()

getAgentDetails

​ It allows you to get information about the currently logged in Agent. ​

chatSDK.getAgentDetails() 
    .then(agentData => {
        // access to the agentData object
    }) 
    .catch(error => {
        // catch an error object
    })

sendMessage

​ It sends a plain text message. ​

Arguments

| Argument | Data type | Notes | | ---------- | --------- | ------------------------------------------- | | chat_id | string | Id of chat that you want to send a message to. | | message | string | Message content | | recipients | string | Possible values: all (default), agents | ​

Returned value

| Value | Data type | | ---------- | --------- | | event_id | string | ​

const chatId = 'PJ0MRSHTDG'
const message = 'Hello world'
​
chatSDK.sendMessage(chatId, message)
    .then(event => {
        // get event_id or handle a success scenario
    })
    .catch(error => {
        // catch an error object
    })

How to create other methods - methodFactory

​ This SDK supports the RTM transport. For that reason, make sure you use the Agent Chat API RTM reference. When creating your custom methods, base on the payloads from the Agent Chat RTM API methods. ​ In the example below, we're creating a custom method that returns a chat. As you can see in the documentation, only chat_id is required, but you can include other optional parameters in your custom method. ​

const getChat = (chat_id) =>
  ChatSDK.methodFactory({
    action: "get_chat",
    payload: { chat_id }
  });

​
getChat("PJ0MRSHTDG")
    .then(data => {
        // get a chat details with the latest thread (if exists)
    })
    .catch(error => {
        // catch an error
    })

on

​ The on method subscribes to emitted events. ​

chatSDK.on("event_name", (data) => {
    console.log(data)
})

Here's what you can listen for:

| Event name | Action | | ------------ | ---------- | | ready | You've been successfully logged in. You're now ready to use all API methods. | | Pushes | Refer to documentation. |

once

​ The once method subscribes to emitted events and unsubscribes right after the callback function has been called. ​

chatSDK.once("event_name", (data) => {
    console.log(data)
})

off

​ The off method unsubscribes from emitted events. ​

chatSDK.off("event_name", (data) => {
    console.log(data)
})

Simple Agent - Example

To show you Chat SDK in action, we've prepared a sample app, Simple Agent . Its primary function is to send text messages. Apart from that, it gives you access to previous conversations, as well as the info about the current Agent.

To run the app, follow a few steps:

  1. Create an app in Developer Console.

  2. Add the Authorization building block. Configure it by entering http://localhost:3000/ in Redirect URI whitelist and by adding the following scopes:

    • chats--all:rw
    • chats--access:rw
    • customers:ro
    • multicast:ro
    • agents--all:ro
    • agents-bot--all:ro
  3. Go to the Private installation tab and install the app.

  4. Clone the Chat SDK repository from GitHub and go to the example folder.

  5. In Developer Console, go to the Authorization building block of your app.

  6. Copy Client Id and paste it into the .env file in the example folder.

  7. Run Simple Agent with the following commands (from the example folder perspective):

npm install // install dependencies 
npm start //start the app

To start a chat, log in to you LiveChat account and choose the Preview live option available in the Settings tab. You'll now be able to receive messages and respond to them from within Simple Agent.

It's worth mentioning that all functions invoked before logging in are queued. Once you're logged in, they are executed in the same order as they were invoked.

Feedback

​ If you find some bugs or have troubles implementing the code on your own, please create an issue on this repo. ​

If you're new to LiveChat

​ LiveChat is an online customer service software with live support, help desk software, and web analytics capabilities. It's used by more than 34,000 companies all over the world. For more info, check out LiveChat for Developers.