UNPKG

n8n-nodes-espocrm

Version:

n8n Community Node for EspoCRM

21 lines (20 loc) 402 B
export interface IEspoCRMResponse<T = any> { total: number; list: T[]; } export interface IEspoCRMError { statusCode: number; message: string; body: any; } export interface IEspoCRMCredentials { url: string; apiKey: string; } export interface IBaseEntity { id?: string; createdAt?: string; modifiedAt?: string; createdBy?: string; modifiedBy?: string; }