Skip to content

Commit 2cdaa5d

Browse files
committed
Update mcc_api.island schema to match documentation re: LeaderboardEntry player field being non-null if rank <= 10
1 parent 50bf75f commit 2cdaa5d

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

README.md

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

33
[![🐍 PyPI](https://img.shields.io/pypi/v/mcc-api?label=🐍%20PyPI)](https://pypi.org/project/mcc-api/)
44
[![👑 Targeting Event API v1.6.0](https://img.shields.io/badge/👑_Targeting_Event_API-v1.6.0-red)](https://github.com/Noxcrew/mcchampionship-api/releases/tag/v1.6.0)
5-
[![🏝️ Targeting Island API v25.08.07](https://img.shields.io/badge/🏝️_Targeting_Island_API-v25.08.07-aqua)](https://github.com/Noxcrew/mccisland-api/releases/tag/v25.08.07)
5+
[![🏝️ Targeting Island API v25.09.23](https://img.shields.io/badge/🏝️_Targeting_Island_API-v25.09.23-aqua)](https://github.com/Noxcrew/mccisland-api/releases/tag/v25.09.23)
66

77
A helper library for the [MC Championship](https://mcchampionship.com) APIs
88
([Event](https://github.com/Noxcrew/mcchampionship-api), inspired by [derNiklaas's](https://github.com/derNiklaas)

docs/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ python_mcc_api
77
.. image:: https://img.shields.io/badge/👑_Targeting_Event_API-v1.6.0-red
88
:alt: 👑 Targeting Event API v1.6.0
99
:target: https://github.com/Noxcrew/mcchampionship-api/releases/tag/v1.6.0
10-
.. image:: https://img.shields.io/badge/🏝️_Targeting_Island_API-v25.08.07-aqua
11-
:alt: 🏝️ Targeting Island API v25.08.07
12-
:target: https://github.com/Noxcrew/mccisland-api/releases/tag/v25.08.07
10+
.. image:: https://img.shields.io/badge/🏝️_Targeting_Island_API-v25.09.23-aqua
11+
:alt: 🏝️ Targeting Island API v25.09.23
12+
:target: https://github.com/Noxcrew/mccisland-api/releases/tag/v25.09.23
1313

1414
A helper library for the `MC Championship <https://mcchampionship.com>`_ APIs
1515
(`Event <https://github.com/Noxcrew/mcchampionship-api>`_, inspired by `derNiklaas's <https://github.com/derNiklaas>`_

mcc_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
"__version__"
55
]
66

7-
__version__ = "1.4.0"
7+
__version__ = "1.4.1"
88
__user_agent: t.Final[str] = f"python_mcc_api/{__version__} (https://github.com/JamesMCo/python_mcc_api)"

mcc_api/island/types.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,8 @@
421421
player_type,
422422
description="The player who has this entry.\n\n"
423423
"This will be `null` if the player does not have the statistics enabled for the API.\n"
424-
"However, for Crown Level or Trophy count leaderboards, the player will not be `null`."
424+
"However, for Crown Level or Trophy count leaderboards, the player will not be `null`.\n"
425+
"It will also never be `null` for players with a rank less than or equal to 10."
425426
),
426427
"rank": GraphQLField(
427428
GraphQLNonNull(GraphQLInt),

0 commit comments

Comments
 (0)