replicas-engine 0.1.548 → 0.1.549

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 +17 -2
  2. package/package.json +1 -1
package/dist/src/index.js CHANGED
@@ -702,7 +702,7 @@ var WORKSPACE_SIZES = ["small", "large"];
702
702
  var INVALID_WORKSPACE_SIZE_ERROR = `Invalid size: must be one of ${WORKSPACE_SIZES.join(", ")}`;
703
703
 
704
704
  // ../shared/src/e2b.ts
705
- var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-08-02-v4";
705
+ var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-08-02-v5";
706
706
 
707
707
  // ../shared/src/runtime-env.ts
708
708
  function shellQuotePosix(value) {
@@ -4959,6 +4959,21 @@ function isAgentBackendEvent(value) {
4959
4959
  return typeof candidate.timestamp === "string" && typeof candidate.type === "string" && typeof candidate.payload === "object" && candidate.payload !== null;
4960
4960
  }
4961
4961
 
4962
+ // ../shared/src/onboarding-emails.ts
4963
+ var EMAIL_KEYS = [
4964
+ "welcome",
4965
+ "no_repo_24h",
4966
+ "first_pr_merged",
4967
+ "day_5_shipped",
4968
+ "day_7_solo",
4969
+ "day_14_no_pr",
4970
+ "trial_day_7",
4971
+ "trial_day_12",
4972
+ "trial_expired"
4973
+ ];
4974
+ var MANUAL_EMAIL_TEMPLATE_KEYS = ["product_update"];
4975
+ var EMAIL_TEMPLATE_KEYS = [...EMAIL_KEYS, ...MANUAL_EMAIL_TEMPLATE_KEYS];
4976
+
4962
4977
  // ../shared/src/object-store/types.ts
4963
4978
  var MEDIA_KIND = {
4964
4979
  IMAGE: "image",
@@ -10276,7 +10291,7 @@ var DEFAULT_CODEX_ARGS = ["app-server", "--listen", "stdio://"];
10276
10291
  var MIN_CODEX_CLI_VERSION = "0.144.6";
10277
10292
  var CODEX_UPGRADE_TIMEOUT_MS = 12e4;
10278
10293
  var codexCliVersionEnsured = null;
10279
- var ENGINE_PACKAGE_VERSION = "0.1.548";
10294
+ var ENGINE_PACKAGE_VERSION = "0.1.549";
10280
10295
  var INITIALIZE_METHOD = "initialize";
10281
10296
  var INITIALIZED_NOTIFICATION = "initialized";
10282
10297
  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.548",
3
+ "version": "0.1.549",
4
4
  "description": "Lightweight API server for Replicas workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",