From 8dd937f5510b0a9d9d7d69fe7b8d6457017358d3 Mon Sep 17 00:00:00 2001 From: varun Date: Tue, 7 Feb 2023 02:10:16 -0500 Subject: [PATCH] given customer id in response in user login --- src/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.js b/src/index.js index eed73b28..2fd5d413 100644 --- a/src/index.js +++ b/src/index.js @@ -221,6 +221,7 @@ fastify.post("/api/login", { access_token: token, email: loginObject.user.emails, phone: loginObject.user.phone, + customerId: loginObject.user.customerId, username: loginObject.user.username, address1: loginObject.user.profile.address1, address2: loginObject.user.profile.address2,