mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
✨ Intercom node
This commit is contained in:
16
packages/nodes-base/nodes/Intercom/LeadInterface.ts
Normal file
16
packages/nodes-base/nodes/Intercom/LeadInterface.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import { IDataObject } from "n8n-workflow";
|
||||
|
||||
export interface ILeadCompany {
|
||||
company_id?: string;
|
||||
}
|
||||
|
||||
export interface ILead {
|
||||
email: string;
|
||||
phone?: string;
|
||||
name?: string;
|
||||
custom_attributes?: IDataObject;
|
||||
companies?: ILeadCompany[];
|
||||
last_request_at?: number;
|
||||
unsubscribed_from_emails?: boolean;
|
||||
update_last_request_at?: boolean;
|
||||
}
|
||||
Reference in New Issue
Block a user