mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(Microsoft SQL Node): Prevent SQL injection (#7467)
Github issue / Community forum post (link here to close automatically): --------- Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
This commit is contained in:
13
packages/nodes-base/nodes/Microsoft/Sql/interfaces.ts
Normal file
13
packages/nodes-base/nodes/Microsoft/Sql/interfaces.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import type { IDataObject } from 'n8n-workflow';
|
||||
|
||||
export interface ITables {
|
||||
[key: string]: {
|
||||
[key: string]: IDataObject[];
|
||||
};
|
||||
}
|
||||
|
||||
export type OperationInputData = {
|
||||
table: string;
|
||||
columnString: string;
|
||||
items: IDataObject[];
|
||||
};
|
||||
Reference in New Issue
Block a user