Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "3.34.0"
".": "3.35.0"
}
4 changes: 2 additions & 2 deletions .stats.yml
Original file line number Diff line number Diff line change
@@ -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
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion scripts/bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/supermemory/_version.py
Original file line number Diff line number Diff line change
@@ -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
3 changes: 3 additions & 0 deletions src/supermemory/types/document_list_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"""
Expand Down