Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.40.0"
".": "1.41.0"
}
6 changes: 3 additions & 3 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
configured_endpoints: 20
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/brand-dev%2Fbrand.dev-1cd00999a087b24743cf3a2849c9bd0ea1ed6b5a0dac3a8f0e26c6a58d26d6bf.yml
openapi_spec_hash: f95a256f049293caa5abc0912939a9ff
config_hash: b61862a39bc4559efa45482aa58899a1
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/brand-dev%2Fbrand.dev-fb4ca438793aa469ccc6d74266351ce4ad23b90521c62690755940dc7758225b.yml
openapi_spec_hash: caaf8fcba98e886cef121c2845ecbc57
config_hash: 91cf2dcefb99c39eb9cd3e98e15d6011
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 1.41.0 (2026-03-25)

Full Changelog: [v1.40.0...v1.41.0](https://github.com/context-dot-dev/deprecated-brand-python-sdk/compare/v1.40.0...v1.41.0)

### Features

* **api:** api update ([41bb085](https://github.com/context-dot-dev/deprecated-brand-python-sdk/commit/41bb085269ff98e580b69f54a51ea06505fdd2b4))
* **api:** manual updates ([4ed2c2a](https://github.com/context-dot-dev/deprecated-brand-python-sdk/commit/4ed2c2aad13f1312bccefc60b204b3a83c5eafe2))

## 1.40.0 (2026-03-25)

Full Changelog: [v1.39.0...v1.40.0](https://github.com/context-dot-dev/deprecated-brand-python-sdk/compare/v1.39.0...v1.40.0)
Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ or products provided by Brand Dev, please follow the respective company's securi

### Brand Dev Terms and Policies

Please contact hello@context.dev for any questions or concerns regarding the security of our services.
Please contact yahia@context.dev for any questions or concerns regarding the security of our services.

---

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[project]
name = "brand.dev"
version = "1.40.0"
version = "1.41.0"
description = "The official Python library for the brand.dev API"
dynamic = ["readme"]
license = "Apache-2.0"
authors = [
{ name = "Brand Dev", email = "hello@context.dev" },
{ name = "Brand Dev", email = "yahia@context.dev" },
]

dependencies = [
Expand Down
2 changes: 1 addition & 1 deletion src/brand/dev/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.

__title__ = "brand.dev"
__version__ = "1.40.0" # x-release-please-version
__version__ = "1.41.0" # x-release-please-version
22 changes: 8 additions & 14 deletions src/brand/dev/resources/brand.py
Original file line number Diff line number Diff line change
Expand Up @@ -1993,10 +1993,8 @@ def web_scrape_html(
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = not_given,
) -> BrandWebScrapeHTMLResponse:
"""Scrapes the given URL and returns the raw HTML content of the page.

Uses
automatic proxy escalation to handle blocked sites.
"""
Scrapes the given URL and returns the raw HTML content of the page.

Args:
url: Full URL to scrape (must include http:// or https:// protocol)
Expand Down Expand Up @@ -2076,9 +2074,8 @@ def web_scrape_md(
timeout: float | httpx.Timeout | None | NotGiven = not_given,
) -> BrandWebScrapeMdResponse:
"""
Scrapes the given URL, converts the HTML content to GitHub Flavored Markdown
(GFM), and returns the result. Uses automatic proxy escalation to handle blocked
sites.
Scrapes the given URL, converts the HTML content to Markdown, and returns the
result.

Args:
url: Full URL to scrape and convert to markdown (must include http:// or https://
Expand Down Expand Up @@ -4098,10 +4095,8 @@ async def web_scrape_html(
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = not_given,
) -> BrandWebScrapeHTMLResponse:
"""Scrapes the given URL and returns the raw HTML content of the page.

Uses
automatic proxy escalation to handle blocked sites.
"""
Scrapes the given URL and returns the raw HTML content of the page.

Args:
url: Full URL to scrape (must include http:// or https:// protocol)
Expand Down Expand Up @@ -4183,9 +4178,8 @@ async def web_scrape_md(
timeout: float | httpx.Timeout | None | NotGiven = not_given,
) -> BrandWebScrapeMdResponse:
"""
Scrapes the given URL, converts the HTML content to GitHub Flavored Markdown
(GFM), and returns the result. Uses automatic proxy escalation to handle blocked
sites.
Scrapes the given URL, converts the HTML content to Markdown, and returns the
result.

Args:
url: Full URL to scrape and convert to markdown (must include http:// or https://
Expand Down