@epsilon-asi/actors 0.0.13 → 0.0.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epsilon-asi/actors",
3
- "version": "0.0.13",
3
+ "version": "0.0.14",
4
4
  "description": "A TypeScript Puppeteer actor framework using existing Chrome profiles and ghost-cursor.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -4,7 +4,7 @@ import type { HumanTypingOptions } from '../interaction/HumanTyping.js';
4
4
 
5
5
  export type ChromeReleaseChannel = 'chrome' | 'chrome-beta' | 'chrome-dev' | 'chrome-canary';
6
6
 
7
- const DEFAULT_VIEWPORT = { width: 1080, height: 1920 };
7
+ const DEFAULT_VIEWPORT = { width: 2309, height: 1429 };
8
8
 
9
9
  export interface BrowserSessionBehavior {
10
10
  defaultViewport?: { width: number; height: number } | null;