Skip to content

Commit

Permalink
v4.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Shane DeWael committed Mar 19, 2019
1 parent 91050ef commit 8d8a3a5
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions docs/_posts/2019-03-19-v4.12.0.md
@@ -0,0 +1,6 @@
---
layout: changelog
---

- Adds support for scheduled messages (#743)
- Changes `p-cancelable` version to `~1.0.0` to fix type errors (#743)
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@slack/client",
"version": "4.11.0",
"version": "4.12.0",
"description": "Slack Developer Kit - official clients for the Web API, RTM API, and Incoming Webhooks",
"author": "Slack Technologies, Inc.",
"license": "MIT",
Expand Down
8 changes: 4 additions & 4 deletions support/jsdoc/@slack-client.js
@@ -1,4 +1,4 @@
/**
/**
* @module @slack/client
*/

Expand Down Expand Up @@ -212,12 +212,12 @@ export class RTMClient {
* Generic method for sending an outgoing message of an arbitrary type. This method guards the higher-level methods
* from concern of which state the client is in, because it places all messages into a queue. The tasks on the queue
* will buffer until the client is in a state where they can be sent.
*
*
* If the awaitReply parameter is set to true, then the returned Promise is resolved with the platform's
* acknowledgement response. Not all message types will result in an acknowledgement response, so use this carefully.
* This promise may be rejected with an error containing code=RTMNoReplyReceivedError if the client disconnects or
* reconnects before receiving the acknowledgement response.
*
*
* If the awaitReply parameter is set to false, then the returned Promise is resolved as soon as the message is sent
* from the websocket.
* @param {"undefined"} awaitReply whether to wait for an acknowledgement response from the platform before resolving the returned
Expand Down Expand Up @@ -450,7 +450,7 @@ export class WebAPIResultCallback {

/**
* A client for Slack's Web API
*
*
* This client provides an alias for each {@link https://api.slack.com/methods|Web API method}. Each method is
* a convenience wrapper for calling the {@link WebClient#apiCall} method using the method name as the first parameter.
* @extends EventEmitter
Expand Down

0 comments on commit 8d8a3a5

Please sign in to comment.