mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
dc98de1ab2
* ⚡ Add support for multiple subscriptions in Hubspot Trigger * ⚡ Load object properties for the user * ⚡ Improvements * ⚡ Some improvements to the Hubspot-Node Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
24 lines
430 B
TypeScript
24 lines
430 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;
|
|
}
|