Skip to content

Commit 918da7d

Browse files
committed
From Brand to brand_name
1 parent 03f6740 commit 918da7d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

channel3_sdk/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class Product(BaseModel):
5555
score: float = Field(..., description="Relevance score for the search query")
5656
title: str = Field(..., description="Product title")
5757
description: Optional[str] = Field(None, description="Product description")
58-
brand: Brand = Field(..., description="Brand of the product")
58+
brand_name: str = Field(..., description="Brand name for the product")
5959
image_url: str = Field(..., description="Main product image URL")
6060
price: Price = Field(..., description="Price information")
6161
availability: AvailabilityStatus = Field(

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "channel3-sdk"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "The official Python SDK for Channel3 AI Shopping API"
55
authors = ["Channel3 <[email protected]>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)