Files
n8n-enterprise-unlocked/packages/nodes-base/nodes/Orbit/Interfaces.ts
T
2022-08-17 17:50:24 +02:00

22 lines
257 B
TypeScript

import { IDataObject } from 'n8n-workflow';
export interface IData {
data: [
{
id: string;
},
];
}
export interface IRelation {
data: [
{
relationships: {
identities: IData;
member: IData;
};
},
];
included: IDataObject[];
}