Client.prototype.updateStoreInfo = function(attrs, callback, access_token) {
    var url = this.buildPushUrl(access_token, attrs).replace(this.endpointToken,
        this.endpoints.store);
    this.put(url, callback);
};