UNPKG

418 BJavaScriptView Raw
1var endpoint = {};
2
3endpoint.product_types = '/products';
4endpoint.price_estimates = '/estimates/price';
5endpoint.time_estimates = '/estimates/time';
6endpoint.promotions = '/promotions';
7endpoint.user_activity = '/history';
8endpoint.user_profile = '/me';
9endpoint.request = '/requests';
10endpoint.request_map = function(request_id){
11 return endpoint.request + '/' + request_id + '/map';
12};
13
14module.exports = endpoint;
\No newline at end of file