fix(plugin-sdk): use outbound adapter leaf types

This commit is contained in:
Vincent Koc
2026-04-11 17:32:36 +01:00
parent f630e8d440
commit f3f1ab0a3f
2 changed files with 3 additions and 3 deletions

View File

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

View File

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