File tree Expand file tree Collapse file tree
packages/cli/src/commands Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -692,7 +692,9 @@ export async function runDoctor(
692692 if ( deadKey in mcConfig ) {
693693 delete mcConfig [ deadKey ] ;
694694 mcChanged = true ;
695- log . success ( `Removed deprecated ${ deadKey } (replaced by tiered emergency drop)` ) ;
695+ log . success (
696+ `Removed deprecated ${ deadKey } (replaced by tiered emergency drop)` ,
697+ ) ;
696698 fixed ++ ;
697699 }
698700 }
Original file line number Diff line number Diff line change @@ -644,30 +644,6 @@ interface CopyMagicContextStateResult {
644644 lastCompartmentEndPiEntryId ?: string ;
645645}
646646
647- interface PlannedCompartmentRow {
648- sequence : number ;
649- start_message : number ;
650- end_message : number ;
651- start_message_id : string ;
652- end_message_id : string ;
653- title : string ;
654- content : string ;
655- p1 : string | null ;
656- p2 : string | null ;
657- p3 : string | null ;
658- p4 : string | null ;
659- importance : number | null ;
660- episode_type : string | null ;
661- legacy : number ;
662- }
663-
664- interface PlannedFactRow {
665- category : string ;
666- content : string ;
667- created_at : number ;
668- updated_at : number ;
669- }
670-
671647/**
672648 * The remapped state to copy, plus a committer that performs all INSERTs
673649 * inside a single transaction. The plan is computed without writing so the
You can’t perform that action at this time.
0 commit comments