mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-02 20:41:33 +00:00
* refactor(plugins): split update lifecycle * fix(plugins): break update type cycle * fix(plugins): keep update modules below line budget * fix(plugins): preserve update export surface
11 lines
516 B
TypeScript
11 lines
516 B
TypeScript
/** Updates installed plugins across npm, ClawHub, marketplace, Git, and bundled bridge sources. */
|
|
export type { PluginUpdateIntegrityDriftParams, PluginUpdateOutcome } from "./update-source.js";
|
|
|
|
export {
|
|
isPluginInstallRecordUpdateSource,
|
|
pluginInstallRecordMayMigrateConfigId,
|
|
} from "./update-source.js";
|
|
export { isClawHubTrustSkippedOutcome } from "./update-attempt.js";
|
|
export { updateNpmInstalledPlugins } from "./update-installed.js";
|
|
export { syncPluginsForUpdateChannel } from "./update-channel.js";
|