n8n/packages/nodes-base/nodes/Microsoft/Sql/interfaces.ts
Michael Kret a739245332
fix(Microsoft SQL Node): Prevent SQL injection (#7467)
Github issue / Community forum post (link here to close automatically):

---------

Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
2023-10-24 12:36:44 +03:00

14 lines
234 B
TypeScript

import type { IDataObject } from 'n8n-workflow';
export interface ITables {
[key: string]: {
[key: string]: IDataObject[];
};
}
export type OperationInputData = {
table: string;
columnString: string;
items: IDataObject[];
};