mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
✨ Add Orbit Node (#1123)
* ✨ Add Orbit node * 🔨 Refactor and add new functionality * ⚡ Improvements to Orbit-Node * ⚡ Improvements * ⚡ Minor improvements to Orbit-Node Co-authored-by: Tanay Pant <tanaypant@protonmail.com> Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
This commit is contained in:
23
packages/nodes-base/nodes/Orbit/Interfaces.ts
Normal file
23
packages/nodes-base/nodes/Orbit/Interfaces.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import {
|
||||
IDataObject,
|
||||
} from "n8n-workflow";
|
||||
|
||||
export interface IData {
|
||||
data: [
|
||||
{
|
||||
id: string,
|
||||
},
|
||||
];
|
||||
}
|
||||
|
||||
export interface IRelation {
|
||||
data: [
|
||||
{
|
||||
relationships: {
|
||||
identities: IData,
|
||||
member: IData,
|
||||
},
|
||||
},
|
||||
];
|
||||
included: IDataObject[];
|
||||
}
|
||||
Reference in New Issue
Block a user