n8n-nodes-base
Version:
Base nodes of n8n
67 lines (63 loc) • 1.75 kB
text/typescript
/**
* Data table Node - Version 1.1
* Discriminator: resource=row, operation=deleteRows
*/
/** Delete row(s) */
export type DataTableV11RowDeleteRowsParams = {
resource: 'row';
operation: 'deleteRows';
/**
* Data table
* @builderHint Default to mode: 'list' which is easier for users to set up
* @default {"mode":"list","value":""}
*/
dataTableId?: { __rl: true; mode: 'list' | 'name' | 'id'; value: string; cachedResultName?: string };
/**
* Must Match
* @default anyCondition
*/
matchType?: 'anyCondition' | 'allConditions' | Expression<string>;
/**
* Filter to decide which rows get
* @default {}
*/
filters?: {
/** Conditions
*/
conditions?: Array<{
/** Choose from the list, or specify using an <a href="https://docs.n8n.io/code/expressions/">expression</a>
* @default id
*/
keyName?: string | Expression<string>;
/** Condition
* @default eq
*/
condition?: string | Expression<string>;
/** Value
* @displayOptions.hide { condition: ["isEmpty", "isNotEmpty", "isTrue", "isFalse"] }
*/
keyValue?: string | Expression<string> | PlaceholderValue;
}>;
};
/**
* Options
* @default {}
*/
options?: {
/** Whether the operation simulates and returns affected rows in their "before" and "after" states
* @default false
*/
dryRun?: boolean | Expression<boolean>;
};
};
export type DataTableV11RowDeleteRowsOutput = {
createdAt?: string;
id?: number;
updatedAt?: string;
};
export type DataTableV11RowDeleteRowsNode = {
type: 'n8n-nodes-base.dataTable';
version: 1.1;
config: NodeConfig<DataTableV11RowDeleteRowsParams>;
output?: Items<DataTableV11RowDeleteRowsOutput>;
};