import { IDataObject } from 'n8n-workflow'; export interface INetSuitePagedBody { hasMore: boolean; items: IDataObject[]; links: Array<{ rel: string; href: string; }>; offset: number; count: number; totalResults: number; } export interface INetSuiteErrorDetail { detail: string; 'o:errorCode': string; 'o:errorPath'?: string; 'o:urlPath'?: string; 'o:errorHeader'?: string; 'o:errorQueryParam'?: string; } export interface INetSuiteErrorResponse { type?: string; title?: string; status: number; 'o:errorDetails': INetSuiteErrorDetail[]; 'o:errorCode'?: string; message?: string; }