replicas-engine 0.1.424 → 0.1.425

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 +8 -12
  2. package/package.json +1 -1
package/dist/src/index.js CHANGED
@@ -417,19 +417,18 @@ function buildCodexTokenUsageContextUsagePayload(usage) {
417
417
 
418
418
  // ../shared/src/pricing.ts
419
419
  var INTEGRATION_SOURCES = ["slack", "linear", "github", "gitlab"];
420
- var SYSTEMIC_SOURCES = ["api", "automation"];
420
+ var AUTOMATED_SOURCES = ["api", "automation"];
421
421
  var INTEGRATION_SOURCES_SQL = INTEGRATION_SOURCES.map((s) => `'${s}'`).join(", ");
422
- var SYSTEMIC_SOURCES_SQL = SYSTEMIC_SOURCES.map((s) => `'${s}'`).join(", ");
422
+ var AUTOMATED_SOURCES_SQL = AUTOMATED_SOURCES.map((s) => `'${s}'`).join(", ");
423
423
  var PLANS = {
424
424
  hobby: {
425
425
  id: "hobby",
426
426
  name: "Hobby",
427
427
  monthlyPrice: 0,
428
428
  seatPriceCents: 0,
429
- creditsIncluded: 1200,
430
429
  features: [
431
- "1,200 minutes of human-initiated workspace usage (one-time)",
432
- "1,200 minutes of API + automation usage (one-time)",
430
+ "2,400 minutes of workspace usage per month",
431
+ "Use them however you want, manual or automated",
433
432
  "Automations (limited to 2)",
434
433
  "Warm pools and warm hooks",
435
434
  "Up to 3 repositories",
@@ -441,9 +440,8 @@ var PLANS = {
441
440
  name: "Developer",
442
441
  monthlyPrice: 120,
443
442
  seatPriceCents: 12e3,
444
- creditsIncluded: 0,
445
443
  features: [
446
- "Unlimited human-initiated workspaces",
444
+ "Unlimited manual workspaces",
447
445
  "5,000 included automation/API minutes per month",
448
446
  "Up to 10 repositories",
449
447
  "Up to 15 environments",
@@ -457,9 +455,8 @@ var PLANS = {
457
455
  name: "Team",
458
456
  monthlyPrice: 300,
459
457
  seatPriceCents: 3e4,
460
- creditsIncluded: 0,
461
458
  features: [
462
- "Unlimited human-initiated workspaces",
459
+ "Unlimited manual workspaces",
463
460
  "15,000 included automation/API minutes per month",
464
461
  "Unlimited repositories",
465
462
  "Unlimited automations",
@@ -474,7 +471,6 @@ var PLANS = {
474
471
  name: "Enterprise",
475
472
  monthlyPrice: 0,
476
473
  seatPriceCents: 0,
477
- creditsIncluded: 0,
478
474
  features: [
479
475
  "Unlimited usage",
480
476
  "Unlimited automations",
@@ -508,7 +504,7 @@ var WORKSPACE_SIZES = ["small", "large"];
508
504
  var INVALID_WORKSPACE_SIZE_ERROR = `Invalid size: must be one of ${WORKSPACE_SIZES.join(", ")}`;
509
505
 
510
506
  // ../shared/src/e2b.ts
511
- var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-07-10-v5";
507
+ var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-07-10-v6";
512
508
 
513
509
  // ../shared/src/runtime-env.ts
514
510
  function shellQuotePosix(value) {
@@ -8416,7 +8412,7 @@ var DEFAULT_CODEX_ARGS = ["app-server", "--listen", "stdio://"];
8416
8412
  var MIN_CODEX_CLI_VERSION = "0.144.0";
8417
8413
  var CODEX_UPGRADE_TIMEOUT_MS = 12e4;
8418
8414
  var codexCliVersionEnsured = null;
8419
- var ENGINE_PACKAGE_VERSION = "0.1.424";
8415
+ var ENGINE_PACKAGE_VERSION = "0.1.425";
8420
8416
  var INITIALIZE_METHOD = "initialize";
8421
8417
  var INITIALIZED_NOTIFICATION = "initialized";
8422
8418
  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.424",
3
+ "version": "0.1.425",
4
4
  "description": "Lightweight API server for Replicas workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",