Skip to content

Commit 505d262

Browse files
committed
Update mcc_api.island schema to remove deprecated currency methods
1 parent d4f5527 commit 505d262

File tree

4 files changed

+5
-15
lines changed

4 files changed

+5
-15
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.07.17](https://img.shields.io/badge/🏝️_Targeting_Island_API-v25.07.17-aqua)](https://github.com/Noxcrew/mccisland-api/releases/tag/v25.07.17)
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)
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.07.17-aqua
11-
:alt: 🏝️ Targeting Island API v25.07.17
12-
:target: https://github.com/Noxcrew/mccisland-api/releases/tag/v25.07.17
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
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.3.2"
7+
__version__ = "1.4.0"
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: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -207,19 +207,9 @@
207207
GraphQLNonNull(GraphQLInt),
208208
description="The number of coins the player currently has."
209209
),
210-
"materialDust": GraphQLField(
211-
GraphQLNonNull(GraphQLInt),
212-
description="The number of material dust the player currently has.",
213-
deprecation_reason="Material Dust no longer exists. Will return 0 until removal."
214-
),
215210
"royalReputation": GraphQLField(
216211
GraphQLNonNull(GraphQLInt),
217212
description="The number of Royal Reputation the player currently has."
218-
),
219-
"silver": GraphQLField(
220-
GraphQLNonNull(GraphQLInt),
221-
description="The number of silver the player currently has.",
222-
deprecation_reason="Silver no longer exists. Will return 0 until removal."
223213
)
224214
}
225215
)

0 commit comments

Comments
 (0)