@monostate/browsernative-client 1.1.0 → 1.1.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/README.md +4 -4
  2. package/index.js +1 -1
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -22,7 +22,7 @@ pnpm add @browsernative/client
22
22
 
23
23
  ### Get Your API Key
24
24
 
25
- 1. Sign up at [browsernative.monostate.ai](https://browsernative.monostate.ai)
25
+ 1. Sign up at [bnca.monostate.ai](https://bnca.monostate.ai)
26
26
  2. Get your API key from the dashboard
27
27
  3. Start scraping!
28
28
 
@@ -424,8 +424,8 @@ const analysis: AnalyzeResult = await client.analyze(url, question);
424
424
 
425
425
  ## 🤝 Support
426
426
 
427
- - 📧 **Email**: [support@browsernative.monostate.ai](mailto:support@browsernative.monostate.ai)
428
- - 📖 **Documentation**: [browsernative.monostate.ai/docs](https://browsernative.monostate.ai/docs)
427
+ - 📧 **Email**: [support@bnca.monostate.ai](mailto:support@bnca.monostate.ai)
428
+ - 📖 **Documentation**: [bnca.monostate.ai/docs](https://bnca.monostate.ai/docs)
429
429
  - 🐛 **Issues**: [GitHub Issues](https://github.com/browsernative/client-sdk/issues)
430
430
  - 💬 **Discord**: [Join our community](https://discord.gg/browsernative)
431
431
 
@@ -439,6 +439,6 @@ MIT License - see [LICENSE](../../LICENSE) file for details.
439
439
 
440
440
  **Built with ❤️ for developers who value speed and reliability**
441
441
 
442
- [🌐 Website](https://browsernative.monostate.ai) | [📖 Docs](https://browsernative.monostate.ai/docs) | [🚀 Get API Key](https://browsernative.monostate.ai/signup)
442
+ [🌐 Website](https://bnca.monostate.ai) | [📖 Docs](https://bnca.monostate.ai/docs) | [🚀 Get API Key](https://bnca.monostate.ai/signup)
443
443
 
444
444
  </div>
package/index.js CHANGED
@@ -8,7 +8,7 @@
8
8
  export class BrowserNativeClient {
9
9
  constructor(apiKey, options = {}) {
10
10
  if (!apiKey) {
11
- throw new Error('API key is required. Get one at https://browsernative.monostate.ai');
11
+ throw new Error('API key is required. Get one at https://bnca.monostate.ai');
12
12
  }
13
13
 
14
14
  this.apiKey = apiKey;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monostate/browsernative-client",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Browser Native client SDK for web scraping and content extraction API",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -42,7 +42,7 @@
42
42
  "bugs": {
43
43
  "url": "https://github.com/browsernative/client-sdk/issues"
44
44
  },
45
- "homepage": "https://browsernative.monostate.ai",
45
+ "homepage": "https://bnca.monostate.ai",
46
46
  "publishConfig": {
47
47
  "access": "public"
48
48
  }