replicas-engine 0.1.643 → 0.1.644
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.
|
@@ -1219,6 +1219,7 @@ var PLANS = {
|
|
|
1219
1219
|
"Unlimited automations",
|
|
1220
1220
|
"Warm pools and warm hooks",
|
|
1221
1221
|
"Higher API rate limits",
|
|
1222
|
+
"Access to a static egress IP",
|
|
1222
1223
|
"Auto-upgraded sandbox resources (4 vCPU, 32 GB disk, 16 GB memory)",
|
|
1223
1224
|
"Shared Slack support channel"
|
|
1224
1225
|
]
|
|
@@ -1297,12 +1298,13 @@ var EGRESS_PATHS = {
|
|
|
1297
1298
|
/**
|
|
1298
1299
|
* Under /run, which is tmpfs. The key therefore never touches disk and cannot
|
|
1299
1300
|
* be carried into a filesystem snapshot or a paused sandbox's disk image. It
|
|
1300
|
-
* does not survive a reboot either
|
|
1301
|
-
*
|
|
1302
|
-
*
|
|
1301
|
+
* does not survive a reboot either. A full-memory resume can reuse it only
|
|
1302
|
+
* while the root-owned revision still matches the current profile and the
|
|
1303
|
+
* running service and route are healthy.
|
|
1303
1304
|
*/
|
|
1304
1305
|
CONFIG_DIR: "/run/replicas-egress",
|
|
1305
1306
|
CONFIG_FILE: "/run/replicas-egress/config.json",
|
|
1307
|
+
REVISION_FILE: "/run/replicas-egress/revision",
|
|
1306
1308
|
/** Persistent: this records the workspace's original resolver so the tunnel can put it back, and must outlive a reboot. */
|
|
1307
1309
|
RESOLV_BACKUP: "/var/lib/replicas-egress-resolv.conf.orig",
|
|
1308
1310
|
UNIT_FILE: `/etc/systemd/system/${EGRESS_TUNNEL_SERVICE}`,
|
|
@@ -5888,7 +5890,7 @@ var DEFAULT_CODEX_ARGS = [
|
|
|
5888
5890
|
var MIN_CODEX_CLI_VERSION = "0.144.6";
|
|
5889
5891
|
var CODEX_UPGRADE_TIMEOUT_MS = 12e4;
|
|
5890
5892
|
var codexCliVersionEnsured = null;
|
|
5891
|
-
var ENGINE_PACKAGE_VERSION = "0.1.
|
|
5893
|
+
var ENGINE_PACKAGE_VERSION = "0.1.644";
|
|
5892
5894
|
var INITIALIZE_METHOD = "initialize";
|
|
5893
5895
|
var INITIALIZED_NOTIFICATION = "initialized";
|
|
5894
5896
|
var ACCOUNT_LOGIN_START_METHOD = "account/login/start";
|
package/dist/src/index.js
CHANGED