@hyperbrowser/sdk 0.48.1 → 0.49.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 (2) hide show
  1. package/dist/client.js +1 -1
  2. package/package.json +2 -2
package/dist/client.js CHANGED
@@ -22,7 +22,7 @@ exports.HyperbrowserError = HyperbrowserError;
22
22
  class HyperbrowserClient {
23
23
  constructor(config = {}) {
24
24
  const apiKey = config.apiKey || process.env["HYPERBROWSER_API_KEY"];
25
- const baseUrl = config.baseUrl || "https://app.hyperbrowser.ai";
25
+ const baseUrl = config.baseUrl || "https://api.hyperbrowser.ai";
26
26
  const timeout = config.timeout || 30000;
27
27
  if (!apiKey) {
28
28
  throw new HyperbrowserError("API key is required - either pass it in config or set HYPERBROWSER_API_KEY environment variable");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyperbrowser/sdk",
3
- "version": "0.48.1",
3
+ "version": "0.49.1",
4
4
  "description": "Node SDK for Hyperbrowser API",
5
5
  "author": "",
6
6
  "main": "dist/index.js",
@@ -70,4 +70,4 @@
70
70
  ]
71
71
  }
72
72
  }
73
- }
73
+ }