mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
feat: Enforce data-stores limits (no-changelog) (#19116)
Co-authored-by: Charlie Kolb <charlie@n8n.io>
This commit is contained in:
@@ -98,6 +98,12 @@ export type DataTableInsertRowsResult<
|
||||
? Array<Pick<DataStoreRowReturn, 'id'>>
|
||||
: DataTableInsertRowsBulkResult;
|
||||
|
||||
export type DataTableSizeStatus = 'ok' | 'warn' | 'error';
|
||||
export type DataTablesSizeResult = {
|
||||
sizeBytes: number;
|
||||
sizeState: DataTableSizeStatus;
|
||||
};
|
||||
|
||||
// APIs for a data store service operating on a specific projectId
|
||||
export interface IDataStoreProjectAggregateService {
|
||||
getProjectId(): string;
|
||||
|
||||
Reference in New Issue
Block a user