mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-24 02:51:16 +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
70 lines
2.5 KiB
TypeScript
70 lines
2.5 KiB
TypeScript
/**
|
|
* @deprecated Broad public SDK barrel. Prefer focused conversation/thread
|
|
* binding subpaths and avoid adding new imports here.
|
|
*/
|
|
|
|
export {
|
|
ensureConfiguredBindingRouteReady,
|
|
resolveConfiguredBindingRoute,
|
|
resolveRuntimeConversationBindingRoute,
|
|
} from "../channels/plugins/binding-routing.js";
|
|
export type {
|
|
ConfiguredBindingRouteResult,
|
|
RuntimeConversationBindingRouteResult,
|
|
} from "../channels/plugins/binding-routing.js";
|
|
|
|
export { resolveConversationLabel } from "../channels/conversation-label.js";
|
|
export { recordInboundSession } from "../channels/session.js";
|
|
export { recordInboundSessionMetaSafe } from "../channels/session-meta.js";
|
|
export { resolveThreadBindingConversationIdFromBindingId } from "../channels/thread-binding-id.js";
|
|
export {
|
|
createScopedAccountReplyToModeResolver,
|
|
createStaticReplyToModeResolver,
|
|
createTopLevelChannelReplyToModeResolver,
|
|
} from "../channels/plugins/threading-helpers.js";
|
|
export {
|
|
formatThreadBindingDurationLabel,
|
|
resolveThreadBindingFarewellText,
|
|
resolveThreadBindingIntroText,
|
|
resolveThreadBindingThreadName,
|
|
} from "../channels/thread-bindings-messages.js";
|
|
export {
|
|
formatThreadBindingDisabledError,
|
|
formatThreadBindingSpawnDisabledError,
|
|
resolveThreadBindingEffectiveExpiresAt,
|
|
resolveThreadBindingIdleTimeoutMs,
|
|
resolveThreadBindingIdleTimeoutMsForChannel,
|
|
resolveThreadBindingMaxAgeMs,
|
|
resolveThreadBindingMaxAgeMsForChannel,
|
|
resolveThreadBindingsEnabled,
|
|
resolveThreadBindingSpawnPolicy,
|
|
} from "../channels/thread-bindings-policy.js";
|
|
export { resolveThreadBindingLifecycle } from "../shared/thread-binding-lifecycle.js";
|
|
|
|
export {
|
|
getSessionBindingService,
|
|
registerSessionBindingAdapter,
|
|
unregisterSessionBindingAdapter,
|
|
} from "../infra/outbound/session-binding-service.js";
|
|
export type {
|
|
BindingTargetKind,
|
|
SessionBindingAdapter,
|
|
SessionBindingBindInput,
|
|
SessionBindingRecord,
|
|
} from "../infra/outbound/session-binding-service.js";
|
|
export { testing } from "../infra/outbound/session-binding-service.js";
|
|
|
|
export { resolvePairingIdLabel } from "../pairing/pairing-labels.js";
|
|
export { buildPairingReply } from "../pairing/pairing-messages.js";
|
|
export {
|
|
readChannelAllowFromStore,
|
|
upsertChannelPairingRequest,
|
|
} from "../pairing/pairing-store.js";
|
|
export {
|
|
buildPluginBindingApprovalCustomId,
|
|
buildPluginBindingResolvedText,
|
|
parsePluginBindingApprovalCustomId,
|
|
resolvePluginConversationBindingApproval,
|
|
} from "../plugins/conversation-binding.js";
|
|
export { resolvePinnedMainDmOwnerFromAllowlist } from "./channel-access-compat.js";
|