mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-12 21:53:00 -06:00
c6b2ec28c8
* refactor(onboarding): remove search setup barrel * refactor(plugins): reuse detected package manifest * test(update): replace global helper bridges * refactor(talk): remove dead legacy response fallback * refactor(protocol): derive root types from schema The maintainer approved broadening the additive schema-backed type surface without a protocol version bump. * fix(plugins): drop stale package path import * test(protocol): type dynamic registry lookups * docs(talk): explain canonical response boundary * refactor(talk): enforce canonical response input * fix(protocol): keep root type exports registry-free * refactor(update): expose helpers through test facades * fix(protocol): keep result types on leaf schema modules
16 lines
577 B
TypeScript
16 lines
577 B
TypeScript
import { recoverInstalledLaunchAgentAfterUpdate } from "./update-command-launch-agent-recovery.js";
|
|
import {
|
|
formatPostUpdateGatewayRecoveryInstructions,
|
|
hasLoadedLaunchdKeepAliveSupervisor,
|
|
recoverLaunchAgentAndRecheckGatewayHealth,
|
|
shouldUseLegacyProcessRestartAfterUpdate,
|
|
} from "./update-command-service-recovery.js";
|
|
|
|
export const testing = {
|
|
formatPostUpdateGatewayRecoveryInstructions,
|
|
recoverInstalledLaunchAgentAfterUpdate,
|
|
recoverLaunchAgentAndRecheckGatewayHealth,
|
|
hasLoadedLaunchdKeepAliveSupervisor,
|
|
shouldUseLegacyProcessRestartAfterUpdate,
|
|
};
|