Skip to content

Commit 03a0250

Browse files
Automatically update Python SDK
1 parent e69d4ef commit 03a0250

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "trophy"
7-
version = "1.0.32"
7+
version = "1.0.34"
88
description = "A Python library for the Trophy API"
99
license = {text = "MIT"}
1010
readme = "README.md"

trophy/types/event_response.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,12 @@ class EventResponse(UniversalBaseModel):
4242

4343
points: typing.Dict[str, MetricEventPointsResponse] = pydantic.Field()
4444
"""
45-
A map of points systems by key.
45+
A map of points systems by key. Only contains points systems that were affected by the event.
4646
"""
4747

4848
leaderboards: typing.Dict[str, MetricEventLeaderboardResponse] = pydantic.Field()
4949
"""
50-
A map of leaderboards by key.
50+
A map of leaderboards by key. Only contains leaderboards that were affected by the event.
5151
"""
5252

5353
idempotency_key: typing_extensions.Annotated[typing.Optional[str], FieldMetadata(alias="idempotencyKey")] = (

trophy/types/streak_frequency.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
import typing
44

5-
StreakFrequency = typing.Union[typing.Literal["daily", "weekly", "monthly", "yearly"], typing.Any]
5+
StreakFrequency = typing.Union[typing.Literal["daily", "weekly", "monthly"], typing.Any]

0 commit comments

Comments
 (0)