Gets the estimated shipping costs for a particular country and postal code combination. This method accepts an object as its argument. After you call this method, the order summary of the cart is updated with the postal code and the currency amount of the shipping estimate.
var cart = container.getComponent("Cart");
cart.estimateShipping({
address: {
zip: "10065",
country: "US"
}
});