@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 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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quilltap/plugin-types",
3
- "version": "1.17.2",
3
+ "version": "1.17.3",
4
4
  "description": "Type definitions for Quilltap plugin development",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",