feat(Data Table Node): Add URL to data table resource locator (no-changelog) (#18840)

This commit is contained in:
Charlie Kolb
2025-08-27 11:27:18 +02:00
committed by GitHub
parent 4d84d589b2
commit 7f77436c20
3 changed files with 8 additions and 1 deletions

View File

@@ -86,6 +86,8 @@ export type DataStoreRowsReturn = DataStoreRowReturn[];
// APIs for a data store service operating on a specific projectId
export interface IDataStoreProjectAggregateService {
getProjectId(): string;
createDataStore(options: CreateDataStoreOptions): Promise<DataStore>;
getManyAndCount(options: ListDataStoreOptions): Promise<{ count: number; data: DataStore[] }>;