node setup

This commit is contained in:
Rupenieks
2020-04-30 14:03:36 +02:00
parent 976e02efcc
commit 9ac9ff3557
7 changed files with 723 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import {
IDataObject,
} from 'n8n-workflow';
export interface IProperty {
type: string;
name: string;
subtype?: string;
value?: string;
}
export interface IContact {
star_value?: string;
lead_score?: string;
tags?: string[];
properties?: IDataObject[];
}