chatroom-cli 1.70.0 → 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 +8 -11
- package/dist/index.js.map +6 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -77159,6 +77159,10 @@ var init_handoff_quality_principles = __esm(() => {
|
|
|
77159
77159
|
name: "Organization & Maintainability",
|
|
77160
77160
|
description: "a small change in requirements should result in a small change in code in a small number of files and folders."
|
|
77161
77161
|
},
|
|
77162
|
+
{
|
|
77163
|
+
name: "Reducing Optionality",
|
|
77164
|
+
description: "code contains the minimum number of code paths to support the functionality required presently."
|
|
77165
|
+
},
|
|
77162
77166
|
{
|
|
77163
77167
|
name: "Static Evaluability and Provability",
|
|
77164
77168
|
description: "the system's behavior should be provably correct by looking at the source code, then automated tests, then manual tests, in this order."
|
|
@@ -81460,11 +81464,12 @@ var init_featureFlags = __esm(() => {
|
|
|
81460
81464
|
});
|
|
81461
81465
|
|
|
81462
81466
|
// ../../services/backend/config/reliability.ts
|
|
81463
|
-
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;
|
|
81464
81468
|
var init_reliability = __esm(() => {
|
|
81465
81469
|
DAEMON_HEARTBEAT_INTERVAL_MS = 5 * 60000;
|
|
81466
81470
|
DAEMON_HEARTBEAT_TTL_MS = 6 * DAEMON_HEARTBEAT_INTERVAL_MS;
|
|
81467
81471
|
OBSERVED_FULL_PUSH_INTERVAL_MS = 5 * 60000;
|
|
81472
|
+
OBSERVED_SYNC_RECONCILE_MS = 15 * 60000;
|
|
81468
81473
|
WORKSPACE_RECENCY_WINDOW_MS = 7 * 24 * 60 * 60 * 1000;
|
|
81469
81474
|
WORKSPACE_LIST_RECONCILE_MS = 60 * 60 * 1000;
|
|
81470
81475
|
CONNECTION_CLOSE_REQUEST_TTL_MS = 10 * 60000;
|
|
@@ -106041,14 +106046,6 @@ var init_git_heartbeat = __esm(() => {
|
|
|
106041
106046
|
toHashable: (raw) => raw.map((r) => `${r.name}:${r.url}`),
|
|
106042
106047
|
toMutationPartial: (raw) => ({ remotes: raw }),
|
|
106043
106048
|
defaultValue: []
|
|
106044
|
-
},
|
|
106045
|
-
{
|
|
106046
|
-
key: "allPullRequests",
|
|
106047
|
-
includeInSlim: false,
|
|
106048
|
-
collect: (wd) => getAllPRs(wd),
|
|
106049
|
-
toHashable: (raw) => raw.map((pr) => `${pr.prNumber}:${pr.state}`),
|
|
106050
|
-
toMutationPartial: (raw) => ({ allPullRequests: raw }),
|
|
106051
|
-
defaultValue: []
|
|
106052
106049
|
}
|
|
106053
106050
|
];
|
|
106054
106051
|
pushGitStateEffect = exports_Effect.gen(function* () {
|
|
@@ -110635,7 +110632,7 @@ var startObservedSyncSubscriptionEffect = (wsClient2) => exports_Effect.gen(func
|
|
|
110635
110632
|
}, (err) => {
|
|
110636
110633
|
console.warn(`[${formatTimestamp()}] ⚠️ Observed-sync subscription error: ${getErrorMessage(err)}`);
|
|
110637
110634
|
});
|
|
110638
|
-
const reconcileIntervalMs =
|
|
110635
|
+
const reconcileIntervalMs = OBSERVED_SYNC_RECONCILE_MS;
|
|
110639
110636
|
const reconcileTimer = setInterval(() => {
|
|
110640
110637
|
if (stopped || reconcileInFlight)
|
|
110641
110638
|
return;
|
|
@@ -113430,4 +113427,4 @@ program2.hook("preAction", async (_thisCommand, actionCommand) => {
|
|
|
113430
113427
|
});
|
|
113431
113428
|
program2.parse();
|
|
113432
113429
|
|
|
113433
|
-
//# debugId=
|
|
113430
|
+
//# debugId=7CC1598E61EBEDA564756E2164756E21
|