Skip to content

Commit 651d65a

Browse files
fix(specs): updated watchResponse (generated)
algolia/api-clients-automation#4879 Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com> Co-authored-by: Clément Vannicatte <vannicattec@gmail.com>
1 parent 43b5f9e commit 651d65a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

algoliasearch/ingestion/models/watch_response.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,11 @@
2222

2323
_ALIASES = {
2424
"run_id": "runID",
25+
"event_id": "eventID",
2526
"data": "data",
2627
"events": "events",
2728
"message": "message",
29+
"created_at": "createdAt",
2830
}
2931

3032

@@ -39,12 +41,16 @@ class WatchResponse(BaseModel):
3941

4042
run_id: str
4143
""" Universally unique identifier (UUID) of a task run. """
44+
event_id: Optional[str] = None
45+
""" Universally unique identifier (UUID) of an event. """
4246
data: Optional[List[object]] = None
4347
""" when used with discovering or validating sources, the sampled data of your source is returned. """
4448
events: Optional[List[Event]] = None
4549
""" in case of error, observability events will be added to the response, if any. """
4650
message: Optional[str] = None
4751
""" a message describing the outcome of a validate run. """
52+
created_at: Optional[str] = None
53+
""" Date of creation in RFC 3339 format. """
4854

4955
model_config = ConfigDict(
5056
strict=False,

0 commit comments

Comments
 (0)