replicas-engine 0.1.260 → 0.1.261

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
@@ -286,7 +286,7 @@ var WORKSPACE_SIZES = ["small", "large"];
286
286
  var INVALID_WORKSPACE_SIZE_ERROR = `Invalid size: must be one of ${WORKSPACE_SIZES.join(", ")}`;
287
287
 
288
288
  // ../shared/src/e2b.ts
289
- var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-06-04-v2";
289
+ var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-06-04-v3";
290
290
 
291
291
  // ../shared/src/runtime-env.ts
292
292
  function parsePosixEnvFile(content) {
@@ -2028,6 +2028,7 @@ var CLAUDE_AUTH_ENV_KEYS_BY_METHOD = {
2028
2028
  // ../shared/src/routes/workspaces.ts
2029
2029
  var WORKSPACE_FILE_UPLOAD_MAX_SIZE_BYTES = 20 * 1024 * 1024;
2030
2030
  var WORKSPACE_FILE_CONTENT_MAX_SIZE_BYTES = 1 * 1024 * 1024;
2031
+ var ONE_DAY_MS = 24 * 60 * 60 * 1e3;
2031
2032
 
2032
2033
  // ../shared/src/audit-log.ts
2033
2034
  var AUDIT_LOG_ACTION = {
@@ -6372,7 +6373,7 @@ var AspClient = class {
6372
6373
  // src/managers/codex-asp/app-server-process.ts
6373
6374
  var DEFAULT_CODEX_BINARY = "codex";
6374
6375
  var DEFAULT_CODEX_ARGS = ["app-server", "--listen", "stdio://"];
6375
- var ENGINE_PACKAGE_VERSION = "0.1.260";
6376
+ var ENGINE_PACKAGE_VERSION = "0.1.261";
6376
6377
  var INITIALIZE_METHOD = "initialize";
6377
6378
  var INITIALIZED_NOTIFICATION = "initialized";
6378
6379
  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.260",
3
+ "version": "0.1.261",
4
4
  "description": "Lightweight API server for Replicas workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",