@monostate/browsernative-client 1.2.0 → 1.2.1

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 (3) hide show
  1. package/index.d.ts +1 -1
  2. package/index.js +1 -1
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  */
4
4
 
5
5
  export interface ClientOptions {
6
- /** Base URL for the API (default: https://browsernative.monostate.ai) */
6
+ /** Base URL for the API (default: https://bnca-api.fly.dev) */
7
7
  baseUrl?: string;
8
8
  /** Request timeout in milliseconds (default: 30000) */
9
9
  timeout?: number;
package/index.js CHANGED
@@ -121,7 +121,7 @@ export class BrowserNativeClient {
121
121
  headers: {
122
122
  'x-api-key': this.apiKey,
123
123
  'Content-Type': 'application/json',
124
- 'User-Agent': 'Browser Native Client SDK/1.0.3'
124
+ 'User-Agent': 'Browser Native Client SDK/1.2.1'
125
125
  }
126
126
  };
127
127
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monostate/browsernative-client",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Browser Native client SDK for web scraping and content extraction API",
5
5
  "type": "module",
6
6
  "main": "index.js",