Skip to content

Commit d2f435e

Browse files
SDK regeneration (#267)
Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com>
1 parent 0336f68 commit d2f435e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ client.entity.get_entity(
608608
<dl>
609609
<dd>
610610

611-
**relationships_limit:** `typing.Optional[int]` — Limit total relationship values. Defaults to 200.
611+
**relationships_limit:** `typing.Optional[int]` — Limit total relationship values. Defaults to 50.
612612

613613
</dd>
614614
</dl>

src/sayari/entity/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def get_entity(
173173
The pagination token for the previous page of relationship results
174174
175175
relationships_limit : typing.Optional[int]
176-
Limit total relationship values. Defaults to 200.
176+
Limit total relationship values. Defaults to 50.
177177
178178
relationships_type : typing.Optional[Relationships]
179179
Filter relationships to [relationship type](/sayari-library/ontology/relationships), e.g. director_of or has_shareholder
@@ -654,7 +654,7 @@ async def get_entity(
654654
The pagination token for the previous page of relationship results
655655
656656
relationships_limit : typing.Optional[int]
657-
Limit total relationship values. Defaults to 200.
657+
Limit total relationship values. Defaults to 50.
658658
659659
relationships_type : typing.Optional[Relationships]
660660
Filter relationships to [relationship type](/sayari-library/ontology/relationships), e.g. director_of or has_shareholder

src/sayari/resolution/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ def resolution_upload(
554554
)
555555
"""
556556
_response = self._client_wrapper.httpx_client.request(
557-
f"v1/v1/projects/{jsonable_encoder(project_id)}/resolutions",
557+
f"v1/projects/{jsonable_encoder(project_id)}/resolutions",
558558
method="POST",
559559
json=convert_and_respect_annotation_metadata(
560560
object_=request, annotation=ResolutionUploadBody, direction="write"
@@ -1188,7 +1188,7 @@ async def main() -> None:
11881188
asyncio.run(main())
11891189
"""
11901190
_response = await self._client_wrapper.httpx_client.request(
1191-
f"v1/v1/projects/{jsonable_encoder(project_id)}/resolutions",
1191+
f"v1/projects/{jsonable_encoder(project_id)}/resolutions",
11921192
method="POST",
11931193
json=convert_and_respect_annotation_metadata(
11941194
object_=request, annotation=ResolutionUploadBody, direction="write"

0 commit comments

Comments
 (0)