Skip to content

Commit 0f0cc28

Browse files
feat(api): api update
1 parent ddc05e6 commit 0f0cc28

File tree

2 files changed

+22
-5
lines changed

2 files changed

+22
-5
lines changed

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 6
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/channel3%2Fpublic-sdk-6f2bba2b3765e842a82fd3756eebbab250fc655479aba4a10f21a87d9ec62ee5.yml
3-
openapi_spec_hash: 980b93da33ace3e0ae7813b8ca1a2078
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/channel3%2Fpublic-sdk-a86114ce098255360b65356eedfe9c93f9db44aa99cb90d8c36756d39c2c2de0.yml
3+
openapi_spec_hash: 113158785b160e8b67d66e2820137df8
44
config_hash: 0ec132fef7cbcef12aebece85f2ef2b1
Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,37 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

3-
from typing import List
3+
from typing import List, Optional
4+
from typing_extensions import Literal
45

56
from .price import Price
7+
from .variant import Variant
68
from .._models import BaseModel
9+
from .availability_status import AvailabilityStatus
710

811
__all__ = ["EnrichEnrichURLResponse"]
912

1013

1114
class EnrichEnrichURLResponse(BaseModel):
12-
main_image_url: str
15+
id: str
1316

14-
other_image_urls: List[str]
17+
availability: AvailabilityStatus
1518

1619
price: Price
1720

1821
title: str
1922

2023
url: str
24+
25+
brand_id: Optional[str] = None
26+
27+
brand_name: Optional[str] = None
28+
29+
gender: Optional[Literal["male", "female", "unisex"]] = None
30+
31+
image_urls: Optional[List[str]] = None
32+
33+
key_features: Optional[List[str]] = None
34+
35+
materials: Optional[List[str]] = None
36+
37+
variants: Optional[List[Variant]] = None

0 commit comments

Comments
 (0)