mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-20 08:51:33 +00:00
* fix(pair): render pair qr as media * fix(gateway): preserve media reply threading * fix(gateway): harden webchat media replies * fix(plugin-sdk): keep trustedLocalMedia internal * docs(changelog): note pair qr media fix * Update CHANGELOG with recent fixes and enhancements Updated changelog to include recent fixes and enhancements.
12 lines
262 B
TypeScript
12 lines
262 B
TypeScript
export type BlockReplyPayload = {
|
|
text?: string;
|
|
mediaUrls?: string[];
|
|
audioAsVoice?: boolean;
|
|
trustedLocalMedia?: boolean;
|
|
sensitiveMedia?: boolean;
|
|
isReasoning?: boolean;
|
|
replyToId?: string;
|
|
replyToTag?: boolean;
|
|
replyToCurrent?: boolean;
|
|
};
|