@lightdash/common 0.2198.2 → 0.2198.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/.tsbuildinfo +1 -1
- package/dist/cjs/types/field.d.ts +1 -1
- package/dist/cjs/types/field.js +2 -2
- package/dist/esm/.tsbuildinfo +1 -1
- package/dist/esm/types/field.d.ts +1 -1
- package/dist/esm/types/field.js +1 -1
- package/dist/types/.tsbuildinfo +1 -1
- package/dist/types/types/field.d.ts +1 -1
- package/dist/types/types/field.js +1 -1
- package/package.json +1 -1
|
@@ -123,7 +123,7 @@ export declare enum WindowFunctionType {
|
|
|
123
123
|
MIN = "min",
|
|
124
124
|
MAX = "max"
|
|
125
125
|
}
|
|
126
|
-
export declare const
|
|
126
|
+
export declare const nullaryWindowFunctions: WindowFunctionType[];
|
|
127
127
|
export declare const unaryWindowFunctions: WindowFunctionType[];
|
|
128
128
|
export declare enum FrameType {
|
|
129
129
|
ROWS = "rows",
|
package/dist/cjs/types/field.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.IECByteCompacts = exports.isSummable = exports.friendlyName = exports.capitalize = exports.defaultSql = exports.isFilterableItem = exports.isFilterableField = exports.isFilterableDimension = exports.isCompiledMetric = exports.isPostCalculationMetric = exports.isPostCalculationMetricType = exports.isNonAggregateMetric = exports.isMetric = exports.PostCalculationMetricTypes = exports.parseMetricType = exports.isFormat = exports.Format = exports.MetricType = exports.getFieldLabel = exports.getFieldRef = exports.isDimension = exports.DimensionType = exports.convertFieldRefToFieldId = exports.isField = exports.isTemplateTableCalculation = exports.isSqlTableCalculation = exports.isTableCalculation = exports.FieldType = exports.TableCalculationTemplateType = exports.FrameBoundaryType = exports.FrameType = exports.unaryWindowFunctions = exports.
|
|
3
|
+
exports.IECByteCompacts = exports.isSummable = exports.friendlyName = exports.capitalize = exports.defaultSql = exports.isFilterableItem = exports.isFilterableField = exports.isFilterableDimension = exports.isCompiledMetric = exports.isPostCalculationMetric = exports.isPostCalculationMetricType = exports.isNonAggregateMetric = exports.isMetric = exports.PostCalculationMetricTypes = exports.parseMetricType = exports.isFormat = exports.Format = exports.MetricType = exports.getFieldLabel = exports.getFieldRef = exports.isDimension = exports.DimensionType = exports.convertFieldRefToFieldId = exports.isField = exports.isTemplateTableCalculation = exports.isSqlTableCalculation = exports.isTableCalculation = exports.FieldType = exports.TableCalculationTemplateType = exports.FrameBoundaryType = exports.FrameType = exports.unaryWindowFunctions = exports.nullaryWindowFunctions = exports.WindowFunctionType = exports.TableCalculationType = exports.CustomFormatType = exports.isCompiledCustomSqlDimension = exports.isCustomSqlDimension = exports.isCustomBinDimension = exports.isCustomDimension = exports.CustomDimensionType = exports.BinType = exports.CompactConfigMap = exports.NumberSeparator = exports.Compact = void 0;
|
|
4
4
|
exports.findCompactConfig = findCompactConfig;
|
|
5
5
|
exports.getCompactOptionsForFormatType = getCompactOptionsForFormatType;
|
|
6
6
|
const tslib_1 = require("tslib");
|
|
@@ -236,7 +236,7 @@ var WindowFunctionType;
|
|
|
236
236
|
WindowFunctionType["MIN"] = "min";
|
|
237
237
|
WindowFunctionType["MAX"] = "max";
|
|
238
238
|
})(WindowFunctionType || (exports.WindowFunctionType = WindowFunctionType = {}));
|
|
239
|
-
exports.
|
|
239
|
+
exports.nullaryWindowFunctions = [
|
|
240
240
|
WindowFunctionType.ROW_NUMBER,
|
|
241
241
|
WindowFunctionType.PERCENT_RANK,
|
|
242
242
|
WindowFunctionType.CUME_DIST,
|