replicas-engine 0.1.359 → 0.1.361

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 CHANGED
@@ -295,7 +295,7 @@ var WORKSPACE_SIZES = ["small", "large"];
295
295
  var INVALID_WORKSPACE_SIZE_ERROR = `Invalid size: must be one of ${WORKSPACE_SIZES.join(", ")}`;
296
296
 
297
297
  // ../shared/src/e2b.ts
298
- var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-06-27-v1";
298
+ var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-06-27-v3";
299
299
 
300
300
  // ../shared/src/runtime-env.ts
301
301
  function parsePosixEnvFile(content) {
@@ -2530,9 +2530,10 @@ function findPrMergeSignals(request) {
2530
2530
  }
2531
2531
 
2532
2532
  // ../shared/src/routes/workspaces.ts
2533
+ var WORKSPACE_STATUSES = ["active", "sleeping", "archived", "preparing", "error"];
2533
2534
  var WORKSPACE_FILE_UPLOAD_MAX_SIZE_BYTES = 20 * 1024 * 1024;
2534
2535
  var WORKSPACE_FILE_CONTENT_MAX_SIZE_BYTES = 1 * 1024 * 1024;
2535
- var WORKSPACE_STATUS_FILTERS = ["active", "sleeping", "preparing", "failed"];
2536
+ var WORKSPACE_STATUS_FILTERS = WORKSPACE_STATUSES.map((status) => status === "error" ? "failed" : status);
2536
2537
  var DEFAULT_STATUS_FILTERS = [...WORKSPACE_STATUS_FILTERS];
2537
2538
  var DEFAULT_WORKSPACE_FILTERS = {
2538
2539
  statuses: [...DEFAULT_STATUS_FILTERS],
@@ -7611,7 +7612,7 @@ var AspClient = class {
7611
7612
  // src/managers/codex-asp/app-server-process.ts
7612
7613
  var DEFAULT_CODEX_BINARY = "codex";
7613
7614
  var DEFAULT_CODEX_ARGS = ["app-server", "--listen", "stdio://"];
7614
- var ENGINE_PACKAGE_VERSION = "0.1.359";
7615
+ var ENGINE_PACKAGE_VERSION = "0.1.361";
7615
7616
  var INITIALIZE_METHOD = "initialize";
7616
7617
  var INITIALIZED_NOTIFICATION = "initialized";
7617
7618
  var ACCOUNT_LOGIN_START_METHOD = "account/login/start";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-engine",
3
- "version": "0.1.359",
3
+ "version": "0.1.361",
4
4
  "description": "Lightweight API server for Replicas workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",