@quilltap/plugin-types 1.17.2 → 1.17.3
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.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -61,6 +61,8 @@ interface ToolExecutionContext {
|
|
|
61
61
|
callingParticipantId?: string;
|
|
62
62
|
/** User-configured settings for this tool */
|
|
63
63
|
toolConfig: Record<string, unknown>;
|
|
64
|
+
/** Browser User-Agent from the originating request (for tools that make HTTP requests) */
|
|
65
|
+
browserUserAgent?: string;
|
|
64
66
|
}
|
|
65
67
|
/**
|
|
66
68
|
* Result of tool execution
|
package/dist/index.d.ts
CHANGED
|
@@ -61,6 +61,8 @@ interface ToolExecutionContext {
|
|
|
61
61
|
callingParticipantId?: string;
|
|
62
62
|
/** User-configured settings for this tool */
|
|
63
63
|
toolConfig: Record<string, unknown>;
|
|
64
|
+
/** Browser User-Agent from the originating request (for tools that make HTTP requests) */
|
|
65
|
+
browserUserAgent?: string;
|
|
64
66
|
}
|
|
65
67
|
/**
|
|
66
68
|
* Result of tool execution
|