A Promise-based module for working with the eBay API

npm install ebay-promised --save
This module provides a succint, verbose way to build requests with the eBay API.
Currently it works in production applications with the eBay XML POST Trading API, and I have not properly fleshed out the other eBay services.
Most of the other services are GET based and query string driven.
Features
How to use this module
Readinging through the Functional Tests is a great way to familiarize yourself with some common API calls.
# Basic Setup
import Ebay from 'ebay-promised'
import config from './config'
const ebay = Ebay.create(config)
const {err} = Ebay.errors
ebay
.GetMyeBaySelling()
.ActiveList({ Include: true })
.DetailLevel("ReturnAll")
.run()
.then(handleSuccess)
.catch(err.Ebay_Api_Error, err => {
})
.catch( err = {
})
const envEbay = Ebay.fromEnv()
Supported Calls
All calls, fields, and globals that are currently defined live in ./es6/definitions
If you find a call that is missing, feel free to open an issue so it can be addressed, or make a pull request.
Internally ebay-promised will attempt to detect when a request is paginated and go ahead and grab the subsequent pages for you and concatenate the results.
Utility methods
Pull requests are welcome.