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.42.0"
".": "1.43.0"
}
4 changes: 2 additions & 2 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-c91b0567307b069c250d073074b7c861b64e632a8380b24925e15d981846bb43.yml
openapi_spec_hash: e479aa097b1283c2acf19d6360787449
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/brand-dev%2Fbrand.dev-05a30711e18b0023520a660352d75595a050d1299bf0e3ee4a8cf55ded36aea2.yml
openapi_spec_hash: 8d0e1115a7d864f27c55cec3255d1e77
config_hash: 91cf2dcefb99c39eb9cd3e98e15d6011
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.43.0 (2026-04-03)

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

### Features

* **api:** api update ([3073018](https://github.com/context-dot-dev/deprecated-brand-python-sdk/commit/30730189cb2ff72aef33f93eafee4ca17d488362))

## 1.42.0 (2026-03-28)

Full Changelog: [v1.41.0...v1.42.0](https://github.com/context-dot-dev/deprecated-brand-python-sdk/compare/v1.41.0...v1.42.0)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "brand.dev"
version = "1.42.0"
version = "1.43.0"
description = "The official Python library for the brand.dev API"
dynamic = ["readme"]
license = "Apache-2.0"
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.42.0" # x-release-please-version
__version__ = "1.43.0" # x-release-please-version
14 changes: 0 additions & 14 deletions src/brand/dev/resources/brand.py
Original file line number Diff line number Diff line change
Expand Up @@ -1923,7 +1923,6 @@ def styleguide(
*,
direct_url: str | Omit = omit,
domain: str | Omit = omit,
prioritize: Literal["speed", "quality"] | Omit = omit,
timeout_ms: int | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
Expand All @@ -1945,11 +1944,6 @@ def styleguide(
domain: Domain name to extract styleguide from (e.g., 'example.com', 'google.com'). The
domain will be automatically normalized and validated.

prioritize: Optional parameter to prioritize screenshot capture for styleguide extraction.
If 'speed', optimizes for faster capture with basic quality. If 'quality',
optimizes for higher quality with longer wait times. Defaults to 'quality' if
not provided.

timeout_ms: Optional timeout in milliseconds for the request. If the request takes longer
than this value, it will be aborted with a 408 status code. Maximum allowed
value is 300000ms (5 minutes).
Expand All @@ -1973,7 +1967,6 @@ def styleguide(
{
"direct_url": direct_url,
"domain": domain,
"prioritize": prioritize,
"timeout_ms": timeout_ms,
},
brand_styleguide_params.BrandStyleguideParams,
Expand Down Expand Up @@ -4030,7 +4023,6 @@ async def styleguide(
*,
direct_url: str | Omit = omit,
domain: str | Omit = omit,
prioritize: Literal["speed", "quality"] | Omit = omit,
timeout_ms: int | Omit = omit,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
Expand All @@ -4052,11 +4044,6 @@ async def styleguide(
domain: Domain name to extract styleguide from (e.g., 'example.com', 'google.com'). The
domain will be automatically normalized and validated.

prioritize: Optional parameter to prioritize screenshot capture for styleguide extraction.
If 'speed', optimizes for faster capture with basic quality. If 'quality',
optimizes for higher quality with longer wait times. Defaults to 'quality' if
not provided.

timeout_ms: Optional timeout in milliseconds for the request. If the request takes longer
than this value, it will be aborted with a 408 status code. Maximum allowed
value is 300000ms (5 minutes).
Expand All @@ -4080,7 +4067,6 @@ async def styleguide(
{
"direct_url": direct_url,
"domain": domain,
"prioritize": prioritize,
"timeout_ms": timeout_ms,
},
brand_styleguide_params.BrandStyleguideParams,
Expand Down
10 changes: 1 addition & 9 deletions src/brand/dev/types/brand_styleguide_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from __future__ import annotations

from typing_extensions import Literal, Annotated, TypedDict
from typing_extensions import Annotated, TypedDict

from .._utils import PropertyInfo

Expand All @@ -22,14 +22,6 @@ class BrandStyleguideParams(TypedDict, total=False):
The domain will be automatically normalized and validated.
"""

prioritize: Literal["speed", "quality"]
"""Optional parameter to prioritize screenshot capture for styleguide extraction.

If 'speed', optimizes for faster capture with basic quality. If 'quality',
optimizes for higher quality with longer wait times. Defaults to 'quality' if
not provided.
"""

timeout_ms: Annotated[int, PropertyInfo(alias="timeoutMS")]
"""Optional timeout in milliseconds for the request.

Expand Down
Loading