fix: align reasoning payload typing for #24991 (thanks @stakeswky)

This commit is contained in:
Peter Steinberger
2026-02-24 03:50:27 +00:00
parent 7d76c241f8
commit d427d09b5e
3 changed files with 4 additions and 0 deletions

View File

@@ -2,6 +2,7 @@ export type BlockReplyPayload = {
text?: string;
mediaUrls?: string[];
audioAsVoice?: boolean;
isReasoning?: boolean;
replyToId?: string;
replyToTag?: boolean;
replyToCurrent?: boolean;

View File

@@ -108,6 +108,7 @@ export function buildEmbeddedRunPayloads(params: {
mediaUrls?: string[];
replyToId?: string;
isError?: boolean;
isReasoning?: boolean;
audioAsVoice?: boolean;
replyToTag?: boolean;
replyToCurrent?: boolean;
@@ -116,6 +117,7 @@ export function buildEmbeddedRunPayloads(params: {
text: string;
media?: string[];
isError?: boolean;
isReasoning?: boolean;
audioAsVoice?: boolean;
replyToId?: string;
replyToTag?: boolean;