File tree Expand file tree Collapse file tree 6 files changed +17
-9
lines changed Expand file tree Collapse file tree 6 files changed +17
-9
lines changed Original file line number Diff line number Diff line change 11{
2- "." : " 0.1.0-alpha.4 "
2+ "." : " 0.1.0-alpha.5 "
33}
Original file line number Diff line number Diff line change 11configured_endpoints : 15
22openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/zeroentropy%2Fzeroentropy-f06c49dfd4b38a4f9d5bcad56348156bbf641aa8b7968acfbf655ad6ceff2126.yml
33openapi_spec_hash : cac52dd65fbcb65ffa7a183e764b7f06
4- config_hash : 34c8a6deaedce51a258bc46b38c9caa0
4+ config_hash : beba80a17ba64c5439712e85129ab5ad
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.1.0-alpha.5 (2025-06-04)
4+
5+ Full Changelog: [ v0.1.0-alpha.4...v0.1.0-alpha.5] ( https://github.com/zeroentropy-ai/zeroentropy-python/compare/v0.1.0-alpha.4...v0.1.0-alpha.5 )
6+
7+ ### Features
8+
9+ * ** api:** manual updates ([ 50807fe] ( https://github.com/zeroentropy-ai/zeroentropy-python/commit/50807fe3454c36376e479e0533fba94bbc47aa8a ) )
10+
311## 0.1.0-alpha.4 (2025-06-03)
412
513Full Changelog: [ v0.1.0-alpha.3...v0.1.0-alpha.4] ( https://github.com/zeroentropy-ai/zeroentropy-python/compare/v0.1.0-alpha.3...v0.1.0-alpha.4 )
Original file line number Diff line number Diff line change 11[project ]
22name = " zeroentropy"
3- version = " 0.1.0-alpha.4 "
3+ version = " 0.1.0-alpha.5 "
44description = " The official Python library for the ZeroEntropy API"
55dynamic = [" readme" ]
66license = " Apache-2.0"
Original file line number Diff line number Diff line change 11# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22
33__title__ = "zeroentropy"
4- __version__ = "0.1.0-alpha.4 " # x-release-please-version
4+ __version__ = "0.1.0-alpha.5 " # x-release-please-version
Original file line number Diff line number Diff line change 1212
1313@runtime_checkable
1414class GetDocumentInfoListCursorItem (Protocol ):
15- id : str
15+ path : str
1616
1717
1818class SyncGetDocumentInfoListCursor (BaseSyncPage [_T ], BasePage [_T ], Generic [_T ]):
@@ -32,11 +32,11 @@ def next_page_info(self) -> Optional[PageInfo]:
3232 return None
3333
3434 item = cast (Any , documents [- 1 ])
35- if not isinstance (item , GetDocumentInfoListCursorItem ) or item .id is None : # pyright: ignore[reportUnnecessaryComparison]
35+ if not isinstance (item , GetDocumentInfoListCursorItem ) or item .path is None : # pyright: ignore[reportUnnecessaryComparison]
3636 # TODO emit warning log
3737 return None
3838
39- return PageInfo (json = {"path_gt" : item .id })
39+ return PageInfo (json = {"path_gt" : item .path })
4040
4141
4242class AsyncGetDocumentInfoListCursor (BaseAsyncPage [_T ], BasePage [_T ], Generic [_T ]):
@@ -56,8 +56,8 @@ def next_page_info(self) -> Optional[PageInfo]:
5656 return None
5757
5858 item = cast (Any , documents [- 1 ])
59- if not isinstance (item , GetDocumentInfoListCursorItem ) or item .id is None : # pyright: ignore[reportUnnecessaryComparison]
59+ if not isinstance (item , GetDocumentInfoListCursorItem ) or item .path is None : # pyright: ignore[reportUnnecessaryComparison]
6060 # TODO emit warning log
6161 return None
6262
63- return PageInfo (json = {"path_gt" : item .id })
63+ return PageInfo (json = {"path_gt" : item .path })
You can’t perform that action at this time.
0 commit comments