import type { AllEntities, Entity, PropertiesOf } from 'n8n-workflow'; type SyncroMspMap = { contact: 'create' | 'delete' | 'get' | 'getAll' | 'update'; customer: 'create' | 'delete' | 'get' | 'getAll' | 'update'; rmm: 'create' | 'delete' | 'get' | 'getAll' | 'mute'; ticket: 'create' | 'delete' | 'get' | 'getAll' | 'update'; }; export type SyncroMsp = AllEntities; export type SyncroMspMapContact = Entity; export type SyncroMspMapCustomer = Entity; export type SyncroMspMapRmm = Entity; export type SyncroMspMapTicket = Entity; export type ContactProperties = PropertiesOf; export type CustomerProperties = PropertiesOf; export type RmmProperties = PropertiesOf; export type TicketProperties = PropertiesOf; export interface IAttachment { fields: { item?: object[]; }; actions: { item?: object[]; }; }