diff --git a/lib/bigcommerce/api/cart/handlers/get-cart.ts b/lib/bigcommerce/api/cart/handlers/get-cart.ts index 5b6e645c2..212107c5a 100644 --- a/lib/bigcommerce/api/cart/handlers/get-cart.ts +++ b/lib/bigcommerce/api/cart/handlers/get-cart.ts @@ -11,9 +11,7 @@ const getCart: CartHandlers['getCart'] = async ({ let result: { data?: Cart } = {} try { - result = await config.storeApiFetch( - `/v3/carts/${cartId}?include=redirect_urls` - ) + result = await config.storeApiFetch(`/v3/carts/${cartId}`) } catch (error) { if (error instanceof BigcommerceApiError && error.status === 404) { // Remove the cookie if it exists but the cart wasn't found diff --git a/lib/bigcommerce/api/cart/index.ts b/lib/bigcommerce/api/cart/index.ts index f0c8afb2a..8c307dda8 100644 --- a/lib/bigcommerce/api/cart/index.ts +++ b/lib/bigcommerce/api/cart/index.ts @@ -35,11 +35,6 @@ export type Cart = { base_amount: number discount_amount: number cart_amount: number - redirect_urls: { - cart_url: string - checkout_url: string - embedded_checkout_url: string - } line_items: { custom_items: any[] digital_items: any[]