@browserbasehq/stagehand 3.0.7-alpha-30b0e12357f23070415422e7e50325986ba474f6 → 3.0.7-alpha-33fba240e21e53bb3125feb5115560ee210ae9b3
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.ts +6 -0
- package/dist/index.js +711 -505
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { EventEmitter } from 'events';
|
|
1
2
|
import { ZodTypeAny, z, ZodObject, ZodRawShape, ZodError } from 'zod';
|
|
2
3
|
import * as z3 from 'zod/v3';
|
|
3
4
|
import { ClientOptions as ClientOptions$2 } from '@anthropic-ai/sdk';
|
|
@@ -2196,6 +2197,11 @@ declare class V3 {
|
|
|
2196
2197
|
private observeHandler;
|
|
2197
2198
|
private ctx;
|
|
2198
2199
|
llmClient: LLMClient;
|
|
2200
|
+
/**
|
|
2201
|
+
* Event bus for internal communication.
|
|
2202
|
+
* Emits events like 'screenshot' when screenshots are captured during agent execution.
|
|
2203
|
+
*/
|
|
2204
|
+
readonly bus: EventEmitter;
|
|
2199
2205
|
private modelName;
|
|
2200
2206
|
private modelClientOptions;
|
|
2201
2207
|
private llmProvider;
|