Download Latest Version @slack_web-api@7.19.0 source code.tar.gz (2.4 MB)
Email in envelope

Get an email when there's a new version of Node Slack SDK

Home / @slack_web-api@7.17.0
Name Modified Size InfoDownloads / Week
Parent folder
@slack_web-api@7.17.0 source code.tar.gz 2026-06-11 2.4 MB
@slack_web-api@7.17.0 source code.zip 2026-06-11 3.5 MB
README.md 2026-06-11 677 Bytes
Totals: 3 Items   5.9 MB 0

Minor Changes

  • 2085900: feat: expose public read-only ts getter on ChatStreamer for fallback to chat.update (docs.slack.dev) when a stream expires server-side

```js import { WebClient } from "@slack/web-api";

const client = new WebClient(process.env.SLACK_BOT_TOKEN);

const streamer = client.chatStream({ channel: "C0123456789", thread_ts: "1700000001.123456", recipient_team_id: "T0123456789", recipient_user_id: "U0123456789", });

await streamer.append({ markdown_text: "hello!" }); // streamer.ts is now set after the first flush console.log(streamer.ts);

await streamer.stop(); ```

Source: README.md, updated 2026-06-11