import type { IDataObject } from 'n8n-workflow'; export interface IData { data: [ { id: string; } ]; } export interface IRelation { data: [ { relationships: { identities: IData; member: IData; }; } ]; included: IDataObject[]; } //# sourceMappingURL=Interfaces.d.ts.map