From d845adc68b27bf3e7b6260223474f5160b967933 Mon Sep 17 00:00:00 2001 From: Stevche Radevski Date: Wed, 15 Jan 2025 18:52:51 +0100 Subject: [PATCH] fix: Include is default billing and shipping fields in the address response (#10970) Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com> --- packages/medusa/src/api/store/customers/query-config.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/medusa/src/api/store/customers/query-config.ts b/packages/medusa/src/api/store/customers/query-config.ts index 91d0e1a04e..2bd1eb234d 100644 --- a/packages/medusa/src/api/store/customers/query-config.ts +++ b/packages/medusa/src/api/store/customers/query-config.ts @@ -36,6 +36,8 @@ export const defaultStoreCustomerAddressFields = [ "country_code", "phone", "metadata", + "is_default_shipping", + "is_default_billing", "created_at", "updated_at", ]