Files
openclaw/extensions/synology-chat/src/inbound-context.ts
2026-05-01 09:56:37 +01:00

11 lines
210 B
TypeScript

export type SynologyInboundMessage = {
body: string;
from: string;
senderName: string;
provider: string;
chatType: string;
accountId: string;
commandAuthorized: boolean;
chatUserId?: string;
};