diff --git a/src/models.ts b/src/models.ts index 4c0228b..005e6fa 100644 --- a/src/models.ts +++ b/src/models.ts @@ -1179,6 +1179,18 @@ export interface IColumnSchema { name: string; displayName?: string; dataType: DataType; + aggregateFunction?: AggregateFunction; +} + +export enum AggregateFunction { + Default = 1, + None, + Sum, + Min, + Max, + Count, + Average, + DistinctCount } export const enum DataType {