@olib-ai/owl-browser-sdk 2.0.1 → 2.0.2

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.
Files changed (2) hide show
  1. package/openapi.json +15 -1
  2. package/package.json +1 -1
package/openapi.json CHANGED
@@ -7,7 +7,7 @@
7
7
  },
8
8
  "servers": [
9
9
  {
10
- "url": "http://127.0.0.1:8080",
10
+ "url": "http://localhost",
11
11
  "description": "Current server"
12
12
  }
13
13
  ],
@@ -67,6 +67,20 @@
67
67
  },
68
68
  "description": "Maximum time to wait for navigation in milliseconds. Default: 30000 (30 seconds)"
69
69
  },
70
+ {
71
+ "name": "output",
72
+ "in": "query",
73
+ "required": false,
74
+ "schema": {
75
+ "type": "string",
76
+ "enum": [
77
+ "html",
78
+ "text",
79
+ "markdown"
80
+ ]
81
+ },
82
+ "description": "Output format. html=raw HTML, text=extracted text, markdown=markdown conversion. Default: html"
83
+ },
70
84
  {
71
85
  "name": "os",
72
86
  "in": "query",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@olib-ai/owl-browser-sdk",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Node.js SDK for Owl Browser automation - Async-first with dynamic OpenAPI method generation",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",