Skip to content

Commit

Permalink
Update proto files
Browse files Browse the repository at this point in the history
  • Loading branch information
any-association committed Nov 15, 2024
1 parent aa02dd8 commit ca0753b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions models.proto
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,7 @@ message Block {
bool dateIncludeTime = 5;
TimeFormat timeFormat = 6;
DateFormat dateFormat = 7;
FormulaType formula = 8;

enum DateFormat {
MonthAbbrBeforeDay = 0; // Jul 30, 2020
Expand All @@ -402,6 +403,22 @@ message Block {
Format12 = 0;
Format24 = 1;
}

enum FormulaType {
None = 0;
Count = 1;
CountDistinct = 2;
CountEmpty = 3;
CountNotEmpty = 4;
PercentEmpty = 5;
PercentNotEmpty = 6;
MathSum = 7;
MathAverage = 8;
MathMedian = 9;
MathMin = 10;
MathMax = 11;
Range = 12;
}
}

message Sort {
Expand Down

0 comments on commit ca0753b

Please sign in to comment.