n8n/packages/nodes-base/nodes/Orbit/Interfaces.ts

22 lines
257 B
TypeScript
Raw Normal View History

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