Releases: agisboye/app-store-server-api
Releases · agisboye/app-store-server-api
v0.6.0
v0.5.0
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 })