Files
openclaw/src/plugin-sdk/twitch.ts
Val Alexander 43a941b51c fix(pair): render /pair qr as media (#70047)
* fix(pair): render pair qr as media

* fix(gateway): preserve media reply threading

* fix(gateway): harden webchat media replies

* fix(plugin-sdk): keep trustedLocalMedia internal

* docs(changelog): note pair qr media fix

* Update CHANGELOG with recent fixes and enhancements

Updated changelog to include recent fixes and enhancements.
2026-04-22 03:31:09 -05:00

47 lines
1.8 KiB
TypeScript

// Private helper surface for the bundled twitch plugin.
// Keep this list additive and scoped to the bundled Twitch surface.
import { createOptionalChannelSetupSurface } from "./channel-setup.js";
export type { ReplyPayload } from "./reply-payload.js";
export { buildChannelConfigSchema } from "../channels/plugins/config-schema.js";
export type {
ChannelGatewayContext,
ChannelOutboundAdapter,
ChannelOutboundContext,
ChannelResolveKind,
ChannelResolveResult,
ChannelStatusAdapter,
} from "../channels/plugins/types.adapters.js";
export type {
BaseProbeResult,
ChannelAccountSnapshot,
ChannelCapabilities,
ChannelLogSink,
ChannelMessageActionAdapter,
ChannelMessageActionContext,
ChannelMeta,
ChannelStatusIssue,
} from "../channels/plugins/types.public.js";
export type { ChannelPlugin } from "../channels/plugins/types.plugin.js";
export { createChannelReplyPipeline } from "./channel-reply-pipeline.js";
export type { OpenClawConfig } from "../config/config.js";
export { MarkdownConfigSchema } from "../config/zod-schema.core.js";
export type { OutboundDeliveryResult } from "../infra/outbound/deliver.js";
export { DEFAULT_ACCOUNT_ID, normalizeAccountId } from "./account-id.js";
export { emptyPluginConfigSchema } from "../plugins/config-schema.js";
export type { PluginRuntime } from "../plugins/runtime/types.js";
export type { OpenClawPluginApi } from "../plugins/types.js";
export type { RuntimeEnv } from "../runtime.js";
export { formatDocsLink } from "../terminal/links.js";
export type { WizardPrompter } from "../wizard/prompts.js";
const twitchSetup = createOptionalChannelSetupSurface({
channel: "twitch",
label: "Twitch",
npmSpec: "@openclaw/twitch",
});
export const twitchSetupAdapter = twitchSetup.setupAdapter;
export const twitchSetupWizard = twitchSetup.setupWizard;