n8n-nodes-idoit
Version:
n8n node for i-doit. https://www.i-doit.com/en/
41 lines (34 loc) • 658 B
TypeScript
export type idoitApiCredentials = {
apikey: string;
host: string;
}
export type GetAllAdditionalOptions = {
order?: {
fields: Array<{
field: string;
direction: string;
}>
};
filters?: {
fields: Array<{
field: string;
operator: string;
value: string;
}>;
};
filterType: string,
search: string,
};
export type LoadedResource = {
id: number;
name: string;
}
export type Accumulator = {
[key: string]: string;
}
export type Row = Record<string, string>
export type FieldsUiValues = Array<{
fieldId: string;
fieldValue: string;
}>;
export type Operation = 'create' | 'read' | 'update' | 'delete' | 'recycle' | 'archive';