File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed
Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " trophy"
7- version = " 1.0.21 "
7+ version = " 1.0.22 "
88description = " A Python library for the Trophy API"
99license = {text = " MIT" }
1010readme = " README.md"
Original file line number Diff line number Diff line change @@ -52,6 +52,20 @@ class EventResponse(UniversalBaseModel):
5252 A map of points systems by key that were affected by this event.
5353 """
5454
55+ idempotency_key : typing_extensions .Annotated [
56+ typing .Optional [str ], FieldMetadata (alias = "idempotencyKey" )
57+ ] = pydantic .Field (default = None )
58+ """
59+ The idempotency key used for the event, if one was provided.
60+ """
61+
62+ idempotent_replayed : typing_extensions .Annotated [
63+ typing .Optional [bool ], FieldMetadata (alias = "idempotentReplayed" )
64+ ] = pydantic .Field (default = None )
65+ """
66+ Whether the event was replayed due to idempotency.
67+ """
68+
5569 if IS_PYDANTIC_V2 :
5670 model_config : typing .ClassVar [pydantic .ConfigDict ] = pydantic .ConfigDict (
5771 extra = "allow" , frozen = True
You can’t perform that action at this time.
0 commit comments