Skip to content

Commit

Permalink
feat(character): remove parsing of waist gear
Browse files Browse the repository at this point in the history
Remove support for parsing waist gear due to deprecation with the introduction of 6.0, remove tests.

closes #20
  • Loading branch information
ReidWeb committed Dec 4, 2021
1 parent fef0125 commit f4b1e7a
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 11 deletions.
4 changes: 2 additions & 2 deletions docs/api/classes/client_LodestoneClient.default.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Client for interfacing with the Final Fantasy XIV Lodestone.

#### Defined in

[LodestoneClient.ts:53](https://github.com/XIVStats/lodestone/blob/c74514c/src/client/LodestoneClient.ts#L53)
[LodestoneClient.ts:53](https://github.com/XIVStats/lodestone/blob/fef0125/src/client/LodestoneClient.ts#L53)

## Properties

Expand All @@ -43,4 +43,4 @@ An instance will be generated by default, but as a consumer you can provide your

#### Defined in

[LodestoneClient.ts:49](https://github.com/XIVStats/lodestone/blob/c74514c/src/client/LodestoneClient.ts#L49)
[LodestoneClient.ts:49](https://github.com/XIVStats/lodestone/blob/fef0125/src/client/LodestoneClient.ts#L49)
1 change: 0 additions & 1 deletion src/entity/GearCategory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ const enum GearCategory {
Head = 'Head',
Body = 'Body',
Hands = 'Hands',
Waist = 'Waist',
Legs = 'Legs',
Feet = 'Feet',
Shield = 'Shield',
Expand Down
6 changes: 0 additions & 6 deletions src/entity/__tests__/Character.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,6 @@ describe('Character', () => {
id: '41cccfe5212?hq=1',
iLvl: 480,
},
waist: {
category: GearCategory.Waist,
name: 'Ronkan Tassets of Healing',
id: '2c65375dac8',
iLvl: 440,
},
legs: {
category: GearCategory.Legs,
name: 'Exarchic Hose of Healing',
Expand Down
2 changes: 0 additions & 2 deletions src/interface/IGearSet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ export default interface IGearSet {

readonly hands?: string | IGearPiece

readonly waist?: string | IGearPiece

readonly legs?: string | IGearPiece

readonly feet?: string | IGearPiece
Expand Down

0 comments on commit f4b1e7a

Please sign in to comment.