n8n/packages/nodes-base/nodes/SyncroMSP/v1/actions/Interfaces.ts
Michael Kret 91d7e16c81
n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
2022-08-17 17:50:24 +02:00

30 lines
1,007 B
TypeScript

import { 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<SyncroMspMap>;
export type SyncroMspMapContact = Entity<SyncroMspMap, 'contact'>;
export type SyncroMspMapCustomer = Entity<SyncroMspMap, 'customer'>;
export type SyncroMspMapRmm = Entity<SyncroMspMap, 'rmm'>;
export type SyncroMspMapTicket = Entity<SyncroMspMap, 'ticket'>;
export type ContactProperties = PropertiesOf<SyncroMspMapContact>;
export type CustomerProperties = PropertiesOf<SyncroMspMapCustomer>;
export type RmmProperties = PropertiesOf<SyncroMspMapRmm>;
export type TicketProperties = PropertiesOf<SyncroMspMapTicket>;
export interface IAttachment {
fields: {
item?: object[];
};
actions: {
item?: object[];
};
}