feat(core): Optionally return updated/upserted Data Table rows (no-changelog) (#18735)

This commit is contained in:
Jaakko Husso
2025-08-26 11:50:13 +03:00
committed by GitHub
parent 1e58e24400
commit 8defb2b17c
9 changed files with 602 additions and 145 deletions

View File

@@ -104,5 +104,5 @@ export interface IDataStoreProjectService {
insertRows(rows: DataStoreRows): Promise<Array<{ id: number }>>;
upsertRows(options: UpsertDataStoreRowsOptions): Promise<boolean>;
upsertRows(options: UpsertDataStoreRowsOptions): Promise<boolean | DataStoreRowWithId[]>;
}