File tree Expand file tree Collapse file tree 6 files changed +10
-42
lines changed
Expand file tree Collapse file tree 6 files changed +10
-42
lines changed Original file line number Diff line number Diff line change 11configured_endpoints : 20
2- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/brand-dev%2Fbrand.dev-1cd00999a087b24743cf3a2849c9bd0ea1ed6b5a0dac3a8f0e26c6a58d26d6bf .yml
3- openapi_spec_hash : f95a256f049293caa5abc0912939a9ff
4- config_hash : b61862a39bc4559efa45482aa58899a1
2+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/brand-dev%2Fbrand.dev-fb4ca438793aa469ccc6d74266351ce4ad23b90521c62690755940dc7758225b .yml
3+ openapi_spec_hash : caaf8fcba98e886cef121c2845ecbc57
4+ config_hash : 03e2ee10b2e5ceeecc966ec55790a0cb
Original file line number Diff line number Diff line change 11# Brand Dev TypeScript API Library
22
3-
4- # ⚠️ This SDK has been rebranded
5-
6- ** Brand.dev is now Context.dev.** This package is no longer maintained.
7-
8- Please migrate to the new SDK:
9- ``` bash
10- npm uninstall brand.dev
11- npm install context.dev
12- ```
13-
14- The new package is a drop-in replacement — just update your imports:
15- ``` diff
16- - import BrandDev from 'brand.dev';
17- + import ContextDev from 'context.dev';
18- ```
19-
20- 📦 ** New package:** [ contextdev on npm] ( https://www.npmjs.com/package/context.dev )
21- 📖 ** Docs:** [ docs.context.dev] ( https://docs.context.dev )
22-
23- This package will continue to work but will stop receiving updates or new features at some point. All future development is on ` context.dev ` .
24-
25- ------
26-
27-
283[ ![ NPM version] ( < https://img.shields.io/npm/v/brand.dev.svg?label=npm%20(stable) > )] ( https://npmjs.org/package/brand.dev ) ![ npm bundle size] ( https://img.shields.io/bundlephobia/minzip/brand.dev )
294
30-
315This library provides convenient access to the Brand Dev REST API from server-side TypeScript or JavaScript.
326
337The REST API documentation can be found on [ docs.context.dev] ( https://docs.context.dev/ ) . The full API of this library can be found in [ api.md] ( api.md ) .
Original file line number Diff line number Diff line change 22 "name" : " brand.dev" ,
33 "version" : " 0.31.0" ,
44 "description" : " The official TypeScript library for the Brand Dev API" ,
5- "author" : " Brand Dev <hello@brand .dev>" ,
5+ "author" : " Brand Dev <hello@context .dev>" ,
66 "types" : " dist/index.d.ts" ,
77 "main" : " dist/index.js" ,
88 "type" : " commonjs" ,
Original file line number Diff line number Diff line change 1818 "entry_point" : " index.js" ,
1919 "mcp_config" : {
2020 "command" : " node" ,
21- "args" : [
22- " ${__dirname}/index.js"
23- ],
21+ "args" : [" ${__dirname}/index.js" ],
2422 "env" : {
2523 "BRAND_DEV_API_KEY" : " ${user_config.BRAND_DEV_API_KEY}"
2624 }
4139 "node" : " >=18.0.0"
4240 }
4341 },
44- "keywords" : [
45- " api"
46- ]
42+ "keywords" : [" api" ]
4743}
Original file line number Diff line number Diff line change 22 "name" : " brand.dev-mcp" ,
33 "version" : " 0.31.0" ,
44 "description" : " The official MCP Server for the Brand Dev API" ,
5- "author" : " Brand Dev <hello@brand .dev>" ,
5+ "author" : " Brand Dev <hello@context .dev>" ,
66 "types" : " dist/index.d.ts" ,
77 "main" : " dist/index.js" ,
88 "type" : " commonjs" ,
Original file line number Diff line number Diff line change @@ -177,8 +177,7 @@ export class Brand extends APIResource {
177177 }
178178
179179 /**
180- * Scrapes the given URL and returns the raw HTML content of the page. Uses
181- * automatic proxy escalation to handle blocked sites.
180+ * Scrapes the given URL and returns the raw HTML content of the page.
182181 */
183182 webScrapeHTML (
184183 query : BrandWebScrapeHTMLParams ,
@@ -200,9 +199,8 @@ export class Brand extends APIResource {
200199 }
201200
202201 /**
203- * Scrapes the given URL, converts the HTML content to GitHub Flavored Markdown
204- * (GFM), and returns the result. Uses automatic proxy escalation to handle blocked
205- * sites.
202+ * Scrapes the given URL, converts the HTML content to Markdown, and returns the
203+ * result.
206204 */
207205 webScrapeMd ( query : BrandWebScrapeMdParams , options ?: RequestOptions ) : APIPromise < BrandWebScrapeMdResponse > {
208206 return this . _client . get ( '/web/scrape/markdown' , { query, ...options } ) ;
You can’t perform that action at this time.
0 commit comments