feat(types): streaming chunks, entity unfurls, assistant loading_messages#55
Open
mikeclarke wants to merge 1 commit into
Open
Conversation
…ing_messages - chat.startStream/appendStream/stopStream: add `chunks` (AnyMessageChunk: blocks | markdown_text | plan_update | task_update) and `task_display_mode`; make appendStream `markdown_text` optional - chat.unfurl: make `unfurls` optional, add `metadata.entities` work-object unfurls; port the EntityMetadata type tree from @slack/types into block-kit - assistant.threads.setStatus: add optional `loading_messages` - add serialization tests for the new fields - regenerate src_deno mirror (also syncs a prior block-elements drift)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #54.
Adds three request types that lag the current Slack API:
chat.startStream/appendStream/stopStream:chunks(blocks|markdown_text|plan_update|task_update) +task_display_mode;appendStream.markdown_textmade optional.chat.unfurl:unfurlsmade optional; addmetadata.entities(work-object entity unfurls). Entity types mirror@slack/typesEntityMetadata, mapped onto this package's block-kit primitives.assistant.threads.setStatus: optionalloading_messages.Tests cover wire serialization of the new fields.
src_denoregenerated viascripts/generate-deno-source.sh(also picks up a priorsrc/src_denoblock-elementsdrift).Verified end-to-end against our live Slack API — a real app streamed
chunksand rendered the task timeline.