replicas-engine 0.1.238 → 0.1.239
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/src/index.js +3 -3
- package/package.json +1 -1
package/dist/src/index.js
CHANGED
|
@@ -1783,7 +1783,7 @@ function isClaudeAuthErrorText(text) {
|
|
|
1783
1783
|
}
|
|
1784
1784
|
|
|
1785
1785
|
// ../shared/src/engine/environment.ts
|
|
1786
|
-
var DAYTONA_SNAPSHOT_ID = "29-05-2026-royal-york-
|
|
1786
|
+
var DAYTONA_SNAPSHOT_ID = "29-05-2026-royal-york-v10";
|
|
1787
1787
|
var DESKTOP_NOVNC_PORT = 6080;
|
|
1788
1788
|
|
|
1789
1789
|
// ../shared/src/engine/types.ts
|
|
@@ -6090,7 +6090,7 @@ var AspClient = class {
|
|
|
6090
6090
|
// src/managers/codex-asp/app-server-process.ts
|
|
6091
6091
|
var DEFAULT_CODEX_BINARY = "codex";
|
|
6092
6092
|
var DEFAULT_CODEX_ARGS = ["app-server", "--listen", "stdio://"];
|
|
6093
|
-
var ENGINE_PACKAGE_VERSION = "0.1.
|
|
6093
|
+
var ENGINE_PACKAGE_VERSION = "0.1.239";
|
|
6094
6094
|
var INITIALIZE_METHOD = "initialize";
|
|
6095
6095
|
var INITIALIZED_NOTIFICATION = "initialized";
|
|
6096
6096
|
var ACCOUNT_LOGIN_START_METHOD = "account/login/start";
|
|
@@ -8964,7 +8964,7 @@ var ChatService = class {
|
|
|
8964
8964
|
chat.acceptedUserEvents.delete(messageId);
|
|
8965
8965
|
}
|
|
8966
8966
|
}
|
|
8967
|
-
const acceptedEvents = [...chat.acceptedUserEvents.
|
|
8967
|
+
const acceptedEvents = [...chat.acceptedUserEvents.entries()].filter(([messageId]) => messageId === chat.activeMessageId || !chat.hasActiveTurn && chat.pendingMessageIds[0] === messageId).map(([, acceptedEvent]) => acceptedEvent).filter((acceptedEvent) => !acceptedEventInCodexTranscript(acceptedEvent, history.codexAspTranscript) && !history.events.some((event) => isSameAcceptedUserEvent(event, acceptedEvent)));
|
|
8968
8968
|
const events = [...history.events, ...acceptedEvents].sort((a, b) => getEventTimestampMs(a) - getEventTimestampMs(b));
|
|
8969
8969
|
return {
|
|
8970
8970
|
thread_id: history.thread_id,
|