From 1b4c5542854c45373f245d66627660efb3cc29c8 Mon Sep 17 00:00:00 2001 From: Roberto Oliveros Date: Wed, 4 Feb 2026 18:06:42 -0600 Subject: [PATCH] Print param details when doing auth flow --- packages/v1-ready/zoho-crm/src/definition.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/v1-ready/zoho-crm/src/definition.ts b/packages/v1-ready/zoho-crm/src/definition.ts index 25d1c11..dcb87fb 100644 --- a/packages/v1-ready/zoho-crm/src/definition.ts +++ b/packages/v1-ready/zoho-crm/src/definition.ts @@ -13,6 +13,7 @@ export const Definition = { moduleName: config.name, requiredAuthMethods: { getToken: async function(api: Api, params: any): Promise { + console.log('GET_TOKEN PARAMS=========', params); const code = get(params, 'code'); const location = get(params, 'location', null) as ZohoLocation | null; const accountsServer = get(params, 'accounts-server', null) as string | null; @@ -31,6 +32,7 @@ export const Definition = { entity: ['location', 'accountsServer'], }, getCredentialDetails: async function (api: Api, userId: string): Promise { + console.log('GET_CREDENTIALDETAILS============'); const response = await api.listUsers({type: 'CurrentUser'}); const currentUser = response.users[0]; return { @@ -39,6 +41,7 @@ export const Definition = { }; }, getEntityDetails: async function (api: Api, callbackParams: any, tokenResponse: any, userId: string): Promise { + console.log('GET_ENTITY_DETAILS CALLBACKPARAMS=========', callbackParams); const response = await api.listUsers({type: 'CurrentUser'}); const currentUser = response.users[0]; return {