topchester-ai 0.48.0 → 0.49.0
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/bin.mjs
CHANGED
|
@@ -10433,7 +10433,7 @@ function getVisibleSuggestionWindowStart(total, activeIndex, visibleRows) {
|
|
|
10433
10433
|
return Math.max(0, Math.min(activeIndex - visibleRows + 1, total - visibleRows));
|
|
10434
10434
|
}
|
|
10435
10435
|
function formatSessionPickerRow(item, selected, width) {
|
|
10436
|
-
return truncateToWidth(`${selected ? ">" : " "} ${formatSessionPickerDate(item.updatedAt)} ${item.sessionId.slice(0, 8)} ${formatSessionPickerPrompt(item.firstUserPrompt)}`, width, "…", true);
|
|
10436
|
+
return truncateToWidth(`${selected ? ">" : " "} ${ui.ok(formatSessionPickerDate(item.updatedAt))} ${ui.muted(item.sessionId.slice(0, 8))} ${formatSessionPickerPrompt(item.firstUserPrompt)}`, width, "…", true);
|
|
10437
10437
|
}
|
|
10438
10438
|
function formatSessionPickerDate(updatedAt) {
|
|
10439
10439
|
const match = /^(\d{4}-\d{2}-\d{2})T(\d{2}:\d{2})/u.exec(updatedAt);
|
|
@@ -14798,4 +14798,4 @@ function formatDryRunSyncStatus(status) {
|
|
|
14798
14798
|
//#endregion
|
|
14799
14799
|
export { runTopchesterCli as t };
|
|
14800
14800
|
|
|
14801
|
-
//# sourceMappingURL=cli-
|
|
14801
|
+
//# sourceMappingURL=cli-Dwc4y4H4.mjs.map
|