replicas-engine 0.1.219 → 0.1.220

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
@@ -283,6 +283,8 @@ function buildPaths(homeDir) {
283
283
  }
284
284
  var DAYTONA_PATHS = buildPaths("/home/ubuntu");
285
285
  var E2B_PATHS = buildPaths("/home/user");
286
+ var WORKSPACE_SIZES = ["small", "large"];
287
+ var INVALID_WORKSPACE_SIZE_ERROR = `Invalid size: must be one of ${WORKSPACE_SIZES.join(", ")}`;
286
288
 
287
289
  // ../shared/src/runtime-env.ts
288
290
  function parsePosixEnvFile(content) {
@@ -1759,7 +1761,7 @@ function parseReplicasConfigString(content, filename) {
1759
1761
  }
1760
1762
 
1761
1763
  // ../shared/src/engine/environment.ts
1762
- var DAYTONA_SNAPSHOT_ID = "27-05-2026-royal-york-v1";
1764
+ var DAYTONA_SNAPSHOT_ID = "27-05-2026-royal-york-v2";
1763
1765
 
1764
1766
  // ../shared/src/engine/types.ts
1765
1767
  var DEFAULT_CHAT_TITLES = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-engine",
3
- "version": "0.1.219",
3
+ "version": "0.1.220",
4
4
  "description": "Lightweight API server for Replicas workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",