Skip to content

Commit 75f845a

Browse files
committed
Update mcc_api.island schema to support cosmetic descriptions
1 parent f70d50b commit 75f845a

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

README.md

+1-1
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.02.10](https://img.shields.io/badge/🏝️_Targeting_Island_API-v25.02.10-aqua)](https://github.com/Noxcrew/mccisland-api/releases/tag/v25.02.10)
5+
[![🏝️ Targeting Island API v25.03.13](https://img.shields.io/badge/🏝️_Targeting_Island_API-v25.03.13-aqua)](https://github.com/Noxcrew/mccisland-api/releases/tag/v25.03.13)
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

+3-3
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.02.10-aqua
11-
:alt: 🏝️ Targeting Island API v25.02.10
12-
:target: https://github.com/Noxcrew/mccisland-api/releases/tag/v25.02.10
10+
.. image:: https://img.shields.io/badge/🏝️_Targeting_Island_API-v25.03.13-aqua
11+
:alt: 🏝️ Targeting Island API v25.03.13
12+
:target: https://github.com/Noxcrew/mccisland-api/releases/tag/v25.03.13
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

+1-4
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,5 @@
44
"__version__"
55
]
66

7-
__version__ = "1.3.0"
7+
__version__ = "1.3.1"
88
__user_agent: t.Final[str] = f"python_mcc_api/{__version__} (https://github.com/JamesMCo/python_mcc_api)"
9-
10-
# update version of package
11-
# update targeted api version

mcc_api/island/types.py

+4
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,10 @@
9797
GraphQLNonNull(GraphQLBoolean),
9898
description="If this cosmetic can be colored using Chroma Packs."
9999
),
100+
"description": GraphQLField(
101+
GraphQLNonNull(GraphQLString),
102+
description="The description of the cosmetic."
103+
),
100104
"globalNumberOwned": GraphQLField(
101105
GraphQLString,
102106
description="The number of people who own this cosmetic.\n\n"

0 commit comments

Comments
 (0)