replicas-engine 0.1.463 → 0.1.464

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
@@ -561,7 +561,7 @@ var WORKSPACE_SIZES = ["small", "large"];
561
561
  var INVALID_WORKSPACE_SIZE_ERROR = `Invalid size: must be one of ${WORKSPACE_SIZES.join(", ")}`;
562
562
 
563
563
  // ../shared/src/e2b.ts
564
- var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-07-19-v15";
564
+ var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-07-19-v16";
565
565
 
566
566
  // ../shared/src/runtime-env.ts
567
567
  function shellQuotePosix(value) {
@@ -3105,6 +3105,10 @@ var AUDIT_LOG_ACTIONS = Object.values(AUDIT_LOG_ACTION);
3105
3105
  // ../shared/src/automations/types.ts
3106
3106
  var AUTOMATION_DEBOUNCE_MAX_SECONDS = 24 * 60 * 60;
3107
3107
 
3108
+ // ../shared/src/routes/admin.ts
3109
+ var WEBHOOK_PROVIDERS = ["linear", "github", "gitlab", "slack", "e2b", "stripe", "sentry"];
3110
+ var WEBHOOK_PROVIDER_SET = new Set(WEBHOOK_PROVIDERS);
3111
+
3108
3112
  // ../shared/src/display-message/types.ts
3109
3113
  var BACKGROUND_TASK_SUBTYPES = /* @__PURE__ */ new Set([
3110
3114
  "task_started",
@@ -9741,7 +9745,7 @@ var DEFAULT_CODEX_ARGS = ["app-server", "--listen", "stdio://"];
9741
9745
  var MIN_CODEX_CLI_VERSION = "0.144.0";
9742
9746
  var CODEX_UPGRADE_TIMEOUT_MS = 12e4;
9743
9747
  var codexCliVersionEnsured = null;
9744
- var ENGINE_PACKAGE_VERSION = "0.1.463";
9748
+ var ENGINE_PACKAGE_VERSION = "0.1.464";
9745
9749
  var INITIALIZE_METHOD = "initialize";
9746
9750
  var INITIALIZED_NOTIFICATION = "initialized";
9747
9751
  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.463",
3
+ "version": "0.1.464",
4
4
  "description": "Lightweight API server for Replicas workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",