Skip to content

Commit 1f502f0

Browse files
feat(api): update via SDK Studio
1 parent ac61818 commit 1f502f0

File tree

5 files changed

+14
-3
lines changed

5 files changed

+14
-3
lines changed

.stats.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
configured_endpoints: 20
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/hyperspell%2Fhyperspell-cd8c28747615d8967e4e20e6fd5b9488a3022fece37f1c4c133c9b8d9c4415f3.yml
33
openapi_spec_hash: 2aa6c5d6faa2cbd4038108b5ebc103b3
4-
config_hash: 2dca0734f963a72148ceeab9e97077e9
4+
config_hash: 34753d74b4ed6e7aa69608d2daafb50d

api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Methods:
3939
Types:
4040

4141
```python
42-
from hyperspell.types.integrations import WebCrawlerIndexResponse
42+
from hyperspell.types.integrations import NotGiven, WebCrawlerIndexResponse
4343
```
4444

4545
Methods:

src/hyperspell/types/integrations/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
from __future__ import annotations
44

55
from .calendar import Calendar as Calendar
6+
from .not_given_param import NotGivenParam as NotGivenParam
67
from .slack_list_params import SlackListParams as SlackListParams
78
from .web_crawler_index_params import WebCrawlerIndexParams as WebCrawlerIndexParams
89
from .web_crawler_index_response import WebCrawlerIndexResponse as WebCrawlerIndexResponse
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2+
3+
from __future__ import annotations
4+
5+
from typing_extensions import TypeAlias
6+
7+
__all__ = ["NotGivenParam"]
8+
9+
NotGivenParam: TypeAlias = object

src/hyperspell/types/memory_search_params.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
from .._types import SequenceNotStr
1010
from .._utils import PropertyInfo
11+
from .integrations.not_given_param import NotGivenParam
1112

1213
__all__ = [
1314
"MemorySearchParams",
@@ -279,7 +280,7 @@ class OptionsWebCrawler(TypedDict, total=False):
279280
max_depth: int
280281
"""Maximum depth to crawl from the starting URL"""
281282

282-
url: Union[str, object]
283+
url: Union[str, NotGivenParam]
283284
"""The URL to crawl"""
284285

285286
weight: float

0 commit comments

Comments
 (0)