@adhdev/daemon-core 0.9.82-rc.103 → 0.9.82-rc.104
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/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/commands/chat-commands.ts +7 -1
package/dist/index.mjs
CHANGED
|
@@ -16920,8 +16920,9 @@ async function handleReadChat(h, args) {
|
|
|
16920
16920
|
const partialReason = typeof nativeHistory?.partialReason === "string" ? nativeHistory.partialReason : void 0;
|
|
16921
16921
|
const unavailableReason = typeof nativeHistory?.unavailableReason === "string" ? nativeHistory.unavailableReason : void 0;
|
|
16922
16922
|
const lookup = nativeHistory.lookup === "workspace" ? "workspace" : "session";
|
|
16923
|
+
const nativeHistorySessionForMapping = adapter.cliType === "antigravity-cli" && historyProviderSessionId && nativeHistorySessionId && historyProviderSessionId !== nativeHistorySessionId ? void 0 : nativeHistorySessionId;
|
|
16923
16924
|
const safeMapping = hasSafeNativeHistoryMapping({
|
|
16924
|
-
historySessionId: lookup === "workspace" ? void 0 :
|
|
16925
|
+
historySessionId: lookup === "workspace" ? void 0 : nativeHistorySessionForMapping,
|
|
16925
16926
|
providerSessionId: lookup === "workspace" ? void 0 : historyProviderSessionId || providerSessionId,
|
|
16926
16927
|
workspace,
|
|
16927
16928
|
nativeMessages,
|