fix(core): Update data table delete row endpoint to accept filter as string (no-changelog) (#19673)

This commit is contained in:
Daria
2025-09-17 21:56:35 +03:00
committed by GitHub
parent 2598e735b1
commit 51b8f8c7dc
7 changed files with 179 additions and 27 deletions

View File

@@ -68,7 +68,7 @@ export type UpsertDataStoreRowOptions = {
};
export type DeleteDataTableRowsOptions = {
filter?: DataTableFilter;
filter: DataTableFilter;
};
export type MoveDataStoreColumnOptions = {