Skip to content

Releases: xivapi/xivapi-js

v0.2.3

06 May 15:27
Compare
Choose a tag to compare
  • Added new datacenters to resources

v0.2.2

05 Apr 09:36
Compare
Choose a tag to compare
  • Fixed a typo that prevented character.update() from working properly.

v0.2.1

03 Apr 17:11
Compare
Choose a tag to compare
  • Removed int parsing, which was causing issues (and shouldn't have been there in the first place but hey we all make mistakes okay)

v0.2.0

01 Apr 17:53
Compare
Choose a tag to compare

Breaking changes:

  • Added new market functionality. Most of the previous market methods are gone because of this, and new functionality has been compounded into a single method, market.get(). Make sure to check the wiki for the changes.

Other changes:

  • Fixed an issue around snake_case.
  • Added a verbose option for debugging.

v0.1.3

26 Mar 19:50
Compare
Choose a tag to compare

Important Change:

Changes have been made with how XIVAPI handles its API keys from now on. As a result, the way keys are provided during initialization of the module has also changed:

  • Since the API keys are no longer mandatory, you can simply init without providing one:
const xiv = new XIVAPI()
  • If you want to use a key, you can do so by adding it to the optional global params object.
const xiv = new XIVAPI( { private_key: 'myKey' } )

The old way of providing an API key separately from the global parameters will no longer work, and show a warning instead. If you want to change your existing code, you should get your new API key (only from the staging version right now) and make the following change:

Old:

const xiv = new XIVAPI('myOldKey', { [other params] })

New:

const xiv = new XIVAPI({ private_key: 'myNewKey', [other params] })

Other changes:

v0.1.2

26 Feb 21:19
Compare
Choose a tag to compare
  • Fixed an issue with character.search() when provided with wrong server.

v0.1.1

04 Feb 15:32
Compare
Choose a tag to compare
  • Fixed search() when using JSON input.
  • Fixed small code inconsistencies.

v0.1.0

04 Feb 15:29
a05e2f0
Compare
Choose a tag to compare

Initial release.