update id

This commit is contained in:
2025-10-30 02:02:23 -03:00
parent f284b64c60
commit 76dfc44b71
25 changed files with 103 additions and 40 deletions

View File

@@ -1124,6 +1124,7 @@ class DynamoDBCollection:
filter_expr: str | None = None,
index_forward: bool = False,
limit: int = LIMIT,
table_name: str | None = None,
) -> PaginatedResult:
"""Query returns all items with that partition key or key pair.
@@ -1185,6 +1186,7 @@ class DynamoDBCollection:
index_forward=index_forward,
limit=limit,
start_key=_startkey_b64decode(start_key) if start_key else {},
table_name=table_name,
)
items = r['items']

View File

@@ -1,6 +1,6 @@
[project]
name = "layercake"
version = "0.11.0"
version = "0.11.1"
description = "Packages shared dependencies to optimize deployment and ensure consistency across functions."
readme = "README.md"
authors = [