mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-26 17:23:52 +00:00
* refactor(plugin-sdk): narrow wildcard barrels to explicit used exports * refactor(tools): delete dead tool-planning module exposed by barrel narrowing * fix(plugin-sdk): restore deprecation tag on OpenClawSchemaType alias * test(agents): drop test for deleted runtime proxy module * refactor(tools): trim descriptor types to cache consumers * refactor(deadcode): harvest exports orphaned by barrel narrowing * refactor(deadcode): harvest exports orphaned by barrel narrowing (rest) * fix(agents): restore sdk imports and test markers via public predicate * fix(plugin-sdk): named type re-exports in plugin-entry; trim types barrel precisely * chore(plugin-sdk): account unmasked deprecated provider types in budgets * fix(plugins): name star-only type rows for dts bundling * fix(plugins): restore host-hook surface; unexport internal api compositions * fix(plugins): named type imports for api composition; restore needed source exports * fix(plugins): knip-visible type imports for registry surfaces * test: adapt tests to privatized media and command internals * fix(qa-lab): re-export snapshot conversation type * style: format sessions sdk imports * fix(plugins): restore smoke entry export; pin budgets to exact actuals * fix(plugins): canonical smoke-entry import; drop orphaned root shims * fix(plugins): allowlist manifest probe, repoint qa web import, drop dead browser barrels * fix(plugin-sdk): pin codex auth marker and scaffold provider type * fix(qa-lab): keep web-facing model-selection shim within boundary rules * fix(plugin-sdk): preserve merged contracts through narrowed barrels * chore(plugin-sdk): pin post-rebase surface budgets
51 lines
2.1 KiB
TypeScript
51 lines
2.1 KiB
TypeScript
// Shared root plugin-sdk surface.
|
|
// Keep this entry intentionally tiny. Channel/provider helpers belong on
|
|
// dedicated subpaths or, for legacy consumers, the compat surface.
|
|
|
|
export type {
|
|
ChannelAccountSnapshot,
|
|
ChannelAgentTool,
|
|
ChannelMessageActionAdapter,
|
|
} from "../channels/plugins/types.public.js";
|
|
export type { ChannelGatewayContext } from "../channels/plugins/types.adapters.js";
|
|
export type { ChannelConfigSchema } from "../channels/plugins/types.config.js";
|
|
export type { ChannelSetupInput } from "../channels/plugins/types.public.js";
|
|
export type { ChannelSetupAdapter } from "../channels/plugins/types.adapters.js";
|
|
|
|
export type { ChannelPlugin } from "../channels/plugins/types.plugin.js";
|
|
|
|
export type { ChannelSetupWizard } from "../channels/plugins/setup-wizard-types.js";
|
|
export type {
|
|
AnyAgentTool,
|
|
OpenClawPluginApi,
|
|
OpenClawPluginConfigSchema,
|
|
PluginLogger,
|
|
} from "../plugins/types.js";
|
|
|
|
export type { PluginRuntime } from "../plugins/runtime/types.js";
|
|
|
|
export type { OpenClawConfig } from "../config/config.js";
|
|
/** @deprecated Use OpenClawConfig instead */
|
|
export type { OpenClawConfig as ClawdbotConfig } from "../config/config.js";
|
|
|
|
export type { SecretInput } from "../config/types.secrets.js";
|
|
export type { RuntimeEnv } from "../runtime.js";
|
|
|
|
export type { ReplyPayload } from "./reply-payload.js";
|
|
export type { WizardPrompter } from "../wizard/prompts.js";
|
|
|
|
export { emptyPluginConfigSchema } from "../plugins/config-schema.js";
|
|
export { optionalStringEnum, stringEnum } from "../agents/schema/string-enum.js";
|
|
export { assertContextEngineHostSupport } from "../context-engine/host-compat.js";
|
|
export {
|
|
buildMemorySystemPromptAddition,
|
|
delegateCompactionToRuntime,
|
|
} from "../context-engine/delegate.js";
|
|
export { registerContextEngine } from "../context-engine/registry.js";
|
|
export {
|
|
ContextEngineRuntimeSettingsUnavailableError,
|
|
ContextEngineRuntimeSettingsUnsupportedError,
|
|
} from "../context-engine/types.js";
|
|
export { onDiagnosticEvent } from "../infra/diagnostic-events.js";
|
|
/** @deprecated Use OpenClawConfig instead */
|
|
export type { OpenClawConfig as OpenClawSchemaType } from "../config/config.js";
|