docs: update reactions and targeted messages status from "preview" to "coming soon"#2731
docs: update reactions and targeted messages status from "preview" to "coming soon"#2731
Conversation
Agent-Logs-Url: https://github.com/microsoft/teams-sdk/sessions/12efd178-32e3-4ab4-a1b4-a14f5489b6d6 Co-authored-by: heyitsaamir <48929123+heyitsaamir@users.noreply.github.com>
|
@copilot I noticed the snippets are not working for TS and Py This section isn't needed for those languages. But we do need snippets on how actually to use these APIs (use example folder in @microsoft/teams.ts and @microsoft/teams.py) |
… TS/Py Agent-Logs-Url: https://github.com/microsoft/teams-sdk/sessions/78f6105a-01eb-43ac-8bb9-d1147bffc303 Co-authored-by: heyitsaamir <48929123+heyitsaamir@users.noreply.github.com>
|
|
@copilot can you also include getting reaction events too (messageReaction events) |
Agent-Logs-Url: https://github.com/microsoft/teams-sdk/sessions/95e961d8-d897-4099-af67-ef9564737d3a Co-authored-by: heyitsaamir <48929123+heyitsaamir@users.noreply.github.com>
Added in 4fd1fc9. Each language include file now has a
The README now also includes a brief description before the event-handling snippet. |
corinagum
left a comment
There was a problem hiding this comment.
Coming soon should not be provided without a date. Other thoughts posted in Teams.
|
@copilot for targeted messages and reactions, can you say Coming soon in May 2026 |
…d targeted messages Agent-Logs-Url: https://github.com/microsoft/teams-sdk/sessions/f79908e6-d4c3-4f01-b24d-deef146520b6 Co-authored-by: heyitsaamir <48929123+heyitsaamir@users.noreply.github.com>
Reactions and targeted messages are no longer described as "in preview" — they should be labeled as "coming soon" instead. This update also adds actual API usage examples for reactions across all supported languages, adds
messageReactionevent handling examples, and removes empty section headings that rendered with no content for TypeScript and Python users.Changes
sending-messages/README.mdx: Updated admonition labels for both Targeted Messages and Reactions sections (:::info[Preview]→:::info[Coming Soon]); removed empty### Targeted messages coming soonand### Reactions coming soonsection headings (which only had content for C#); addedreactions-exampleandreactions-event-exampleincludes to display actual usage snippetssending-messages/proactive-messaging.mdx: Same admonition update for the Targeted Proactive Messages sectionsending-messages/typescript.incl.md: Addedreactions-examplesection with a TypeScript snippet showingapi.reactions.add()andapi.reactions.remove(); addedreactions-event-examplesection showing how to handle incomingmessageReactionevents viaapp.on('messageReaction', ...)sending-messages/python.incl.md: Addedreactions-examplesection with a Python snippet showingctx.api.reactions.add()andctx.api.reactions.delete(); addedreactions-event-examplesection showing@app.on_message_reactionwithctx.activity.reactions_added/ctx.activity.reactions_removedsending-messages/csharp.incl.md: Addedreactions-examplesection with a C# snippet showingcontext.Api.Reactions.Add()andcontext.Api.Reactions.Remove(); addedreactions-event-examplesection showingapp.OnMessageReaction(...)withcontext.Activity.ReactionsAdded/context.Activity.ReactionsRemoved; the existing .NET experimental opt-in tip (reactions-preview-note) is preserved and still rendered inline for .NET users