@promptbook/components 0.112.0-139 → 0.112.0-140

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.
@@ -0,0 +1,10 @@
1
+ import { type ToolCall } from '../../../types/ToolCall';
2
+ /**
3
+ * Returns true when one tool call represents a user-facing action.
4
+ *
5
+ * @param toolCall - Tool call candidate.
6
+ * @returns Whether the tool call should be visible in chat progress and chips.
7
+ *
8
+ * @private internal utility of `<Chat/>`
9
+ */
10
+ export declare function isVisibleChatToolCall(toolCall: Pick<ToolCall, 'name'>): boolean;
@@ -15,7 +15,7 @@ export declare const BOOK_LANGUAGE_VERSION: string_semantic_version;
15
15
  export declare const PROMPTBOOK_ENGINE_VERSION: string_promptbook_version;
16
16
  /**
17
17
  * Represents the version string of the Promptbook engine.
18
- * It follows semantic versioning (e.g., `0.112.0-137`).
18
+ * It follows semantic versioning (e.g., `0.112.0-139`).
19
19
  *
20
20
  * @generated
21
21
  */