Improved HelpScout-Nodes

This commit is contained in:
Jan Oberhauser
2020-03-29 19:10:54 +02:00
parent 6e6bb7781b
commit 83e6e8bf11
13 changed files with 1259 additions and 1256 deletions

View File

@@ -1,4 +1,4 @@
import { IDataObject } from "n8n-workflow";
import { IDataObject } from 'n8n-workflow';
export interface IConversation {
assignTo?: number;
@@ -8,11 +8,11 @@ export interface IConversation {
customer?: IDataObject;
fields?: IDataObject[];
imported?: boolean;
mailboxId?: number; //
status?: string; //
subject?: string; //
mailboxId?: number;
status?: string;
subject?: string;
tags?: IDataObject[];
threads?: IDataObject[];
type?: string; //
type?: string;
user?: number;
}