feat(FN-1320): re-engage autopilot when resuming missions

- Re-engage MissionAutopilot when a paused mission is resumed with autopilot enabled
- Wire mission autopilot into dashboard route setup so resume flows can trigger watcher start
- Extend mission e2e tests to cover autopilot mock shape and resume re-engagement behavior
- Add a patch changeset documenting the mission resume autopilot fix
This commit is contained in:
gsxdsm
2026-04-08 16:29:46 -07:00
parent e044cfbed7
commit 719cf901aa
4 changed files with 121 additions and 5 deletions

View File

@@ -67,6 +67,7 @@ export interface ServerOptions {
isWatching(missionId: string): boolean;
getAutopilotStatus(missionId: string): import("@fusion/core").AutopilotStatus;
checkAndStartMission(missionId: string): Promise<void>;
recoverStaleMission(missionId: string): Promise<void>;
start(): void;
stop(): void;
};