Skip to content

Commit

Permalink
💚 Fix api build
Browse files Browse the repository at this point in the history
  • Loading branch information
naelob committed May 3, 2024
1 parent e5048be commit d4c76b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/api/src/crm/contact/services/zoho/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export class ZohoContactMapper implements IContactMapper {
};

return {
remote_id: contact.id,
remote_id: String(contact.id),
first_name: contact.First_Name ? contact.First_Name : '',
last_name: contact.Last_Name ? contact.Last_Name : '',
email_addresses,
Expand Down
2 changes: 1 addition & 1 deletion packages/api/src/crm/contact/services/zoho/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
export interface ZohoContact {
id: string | number;
Owner: {
name: string;
id: string;
Expand Down Expand Up @@ -47,7 +48,6 @@ export interface ZohoContact {
Other_Country: string;
Description: string;
Record_Image: string;
id: string;
[key: string]: any;
}

Expand Down

0 comments on commit d4c76b1

Please sign in to comment.