Skip to content

Commit ece68dd

Browse files
feat(api): api update
1 parent 6ed00c6 commit ece68dd

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
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: 61
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mixedbread%2Fmixedbread-656ab86d86574c9c2fba1f067de2c3930f1f83e571d1bf77fb5720b3d7a50b79.yml
3-
openapi_spec_hash: 4ed47395165578f566c4ddc52338cfb5
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/mixedbread%2Fmixedbread-c53a9b02bf4bd345435a03b4178aed1b7c8ac04a2508f370b5361bf305a3f803.yml
3+
openapi_spec_hash: f05a6df876280efad08ed2f0ab78d5fc
44
config_hash: c56a6c9375e7640ce70ff00420e8605a

src/mixedbread/types/shared/search_filter_condition.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ class SearchFilterCondition(BaseModel):
1414
value: object
1515
"""The value to compare against"""
1616

17-
operator: Literal["eq", "not_eq", "gt", "gte", "lt", "lte", "in", "not_in", "like", "not_like"]
17+
operator: Literal["eq", "not_eq", "gt", "gte", "lt", "lte", "in", "not_in", "like", "starts_with", "not_like"]
1818
"""The operator for the condition"""

src/mixedbread/types/shared_params/search_filter_condition.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,7 @@ class SearchFilterCondition(TypedDict, total=False):
1414
value: Required[object]
1515
"""The value to compare against"""
1616

17-
operator: Required[Literal["eq", "not_eq", "gt", "gte", "lt", "lte", "in", "not_in", "like", "not_like"]]
17+
operator: Required[
18+
Literal["eq", "not_eq", "gt", "gte", "lt", "lte", "in", "not_in", "like", "starts_with", "not_like"]
19+
]
1820
"""The operator for the condition"""

0 commit comments

Comments
 (0)