MS Teams: fix top-level replies (agent reference)

This commit is contained in:
Onur
2026-01-08 10:01:05 +03:00
committed by Peter Steinberger
parent 8d096ef85d
commit 04b1eb57eb
4 changed files with 25 additions and 7 deletions

View File

@@ -11,7 +11,9 @@ export type StoredConversationReference = {
activityId?: string;
/** User who sent the message */
user?: { id?: string; name?: string; aadObjectId?: string };
/** Bot that received the message */
/** Agent/bot that received the message */
agent?: { id?: string; name?: string; aadObjectId?: string } | null;
/** @deprecated legacy field (pre-Agents SDK). Prefer `agent`. */
bot?: { id?: string; name?: string };
/** Conversation details */
conversation?: { id?: string; conversationType?: string; tenantId?: string };