💬 Commit message: Update 2026-02-14 07:26:55, 21 files, 749 lines

📁 Files changed: 21
📝 Lines changed: 749

  • browser.d.ts
  • browser.d.ts.map
  • browser.js
  • browser.js.map
  • mcp.js
  • mcp.js.map
  • safari.d.ts
  • safari.d.ts.map
  • safari.js
  • safari.js.map
  • safari.test.d.ts
  • safari.test.d.ts.map
  • safari.test.js
  • safari.test.js.map
  • types.d.ts
  • types.d.ts.map
  • browser.ts
  • mcp.ts
  • safari.test.ts
  • safari.ts
  • types.ts
This commit is contained in:
Adam Ladachowski
2026-02-14 07:26:55 +01:00
parent be7e371c3e
commit 1c4a7b5ef9
21 changed files with 738 additions and 11 deletions
+14 -1
View File
@@ -301,6 +301,14 @@ export interface EmulateCommand {
device: string;
}
// Safari import
export interface ImportCommand {
cmd: 'import';
source: 'safari';
domain?: string;
profile?: string;
}
export type BrowserCommand =
| GotoCommand
| ClickCommand
@@ -337,7 +345,8 @@ export type BrowserCommand =
| UploadCommand
| ScrollCommand
| ViewportCommand
| EmulateCommand;
| EmulateCommand
| ImportCommand;
// Response types
export interface SuccessResponse {
@@ -378,6 +387,10 @@ export interface SuccessResponse {
viewport?: { width: number; height: number };
// Selected values
selected?: string[];
// Import fields
imported?: number;
source?: string;
domains?: string[];
}
export interface ErrorResponse {