bingocode 1.1.200-beta.8 → 1.1.200-beta.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -3864,6 +3864,7 @@ async function loadSessionFile(sessionId: UUID): Promise<{
|
|
|
3864
3864
|
fileHistorySnapshots: Map<UUID, FileHistorySnapshotMessage>
|
|
3865
3865
|
attributionSnapshots: Map<UUID, AttributionSnapshotMessage>
|
|
3866
3866
|
contentReplacements: Map<UUID, ContentReplacementRecord[]>
|
|
3867
|
+
brainModes: Map<UUID, boolean>
|
|
3867
3868
|
contextCollapseCommits: ContextCollapseCommitEntry[]
|
|
3868
3869
|
contextCollapseSnapshot: ContextCollapseSnapshotEntry | undefined
|
|
3869
3870
|
}> {
|
|
@@ -3916,6 +3917,7 @@ export async function getLastSessionLog(
|
|
|
3916
3917
|
tags,
|
|
3917
3918
|
agentSettings,
|
|
3918
3919
|
worktreeStates,
|
|
3920
|
+
brainModes,
|
|
3919
3921
|
fileHistorySnapshots,
|
|
3920
3922
|
attributionSnapshots,
|
|
3921
3923
|
contentReplacements,
|
|
@@ -3960,6 +3962,7 @@ export async function getLastSessionLog(
|
|
|
3960
3962
|
contentReplacements.get(sessionId) ?? [],
|
|
3961
3963
|
),
|
|
3962
3964
|
worktreeSession: worktreeStates.get(sessionId),
|
|
3965
|
+
brainMode: brainModes.get(sessionId),
|
|
3963
3966
|
contextCollapseCommits: contextCollapseCommits.filter(
|
|
3964
3967
|
e => e.sessionId === sessionId,
|
|
3965
3968
|
),
|