@monostate/browsernative-client 1.1.0 → 1.1.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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 BNCA Team
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
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.2",
4
4
  "description": "Browser Native client SDK for web scraping and content extraction API",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -37,12 +37,12 @@
37
37
  },
38
38
  "repository": {
39
39
  "type": "git",
40
- "url": "git+https://github.com/browsernative/client-sdk.git"
40
+ "url": "git+https://github.com/monostate/browsernative-client.git"
41
41
  },
42
42
  "bugs": {
43
- "url": "https://github.com/browsernative/client-sdk/issues"
43
+ "url": "https://github.com/monostate/browsernative-client/issues"
44
44
  },
45
- "homepage": "https://browsernative.monostate.ai",
45
+ "homepage": "https://bnca.monostate.ai",
46
46
  "publishConfig": {
47
47
  "access": "public"
48
48
  }