Extended Hubspot functionality

This commit is contained in:
ricardo
2020-03-22 22:39:40 -04:00
parent f0f4a04c74
commit fa922d363e
4 changed files with 478 additions and 36 deletions

View File

@@ -0,0 +1,21 @@
import { IDataObject } from "n8n-workflow";
export interface IContext {
goToWebinarWebinarKey?: string;
hutk?: string;
ipAddress?: string;
pageId?: string;
pageName?: string;
pageUri?: string;
sfdcCampaignId?: string;
}
export interface IForm {
portalId?: number;
formId?: string;
fields?: IDataObject[];
legalConsentOptions?: IDataObject;
context?: IContext[];
submittedAt?: number;
skipValidation?: boolean;
}