New call: updateHandlingTime & improvements

A new call has been released, updateHandlingTime, enabling users to update their SKU's handling time per Amazon channel account in SkuVault. You must first use getIntegrations to acquire the channel's ID(which is unique) and then you can use that ID to update an individual channel's handling time per SKU.

{
    "TenantToken" : "asdf=",
    "UserToken" : "zxcv=",
    "Items" : [{
            "Sku" : "product-00-001",
            "HandlingTime" : [{"AccountId" : "42","Quantity" : 5},
                              {"AccountId" : "5487","Quantity" : 2}]
        }, {
            "Sku" : "product-00-002",
            "HandlingTime" : [{"AccountId" : "42","Quantity" : 5}]
        }
    ]
}

Additionally we've added a pageSize parameter to getSalesByDate. The acceptable values for this parameter are integers between 1,000 and 10,000.

Changelog