replicas-engine 0.1.531 → 0.1.532

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
@@ -623,7 +623,7 @@ var WORKSPACE_SIZES = ["small", "large"];
623
623
  var INVALID_WORKSPACE_SIZE_ERROR = `Invalid size: must be one of ${WORKSPACE_SIZES.join(", ")}`;
624
624
 
625
625
  // ../shared/src/e2b.ts
626
- var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-07-31-v2";
626
+ var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-07-31-v3";
627
627
 
628
628
  // ../shared/src/runtime-env.ts
629
629
  function shellQuotePosix(value) {
@@ -3412,7 +3412,12 @@ var workspaceChangedEventSchema = z2.discriminatedUnion("type", [
3412
3412
  chatId: z2.string(),
3413
3413
  ts: z2.string()
3414
3414
  }),
3415
- z2.object({ type: z2.literal("presence.changed"), ts: z2.string() })
3415
+ z2.object({ type: z2.literal("presence.changed"), ts: z2.string() }),
3416
+ z2.object({
3417
+ type: z2.literal("mobile-testing.changed"),
3418
+ workspaceId: z2.string(),
3419
+ ts: z2.string()
3420
+ })
3416
3421
  ]);
3417
3422
 
3418
3423
  // ../shared/src/routes/presence.ts
@@ -10140,7 +10145,7 @@ var DEFAULT_CODEX_ARGS = ["app-server", "--listen", "stdio://"];
10140
10145
  var MIN_CODEX_CLI_VERSION = "0.144.6";
10141
10146
  var CODEX_UPGRADE_TIMEOUT_MS = 12e4;
10142
10147
  var codexCliVersionEnsured = null;
10143
- var ENGINE_PACKAGE_VERSION = "0.1.531";
10148
+ var ENGINE_PACKAGE_VERSION = "0.1.532";
10144
10149
  var INITIALIZE_METHOD = "initialize";
10145
10150
  var INITIALIZED_NOTIFICATION = "initialized";
10146
10151
  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.531",
3
+ "version": "0.1.532",
4
4
  "description": "Lightweight API server for Replicas workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",