Add support for suspended tickets to Zendesk node (#2297)

* 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>
This commit is contained in:
Ricardo Espinoza
2021-10-13 19:45:53 -04:00
committed by GitHub
parent d49aa18717
commit 7ddd6ad9c2
4 changed files with 241 additions and 35 deletions

View File

@@ -4,6 +4,8 @@ import {
export interface IComment {
body?: string;
html_body?: string;
public?: boolean;
}
export interface ITicket {
@@ -16,4 +18,5 @@ export interface ITicket {
status?: string;
recipient?: string;
custom_fields?: IDataObject[];
assignee_email?: string;
}