f1fb7bf: feat: add thinking steps types
Added types for Thinking Steps features:
PlanBlock and TaskCard for displaying task progress in messagesMarkdownTextChunk, PlanUpdateChunk, TaskUpdateChunk for streamingUrlSourceElements for displaying sources within task cardsRelated PRs:
await client.chat.postMessage({
channel: CHANNEL_ID,
text: "Task progress update",
blocks: [
{
type: "plan",
plan_id: "plan-123",
title: "My Task",
tasks: [
{
type: "task_card",
task_id: "task-124",
title: "Task 1",
status: "complete",
},
{
type: "task_card",
task_id: "task-125",
title: "Task 2",
status: "pending",
},
],
},
],
});
Fetched April 3, 2026