v0.7.0
Pre-release
Pre-release
Endpoints
- Breaking:
Gw2Sharp.WebApi.V2.Models.CharacterCraftingDiscipline
has had the type of its propertyDiscipline
changed fromstring
toApiEnum<CraftingDisciplineType>
- Breaking:
Gw2Sharp.WebApi.V2.Models.MasteryLevel
has had the type of its propertyIcon
fixed fromstring
toRenderUrl
- Breaking: Enum value
TwoHandedToy
inGw2Sharp.WebApi.V2.Models.ItemWeaponType
has had its name fixed toToyTwoHanded
- Add
/v2/recipes
- Add
/v2/recipes/search
- Add missing enum
AgonyResistance
inGw2Sharp.WebApi.V2.Models.ItemAttributeType
- Add missing enums
Currency
,RandomUnlock
andMountRandomUnlock
inGw2Sharp.WebApi.V2.Models.ItemConsumableType
- Add missing enum
Immediate
inGw2Sharp.WebApi.V2.Models.ItemContainerType
- Add missing enum
Female
inGw2Sharp.WebApi.V2.Models.ItemRestriction
- Add missing enum
Key
inGw2Sharp.WebApi.V2.Models.ItemType
- Add missing enums
SharedSlot
,Minipet
andMountSkin
inGw2Sharp.WebApi.V2.Models.ItemUnlockType
- Add missing item type
Key
asGw2Sharp.WebApi.V2.Models.ItemKey
for pattern matching
Fixes
- Classes that implement
Gw2Sharp.WebApi.V2.Models.ICastableType
to support polymorphism (e.g. various items from/v2/items
) should no longer fail to deserialize withRenderUrl
properties (#12)
Refactoring
- The endpoint clients
Gw2Sharp.WebApi.V2.Clients.CommerceExchangeCoinsClient
andGw2Sharp.WebApi.V2.Clients.CommerceExchangeGemsClient
no longer inherit fromGw2Sharp.WebApi.V2.Clients.BaseEndpointBlobClient
and instead inherit fromGw2Sharp.WebApi.BlobClient
(they require the quantity to be given and cannot return a valid blob response without it)