Skip to content

Commit 761dc33

Browse files
authored
Merge pull request #3 from channel3-ai/release-please--branches--main--changes--next
release: 2.1.0
2 parents 4af0f61 + 6917529 commit 761dc33

File tree

7 files changed

+18
-5
lines changed

7 files changed

+18
-5
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "2.0.0"
2+
".": "2.1.0"
33
}

.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-eb8fa9262033b1e81549b926b706237a5796a41b06f00cea2d1e2a3362bd163f.yml
3-
openapi_spec_hash: 4b6160fcd0267ff62ebd54f5c05c88c6
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/channel3%2Fpublic-sdk-c870f6f12fcf671675af9dfddb9b6e4fd968bc75717a50d53d5626180ecbdcaf.yml
3+
openapi_spec_hash: 3ac13f44aeb96508ab9073b88a9f633d
44
config_hash: 8e18f4f27ef0200cac8c5ee682f53ab8

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Changelog
22

3+
## 2.1.0 (2025-09-16)
4+
5+
Full Changelog: [v2.0.0...v2.1.0](https://github.com/channel3-ai/sdk-python/compare/v2.0.0...v2.1.0)
6+
7+
### Features
8+
9+
* **api:** api update ([b6dac15](https://github.com/channel3-ai/sdk-python/commit/b6dac1516907c474ecfd919c5fad34943b59b101))
10+
311
## 2.0.0 (2025-09-16)
412

513
Full Changelog: [v0.0.2...v2.0.0](https://github.com/channel3-ai/sdk-python/compare/v0.0.2...v2.0.0)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "channel3_sdk"
3-
version = "2.0.0"
3+
version = "2.1.0"
44
description = "The official Python library for the channel3 API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/channel3_sdk/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "channel3_sdk"
4-
__version__ = "2.0.0" # x-release-please-version
4+
__version__ = "2.1.0" # x-release-please-version

src/channel3_sdk/types/search_perform_params.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,9 @@ class Filters(TypedDict, total=False):
5555
brand_ids: Optional[SequenceNotStr[str]]
5656
"""List of brand IDs"""
5757

58+
exclude_product_ids: Optional[SequenceNotStr[str]]
59+
"""List of product IDs to exclude"""
60+
5861
gender: Optional[Literal["male", "female", "unisex"]]
5962

6063
price: Optional[FiltersPrice]

tests/api_resources/test_search.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ def test_method_perform_with_all_params(self, client: Channel3) -> None:
3636
filters={
3737
"availability": ["InStock"],
3838
"brand_ids": ["string"],
39+
"exclude_product_ids": ["string"],
3940
"gender": "male",
4041
"price": {
4142
"max_price": 0,
@@ -95,6 +96,7 @@ async def test_method_perform_with_all_params(self, async_client: AsyncChannel3)
9596
filters={
9697
"availability": ["InStock"],
9798
"brand_ids": ["string"],
99+
"exclude_product_ids": ["string"],
98100
"gender": "male",
99101
"price": {
100102
"max_price": 0,

0 commit comments

Comments
 (0)