mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
⚡ Zendesk improvements
This commit is contained in:
@@ -1,3 +1,11 @@
|
||||
import {
|
||||
IDataObject,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
export interface IComment {
|
||||
body?: string;
|
||||
}
|
||||
|
||||
export interface ITicket {
|
||||
subject?: string;
|
||||
comment?: IComment;
|
||||
@@ -7,8 +15,5 @@ export interface ITicket {
|
||||
tags?: string[];
|
||||
status?: string;
|
||||
recipient?: string;
|
||||
}
|
||||
|
||||
export interface IComment {
|
||||
body?: string;
|
||||
custom_fields?: IDataObject[];
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user