memwal 0.1.9.dev0__tar.gz → 0.1.9.dev1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/CHANGELOG.md +1 -0
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/PKG-INFO +1 -1
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/memwal/__init__.py +1 -1
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/memwal/types.py +11 -7
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/pyproject.toml +1 -1
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/.gitignore +0 -0
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/README.md +0 -0
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/examples/.env.example +0 -0
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/examples/.gitignore +0 -0
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/examples/async_remember_demo.py +0 -0
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/examples/interactive_demo.py +0 -0
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/examples/verify_credentials.py +0 -0
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/memwal/client.py +0 -0
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/memwal/compatibility.py +0 -0
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/memwal/middleware.py +0 -0
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/memwal/mock.py +0 -0
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/memwal/utils.py +0 -0
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/notebooks/walrus_memory_python_sdk.ipynb +0 -0
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/run_tests.py +0 -0
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/tests/__init__.py +0 -0
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/tests/test_auth_rejected_message.py +0 -0
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/tests/test_client.py +0 -0
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/tests/test_env_presets.py +0 -0
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/tests/test_integration.py +0 -0
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/tests/test_middleware.py +0 -0
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/tests/test_mock.py +0 -0
- {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/tests/test_signing.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: memwal
|
|
3
|
-
Version: 0.1.9.
|
|
3
|
+
Version: 0.1.9.dev1
|
|
4
4
|
Summary: Python SDK for Walrus Memory — Privacy-first AI memory with Ed25519 signing
|
|
5
5
|
Project-URL: Homepage, https://memory.walrus.xyz
|
|
6
6
|
Project-URL: Documentation, https://memory.walrus.xyz
|
|
@@ -206,13 +206,17 @@ class RestoreResult:
|
|
|
206
206
|
total: int
|
|
207
207
|
namespace: str
|
|
208
208
|
owner: str
|
|
209
|
-
#: True when this restore is known-incomplete:
|
|
210
|
-
#:
|
|
211
|
-
#:
|
|
212
|
-
#:
|
|
213
|
-
#:
|
|
214
|
-
#:
|
|
215
|
-
#:
|
|
209
|
+
#: True when this restore is known-incomplete: more on-chain blobs were
|
|
210
|
+
#: missing locally than ``limit`` allowed this call to restore, or the
|
|
211
|
+
#: sidecar's owner-wide candidate fetch hit its cap *and* raising
|
|
212
|
+
#: ``limit`` can still expand that fetch (``limit < 20``). Once the cap
|
|
213
|
+
#: is saturated, truncation follows this call's missing-blob page, not
|
|
214
|
+
#: on-chain ``total``, so a fully restored namespace does not loop
|
|
215
|
+
#: (WALM-431 / GH #762).
|
|
216
|
+
#:
|
|
217
|
+
#: ``truncated=False`` is not proof the sidecar saw every on-chain blob.
|
|
218
|
+
#: Blobs beyond the owner-wide sidecar candidate cap can still be
|
|
219
|
+
#: missing. Follow-up field: WALM-451 (``sourceCapped``).
|
|
216
220
|
#:
|
|
217
221
|
#: Relayers older than WALM-319 don't send this field at all; the SDK
|
|
218
222
|
#: defaults it to ``False`` in that case rather than requiring it.
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|