Files
2025-09-08 04:48:28 +08:00

14 lines
283 B
TypeScript
Executable File

import type { IDataObject } from 'n8n-workflow';
export interface IUpdateBody extends IDataObject {
requests: IDataObject[];
writeControl?: { [key: string]: string };
}
export type IUpdateFields = IDataObject & {
writeControlObject: {
control: string;
value: string;
};
};