Skip to content

Releases: agisboye/app-store-server-api

v0.6.0

22 Feb 08:20
Compare
Choose a tag to compare
  • Changes the field name on OrderLookupResponse from orderLookupStatus to the correct status. Thanks @zjinpeng

v0.5.0

24 Jun 10:06
Compare
Choose a tag to compare

This release adds support for everything announced at WWDC 2022:

  • environment field on transaction and renewal info items
  • Filter and sort options for the transaction history endpoint
  • Notification test and history endpoints

Breaking changes

The second parameter of getTransactionHistory has changed from a revision string to an object containing query parameters. The revision string is one of several available query parameters.

If you are currently passing a revision string, change your code from:

const nextResponse = await api.getTransactionHistory(originalTransactionId, response.revision)

To:

const nextResponse = await api.getTransactionHistory(originalTransactionId, { revision: response.revision })