@blade-hq/agent-client 2608.0.0 → 2608.0.1
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 +23 -14
- package/dist/index.js.map +1 -1
- package/dist/shared/projection/helpers.d.ts +9 -0
- package/package.json +1 -1
|
@@ -26,6 +26,15 @@ export declare function sourceLoopFor(loopId: string, loopDescriptions: Map<stri
|
|
|
26
26
|
loop_name: string;
|
|
27
27
|
description: string;
|
|
28
28
|
} | null;
|
|
29
|
+
/**
|
|
30
|
+
* Shared by the streaming and history channels — both must decide "is this
|
|
31
|
+
* follow-up showable" identically. Returns null when there is nothing to show.
|
|
32
|
+
*/
|
|
33
|
+
export declare function normalizePostChatFollowup(data: Record<string, unknown>, assistantEntryId: string): {
|
|
34
|
+
assistant_entry_id: string;
|
|
35
|
+
recaption: string;
|
|
36
|
+
suggestions: string[];
|
|
37
|
+
} | null;
|
|
29
38
|
export declare function normalizeChildPause(pausePayload: Record<string, unknown>): {
|
|
30
39
|
pauseToolData: Record<string, unknown>;
|
|
31
40
|
childLoopName: string;
|