Skip to content

Commit e29337c

Browse files
feat(api): api update
1 parent 447f54f commit e29337c

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
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: 18
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/supermemory--inc%2Fsupermemory-new-268046d0d3e461f90719c7aff95adde912763ec5dfdade1f0c25fc8a0cd9b25d.yml
3-
openapi_spec_hash: cc8090e79852ab4566347b41faa409c0
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/supermemory--inc%2Fsupermemory-new-ebd5e757d0e76cb83013e01a1e0bb3dba62beb83b2a2ffa28d148ea032e96fd0.yml
3+
openapi_spec_hash: f930474a6ad230545154244045cc602e
44
config_hash: a478b24249ee4f53abfb5787ca4daf8b

src/supermemory/resources/connections.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def with_streaming_response(self) -> ConnectionsResourceWithStreamingResponse:
5959

6060
def create(
6161
self,
62-
provider: Literal["notion", "google-drive", "onedrive"],
62+
provider: Literal["notion", "google-drive", "onedrive", "web-crawler"],
6363
*,
6464
container_tags: SequenceNotStr[str] | Omit = omit,
6565
document_limit: int | Omit = omit,
@@ -172,7 +172,7 @@ def delete_by_id(
172172

173173
def delete_by_provider(
174174
self,
175-
provider: Literal["notion", "google-drive", "onedrive"],
175+
provider: Literal["notion", "google-drive", "onedrive", "web-crawler"],
176176
*,
177177
container_tags: SequenceNotStr[str],
178178
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -245,7 +245,7 @@ def get_by_id(
245245

246246
def get_by_tags(
247247
self,
248-
provider: Literal["notion", "google-drive", "onedrive"],
248+
provider: Literal["notion", "google-drive", "onedrive", "web-crawler"],
249249
*,
250250
container_tags: SequenceNotStr[str],
251251
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -284,7 +284,7 @@ def get_by_tags(
284284

285285
def import_(
286286
self,
287-
provider: Literal["notion", "google-drive", "onedrive"],
287+
provider: Literal["notion", "google-drive", "onedrive", "web-crawler"],
288288
*,
289289
container_tags: SequenceNotStr[str] | Omit = omit,
290290
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -322,7 +322,7 @@ def import_(
322322

323323
def list_documents(
324324
self,
325-
provider: Literal["notion", "google-drive", "onedrive"],
325+
provider: Literal["notion", "google-drive", "onedrive", "web-crawler"],
326326
*,
327327
container_tags: SequenceNotStr[str] | Omit = omit,
328328
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -382,7 +382,7 @@ def with_streaming_response(self) -> AsyncConnectionsResourceWithStreamingRespon
382382

383383
async def create(
384384
self,
385-
provider: Literal["notion", "google-drive", "onedrive"],
385+
provider: Literal["notion", "google-drive", "onedrive", "web-crawler"],
386386
*,
387387
container_tags: SequenceNotStr[str] | Omit = omit,
388388
document_limit: int | Omit = omit,
@@ -497,7 +497,7 @@ async def delete_by_id(
497497

498498
async def delete_by_provider(
499499
self,
500-
provider: Literal["notion", "google-drive", "onedrive"],
500+
provider: Literal["notion", "google-drive", "onedrive", "web-crawler"],
501501
*,
502502
container_tags: SequenceNotStr[str],
503503
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -570,7 +570,7 @@ async def get_by_id(
570570

571571
async def get_by_tags(
572572
self,
573-
provider: Literal["notion", "google-drive", "onedrive"],
573+
provider: Literal["notion", "google-drive", "onedrive", "web-crawler"],
574574
*,
575575
container_tags: SequenceNotStr[str],
576576
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -609,7 +609,7 @@ async def get_by_tags(
609609

610610
async def import_(
611611
self,
612-
provider: Literal["notion", "google-drive", "onedrive"],
612+
provider: Literal["notion", "google-drive", "onedrive", "web-crawler"],
613613
*,
614614
container_tags: SequenceNotStr[str] | Omit = omit,
615615
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -649,7 +649,7 @@ async def import_(
649649

650650
async def list_documents(
651651
self,
652-
provider: Literal["notion", "google-drive", "onedrive"],
652+
provider: Literal["notion", "google-drive", "onedrive", "web-crawler"],
653653
*,
654654
container_tags: SequenceNotStr[str] | Omit = omit,
655655
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.

0 commit comments

Comments
 (0)