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;
|
||
|
|
};
|
||
|
|
};
|