From f3f1ab0a3f7a2bb8d03ecebf134951af33fa1e19 Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Sat, 11 Apr 2026 17:32:36 +0100 Subject: [PATCH] fix(plugin-sdk): use outbound adapter leaf types --- src/plugin-sdk/channel-send-result.ts | 4 ++-- src/plugin-sdk/reply-payload.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugin-sdk/channel-send-result.ts b/src/plugin-sdk/channel-send-result.ts index 1077e9b8eaa..0ee291212a0 100644 --- a/src/plugin-sdk/channel-send-result.ts +++ b/src/plugin-sdk/channel-send-result.ts @@ -1,8 +1,8 @@ -import type { ChannelOutboundAdapter } from "../channels/plugins/types.adapters.js"; +import type { ChannelOutboundAdapter } from "../channels/plugins/outbound.types.js"; import type { ChannelPollResult } from "../channels/plugins/types.public.js"; import type { OutboundDeliveryResult } from "../infra/outbound/deliver.js"; -export type { ChannelOutboundAdapter } from "../channels/plugins/types.adapters.js"; +export type { ChannelOutboundAdapter } from "../channels/plugins/outbound.types.js"; export type ChannelSendRawResult = { ok: boolean; messageId?: string | null; diff --git a/src/plugin-sdk/reply-payload.ts b/src/plugin-sdk/reply-payload.ts index b6d22b9b766..b9ce0109d33 100644 --- a/src/plugin-sdk/reply-payload.ts +++ b/src/plugin-sdk/reply-payload.ts @@ -1,4 +1,4 @@ -import type { ChannelOutboundAdapter } from "../channels/plugins/types.adapters.js"; +import type { ChannelOutboundAdapter } from "../channels/plugins/outbound.types.js"; import { readStringValue } from "../shared/string-coerce.js"; export type { MediaPayload, MediaPayloadInput } from "../channels/plugins/media-payload.js";