replicas-engine 0.1.264 → 0.1.265

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.
Files changed (2) hide show
  1. package/dist/src/index.js +10 -2
  2. package/package.json +1 -1
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-05-v1";
289
+ var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-06-05-v2";
290
290
 
291
291
  // ../shared/src/runtime-env.ts
292
292
  function parsePosixEnvFile(content) {
@@ -2194,6 +2194,14 @@ var CLAUDE_AUTH_ENV_KEYS_BY_METHOD = {
2194
2194
  // ../shared/src/routes/workspaces.ts
2195
2195
  var WORKSPACE_FILE_UPLOAD_MAX_SIZE_BYTES = 20 * 1024 * 1024;
2196
2196
  var WORKSPACE_FILE_CONTENT_MAX_SIZE_BYTES = 1 * 1024 * 1024;
2197
+ var WORKSPACE_STATUS_FILTERS = ["active", "sleeping", "preparing", "failed"];
2198
+ var DEFAULT_STATUS_FILTERS = [...WORKSPACE_STATUS_FILTERS];
2199
+ var DEFAULT_WORKSPACE_FILTERS = {
2200
+ statuses: [...DEFAULT_STATUS_FILTERS],
2201
+ sources: [],
2202
+ ownerIds: [],
2203
+ activity: "any"
2204
+ };
2197
2205
  var ONE_DAY_MS = 24 * 60 * 60 * 1e3;
2198
2206
 
2199
2207
  // ../shared/src/audit-log.ts
@@ -6567,7 +6575,7 @@ var AspClient = class {
6567
6575
  // src/managers/codex-asp/app-server-process.ts
6568
6576
  var DEFAULT_CODEX_BINARY = "codex";
6569
6577
  var DEFAULT_CODEX_ARGS = ["app-server", "--listen", "stdio://"];
6570
- var ENGINE_PACKAGE_VERSION = "0.1.264";
6578
+ var ENGINE_PACKAGE_VERSION = "0.1.265";
6571
6579
  var INITIALIZE_METHOD = "initialize";
6572
6580
  var INITIALIZED_NOTIFICATION = "initialized";
6573
6581
  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.264",
3
+ "version": "0.1.265",
4
4
  "description": "Lightweight API server for Replicas workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",