mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
✨ done
This commit is contained in:
@@ -4,10 +4,15 @@ export interface ILeadCompany {
|
||||
company_id?: string;
|
||||
}
|
||||
|
||||
export interface IAvatar {
|
||||
type?: string;
|
||||
image_url?: string;
|
||||
}
|
||||
|
||||
export interface ILead {
|
||||
user_id?: string;
|
||||
id?: string;
|
||||
email: string;
|
||||
email?: string;
|
||||
phone?: string;
|
||||
name?: string;
|
||||
custom_attributes?: IDataObject;
|
||||
@@ -15,4 +20,10 @@ export interface ILead {
|
||||
last_request_at?: number;
|
||||
unsubscribed_from_emails?: boolean;
|
||||
update_last_request_at?: boolean;
|
||||
avatar?: IAvatar;
|
||||
utm_source?: string;
|
||||
utm_medium?: string;
|
||||
utm_campaign?: string;
|
||||
utm_term?: string;
|
||||
utm_content?: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user