replicas-engine 0.1.569 → 0.1.570
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 +5 -1
- package/package.json +1 -1
package/dist/src/index.js
CHANGED
|
@@ -3439,6 +3439,10 @@ function findPrMergeSignals(request) {
|
|
|
3439
3439
|
return checks.flatMap(([name, pattern]) => pattern.test(combined) ? [name] : []);
|
|
3440
3440
|
}
|
|
3441
3441
|
|
|
3442
|
+
// ../shared/src/routes/client-state.ts
|
|
3443
|
+
var MAX_CLIENT_STATE_REQUEST_BYTES = 5 * 1024 * 1024;
|
|
3444
|
+
var MAX_CLIENT_STATE_BYTES_PER_USER = 10 * 1024 * 1024;
|
|
3445
|
+
|
|
3442
3446
|
// ../shared/src/routes/workspaces.ts
|
|
3443
3447
|
var WORKSPACE_STATUSES = ["active", "sleeping", "archived", "preparing", "error"];
|
|
3444
3448
|
var WORKSPACE_STATUS_FILTERS = WORKSPACE_STATUSES.map((status) => status === "error" ? "failed" : status);
|
|
@@ -10776,7 +10780,7 @@ var DEFAULT_CODEX_ARGS = ["app-server", "--listen", "stdio://"];
|
|
|
10776
10780
|
var MIN_CODEX_CLI_VERSION = "0.144.6";
|
|
10777
10781
|
var CODEX_UPGRADE_TIMEOUT_MS = 12e4;
|
|
10778
10782
|
var codexCliVersionEnsured = null;
|
|
10779
|
-
var ENGINE_PACKAGE_VERSION = "0.1.
|
|
10783
|
+
var ENGINE_PACKAGE_VERSION = "0.1.570";
|
|
10780
10784
|
var INITIALIZE_METHOD = "initialize";
|
|
10781
10785
|
var INITIALIZED_NOTIFICATION = "initialized";
|
|
10782
10786
|
var ACCOUNT_LOGIN_START_METHOD = "account/login/start";
|