-
Notifications
You must be signed in to change notification settings - Fork 678
conversations.setTopic missing channel.latest in returned object #2550
Copy link
Copy link
Open
Labels
area:typescriptissues that specifically impact using the package from typescript projectsissues that specifically impact using the package from typescript projectsauto-triage-skipbugM-T: A confirmed bug report. Issues are confirmed when the reproduction steps are documentedM-T: A confirmed bug report. Issues are confirmed when the reproduction steps are documentedpkg:web-apiapplies to `@slack/web-api`applies to `@slack/web-api`
Metadata
Metadata
Assignees
Labels
area:typescriptissues that specifically impact using the package from typescript projectsissues that specifically impact using the package from typescript projectsauto-triage-skipbugM-T: A confirmed bug report. Issues are confirmed when the reproduction steps are documentedM-T: A confirmed bug report. Issues are confirmed when the reproduction steps are documentedpkg:web-apiapplies to `@slack/web-api`applies to `@slack/web-api`
Type
Fields
Give feedbackNo fields configured for issues without a type.
@slack/boltversion4.6.0
Your
Appand Receiver Configuratione.g.
const app = new App({ token: slackToken, socketMode: true, signingSecret: process.env.SLACK_SIGNING_SECRET, appToken: process.env.APP_TOKEN, scopes: [ "app_mentions:read", "channels:history", "channels:read", "chat:write", "commands", "groups:history", "groups:read", "im:history", "im:read", "im:write", "mpim:history", "mpim:write", "reactions:read", "reactions:write", "users.profile:read", "users:read", ], });Node.js runtime version
v24.11.1
Steps to reproduce:
Call
client.conversations.setTopic:const result = await app.client.conversations.setTopic({ channel: channelId, topic: "some random topic", });api
Expected result:
result.channel.latestto not be undefinedActual result:
.latest is undefined