Skip to content

Commit 6ba14b7

Browse files
committed
fix(specs): Typos in API descriptions (generated)
algolia/api-clients-automation#3932 Co-authored-by: algolia-bot <[email protected]>
1 parent 891b9a1 commit 6ba14b7

File tree

4 files changed

+46
-46
lines changed

4 files changed

+46
-46
lines changed

algoliasearch/ingestion/client.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2371,7 +2371,7 @@ async def list_events_with_http_info(
23712371
request_options: Optional[Union[dict, RequestOptions]] = None,
23722372
) -> ApiResponse[str]:
23732373
"""
2374-
Retrieves a list of events for a task run, identified by it's ID.
2374+
Retrieves a list of events for a task run, identified by its ID.
23752375
23762376
Required API Key ACLs:
23772377
- addObject
@@ -2490,7 +2490,7 @@ async def list_events(
24902490
request_options: Optional[Union[dict, RequestOptions]] = None,
24912491
) -> ListEventsResponse:
24922492
"""
2493-
Retrieves a list of events for a task run, identified by it's ID.
2493+
Retrieves a list of events for a task run, identified by its ID.
24942494
24952495
Required API Key ACLs:
24962496
- addObject
@@ -7085,7 +7085,7 @@ def list_events_with_http_info(
70857085
request_options: Optional[Union[dict, RequestOptions]] = None,
70867086
) -> ApiResponse[str]:
70877087
"""
7088-
Retrieves a list of events for a task run, identified by it's ID.
7088+
Retrieves a list of events for a task run, identified by its ID.
70897089
70907090
Required API Key ACLs:
70917091
- addObject
@@ -7204,7 +7204,7 @@ def list_events(
72047204
request_options: Optional[Union[dict, RequestOptions]] = None,
72057205
) -> ListEventsResponse:
72067206
"""
7207-
Retrieves a list of events for a task run, identified by it's ID.
7207+
Retrieves a list of events for a task run, identified by its ID.
72087208
72097209
Required API Key ACLs:
72107210
- addObject

algoliasearch/ingestion/models/transformation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class Transformation(BaseModel):
4141
transformation_id: str
4242
""" Universally unique identifier (UUID) of a transformation. """
4343
authentication_ids: Optional[List[str]] = None
44-
""" The authentications associated for the current transformation. """
44+
""" The authentications associated with the current transformation. """
4545
code: str
4646
""" The source code of the transformation. """
4747
name: str

algoliasearch/ingestion/models/transformation_create.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class TransformationCreate(BaseModel):
4242
description: Optional[str] = None
4343
""" A descriptive name for your transformation of what it does. """
4444
authentication_ids: Optional[List[str]] = None
45-
""" The authentications associated for the current transformation. """
45+
""" The authentications associated with the current transformation. """
4646

4747
model_config = ConfigDict(
4848
use_enum_values=True,

0 commit comments

Comments
 (0)