replicas-engine 0.1.436 → 0.1.437
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 +14 -14
- package/package.json +1 -1
package/dist/src/index.js
CHANGED
|
@@ -429,12 +429,11 @@ var PLANS = {
|
|
|
429
429
|
monthlyPrice: 0,
|
|
430
430
|
seatPriceCents: 0,
|
|
431
431
|
features: [
|
|
432
|
-
"2,400
|
|
433
|
-
"Use them however you want, manual or automated",
|
|
434
|
-
"Automations (limited to 2)",
|
|
435
|
-
"Warm pools and warm hooks",
|
|
432
|
+
"2,400 manual/automated workspace minutes per month",
|
|
436
433
|
"Up to 3 repositories",
|
|
437
|
-
"Up to 5 environments"
|
|
434
|
+
"Up to 5 environments",
|
|
435
|
+
"Up to 2 automations",
|
|
436
|
+
"Warm pools and warm hooks"
|
|
438
437
|
]
|
|
439
438
|
},
|
|
440
439
|
developer: {
|
|
@@ -443,8 +442,8 @@ var PLANS = {
|
|
|
443
442
|
monthlyPrice: 120,
|
|
444
443
|
seatPriceCents: 12e3,
|
|
445
444
|
features: [
|
|
446
|
-
"Unlimited manual
|
|
447
|
-
"5,000
|
|
445
|
+
"Unlimited manual workspace minutes",
|
|
446
|
+
"5,000 automated workspace minutes per month",
|
|
448
447
|
"Up to 10 repositories",
|
|
449
448
|
"Up to 15 environments",
|
|
450
449
|
"Up to 5 automations",
|
|
@@ -458,12 +457,12 @@ var PLANS = {
|
|
|
458
457
|
monthlyPrice: 300,
|
|
459
458
|
seatPriceCents: 3e4,
|
|
460
459
|
features: [
|
|
461
|
-
"Unlimited manual
|
|
462
|
-
"15,000
|
|
460
|
+
"Unlimited manual workspace minutes",
|
|
461
|
+
"15,000 automated workspace minutes per month",
|
|
463
462
|
"Unlimited repositories",
|
|
464
463
|
"Unlimited automations",
|
|
465
|
-
"Higher API rate limits",
|
|
466
464
|
"Warm pools and warm hooks",
|
|
465
|
+
"Higher API rate limits",
|
|
467
466
|
"Auto-upgraded sandbox resources (4 vCPU, 32 GB disk, 16 GB memory)",
|
|
468
467
|
"Shared Slack support channel"
|
|
469
468
|
]
|
|
@@ -474,11 +473,12 @@ var PLANS = {
|
|
|
474
473
|
monthlyPrice: 0,
|
|
475
474
|
seatPriceCents: 0,
|
|
476
475
|
features: [
|
|
477
|
-
"Unlimited
|
|
476
|
+
"Unlimited manual workspace minutes",
|
|
477
|
+
"Unlimited automated workspace minutes",
|
|
478
478
|
"Unlimited automations",
|
|
479
|
+
"Custom warm hooks and pools",
|
|
479
480
|
"Custom API rates",
|
|
480
481
|
"Custom rate limits",
|
|
481
|
-
"Custom warm hooks and pools",
|
|
482
482
|
"Shared Slack support channel",
|
|
483
483
|
"SOC 2"
|
|
484
484
|
]
|
|
@@ -506,7 +506,7 @@ var WORKSPACE_SIZES = ["small", "large"];
|
|
|
506
506
|
var INVALID_WORKSPACE_SIZE_ERROR = `Invalid size: must be one of ${WORKSPACE_SIZES.join(", ")}`;
|
|
507
507
|
|
|
508
508
|
// ../shared/src/e2b.ts
|
|
509
|
-
var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-07-
|
|
509
|
+
var E2B_TEMPLATE_NAME = "replicas-sandbox-2026-07-15-v2";
|
|
510
510
|
|
|
511
511
|
// ../shared/src/runtime-env.ts
|
|
512
512
|
function shellQuotePosix(value) {
|
|
@@ -8520,7 +8520,7 @@ var DEFAULT_CODEX_ARGS = ["app-server", "--listen", "stdio://"];
|
|
|
8520
8520
|
var MIN_CODEX_CLI_VERSION = "0.144.0";
|
|
8521
8521
|
var CODEX_UPGRADE_TIMEOUT_MS = 12e4;
|
|
8522
8522
|
var codexCliVersionEnsured = null;
|
|
8523
|
-
var ENGINE_PACKAGE_VERSION = "0.1.
|
|
8523
|
+
var ENGINE_PACKAGE_VERSION = "0.1.437";
|
|
8524
8524
|
var INITIALIZE_METHOD = "initialize";
|
|
8525
8525
|
var INITIALIZED_NOTIFICATION = "initialized";
|
|
8526
8526
|
var ACCOUNT_LOGIN_START_METHOD = "account/login/start";
|