UNPKG

reveal-sdk-node

Version:

RevealBI Node.js SDK

47 lines (46 loc) 1.7 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.RVDashboardAggregationType = void 0; var RVDashboardAggregationType; (function (RVDashboardAggregationType) { /** * Automatically selects the most appropriate aggregation. */ RVDashboardAggregationType[RVDashboardAggregationType["Auto"] = 0] = "Auto"; /** * Count of rows, including empty and repeated rows. */ RVDashboardAggregationType[RVDashboardAggregationType["CountRows"] = 1] = "CountRows"; /** * Count of non empty rows. */ RVDashboardAggregationType[RVDashboardAggregationType["CountNonEmpty"] = 2] = "CountNonEmpty"; /** * Count of distinct rows. */ RVDashboardAggregationType[RVDashboardAggregationType["CountDistinct"] = 3] = "CountDistinct"; /** * Minimum value */ RVDashboardAggregationType[RVDashboardAggregationType["Min"] = 4] = "Min"; /** * Maximum value */ RVDashboardAggregationType[RVDashboardAggregationType["Max"] = 5] = "Max"; /** * Sum of all values */ RVDashboardAggregationType[RVDashboardAggregationType["Sum"] = 6] = "Sum"; /** * Average of values */ RVDashboardAggregationType[RVDashboardAggregationType["Avg"] = 7] = "Avg"; /** * Standard deviation of values. */ RVDashboardAggregationType[RVDashboardAggregationType["StDev"] = 8] = "StDev"; /** * Variance. */ RVDashboardAggregationType[RVDashboardAggregationType["Variance"] = 9] = "Variance"; })(RVDashboardAggregationType = exports.RVDashboardAggregationType || (exports.RVDashboardAggregationType = {}));