This document lists the breaking changes, new features, and resolved issues which accompany each version bump.
- Calls to API V2 endpoints now return a new
Result
Object, which provides support for pagination, as well as metadata (counts, helpers, etc). The data returned in that page previously inresult[0]
is now available withinresult.items[0]
, for example.
- SDK is no longer exclusively for NodeJS, and supports vanilla JavaScript for use in client-side applications as well. This means you can use this project in your client-side Ticketmaster API consumer as well, i.e. React/Angular/EmberJS apps.
- Added 'withCredentials: false' flag for CORS on client version of JS SDK
- Added Commerce API V2 Offer functionality
- Added support for Discovery API v2 Classifications
- Added support for Discovery API v2 Search Attractions
- Added extra tests around module API
- Added event search filtering via query string params in API V1 + V2 event.all() calls
- Added support for Discovery API v2
- Added Travis CI badge to README.md
- Fixed namespacing if you want to instantiate a subset of the API
- Added specs
- Initial version