@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.
- package/openapi.json +15 -1
- package/package.json +1 -1
package/openapi.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
},
|
|
8
8
|
"servers": [
|
|
9
9
|
{
|
|
10
|
-
"url": "http://
|
|
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