Skip to content

Commit c3069ac

Browse files
feat(api): api update
1 parent cbf70ff commit c3069ac

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: 26
2-
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/supermemory--inc%2Fsupermemory-new-57367558035f913c25c9a9a4c66480f1e53bb79629c688adc3281013d837b07d.yml
3-
openapi_spec_hash: 56a311a6bfaa5ed4a23c7927fc80b514
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/supermemory--inc%2Fsupermemory-new-5265b03b27deb2cdf87228686e261e0d19456f2ad3b5f173621de3176a094afb.yml
3+
openapi_spec_hash: 024e98bdca20fba4cb5cc422848f546a
44
config_hash: a69d5c502ffbfb11a2c8ec61ca5823e9

src/supermemory/resources/connections.py

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

6464
def create(
6565
self,
66-
provider: Literal["notion", "google-drive", "onedrive", "github", "web-crawler", "s3"],
66+
provider: Literal["notion", "google-drive", "onedrive", "gmail", "github", "web-crawler", "s3"],
6767
*,
6868
container_tags: SequenceNotStr[str] | Omit = omit,
6969
document_limit: int | Omit = omit,
@@ -211,7 +211,7 @@ def delete_by_id(
211211

212212
def delete_by_provider(
213213
self,
214-
provider: Literal["notion", "google-drive", "onedrive", "github", "web-crawler", "s3"],
214+
provider: Literal["notion", "google-drive", "onedrive", "gmail", "github", "web-crawler", "s3"],
215215
*,
216216
container_tags: SequenceNotStr[str],
217217
# 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_id(
284284

285285
def get_by_tag(
286286
self,
287-
provider: Literal["notion", "google-drive", "onedrive", "github", "web-crawler", "s3"],
287+
provider: Literal["notion", "google-drive", "onedrive", "gmail", "github", "web-crawler", "s3"],
288288
*,
289289
container_tags: SequenceNotStr[str],
290290
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -323,7 +323,7 @@ def get_by_tag(
323323

324324
def import_(
325325
self,
326-
provider: Literal["notion", "google-drive", "onedrive", "github", "web-crawler", "s3"],
326+
provider: Literal["notion", "google-drive", "onedrive", "gmail", "github", "web-crawler", "s3"],
327327
*,
328328
container_tags: SequenceNotStr[str] | Omit = omit,
329329
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -361,7 +361,7 @@ def import_(
361361

362362
def list_documents(
363363
self,
364-
provider: Literal["notion", "google-drive", "onedrive", "github", "web-crawler", "s3"],
364+
provider: Literal["notion", "google-drive", "onedrive", "gmail", "github", "web-crawler", "s3"],
365365
*,
366366
container_tags: SequenceNotStr[str] | Omit = omit,
367367
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -466,7 +466,7 @@ def with_streaming_response(self) -> AsyncConnectionsResourceWithStreamingRespon
466466

467467
async def create(
468468
self,
469-
provider: Literal["notion", "google-drive", "onedrive", "github", "web-crawler", "s3"],
469+
provider: Literal["notion", "google-drive", "onedrive", "gmail", "github", "web-crawler", "s3"],
470470
*,
471471
container_tags: SequenceNotStr[str] | Omit = omit,
472472
document_limit: int | Omit = omit,
@@ -618,7 +618,7 @@ async def delete_by_id(
618618

619619
async def delete_by_provider(
620620
self,
621-
provider: Literal["notion", "google-drive", "onedrive", "github", "web-crawler", "s3"],
621+
provider: Literal["notion", "google-drive", "onedrive", "gmail", "github", "web-crawler", "s3"],
622622
*,
623623
container_tags: SequenceNotStr[str],
624624
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -691,7 +691,7 @@ async def get_by_id(
691691

692692
async def get_by_tag(
693693
self,
694-
provider: Literal["notion", "google-drive", "onedrive", "github", "web-crawler", "s3"],
694+
provider: Literal["notion", "google-drive", "onedrive", "gmail", "github", "web-crawler", "s3"],
695695
*,
696696
container_tags: SequenceNotStr[str],
697697
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -730,7 +730,7 @@ async def get_by_tag(
730730

731731
async def import_(
732732
self,
733-
provider: Literal["notion", "google-drive", "onedrive", "github", "web-crawler", "s3"],
733+
provider: Literal["notion", "google-drive", "onedrive", "gmail", "github", "web-crawler", "s3"],
734734
*,
735735
container_tags: SequenceNotStr[str] | Omit = omit,
736736
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
@@ -770,7 +770,7 @@ async def import_(
770770

771771
async def list_documents(
772772
self,
773-
provider: Literal["notion", "google-drive", "onedrive", "github", "web-crawler", "s3"],
773+
provider: Literal["notion", "google-drive", "onedrive", "gmail", "github", "web-crawler", "s3"],
774774
*,
775775
container_tags: SequenceNotStr[str] | Omit = omit,
776776
# 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)