Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@pusher/chatkit-server

Package Overview
Dependencies
Maintainers
9
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pusher/chatkit-server - npm Package Versions

1

1.0.5

Diff

Changelog

Source

1.0.5

  • Upgrade dependencies to avoid vulnerabilities
callum-oakley
published 1.0.4 •

Changelog

Source

1.0.4

Additions

  • CreateRoom and UpdateRoom both now support the customData option.
callum-oakley
published 1.0.3 •

Changelog

Source

1.0.3 - 2018-11-06

  • Update pusher platform node dependency for vulnerabilities in transient deps
pusherapp
published 1.0.2 •

Changelog

Source

1.0.2

Changes

  • Bump pusher-platform-node dependency to 0.15.0
  • Clean up npm package to only include what is necessary
jlloydpusher
published 1.0.1 •

Changelog

Source

1.0.1

Fixes

  • 1.0.0 was published empty, so 1.0.1 is an identical release, but not empty
callum-oakley
published 1.0.0 •

Changelog

Source

1.0.0

Breaking Changes

  • room IDs are now strings
  • getUsersByIds is now getUsersById
  • GetUsersByIdsOptions is now GetUsersByIdOptions
  • Every mention of roleName is now just name

Nonbreaking Changes

  • getRoom, getRooms and getRoomMessages no longer require a userId
  • getRooms now takes includePrivate and fromID parameters for looking up private rooms and paginating by ID

Additions

  • The following new methods:
    • getUser
    • sendMessage
    • deleteMessage
    • updateRoom
    • deleteRoom
    • addUsersToRoom
    • removeUsersFromRoom
    • setReadCursor
    • getReadCursor
    • getReadCursorsForUser
    • getReadCursorsForRoom
    • cursorsRequest

See the documentation for details on usage.

callum-oakley
published 0.13.0 •

pusher-admin
published 0.12.2 •

Changelog

Source

0.12.2 - 2018-07-23

Changes

  • Bump jsonwebtoken dependency to 8.3.0
callum-oakley
published 0.12.1 •

Changelog

Source

0.12.1 - 2018-04-24

Changes

  • The package name has been changed to @pusher/chatkit-server
callum-oakley
published 0.12.0 •

Changelog

Source

0.12.0 - 2018-04-23

Changes

  • Bump pusher-platform-node dependency to 0.13.0
  • authenticate now returns an object like this:
{
    "status": 200,
    "headers": {
        "Some-Header": "some-value"
    },
    "body": {
        "access_token": "an.access.token",
        "token_type": "bearer",
        "expires_in": 86400
    }
}

where:

  • status is the suggested HTTP response status code,
  • headers are the suggested response headers,
  • body holds the token payload.

If there's an error with the authentication process then the return value will be the same but with a different body. For example:

{
    "status": 422,
    "headers": {
        "Some-Header": "some-value"
    },
    "body": {
        "error": "token_provider/invalid_grant_type",
        "error_description": "The grant_type provided, some-invalid-grant-type, is unsupported"
    }
}
  • Authentication no longer returns refresh tokens.

If your client devices are running the:

  • Swift SDK - (breaking change) you must be using version >= 0.8.0 of chatkit-swift.
  • Android SDK - you won't be affected regardless of which version you are running.
  • JS SDK - you won't be affected regardless of which version you are running.
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc