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";