/** * SyncroMSP Node - Version 1 * Discriminator: resource=ticket, operation=update */ interface Credentials { syncroMspApi: CredentialReference; } /** Update customer */ export type SyncroMspV1TicketUpdateParams = { resource: 'ticket'; operation: 'update'; /** * Ticket ID */ ticketId?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** Asset ID */ assetId?: string | Expression | PlaceholderValue; /** The ID of the contact you want to assign the ticket to */ contactId?: string | Expression | PlaceholderValue; /** Customer ID */ customerId?: string | Expression | PlaceholderValue; /** Due Date */ dueDate?: string | Expression; /** Issue Type */ issueType?: 'Contract Work' | 'Network Project' | 'Other' | 'Regular Maintenance' | 'Remote Support' | Expression; /** Status * @default New */ status?: 'Customer Reply' | 'In Progress' | 'New' | 'Resolved' | 'Scheduled' | 'Waiting for Parts' | 'Waiting on Customer' | Expression; /** Subject */ subject?: string | Expression | PlaceholderValue; }; }; export type SyncroMspV1TicketUpdateNode = { type: 'n8n-nodes-base.syncroMsp'; version: 1; credentials?: Credentials; config: NodeConfig; };