replicas-engine 0.1.498 → 0.1.500

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 +12 -10
  2. package/package.json +1 -1
package/dist/src/index.js CHANGED
@@ -526,17 +526,19 @@ var AUTOMATED_SOURCES = ["api", "automation"];
526
526
  var INTEGRATION_SOURCES_SQL = INTEGRATION_SOURCES.map((s) => `'${s}'`).join(", ");
527
527
  var AUTOMATED_SOURCES_SQL = AUTOMATED_SOURCES.map((s) => `'${s}'`).join(", ");
528
528
  var PLANS = {
529
- hobby: {
530
- id: "hobby",
531
- name: "Hobby",
529
+ trial: {
530
+ id: "trial",
531
+ name: "Free Trial",
532
532
  monthlyPrice: 0,
533
533
  seatPriceCents: 0,
534
534
  features: [
535
- "2,400 manual/automated workspace minutes per month",
536
- "Up to 3 repositories",
537
- "Up to 5 environments",
538
- "Up to 2 automations",
539
- "Warm pools and warm hooks"
535
+ "14 days free, no credit card required",
536
+ "Unlimited manual workspace minutes",
537
+ "15,000 automated workspace minutes",
538
+ "Unlimited repositories and environments",
539
+ "Unlimited automations",
540
+ "Warm pools and warm hooks",
541
+ "API access"
540
542
  ]
541
543
  },
542
544
  developer: {
@@ -609,7 +611,7 @@ var WORKSPACE_SIZES = ["small", "large"];
609
611
  var INVALID_WORKSPACE_SIZE_ERROR = `Invalid size: must be one of ${WORKSPACE_SIZES.join(", ")}`;
610
612
 
611
613
  // ../shared/src/e2b.ts
612
- var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-07-24-v6";
614
+ var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-07-25-v2";
613
615
 
614
616
  // ../shared/src/runtime-env.ts
615
617
  function shellQuotePosix(value) {
@@ -9934,7 +9936,7 @@ var DEFAULT_CODEX_ARGS = ["app-server", "--listen", "stdio://"];
9934
9936
  var MIN_CODEX_CLI_VERSION = "0.144.6";
9935
9937
  var CODEX_UPGRADE_TIMEOUT_MS = 12e4;
9936
9938
  var codexCliVersionEnsured = null;
9937
- var ENGINE_PACKAGE_VERSION = "0.1.498";
9939
+ var ENGINE_PACKAGE_VERSION = "0.1.500";
9938
9940
  var INITIALIZE_METHOD = "initialize";
9939
9941
  var INITIALIZED_NOTIFICATION = "initialized";
9940
9942
  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.498",
3
+ "version": "0.1.500",
4
4
  "description": "Lightweight API server for Replicas workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",