@hyperbrowser/sdk 0.66.0 → 0.68.0

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.
@@ -16,7 +16,7 @@ export type RecordingStatus = "not_enabled" | "pending" | "in_progress" | "compl
16
16
  export type DownloadsStatus = "not_enabled" | "pending" | "in_progress" | "completed" | "failed";
17
17
  export declare const POLLING_ATTEMPTS = 5;
18
18
  export type BrowserUseLlm = "gpt-4o" | "gpt-4o-mini" | "gpt-4.1" | "gpt-4.1-mini" | "gpt-5" | "gpt-5-mini" | "claude-sonnet-4-5" | "claude-sonnet-4-20250514" | "claude-3-7-sonnet-20250219" | "claude-3-5-sonnet-20241022" | "claude-3-5-haiku-20241022" | "gemini-2.0-flash" | "gemini-2.5-flash";
19
- export type ClaudeComputerUseLlm = "claude-sonnet-4-5" | "claude-sonnet-4-20250514" | "claude-3-7-sonnet-20250219";
19
+ export type ClaudeComputerUseLlm = "claude-haiku-4-5-20251001" | "claude-sonnet-4-5" | "claude-sonnet-4-20250514" | "claude-3-7-sonnet-20250219";
20
20
  export type HyperAgentLlm = "gpt-4o" | "gpt-4o-mini" | "gpt-4.1" | "gpt-4.1-mini" | "gpt-4.1-nano";
21
21
  export type GeminiComputerUseLlm = "gemini-2.5-computer-use-preview-10-2025";
22
22
  export type SessionRegion = "us-central" | "asia-south" | "us-dev" | "europe-west" | "us-west" | "us-east";
@@ -28,6 +28,7 @@ export interface SessionLaunchState {
28
28
  enableWindowManagerTaskbar?: boolean;
29
29
  viewOnlyLiveView?: boolean;
30
30
  disablePasswordManager?: boolean;
31
+ enableAlwaysOpenPdfExternally?: boolean;
31
32
  }
32
33
  export interface Session {
33
34
  id: string;
@@ -43,6 +44,7 @@ export interface Session {
43
44
  export interface SessionDetail extends Session {
44
45
  wsEndpoint: string;
45
46
  computerActionEndpoint?: string;
47
+ webdriverEndpoint?: string;
46
48
  liveUrl?: string;
47
49
  token: string;
48
50
  }
@@ -106,6 +108,7 @@ export interface CreateSessionParams {
106
108
  region?: SessionRegion;
107
109
  viewOnlyLiveView?: boolean;
108
110
  disablePasswordManager?: boolean;
111
+ enableAlwaysOpenPdfExternally?: boolean;
109
112
  }
110
113
  export interface SessionRecording {
111
114
  type: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyperbrowser/sdk",
3
- "version": "0.66.0",
3
+ "version": "0.68.0",
4
4
  "description": "Node SDK for Hyperbrowser API",
5
5
  "author": "",
6
6
  "main": "dist/index.js",