interface DataTableNodeParameters {
dataTableId?: { mode: "id" | "list"; value: string };
filters?: {
conditions: {
condition?: string;
keyName?: string;
keyValue?: string;
}[];
};
matchType?: "anyCondition"
| "allConditions";
operation?:
| "get"
| "update"
| "upsert"
| "insert"
| "deleteRows";
options?: { dryRun?: boolean };
resource?: "row";
}
Default: {"mode":"list","value":""}