import { D as ChannelOutboundTargetMode, O as ChannelPollContext, k as ChannelPollResult } from "./types.core-CuC3Nb15.js"; import { S as ReplyPayloadDeliveryPin, c as MessagePresentation } from "./payload-BHJeg3MX.js"; import { u as ReplyPayload } from "./types-CQee7pkj.js"; import { i as OpenClawConfig } from "./types.openclaw-CpnoYlBx.js"; import { S as MarkdownTableMode, T as ReplyToMode } from "./types.base-CrXPFJf5.js"; import { t as OutboundMediaAccess } from "./load-options-CQixiFLj.js"; import { t as ChannelId } from "./channel-id.types-DjYEl-_2.js"; import { t as OutboundSendDeps } from "./send-deps-Ds6JW9s7.js"; import { P as MessageReceipt } from "./types-D77zZaVv.js"; //#region src/infra/outbound/deliver-types.d.ts /** Successful channel send result normalized for core delivery accounting. */ type OutboundDeliveryResult = { channel: Exclude; messageId: string; chatId?: string; channelId?: string; roomId?: string; conversationId?: string; timestamp?: number; toJid?: string; pollId?: string; receipt?: MessageReceipt; meta?: Record; }; /** Reason a payload was intentionally not sent after normalization or hooks. */ type OutboundPayloadDeliverySuppressionReason = "cancelled_by_message_sending_hook" | "cancelled_by_reply_payload_sending_hook" | "empty_after_message_sending_hook" | "empty_after_reply_payload_sending_hook" | "no_visible_payload" | "adapter_returned_no_identity"; /** Delivery phase where a failure occurred. */ type OutboundDeliveryFailureStage = "platform_send" | "queue" | "unknown"; /** Per-payload delivery status emitted to callers and channel send summaries. */ type OutboundPayloadDeliveryOutcome = { index: number; status: "sent"; results: OutboundDeliveryResult[]; } | { index: number; status: "suppressed"; reason: OutboundPayloadDeliverySuppressionReason; hookEffect?: { cancelReason?: string; metadata?: Record; }; } | { index: number; status: "failed"; error: unknown; sentBeforeError: boolean; stage: OutboundDeliveryFailureStage; }; //#endregion //#region src/auto-reply/chunk.d.ts type TextChunkProvider = ChannelId; /** * Chunking mode for outbound messages: * - "length": Split only when exceeding textChunkLimit (default) * - "newline": Prefer breaking on "soft" boundaries. Historically this split on every * newline; now it only breaks on paragraph boundaries (blank lines) unless the text * exceeds the length limit. */ type ChunkMode = "length" | "newline"; declare function resolveTextChunkLimit(cfg: OpenClawConfig | undefined, provider?: TextChunkProvider, accountId?: string | null, opts?: { fallbackLimit?: number; }): number; declare function resolveChunkMode(cfg: OpenClawConfig | undefined, provider?: TextChunkProvider, accountId?: string | null): ChunkMode; /** * Split text on newlines, trimming line whitespace. * Blank lines are folded into the next non-empty line as leading "\n" prefixes. * Long lines can be split by length (default) or kept intact via splitLongLines:false. */ declare function chunkByNewline(text: string, maxLineLength: number, opts?: { splitLongLines?: boolean; trimLines?: boolean; isSafeBreak?: (index: number) => boolean; }): string[]; /** * Unified chunking function that dispatches based on mode. */ declare function chunkTextWithMode(text: string, limit: number, mode: ChunkMode): string[]; declare function chunkMarkdownTextWithMode(text: string, limit: number, mode: ChunkMode): string[]; declare function chunkText(text: string, limit: number): string[]; declare function chunkMarkdownText(text: string, limit: number): string[]; //#endregion //#region src/infra/outbound/formatting.d.ts /** * Formatting and chunking hints carried through outbound delivery planning. */ type OutboundDeliveryFormattingOptions = { textLimit?: number; maxLinesPerMessage?: number; tableMode?: MarkdownTableMode; chunkMode?: ChunkMode; parseMode?: "HTML"; }; //#endregion //#region src/infra/outbound/identity-types.d.ts /** Agent identity metadata that outbound channels can render with a message. */ type OutboundIdentity = { name?: string; avatarUrl?: string; emoji?: string; theme?: string; }; //#endregion //#region src/channels/plugins/outbound.types.d.ts type ChannelOutboundContext = { cfg: OpenClawConfig; to: string; text: string; mediaUrl?: string; audioAsVoice?: boolean; mediaAccess?: OutboundMediaAccess; mediaLocalRoots?: readonly string[]; mediaReadFile?: (filePath: string) => Promise; gifPlayback?: boolean; /** Send image, GIF, or video as document to avoid channel compression. */ forceDocument?: boolean; replyToId?: string | null; replyToIdSource?: "explicit" | "implicit"; replyToMode?: ReplyToMode; formatting?: OutboundDeliveryFormattingOptions; threadId?: string | number | null; accountId?: string | null; identity?: OutboundIdentity; deps?: OutboundSendDeps; silent?: boolean; gatewayClientScopes?: readonly string[]; }; type ChannelOutboundPayloadContext = ChannelOutboundContext & { payload: ReplyPayload; }; type ChannelPresentationCapabilities = { /** Whether the channel accepts structured presentation payloads at all. */supported?: boolean; /** Whether the channel can render button action blocks natively. */ buttons?: boolean; /** Whether the channel can render select/menu blocks natively. */ selects?: boolean; /** Whether the channel can render low-emphasis context blocks natively. */ context?: boolean; /** Whether the channel can render divider blocks natively. */ divider?: boolean; /** Per-channel limits used to adapt portable presentation blocks before rendering. */ limits?: { actions?: { /** Maximum total button/select actions in one message. */maxActions?: number; /** Maximum buttons per rendered action row. */ maxActionsPerRow?: number; /** Maximum action rows in one message. */ maxRows?: number; /** Maximum user-visible button label length. */ maxLabelLength?: number; /** Maximum callback/action value size in UTF-8 bytes. */ maxValueBytes?: number; /** Whether action styles such as primary or danger are preserved. */ supportsStyles?: boolean; /** Whether disabled button state is preserved. */ supportsDisabled?: boolean; /** Whether priority/layout hints affect native rendering. */ supportsLayoutHints?: boolean; }; selects?: { /** Maximum options in one select/menu block. */maxOptions?: number; /** Maximum user-visible option label length. */ maxLabelLength?: number; /** Maximum option callback value size in UTF-8 bytes. */ maxValueBytes?: number; }; text?: { /** Maximum text length for title, text, and context blocks. */maxLength?: number; /** Unit used by maxLength. Defaults to Unicode code points. */ encoding?: "characters" | "utf8-bytes" | "utf16-units"; /** Markdown dialect understood by rendered text blocks. */ markdownDialect?: "plain" | "markdown" | "html" | "slack-mrkdwn" | "discord-markdown"; /** Whether the channel can edit presentation text in-place. */ supportsEdit?: boolean; }; }; }; type ChannelDeliveryCapabilities = { pin?: boolean; durableFinal?: { text?: boolean; media?: boolean; poll?: boolean; payload?: boolean; silent?: boolean; replyTo?: boolean; thread?: boolean; nativeQuote?: boolean; messageSendingHooks?: boolean; batch?: boolean; reconcileUnknownSend?: boolean; afterSendSuccess?: boolean; afterCommit?: boolean; }; }; type ChannelOutboundPayloadHint = { kind: "approval-pending"; approvalKind: "exec" | "plugin"; nativeRouteActive?: boolean; } | { kind: "approval-resolved"; approvalKind: "exec" | "plugin"; }; type ChannelOutboundTargetRef = { channel: string; to: string; accountId?: string | null; threadId?: string | number | null; }; type ChannelOutboundFormattedContext = ChannelOutboundContext & { abortSignal?: AbortSignal; }; type ChannelOutboundChunkContext = { formatting?: OutboundDeliveryFormattingOptions; }; type ChannelOutboundNormalizePayloadParams = { payload: ReplyPayload; cfg: OpenClawConfig; accountId?: string | null; }; type ChannelOutboundAdapter = { deliveryMode: "direct" | "gateway" | "hybrid"; chunker?: ((text: string, limit: number, ctx?: ChannelOutboundChunkContext) => string[]) | null; chunkerMode?: "text" | "markdown"; chunkedTextFormatting?: OutboundDeliveryFormattingOptions; /** Lift remote Markdown image syntax in text into outbound media attachments. */ extractMarkdownImages?: boolean; textChunkLimit?: number; sanitizeText?: (params: { text: string; payload: ReplyPayload; }) => string; pollMaxOptions?: number; supportsPollDurationSeconds?: boolean; supportsAnonymousPolls?: boolean; normalizePayload?: (params: ChannelOutboundNormalizePayloadParams) => ReplyPayload | null; sendTextOnlyErrorPayloads?: boolean; shouldSkipPlainTextSanitization?: (params: { payload: ReplyPayload; }) => boolean; resolveEffectiveTextChunkLimit?: (params: { cfg: OpenClawConfig; accountId?: string | null; fallbackLimit?: number; }) => number | undefined; shouldSuppressLocalPayloadPrompt?: (params: { cfg: OpenClawConfig; accountId?: string | null; payload: ReplyPayload; hint?: ChannelOutboundPayloadHint; }) => boolean; beforeDeliverPayload?: (params: { cfg: OpenClawConfig; target: ChannelOutboundTargetRef; payload: ReplyPayload; hint?: ChannelOutboundPayloadHint; }) => Promise | void; afterDeliverPayload?: (params: { cfg: OpenClawConfig; target: ChannelOutboundTargetRef; payload: ReplyPayload; results: readonly OutboundDeliveryResult[]; }) => Promise | void; /** Channel-advertised presentation features and limits used by core adaptation. */ presentationCapabilities?: ChannelPresentationCapabilities; deliveryCapabilities?: ChannelDeliveryCapabilities; /** Render an adapted portable presentation into channel-native payload data. */ renderPresentation?: (params: { payload: ReplyPayload; presentation: MessagePresentation; ctx: ChannelOutboundPayloadContext; }) => Promise | ReplyPayload | null; pinDeliveredMessage?: (params: { cfg: OpenClawConfig; target: ChannelOutboundTargetRef; messageId: string; pin: ReplyPayloadDeliveryPin; gatewayClientScopes?: readonly string[]; }) => Promise | void; /** * @deprecated Use shouldTreatDeliveredTextAsVisible instead. */ shouldTreatRoutedTextAsVisible?: (params: { kind: "tool" | "block" | "final"; text?: string; }) => boolean; shouldTreatDeliveredTextAsVisible?: (params: { kind: "tool" | "block" | "final"; text?: string; }) => boolean; preferFinalAssistantVisibleText?: boolean; targetsMatchForReplySuppression?: (params: { originTarget: string; targetKey: string; targetThreadId?: string; }) => boolean; resolveTarget?: (params: { cfg?: OpenClawConfig; to?: string; allowFrom?: string[]; accountId?: string | null; mode?: ChannelOutboundTargetMode; }) => { ok: true; to: string; } | { ok: false; error: Error; }; sendPayload?: (ctx: ChannelOutboundPayloadContext) => Promise; sendFormattedText?: (ctx: ChannelOutboundFormattedContext) => Promise; sendFormattedMedia?: (ctx: ChannelOutboundFormattedContext & { mediaUrl: string; }) => Promise; sendText?: (ctx: ChannelOutboundContext) => Promise; sendMedia?: (ctx: ChannelOutboundContext) => Promise; sendPoll?: (ctx: ChannelPollContext) => Promise; }; //#endregion export { OutboundPayloadDeliverySuppressionReason as S, chunkTextWithMode as _, ChannelOutboundFormattedContext as a, OutboundDeliveryResult as b, ChannelOutboundTargetRef as c, OutboundDeliveryFormattingOptions as d, ChunkMode as f, chunkText as g, chunkMarkdownTextWithMode as h, ChannelOutboundContext as i, ChannelPresentationCapabilities as l, chunkMarkdownText as m, ChannelOutboundAdapter as n, ChannelOutboundPayloadContext as o, chunkByNewline as p, ChannelOutboundChunkContext as r, ChannelOutboundPayloadHint as s, ChannelDeliveryCapabilities as t, OutboundIdentity as u, resolveChunkMode as v, OutboundPayloadDeliveryOutcome as x, resolveTextChunkLimit as y };