@crouton-kit/humanloop 0.4.11 → 0.4.13
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/inbox/controller.js
CHANGED
|
@@ -775,7 +775,13 @@ export class InboxController {
|
|
|
775
775
|
if (selected === undefined)
|
|
776
776
|
return [` ${DIM}Select a pending interaction.${RESET}`];
|
|
777
777
|
const source = sourceLabel(selected.source);
|
|
778
|
-
const lines = [` ${BOLD}${CYAN}${selected.title}${RESET}`, ''
|
|
778
|
+
const lines = [` ${BOLD}${CYAN}${selected.title}${RESET}`, ''];
|
|
779
|
+
if (selected.kind === 'review') {
|
|
780
|
+
for (const rendered of renderMarkdown(selected.subtitle, Math.max(1, width - 2)))
|
|
781
|
+
lines.push(` ${rendered}`);
|
|
782
|
+
lines.push('');
|
|
783
|
+
}
|
|
784
|
+
lines.push(` ${DIM}${selected.kind}${source === undefined ? '' : ` · ${source}`}${RESET}`);
|
|
779
785
|
if (selected.kind === 'review') {
|
|
780
786
|
lines.push('', ` ${DIM}${selected.file}${RESET}`);
|
|
781
787
|
const draft = readJson(progressPath(selected.dir))?.comments;
|
package/dist/render/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const TERMRENDER_VERSION = "4.12.
|
|
1
|
+
export declare const TERMRENDER_VERSION = "4.12.2";
|
package/dist/render/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const TERMRENDER_VERSION = '4.12.
|
|
1
|
+
export const TERMRENDER_VERSION = '4.12.2';
|