mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -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>
14 lines
230 B
TypeScript
14 lines
230 B
TypeScript
import {
|
|
IDataObject,
|
|
} from 'n8n-workflow';
|
|
|
|
export interface IAssociation {
|
|
associatedCompanyIds?: number[];
|
|
associatedVids?: number[];
|
|
}
|
|
|
|
export interface IDeal {
|
|
associations?: IAssociation;
|
|
properties?: IDataObject[];
|
|
}
|