mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
14 lines
283 B
TypeScript
14 lines
283 B
TypeScript
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;
|
|
};
|
|
};
|