feat(core): Optionally return full rows from Data Table inserts (no-changelog) (#18657)

This commit is contained in:
Jaakko Husso
2025-08-25 09:50:02 +02:00
committed by GitHub
parent 802157a329
commit 2eda807b5a
9 changed files with 223 additions and 47 deletions

View File

@@ -7,5 +7,6 @@ import {
} from '../../schemas/data-store.schema';
export class AddDataStoreRowsDto extends Z.class({
returnData: z.boolean().default(false),
data: z.array(z.record(dataStoreColumnNameSchema, dataStoreColumnValueSchema)),
}) {}