mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-14 09:46:06 +00:00
* refactor(matrix): retire pre-2026.4 legacy crypto and flat-storage migrations * refactor(cli): drop pre-tsdown daemon-cli dist compat shim from the build * refactor(diffs): remove deprecated image*/format tool params and output aliases * refactor(ui): drop pre-gateway-scoped localStorage readers and legacy theme map * refactor: remove assorted pre-2026.4 compat shims and deprecated aliases * fix(discord): map legacy thread-binding fields in the doctor JSON import * fix(msteams): keep bot read fallback for legacy imported conversation rows * test(msteams): cover legacy bot-only imported conversation references * fix(ui): keep channel-prefixed session key display fallback * chore: refresh native i18n inventory and build-docker step count * chore(matrix): drop now-unused migration-config module * chore: re-pin plugin SDK public export budget after compat removals * chore: refresh native i18n inventory after rebase * chore: re-pin plugin SDK callable budget and refresh i18n inventory after rebase
38 lines
1.3 KiB
TypeScript
38 lines
1.3 KiB
TypeScript
// Matrix API module exposes the plugin public contract.
|
|
export { matrixPlugin } from "./src/channel.js";
|
|
export { createMatrixSetupWizardProxy, matrixSetupAdapter } from "./src/setup-core.js";
|
|
export { matrixOnboardingAdapter } from "./src/setup-surface.js";
|
|
export {
|
|
findMatrixAccountEntry,
|
|
requiresExplicitMatrixDefaultAccount,
|
|
resolveConfiguredMatrixAccountIds,
|
|
resolveMatrixChannelConfig,
|
|
resolveMatrixDefaultOrOnlyAccountId,
|
|
} from "./src/account-selection.js";
|
|
export {
|
|
getMatrixScopedEnvVarNames,
|
|
listMatrixEnvAccountIds,
|
|
resolveMatrixEnvAccountToken,
|
|
} from "./src/env-vars.js";
|
|
export {
|
|
hashMatrixAccessToken,
|
|
resolveMatrixAccountStorageRoot,
|
|
resolveMatrixCredentialsDir,
|
|
resolveMatrixCredentialsFilename,
|
|
resolveMatrixCredentialsPath,
|
|
resolveMatrixHomeserverKey,
|
|
sanitizeMatrixPathSegment,
|
|
} from "./src/storage-paths.js";
|
|
export {
|
|
createMatrixThreadBindingManager,
|
|
getMatrixThreadBindingManager,
|
|
resetMatrixThreadBindingsForTests,
|
|
} from "./src/matrix/thread-bindings.js";
|
|
export {
|
|
setMatrixThreadBindingIdleTimeoutBySessionKey,
|
|
setMatrixThreadBindingMaxAgeBySessionKey,
|
|
} from "./src/matrix/thread-bindings-shared.js";
|
|
export { matrixOnboardingAdapter as matrixSetupWizard } from "./src/onboarding.js";
|
|
|
|
export const matrixSessionBindingAdapterChannels = ["matrix"] as const;
|