Skip to content

Commit 634025a

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

File tree

5 files changed

+3
-14
lines changed

5 files changed

+3
-14
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: 34753d74b4ed6e7aa69608d2daafb50d
4+
config_hash: e29127278ff246754ce4801403db0cd9

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 NotGiven, WebCrawlerIndexResponse
42+
from hyperspell.types.integrations import WebCrawlerIndexResponse
4343
```
4444

4545
Methods:

src/hyperspell/types/integrations/__init__.py

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

55
from .calendar import Calendar as Calendar
6-
from .not_given_param import NotGivenParam as NotGivenParam
76
from .slack_list_params import SlackListParams as SlackListParams
87
from .web_crawler_index_params import WebCrawlerIndexParams as WebCrawlerIndexParams
98
from .web_crawler_index_response import WebCrawlerIndexResponse as WebCrawlerIndexResponse

src/hyperspell/types/integrations/not_given_param.py

Lines changed: 0 additions & 9 deletions
This file was deleted.

src/hyperspell/types/memory_search_params.py

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

99
from .._types import SequenceNotStr
1010
from .._utils import PropertyInfo
11-
from .integrations.not_given_param import NotGivenParam
1211

1312
__all__ = [
1413
"MemorySearchParams",
@@ -280,7 +279,7 @@ class OptionsWebCrawler(TypedDict, total=False):
280279
max_depth: int
281280
"""Maximum depth to crawl from the starting URL"""
282281

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

286285
weight: float

0 commit comments

Comments
 (0)