File tree Expand file tree Collapse file tree 8 files changed +32
-6
lines changed
Expand file tree Collapse file tree 8 files changed +32
-6
lines changed Original file line number Diff line number Diff line change 11{
2- "." : " 0.15 .0"
2+ "." : " 0.16 .0"
33}
Original file line number Diff line number Diff line change 11configured_endpoints : 5
2- openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/isaacus%2Fisaacus-3cce91df023b807a4471d16453720e5962966b270abd3eee54711d74cfbd092e .yml
3- openapi_spec_hash : 5d9892dfcf03fd24c38775951636e5fb
2+ openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/isaacus%2Fisaacus-a9cacf65cf152a5f4fdd8de8d28c979452c67c28a7e765075638b817d330d121 .yml
3+ openapi_spec_hash : 8343f878342e9d128695b85fecb93dc5
44config_hash : 7b8cddc2fa896f9ab05e6b05055c7f27
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.16.0 (2026-02-04)
4+
5+ Full Changelog: [ v0.15.0...v0.16.0] ( https://github.com/isaacus-dev/isaacus-python/compare/v0.15.0...v0.16.0 )
6+
7+ ### Features
8+
9+ * ** api:** add ` children ` fields to hierarchical ILGS entities ([ 38c909c] ( https://github.com/isaacus-dev/isaacus-python/commit/38c909ccd36352f6d774081c4184b117ef26911a ) )
10+
311## 0.15.0 (2026-02-04)
412
513Full Changelog: [ v0.14.0...v0.15.0] ( https://github.com/isaacus-dev/isaacus-python/compare/v0.14.0...v0.15.0 )
Original file line number Diff line number Diff line change 11[project ]
22name = " isaacus"
3- version = " 0.15 .0"
3+ version = " 0.16 .0"
44description = " The official Python library for the isaacus 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__ = "isaacus"
4- __version__ = "0.15 .0" # x-release-please-version
4+ __version__ = "0.16 .0" # x-release-please-version
Original file line number Diff line number Diff line change @@ -46,6 +46,12 @@ class Location(BaseModel):
4646 is a non-negative incrementing integer starting from zero.
4747 """
4848
49+ children : List [str ]
50+ """
51+ The unique identifiers of any 'child' locations having this location as their
52+ immediate parent.
53+ """
54+
4955 mentions : List [Span ]
5056 """
5157 An array of one or more spans within the document's text where the location is
Original file line number Diff line number Diff line change @@ -182,6 +182,12 @@ class Person(BaseModel):
182182 `{index}` is a non-negative incrementing integer starting from zero.
183183 """
184184
185+ children : List [str ]
186+ """
187+ The unique identifiers of any persons having this person as their immediate
188+ parent.
189+ """
190+
185191 residence : Optional [str ] = None
186192 """
187193 A unique identifier for a location in the format `loc:{index}` where `{index}`
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
3- from typing import Optional
3+ from typing import List , Optional
44from typing_extensions import Literal
55
66from .span import Span
@@ -188,6 +188,12 @@ class Segment(BaseModel):
188188 a non-negative incrementing integer starting from zero.
189189 """
190190
191+ children : List [str ]
192+ """
193+ The unique identifiers of any segments having this segment as their immediate
194+ parent.
195+ """
196+
191197 level : int
192198 """
193199 The level of the segment within the document's segment hierarchy starting from
You can’t perform that action at this time.
0 commit comments