feat(core): Add data store row update endpoint (no-changelog) (#18601)

This commit is contained in:
Daria
2025-08-21 13:19:55 +03:00
committed by GitHub
parent 667656e8f3
commit 75e563f1c4
12 changed files with 993 additions and 194 deletions

View File

@@ -72,7 +72,9 @@ export type AddDataStoreColumnOptions = Pick<DataStoreColumn, 'name' | 'type'> &
export type DataStoreColumnJsType = string | number | boolean | Date;
export type DataStoreRows = Array<Record<string, DataStoreColumnJsType | null>>;
export type DataStoreRow = Record<string, DataStoreColumnJsType | null>;
export type DataStoreRows = DataStoreRow[];
// APIs for a data store service operating on a specific projectId
export interface IDataStoreProjectAggregateService {