mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
7ddd6ad9c2
* Added Suspended Tickets (Delete, List, Get, Recover) * Added Search option to Active tickets * Added internal note, public reply and assignee email options to active ticket updates * ⚡ Small improvements to #2296 * 🐛 Fix issue with pagination * ⚡ Improvements Co-authored-by: Jonathan <jonathan.bennetts@gmail.com>
23 lines
376 B
TypeScript
23 lines
376 B
TypeScript
import {
|
|
IDataObject,
|
|
} from 'n8n-workflow';
|
|
|
|
export interface IComment {
|
|
body?: string;
|
|
html_body?: string;
|
|
public?: boolean;
|
|
}
|
|
|
|
export interface ITicket {
|
|
subject?: string;
|
|
comment?: IComment;
|
|
type?: string;
|
|
group?: string;
|
|
external_id?: string;
|
|
tags?: string[];
|
|
status?: string;
|
|
recipient?: string;
|
|
custom_fields?: IDataObject[];
|
|
assignee_email?: string;
|
|
}
|