@adhdev/daemon-standalone 0.9.82-rc.108 → 0.9.82-rc.109
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 +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -39223,7 +39223,9 @@ ${effect.notification.body || ""}`.trim();
|
|
|
39223
39223
|
nativeMessages,
|
|
39224
39224
|
ptyMessages: returnedMessages
|
|
39225
39225
|
});
|
|
39226
|
-
|
|
39226
|
+
const nativeUsableForChatMessages = nativeHistory.source === "provider-native" && nativeMessages.length > 0 && nativeHistoryCoverage !== "partial" && nativeHistoryCoverage !== "unavailable" && safeMapping;
|
|
39227
|
+
const allowStaleNativeChatMessages = adapter.cliType === "antigravity-cli" && nativeUsableForChatMessages;
|
|
39228
|
+
if (nativeUsableForChatMessages && (freshEnough || allowStaleNativeChatMessages)) {
|
|
39227
39229
|
selectedMessages = finalizeStreamingMessagesWhenIdle(nativeMessages, returnedStatus);
|
|
39228
39230
|
selectedProviderSessionId = historyProviderSessionId || providerSessionId;
|
|
39229
39231
|
selectedTranscriptAuthority = "provider";
|