mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
22 lines
428 B
TypeScript
22 lines
428 B
TypeScript
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;
|
|
}
|