diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3b93d2a..702097b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "3.34.0" + ".": "3.35.0" } \ No newline at end of file diff --git a/.stats.yml b/.stats.yml index 2b69c4b..a0202ef 100644 --- a/.stats.yml +++ b/.stats.yml @@ -1,4 +1,4 @@ configured_endpoints: 26 -openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/supermemory--inc%2Fsupermemory-new-f09b91ede978d3fd05810d3750fcc837f8baa6430fa1be9208ba3088ecaef7f4.yml -openapi_spec_hash: 957d1e254f2f5933d0c22f3b310122e9 +openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/supermemory--inc%2Fsupermemory-new-0240419cabee6cafb40d76dd14a1faf53930e3324dc569fa1f1390c86bbe9f70.yml +openapi_spec_hash: 15f9d935cc44bdd64978a777f70e6b4e config_hash: cde97ef3188581c5f4924c633ec33ddb diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e2658f..e2006b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 3.35.0 (2026-04-23) + +Full Changelog: [v3.34.0...v3.35.0](https://github.com/supermemoryai/python-sdk/compare/v3.34.0...v3.35.0) + +### Features + +* **api:** api update ([3ca510b](https://github.com/supermemoryai/python-sdk/commit/3ca510b50c4577717133eed699934fde69aa29cc)) + + +### Chores + +* **internal:** more robust bootstrap script ([c2e1ceb](https://github.com/supermemoryai/python-sdk/commit/c2e1ceb34f7ce104f4bf95ac356584085d520c80)) + ## 3.34.0 (2026-04-18) Full Changelog: [v3.33.1...v3.34.0](https://github.com/supermemoryai/python-sdk/compare/v3.33.1...v3.34.0) diff --git a/pyproject.toml b/pyproject.toml index 8e5b006..63011b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "supermemory" -version = "3.34.0" +version = "3.35.0" description = "The official Python library for the supermemory API" dynamic = ["readme"] license = "Apache-2.0" diff --git a/scripts/bootstrap b/scripts/bootstrap index b430fee..fe8451e 100755 --- a/scripts/bootstrap +++ b/scripts/bootstrap @@ -4,7 +4,7 @@ set -e cd "$(dirname "$0")/.." -if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ] && [ "$SKIP_BREW" != "1" ] && [ -t 0 ]; then +if [ -f "Brewfile" ] && [ "$(uname -s)" = "Darwin" ] && [ "${SKIP_BREW:-}" != "1" ] && [ -t 0 ]; then brew bundle check >/dev/null 2>&1 || { echo -n "==> Install Homebrew dependencies? (y/N): " read -r response diff --git a/src/supermemory/_version.py b/src/supermemory/_version.py index b36d0d7..2e1569f 100644 --- a/src/supermemory/_version.py +++ b/src/supermemory/_version.py @@ -1,4 +1,4 @@ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. __title__ = "supermemory" -__version__ = "3.34.0" # x-release-please-version +__version__ = "3.35.0" # x-release-please-version diff --git a/src/supermemory/types/document_list_response.py b/src/supermemory/types/document_list_response.py index d667965..a032c19 100644 --- a/src/supermemory/types/document_list_response.py +++ b/src/supermemory/types/document_list_response.py @@ -80,6 +80,9 @@ class Memory(BaseModel): content: Optional[str] = None """Content of the document (only included when includeContent=true)""" + url: Optional[str] = None + """URL of the document""" + class Pagination(BaseModel): """Pagination metadata"""