chatroom-cli 1.70.1 → 1.70.2
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/index.js +4 -11
- package/dist/index.js.map +5 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -81464,11 +81464,12 @@ var init_featureFlags = __esm(() => {
|
|
|
81464
81464
|
});
|
|
81465
81465
|
|
|
81466
81466
|
// ../../services/backend/config/reliability.ts
|
|
81467
|
-
var HARNESS_SESSION_READY_TIMEOUT_MS = 5000, NATIVE_DELIVERY_RECONCILE_MS = 1e4, DAEMON_HEARTBEAT_INTERVAL_MS, DAEMON_HEARTBEAT_TTL_MS, AGENT_REQUEST_DEADLINE_MS = 120000,
|
|
81467
|
+
var HARNESS_SESSION_READY_TIMEOUT_MS = 5000, NATIVE_DELIVERY_RECONCILE_MS = 1e4, DAEMON_HEARTBEAT_INTERVAL_MS, DAEMON_HEARTBEAT_TTL_MS, AGENT_REQUEST_DEADLINE_MS = 120000, OBSERVED_FULL_PUSH_INTERVAL_MS, OBSERVED_SAFETY_POLL_MS = 30000, OBSERVED_SYNC_RECONCILE_MS, WORKSPACE_RECENCY_WINDOW_MS, WORKSPACE_LIST_RECONCILE_MS, CONNECTION_CLOSE_REQUEST_TTL_MS;
|
|
81468
81468
|
var init_reliability = __esm(() => {
|
|
81469
81469
|
DAEMON_HEARTBEAT_INTERVAL_MS = 5 * 60000;
|
|
81470
81470
|
DAEMON_HEARTBEAT_TTL_MS = 6 * DAEMON_HEARTBEAT_INTERVAL_MS;
|
|
81471
81471
|
OBSERVED_FULL_PUSH_INTERVAL_MS = 5 * 60000;
|
|
81472
|
+
OBSERVED_SYNC_RECONCILE_MS = 15 * 60000;
|
|
81472
81473
|
WORKSPACE_RECENCY_WINDOW_MS = 7 * 24 * 60 * 60 * 1000;
|
|
81473
81474
|
WORKSPACE_LIST_RECONCILE_MS = 60 * 60 * 1000;
|
|
81474
81475
|
CONNECTION_CLOSE_REQUEST_TTL_MS = 10 * 60000;
|
|
@@ -106045,14 +106046,6 @@ var init_git_heartbeat = __esm(() => {
|
|
|
106045
106046
|
toHashable: (raw) => raw.map((r) => `${r.name}:${r.url}`),
|
|
106046
106047
|
toMutationPartial: (raw) => ({ remotes: raw }),
|
|
106047
106048
|
defaultValue: []
|
|
106048
|
-
},
|
|
106049
|
-
{
|
|
106050
|
-
key: "allPullRequests",
|
|
106051
|
-
includeInSlim: false,
|
|
106052
|
-
collect: (wd) => getAllPRs(wd),
|
|
106053
|
-
toHashable: (raw) => raw.map((pr) => `${pr.prNumber}:${pr.state}`),
|
|
106054
|
-
toMutationPartial: (raw) => ({ allPullRequests: raw }),
|
|
106055
|
-
defaultValue: []
|
|
106056
106049
|
}
|
|
106057
106050
|
];
|
|
106058
106051
|
pushGitStateEffect = exports_Effect.gen(function* () {
|
|
@@ -110639,7 +110632,7 @@ var startObservedSyncSubscriptionEffect = (wsClient2) => exports_Effect.gen(func
|
|
|
110639
110632
|
}, (err) => {
|
|
110640
110633
|
console.warn(`[${formatTimestamp()}] ⚠️ Observed-sync subscription error: ${getErrorMessage(err)}`);
|
|
110641
110634
|
});
|
|
110642
|
-
const reconcileIntervalMs =
|
|
110635
|
+
const reconcileIntervalMs = OBSERVED_SYNC_RECONCILE_MS;
|
|
110643
110636
|
const reconcileTimer = setInterval(() => {
|
|
110644
110637
|
if (stopped || reconcileInFlight)
|
|
110645
110638
|
return;
|
|
@@ -113434,4 +113427,4 @@ program2.hook("preAction", async (_thisCommand, actionCommand) => {
|
|
|
113434
113427
|
});
|
|
113435
113428
|
program2.parse();
|
|
113436
113429
|
|
|
113437
|
-
//# debugId=
|
|
113430
|
+
//# debugId=7CC1598E61EBEDA564756E2164756E21
|