UNPKG

@n8n-plus/n8n-plus

Version:

n8n Workflow Automation Tool (plus edition)

13 lines (12 loc) 458 B
import { DataSource, Repository } from '@n8n/typeorm'; import { InsightsRaw } from '../entities/insights-raw'; export declare class InsightsRawRepository extends Repository<InsightsRaw> { constructor(dataSource: DataSource); getRawInsightsBatchQuery(compactionBatchSize: number): import("@n8n/typeorm").SelectQueryBuilder<{ id: number; metaId: number; type: string; value: number; periodStart: Date; }>; }