mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 19:32:15 +00:00
* 👕 Enable `consistent-type-imports` for nodes-base * 👕 Apply to nodes-base * ⏪ Undo unrelated changes * 🚚 Move to `.eslintrc.js` in nodes-base * ⏪ Revert "Enable `consistent-type-imports` for nodes-base" This reverts commit 529ad72b051478fa1633aaf84b2864f2fdc7613c. * 👕 Fix severity
130 lines
2.3 KiB
TypeScript
130 lines
2.3 KiB
TypeScript
import type { TicketProperties } from '../../Interfaces';
|
|
|
|
export const ticketCreateDescription: TicketProperties = [
|
|
{
|
|
displayName: 'Customer ID',
|
|
name: 'customerId',
|
|
type: 'string',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['ticket'],
|
|
operation: ['create'],
|
|
},
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Subject',
|
|
name: 'subject',
|
|
type: 'string',
|
|
required: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['ticket'],
|
|
operation: ['create'],
|
|
},
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Additional Fields',
|
|
name: 'additionalFields',
|
|
type: 'collection',
|
|
placeholder: 'Add Field',
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['ticket'],
|
|
operation: ['create'],
|
|
},
|
|
},
|
|
default: {},
|
|
options: [
|
|
{
|
|
displayName: 'Asset ID',
|
|
name: 'assetId',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Assign to Contact',
|
|
name: 'contactId',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'The ID of the contact you want to assign the ticket to',
|
|
},
|
|
// {
|
|
// displayName: 'Due Date',
|
|
// name: 'dueDate',
|
|
// type: 'dateTime',
|
|
// default: '',
|
|
// },
|
|
{
|
|
displayName: 'Issue Type',
|
|
name: 'issueType',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Contract Work',
|
|
value: 'Contract Work',
|
|
},
|
|
{
|
|
name: 'Network Project',
|
|
value: 'Network Project',
|
|
},
|
|
{
|
|
name: 'Other',
|
|
value: 'Other',
|
|
},
|
|
{
|
|
name: 'Regular Maintenance',
|
|
value: 'Regular Maintenance',
|
|
},
|
|
{
|
|
name: 'Remote Support',
|
|
value: 'Remote Support',
|
|
},
|
|
],
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Status',
|
|
name: 'status',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Customer Reply',
|
|
value: 'Customer Reply',
|
|
},
|
|
{
|
|
name: 'In Progress',
|
|
value: 'In Progress',
|
|
},
|
|
{
|
|
name: 'New',
|
|
value: 'New',
|
|
},
|
|
{
|
|
name: 'Resolved',
|
|
value: 'Resolved',
|
|
},
|
|
{
|
|
name: 'Scheduled',
|
|
value: 'Scheduled',
|
|
},
|
|
{
|
|
name: 'Waiting for Parts',
|
|
value: 'Waiting for Parts',
|
|
},
|
|
{
|
|
name: 'Waiting on Customer',
|
|
value: 'Waiting on Customer',
|
|
},
|
|
],
|
|
default: 'New',
|
|
description: 'If used along the parameter Search Query, only Search Query will be applied',
|
|
},
|
|
],
|
|
},
|
|
];
|