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

@gathertown/sendbird-platform-sdk-typescript

v0.0.17

Published

OpenAPI client for sendbird-platform-sdk-typescript

Downloads

8,227

Readme

Sendbird banner image

Sendbird Typescript Platform SDK

link to docs This is a Node.js package written in Typescript that makes talking to the Sendbird Platform API easier. With this library you can extend your Sendbird integration to include advanced features like message-, and channel automation, user management, create user authentication tokens, and create bots.

Differences from upstream Repo

  • Fixed TS errors, and remove node_modules committed in the repo.
  • Upgraded to TS v5 and support only versions above Node v18
  • Publish the dist/ directory for use instead of directly using the source file which caused TS errors in consuming applications.
  • Run build automatically when running npm run publish

To publish, make sure you update the version using the appropriate npm version command and then run npm publish.

🔥 Quick start

import * as sendbird from 'sendbird-platform-sdk-typescript';
const APP_ID = "YOUR_APP_ID_FROM_DASHBOARD";
const API_TOKEN = "YOUR_MASTER_API_TOKEN_FROM_DASHBOARD";
const serverConfig = new sendbird.ServerConfiguration("https://api-{app_id}.sendbird.com", { "app_id": APP_ID })
const configuration = sendbird.createConfiguration({ baseServer : serverConfig });
const userAPI = new sendbird.UserApi(configuration);
// List users, use the next token in the response to get the next page of users in subsequent requests
userAPI.listUsers(API_TOKEN, '', 10).then((users) => {
    console.log("Listing first 10 users:\n")
    console.log(users)
}).catch((error) => {
    console.log("Error listing users")
    console.log(error)
})
// How to create a user
const userData: sendbird.CreateUserData = {
    userId: "bob_smith",
    nickname: "Bob",
    profileUrl: "https://cataas.com/c"
}
userAPI.createUser(API_TOKEN, userData).then((user) => {
    console.log("User created:\n")
    console.log(user)
}).catch((error) => {
    console.log("Error creating user:")
    console.log(error)
})

⚠️ Warnings

  1. This package is not currently in npm. Please see the Local development section for installation instructions.
  2. This library is intended for server to server requests. Do not use in a browser environment. This SDK uses the Master API Token, which should never be exposed to the outside world like in a webpage or app.

⚒️ Prerequisite

In order to make requests with this SDK you will need you master API token. This can be found through the Sendbird dashboard. Each app you create in Sendbird has its own master api token. These tokens can be found in Settings > Application > General. how to find you api token

💻 Requirements

You will need Node.js installed. This has been developed and tested with NodeJS 17+.

⚙️ Installation

🚨 Package not yet in npm 🚨 npm install sendbird-platform-sdk-typescript

🤓 Local Development

  1. Clone the repository
  2. cd to the sendbird-platform-sdk-typescript directory
  3. run npm install
  4. cd to your project directory
  5. run npm install /path/to/sendbird-platform-sdk-typescript --save

🗃️ Documentation

All the documentation for this project lives in the /docs directory of this repo.

Helpful links

| | Documentation | | ----------- | ----------- | | Announcement | docs/AnnouncementApi.md| | Application | docs/ApplicationApi.md | | Bot | docs/BotApi.md | | GroupChannel | docs/GroupChannelApi.md | | Message | docs/MessageApi.md | | OpenChannel | docs/OpenChannelApi.md | | User | docs/UserApi.md | | Webhooks | docs/WebhooksApi.md |