| Name | Modified | Size | Downloads / 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
tsgetter onChatStreamerfor fallback tochat.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(); ```