Skip to content

Commit 1a85f24

Browse files
release: 1.92.2 (#2431)
* chore(api): remove unsupported property * release: 1.92.2 --------- Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com>
1 parent 996e42f commit 1a85f24

File tree

7 files changed

+15
-13
lines changed

7 files changed

+15
-13
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-
".": "1.92.1"
2+
".": "1.92.2"
33
}

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 111
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-cca460eaf5cc13e9d6e5293eb97aac53d66dc1385c691f74b768c97d165b6e8b.yml
3-
openapi_spec_hash: 9ec43d443b3dd58ca5aa87eb0a7eb49f
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/openai%2Fopenai-a473967d1766dc155994d932fbc4a5bcbd1c140a37c20d0a4065e1bf0640536d.yml
3+
openapi_spec_hash: 67cdc62b0d6c8b1de29b7dc54b265749
44
config_hash: e74d6791681e3af1b548748ff47a22c2

CHANGELOG.md

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

3+
## 1.92.2 (2025-06-26)
4+
5+
Full Changelog: [v1.92.1...v1.92.2](https://github.com/openai/openai-python/compare/v1.92.1...v1.92.2)
6+
7+
### Chores
8+
9+
* **api:** remove unsupported property ([ec24408](https://github.com/openai/openai-python/commit/ec2440864e03278144d7f58b97c31d87903e0843))
10+
311
## 1.92.1 (2025-06-26)
412

513
Full Changelog: [v1.92.0...v1.92.1](https://github.com/openai/openai-python/compare/v1.92.0...v1.92.1)

pyproject.toml

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

src/openai/_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__ = "openai"
4-
__version__ = "1.92.1" # x-release-please-version
4+
__version__ = "1.92.2" # x-release-please-version

src/openai/types/responses/response_function_web_search.py

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

3-
from typing import List, Union, Optional
3+
from typing import Union
44
from typing_extensions import Literal, Annotated, TypeAlias
55

66
from ..._utils import PropertyInfo
@@ -16,9 +16,6 @@ class ActionSearch(BaseModel):
1616
type: Literal["search"]
1717
"""The action type."""
1818

19-
domains: Optional[List[str]] = None
20-
"""Domains to restrict the search or domains where results were found."""
21-
2219

2320
class ActionOpenPage(BaseModel):
2421
type: Literal["open_page"]

src/openai/types/responses/response_function_web_search_param.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
from __future__ import annotations
44

5-
from typing import List, Union
5+
from typing import Union
66
from typing_extensions import Literal, Required, TypeAlias, TypedDict
77

88
__all__ = ["ResponseFunctionWebSearchParam", "Action", "ActionSearch", "ActionOpenPage", "ActionFind"]
@@ -15,9 +15,6 @@ class ActionSearch(TypedDict, total=False):
1515
type: Required[Literal["search"]]
1616
"""The action type."""
1717

18-
domains: List[str]
19-
"""Domains to restrict the search or domains where results were found."""
20-
2118

2219
class ActionOpenPage(TypedDict, total=False):
2320
type: Required[Literal["open_page"]]

0 commit comments

Comments
 (0)