@infomaximum/widget-sdk 5.8.0 → 5.9.1

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/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [5.9.1](https://github.com/Infomaximum/widget-sdk/compare/v5.9.0...v5.9.1) (2025-03-11)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * исправлена генерация формулы меры для шаблона "Длительность" ([002562f](https://github.com/Infomaximum/widget-sdk/commit/002562f6714009464cda884b54cec97f99a0a038))
11
+
12
+ ## [5.9.0](https://github.com/Infomaximum/widget-sdk/compare/v5.8.0...v5.9.0) (2025-03-03)
13
+
14
+
15
+ ### Features
16
+
17
+ * добавлены шаблоны для процессных разрезов ([452af57](https://github.com/Infomaximum/widget-sdk/commit/452af57627cb34a92a6354f562d878926f443d0e))
18
+
5
19
  ## [5.8.0](https://github.com/Infomaximum/widget-sdk/compare/v5.7.1...v5.8.0) (2025-02-28)
6
20
 
7
21
 
package/dist/index.d.ts CHANGED
@@ -905,7 +905,9 @@ declare enum EWidgetIndicatorValueModes {
905
905
  TEMPLATE = "TEMPLATE",
906
906
  AGGREGATION = "AGGREGATION",
907
907
  DURATION = "DURATION",
908
- CONVERSION = "CONVERSION"
908
+ CONVERSION = "CONVERSION",
909
+ START_TIME = "START_TIME",
910
+ END_TIME = "END_TIME"
909
911
  }
910
912
  /** Режимы сортировки (на что ссылается сортировка) */
911
913
  declare enum ESortingValueModes {
@@ -956,7 +958,9 @@ interface IWidgetDimensionHierarchy<D extends IWidgetDimension = IWidgetDimensio
956
958
  displayCondition?: TDisplayCondition;
957
959
  }
958
960
  interface IWidgetDimension extends Omit<IWidgetColumnIndicator, "value"> {
959
- value?: TColumnIndicatorValue;
961
+ value?: TColumnIndicatorValue | (TWidgetIndicatorAggregationValue & {
962
+ innerTemplateName?: string;
963
+ }) | TWidgetIndicatorTimeValue;
960
964
  hideEmptyValues: boolean;
961
965
  }
962
966
  interface IWidgetMeasure extends Omit<IWidgetColumnIndicator, "value"> {
@@ -1106,6 +1110,16 @@ type TWidgetIndicatorDurationValue = {
1106
1110
  startEventAppearances: EEventAppearances;
1107
1111
  endEventAppearances: EEventAppearances;
1108
1112
  } & Omit<TWidgetIndicatorConversionValue, "mode">;
1113
+ type TWidgetIndicatorTimeValue = {
1114
+ templateName: string;
1115
+ mode: EWidgetIndicatorValueModes.START_TIME | EWidgetIndicatorValueModes.END_TIME;
1116
+ processName: string;
1117
+ eventName: string;
1118
+ eventTimeFormula: string;
1119
+ caseCaseIdFormula: string;
1120
+ eventNameFormula: string;
1121
+ filters: TExtendedFormulaFilterValue[];
1122
+ };
1109
1123
 
1110
1124
  /** Формат входного параметра GeneralCalculator */
1111
1125
  interface IBaseDimensionsAndMeasuresCalculatorInput {
@@ -1422,9 +1436,6 @@ interface ICalculatorFactory {
1422
1436
  type: () => ITypeCalculator;
1423
1437
  }
1424
1438
 
1425
- declare function generateColumnFormula(tableName: string, columnName: string): string;
1426
- declare function fillTemplateString(templateString: string, params: Record<string, any>): string;
1427
-
1428
1439
  declare enum EDimensionTemplateNames {
1429
1440
  dateTime = "dateTime",
1430
1441
  date = "date",
@@ -1438,21 +1449,49 @@ declare enum EDimensionTemplateNames {
1438
1449
  dayOfWeek = "dayOfWeek",
1439
1450
  hour = "hour"
1440
1451
  }
1441
- declare const dimensionTemplateFormulas: {
1442
- readonly dateTime: "toDateTime({columnFormula})";
1443
- readonly date: "toDate({columnFormula})";
1444
- readonly year: "if(defaultValueOfArgumentType({columnFormula}) = {columnFormula}, 0, toYear({columnFormula}))";
1445
- readonly yearAndQuarter: "if(defaultValueOfArgumentType({columnFormula}) = {columnFormula}, 0, toYear({columnFormula}) * 10 + toQuarter({columnFormula}))";
1446
- readonly quarter: "if(defaultValueOfArgumentType({columnFormula}) = {columnFormula}, 0, toQuarter({columnFormula}))";
1447
- readonly yearAndMonth: "if(defaultValueOfArgumentType({columnFormula}) = {columnFormula}, 0, toYYYYMM({columnFormula}))";
1448
- readonly month: "if(defaultValueOfArgumentType({columnFormula}) = {columnFormula}, 0, toMonth({columnFormula}))";
1449
- readonly dayOfMonth: "if(defaultValueOfArgumentType({columnFormula}) = {columnFormula}, 0, toDayOfMonth({columnFormula}))";
1450
- readonly week: "if(defaultValueOfArgumentType({columnFormula}) = {columnFormula}, 0, toWeek({columnFormula}))";
1451
- readonly dayOfWeek: "if(defaultValueOfArgumentType({columnFormula}) = {columnFormula}, 0, toDayOfWeek({columnFormula}))";
1452
- readonly hour: "if(defaultValueOfArgumentType({columnFormula}) = {columnFormula}, 0, toHour({columnFormula}))";
1453
- };
1452
+ /** Стандартные шаблоны разреза */
1453
+ declare const dimensionTemplateFormulas: Record<EDimensionTemplateNames, string>;
1454
+
1454
1455
  declare function getDimensionFormula({ value }: IWidgetDimension): string;
1455
1456
 
1457
+ declare enum EDimensionAggregationTemplateName {
1458
+ top = "top",
1459
+ firstValue = "firstValue",
1460
+ lastValue = "lastValue",
1461
+ countExecutions = "countExecutions",
1462
+ countReworks = "countReworks"
1463
+ }
1464
+ /** Шаблоны процессных метрик разреза с режимом AGGREGATION */
1465
+ declare const dimensionAggregationTemplates: Record<EDimensionAggregationTemplateName, string>;
1466
+ /** На основе значения режима AGGREGATION подготовить параметры для подстановки в шаблонную формулу */
1467
+ declare const prepareDimensionAggregationParams: (value: Extract<IWidgetDimension["value"], {
1468
+ mode: EWidgetIndicatorValueModes.AGGREGATION;
1469
+ }>) => {
1470
+ eventNameFormula: string;
1471
+ caseCaseIdFormula: string;
1472
+ eventName: string;
1473
+ objectFilters: string;
1474
+ filters: string;
1475
+ eventTimeFormula: string;
1476
+ columnFormula: string;
1477
+ } | null;
1478
+
1479
+ /** Шаблоны процессных метрик разреза с режимами START_TIME/END_TIME */
1480
+ declare const timeTemplates: {
1481
+ START_TIME: Record<EDimensionTemplateNames, string>;
1482
+ END_TIME: Record<EDimensionTemplateNames, string>;
1483
+ };
1484
+ /** На основе значения режимов START_TIME/END_TIME подготовить параметры для подстановки в шаблонную формулу */
1485
+ declare const prepareTimeParams: (value: TWidgetIndicatorTimeValue) => {
1486
+ eventTimeFormula: string;
1487
+ eventNameFormula: string;
1488
+ caseCaseIdFormula: string;
1489
+ filters: string;
1490
+ eventName: string;
1491
+ } | undefined;
1492
+
1493
+ declare function getMeasureFormula({ value }: IWidgetMeasure): string;
1494
+
1456
1495
  declare enum EMeasureTemplateNames {
1457
1496
  avg = "avg",
1458
1497
  median = "median",
@@ -1462,6 +1501,7 @@ declare enum EMeasureTemplateNames {
1462
1501
  max = "max",
1463
1502
  sum = "sum"
1464
1503
  }
1504
+ /** Стандартные шаблоны меры */
1465
1505
  declare const measureTemplateFormulas: {
1466
1506
  readonly avg: "avg({columnFormula})";
1467
1507
  readonly count: "count({columnFormula})";
@@ -1471,7 +1511,25 @@ declare const measureTemplateFormulas: {
1471
1511
  readonly max: "max({columnFormula})";
1472
1512
  readonly sum: "sum({columnFormula})";
1473
1513
  };
1474
- declare const prepareAggregationParams: (value: Extract<IWidgetMeasure["value"], {
1514
+
1515
+ declare enum EMeasureAggregationTemplateName {
1516
+ agvIf = "agvIf",
1517
+ medianIf = "medianIf",
1518
+ countIf = "countIf",
1519
+ countIfDistinct = "countIfDistinct",
1520
+ minIf = "minIf",
1521
+ maxIf = "maxIf",
1522
+ sumIf = "sumIf",
1523
+ top = "top",
1524
+ firstValue = "firstValue",
1525
+ lastValue = "lastValue",
1526
+ countExecutions = "countExecutions",
1527
+ countReworks = "countReworks"
1528
+ }
1529
+ /** Шаблоны процессных метрик меры с режимом AGGREGATION */
1530
+ declare const measureAggregationTemplates: Record<EMeasureAggregationTemplateName, string>;
1531
+ /** На основе значения режима AGGREGATION подготовить параметры для подстановки в шаблонную формулу */
1532
+ declare const prepareMeasureAggregationParams: (value: Extract<IWidgetMeasure["value"], {
1475
1533
  mode: EWidgetIndicatorValueModes.AGGREGATION;
1476
1534
  }>) => {
1477
1535
  outerAggregation: EOuterAggregation;
@@ -1483,6 +1541,10 @@ declare const prepareAggregationParams: (value: Extract<IWidgetMeasure["value"],
1483
1541
  eventTimeFormula: string;
1484
1542
  columnFormula: string;
1485
1543
  } | null;
1544
+
1545
+ /** Шаблон процессной метрики меры с режимом CONVERSION */
1546
+ declare const conversionTemplate = "countIf(\n process(\n minIf(\n {startEventTimeFormula}, \n {startEventNameFormula} = '{startEventName}'{startEventFilters}\n ), \n {endCaseCaseIdFormula}\n ) < \n process(\n maxIf(\n {endEventTimeFormula}, \n {endEventNameFormula} = '{endEventName}'{endEventFilters}\n ), \n {endCaseCaseIdFormula}\n ) \n and \n process(\n countIf(\n {startEventNameFormula} = '{startEventName}'{startEventFilters}\n ) != 0, \n {endCaseCaseIdFormula}\n ) != 0\n) * 100 / countIf(\n process(\n countIf(\n {startEventNameFormula} = '{startEventName}'{startEventFilters}\n ) != 0, \n {endCaseCaseIdFormula}\n ) != 0\n)";
1547
+ /** На основе значения режима CONVERSION подготовить параметры для подстановки в шаблонную формулу */
1486
1548
  declare const prepareConversionParams: (value: TWidgetIndicatorConversionValue) => {
1487
1549
  objectFilters: string;
1488
1550
  startEventTimeFormula: string;
@@ -1495,6 +1557,10 @@ declare const prepareConversionParams: (value: TWidgetIndicatorConversionValue)
1495
1557
  endEventName: string;
1496
1558
  endEventFilters: string;
1497
1559
  } | null;
1560
+
1561
+ /** Шаблоны процессных метрик меры с режимом DURATION */
1562
+ declare const durationTemplates: Record<EDurationTemplateName, string>;
1563
+ /** На основе значения режима DURATION подготовить параметры для подстановки в шаблонную формулу */
1498
1564
  declare const prepareDurationParams: (value: TWidgetIndicatorDurationValue) => {
1499
1565
  objectFilters: string;
1500
1566
  startEventTimeFormula: string;
@@ -1509,7 +1575,8 @@ declare const prepareDurationParams: (value: TWidgetIndicatorDurationValue) => {
1509
1575
  endEventFilters: string;
1510
1576
  endEventAggregationName: string;
1511
1577
  } | null;
1512
- declare function getMeasureFormula({ value }: IWidgetMeasure): string;
1578
+
1579
+ declare function getEventMeasureFormula({ value }: IProcessIndicator, process: IWidgetProcess): string;
1513
1580
 
1514
1581
  declare enum EEventMeasureTemplateNames {
1515
1582
  eventsCount = "eventsCount",
@@ -1519,7 +1586,8 @@ declare const eventMeasureTemplateFormulas: {
1519
1586
  readonly eventsCount: "count()";
1520
1587
  readonly reworksCount: "count() - uniqExact({caseCaseIdFormula})";
1521
1588
  };
1522
- declare function getEventMeasureFormula({ value }: IProcessIndicator, process: IWidgetProcess): string;
1589
+
1590
+ declare function getTransitionMeasureFormula({ value }: IProcessIndicator, process: IWidgetProcess): string;
1523
1591
 
1524
1592
  declare enum ETransitionMeasureTemplateNames {
1525
1593
  transitionsCount = "transitionsCount",
@@ -1529,27 +1597,12 @@ declare const transitionMeasureTemplateFormulas: {
1529
1597
  readonly transitionsCount: "count()";
1530
1598
  readonly medianTime: "medianExact(date_diff(second, begin({eventTimeFormula}), end({eventTimeFormula})))";
1531
1599
  };
1532
- declare function getTransitionMeasureFormula({ value }: IProcessIndicator, process: IWidgetProcess): string;
1533
1600
 
1534
- declare enum EMeasureAggregationTemplateName {
1535
- agvIf = "agvIf",
1536
- medianIf = "medianIf",
1537
- countIf = "countIf",
1538
- countIfDistinct = "countIfDistinct",
1539
- minIf = "minIf",
1540
- maxIf = "maxIf",
1541
- sumIf = "sumIf",
1542
- top = "top",
1543
- firstValue = "firstValue",
1544
- lastValue = "lastValue",
1545
- countExecutions = "countExecutions",
1546
- countReworks = "countReworks"
1547
- }
1548
- declare const conversionTemplate = "countIf(\n process(\n minIf(\n {startEventTimeFormula}, \n {startEventNameFormula} = '{startEventName}'{startEventFilters}\n ), \n {endCaseCaseIdFormula}\n ) < \n process(\n maxIf(\n {endEventTimeFormula}, \n {endEventNameFormula} = '{endEventName}'{endEventFilters}\n ), \n {endCaseCaseIdFormula}\n ) \n and \n process(\n countIf(\n {startEventNameFormula} = '{startEventName}'{startEventFilters}\n ) != 0, \n {endCaseCaseIdFormula}\n ) != 0\n) * 100 / countIf(\n process(\n countIf(\n {startEventNameFormula} = '{startEventName}'{startEventFilters}\n ) != 0, \n {endCaseCaseIdFormula}\n ) != 0\n)";
1549
- declare const durationTemplates: Record<EDurationTemplateName, string>;
1550
- declare const countReworksTemplate = "{outerAggregation}If(process(if(countIf({eventNameFormula} = '{eventName}'{filters}) > 0, countIf({eventNameFormula} = '{eventName}'{filters}) - 1, 0), {caseCaseIdFormula}),{objectFilters})";
1551
1601
  declare const countExecutionsTemplate = "process(countIf({eventNameFormula} in '{eventName}'{filters}), {caseCaseIdFormula})";
1552
- declare const measureAggregationTemplates: Record<EMeasureAggregationTemplateName, string>;
1602
+
1603
+ declare function fillTemplateString(templateString: string, params: Record<string, any>): string;
1604
+
1605
+ declare function generateColumnFormula(tableName: string, columnName: string): string;
1553
1606
 
1554
1607
  /**
1555
1608
  * Регулярное выражение для поиска имени ссылки внутри формулы.
@@ -2168,4 +2221,4 @@ declare global {
2168
2221
  }
2169
2222
  }
2170
2223
 
2171
- export { EActionButtonsTypes, EActionTypes, EBlockingConditionMode, ECalculatorFilterMethods, EClickHouseBaseTypes, EColorMode, EControlType, ECustomSelectTemplates, EDimensionTemplateNames, EDisplayConditionMode, EDrawerPlacement, EDurationTemplateName, EDurationUnit, EEventAppearances, EEventMeasureTemplateNames, EFontWeight, EFormatTypes, EFormattingPresets, EFormulaFilterFieldKeys, EIndicatorType, ELastTimeUnit, EMarkdownDisplayMode, EMeasureAggregationTemplateName, EMeasureTemplateNames, EOuterAggregation, EProcessFilterNames, ESelectOptionTypes, ESimpleDataType, ESimpleInputType, ESortDirection, ESortingValueModes, ESystemRecordKey, ETransitionMeasureTemplateNames, EUnitMode, EViewMode, EViewOpenIn, EWidgetActionInputMethod, EWidgetFilterMode, EWidgetIndicatorType, EWidgetIndicatorValueModes, type IActionGoToUrl, type IActionRunScript, type IActionScript, type IActionUpdateVariable, type IAddButtonSelectOption, type IAddDurationOfTransitionFilter, type IAddPresenceOfEventFilter, type IAddPresenceOfTransitionFilter, type IAddRepetitionOfEventFilter, type IAutoIdentifiedArrayItem, type IBaseDimensionsAndMeasuresCalculator, type IBaseDimensionsAndMeasuresCalculatorInput, type IBaseDimensionsAndMeasuresCalculatorOutput, type IBaseWidgetSettings, type ICalculator, type ICalculatorDimensionInput, type ICalculatorDimensionOutput, type ICalculatorFactory, type ICalculatorFilter, type ICalculatorIndicatorInput, type ICalculatorIndicatorOutput, type ICalculatorMeasureInput, type ICalculatorMeasureOutput, type ICollapseRecord, type IColoredValue, type ICommonDimensions, type ICommonMeasures, type ICommonState, type IControlRecord, type ICustomAddButtonProps, type ICustomWidgetProps, type IDefinition, type IDimensionSelection, type IDimensionSelectionByFormula, type IDisplayPredicate, type IDisplayRule, type IDivePanelDescription, type IDividerRecord, type IEdge, type IExportColumnOrder, type IFillSettings, type IFormulaFilterValue, type IGeneralCalculator, type IGeneralCalculatorExportInput, type IGeneralCalculatorInput, type IGeneralCalculatorOutput, type IGlobalContext, type IGraphElement, type IGroupSetDescription, type IGroupSetRecord, type IGroupSettings, type IHistogramBin, type IHistogramCalculator, type IHistogramCalculatorInput, type IHistogramCalculatorOutput, type IIndicatorLink, type IInitialSettings, type ILens, type IMarkdownMeasure, type IMeasureAddButtonProps, type IPanelDescription, type IPanelDescriptionCreator, type IPieCalculator, type IPieCalculatorInput, type IPieCalculatorOutput, type IProcessEventFilterValue, type IProcessEventIndicator, type IProcessFilterPreviewParams, type IProcessGraphCalculator, type IProcessGraphCalculatorInput, type IProcessGraphCalculatorOutput, type IProcessIndicator, type IProcessTransitionFilterValue, type IProcessTransitionIndicator, type IRange, type ISelectBranchOption, type ISelectDividerOption, type ISelectGroupOption, type ISelectLeafOption, type ISelectNode, type ISelectOption, type ISelectSystemOption, type ISettingsMigratorParams, type ISortOrder, type ISortingAddButtonProps, type IStagesFilterValue, type IStaticListLabeledOption, type ITwoLimitsCalculator, type ITwoLimitsCalculatorExportInput, type ITwoLimitsCalculatorInput, type ITwoLimitsCalculatorOutput, type ITypeCalculator, type ITypeCalculatorInput, type ITypeCalculatorOutput, type ITypeCalculatorOutputItem, type IVertex, type IViewContext, type IWidget, type IWidgetAction, type IWidgetColumnIndicator, type IWidgetColumnListVariable, type IWidgetDimension, type IWidgetDimensionHierarchy, type IWidgetDynamicListVariable, type IWidgetEntity, type IWidgetFilter, type IWidgetFiltration, type IWidgetFormatting, type IWidgetIndicator, type IWidgetIndicatorAddButtonProps, type IWidgetManifest, type IWidgetMeasure, type IWidgetMigrator, type IWidgetPersistValue, type IWidgetPlaceholderController, type IWidgetPlaceholderValues, type IWidgetPresetSettings, type IWidgetProcess, type IWidgetProps, type IWidgetSortingIndicator, type IWidgetStaticListVariable, type IWidgetStaticVariable, type IWidgetStruct, type IWidgetTable, type IWidgetTableColumn, OuterAggregation, type TAction, type TActionOnClickParameter, type TActionOpenView, type TActionValidator, type TActionsOnClick, type TAddButton, type TAppearanceSettings, type TBoundedContentWithIndicator, type TColor, type TColorBase, type TColorRule, type TColumnIndicatorValue, type TContextMenu, type TContextMenuButton, type TContextMenuButtonActions, type TContextMenuButtonApply, type TContextMenuButtonClose, type TContextMenuButtonCustom, type TContextMenuButtonGroup, type TContextMenuButtonOptions, type TContextMenuList, type TContextMenuPositionUnit, type TContextMenuRow, type TCustomAddButtonSelectOption, type TDefineWidgetOptions, type TDisplayCondition, type TDisplayMode, type TEmptyRecord, type TExtendedFormulaFilterValue, type TFiltrationAccessibility, type TGroupLevelRecord, type TLaunchActionParams, type TMeasureAddButtonSelectOption, type TMigrateProcessor, type TMigrationStruct, type TProcessIndicatorValue, type TRecordAccessor, type TSelectChildOptions, type TSelectFetchNodes, type TSelectivePartial, type TSortDirection, type TUpdateSelection, type TValuePath, type TVersion, type TWidgetActionParameter, type TWidgetContainer, type TWidgetDimensionData, type TWidgetFilterValue, type TWidgetFiltering, type TWidgetIndicatorAggregationValue, type TWidgetIndicatorConversionValue, type TWidgetIndicatorData, type TWidgetIndicatorDurationValue, type TWidgetLevelRecord, type TWidgetSortingValue, type TWidgetVariable, bindContentWithIndicator, bindContentsWithIndicators, checkDisplayCondition, clearMultiLineComments, clearSingleLineComments, colors, conversionTemplate, convertFiltersToFormula, convertToFormulasChain, countExecutionsTemplate, countReworksTemplate, dashboardLinkRegExp, dimensionTemplateFormulas, durationTemplates, escapeSpecialCharacters, eventMeasureTemplateFormulas, fillTemplateString, formattingConfig, formulaFilterMethods, generateColumnFormula, getColorByIndex, getDefaultSortOrders, getDimensionFormula, getDisplayConditionFormula, getEventMeasureFormula, getLocalizedText, getMeasureFormula, getRuleColor, getTransitionMeasureFormula, isDimensionsHierarchy, isFormulaFilterValue, isValidColor, linkNameRegExp, mapDimensionsToInputs, mapEventMeasuresToInputs, mapFormulaFilterToCalculatorInput, mapFormulaFiltersToInputs, mapMeasuresToInputs, mapSortingToInputs, mapTransitionMeasuresToInputs, measureAggregationTemplates, measureTemplateFormulas, parseClickHouseType, parseIndicatorLink, prepareAggregationParams, prepareConversionParams, prepareDurationParams, prepareFormulaForSql, prepareSortOrders, prepareValuesForSql, replaceDisplayCondition, replaceFiltersBySelection, replaceHierarchiesWithDimensions, selectDimensionFromHierarchy, transitionMeasureTemplateFormulas, unescapeSpecialCharacters, updateDefaultModeSelection, updateMultiModeSelection, updateSingleModeSelection, workspaceLinkRegExp };
2224
+ export { EActionButtonsTypes, EActionTypes, EBlockingConditionMode, ECalculatorFilterMethods, EClickHouseBaseTypes, EColorMode, EControlType, ECustomSelectTemplates, EDimensionAggregationTemplateName, EDimensionTemplateNames, EDisplayConditionMode, EDrawerPlacement, EDurationTemplateName, EDurationUnit, EEventAppearances, EEventMeasureTemplateNames, EFontWeight, EFormatTypes, EFormattingPresets, EFormulaFilterFieldKeys, EIndicatorType, ELastTimeUnit, EMarkdownDisplayMode, EMeasureAggregationTemplateName, EMeasureTemplateNames, EOuterAggregation, EProcessFilterNames, ESelectOptionTypes, ESimpleDataType, ESimpleInputType, ESortDirection, ESortingValueModes, ESystemRecordKey, ETransitionMeasureTemplateNames, EUnitMode, EViewMode, EViewOpenIn, EWidgetActionInputMethod, EWidgetFilterMode, EWidgetIndicatorType, EWidgetIndicatorValueModes, type IActionGoToUrl, type IActionRunScript, type IActionScript, type IActionUpdateVariable, type IAddButtonSelectOption, type IAddDurationOfTransitionFilter, type IAddPresenceOfEventFilter, type IAddPresenceOfTransitionFilter, type IAddRepetitionOfEventFilter, type IAutoIdentifiedArrayItem, type IBaseDimensionsAndMeasuresCalculator, type IBaseDimensionsAndMeasuresCalculatorInput, type IBaseDimensionsAndMeasuresCalculatorOutput, type IBaseWidgetSettings, type ICalculator, type ICalculatorDimensionInput, type ICalculatorDimensionOutput, type ICalculatorFactory, type ICalculatorFilter, type ICalculatorIndicatorInput, type ICalculatorIndicatorOutput, type ICalculatorMeasureInput, type ICalculatorMeasureOutput, type ICollapseRecord, type IColoredValue, type ICommonDimensions, type ICommonMeasures, type ICommonState, type IControlRecord, type ICustomAddButtonProps, type ICustomWidgetProps, type IDefinition, type IDimensionSelection, type IDimensionSelectionByFormula, type IDisplayPredicate, type IDisplayRule, type IDivePanelDescription, type IDividerRecord, type IEdge, type IExportColumnOrder, type IFillSettings, type IFormulaFilterValue, type IGeneralCalculator, type IGeneralCalculatorExportInput, type IGeneralCalculatorInput, type IGeneralCalculatorOutput, type IGlobalContext, type IGraphElement, type IGroupSetDescription, type IGroupSetRecord, type IGroupSettings, type IHistogramBin, type IHistogramCalculator, type IHistogramCalculatorInput, type IHistogramCalculatorOutput, type IIndicatorLink, type IInitialSettings, type ILens, type IMarkdownMeasure, type IMeasureAddButtonProps, type IPanelDescription, type IPanelDescriptionCreator, type IPieCalculator, type IPieCalculatorInput, type IPieCalculatorOutput, type IProcessEventFilterValue, type IProcessEventIndicator, type IProcessFilterPreviewParams, type IProcessGraphCalculator, type IProcessGraphCalculatorInput, type IProcessGraphCalculatorOutput, type IProcessIndicator, type IProcessTransitionFilterValue, type IProcessTransitionIndicator, type IRange, type ISelectBranchOption, type ISelectDividerOption, type ISelectGroupOption, type ISelectLeafOption, type ISelectNode, type ISelectOption, type ISelectSystemOption, type ISettingsMigratorParams, type ISortOrder, type ISortingAddButtonProps, type IStagesFilterValue, type IStaticListLabeledOption, type ITwoLimitsCalculator, type ITwoLimitsCalculatorExportInput, type ITwoLimitsCalculatorInput, type ITwoLimitsCalculatorOutput, type ITypeCalculator, type ITypeCalculatorInput, type ITypeCalculatorOutput, type ITypeCalculatorOutputItem, type IVertex, type IViewContext, type IWidget, type IWidgetAction, type IWidgetColumnIndicator, type IWidgetColumnListVariable, type IWidgetDimension, type IWidgetDimensionHierarchy, type IWidgetDynamicListVariable, type IWidgetEntity, type IWidgetFilter, type IWidgetFiltration, type IWidgetFormatting, type IWidgetIndicator, type IWidgetIndicatorAddButtonProps, type IWidgetManifest, type IWidgetMeasure, type IWidgetMigrator, type IWidgetPersistValue, type IWidgetPlaceholderController, type IWidgetPlaceholderValues, type IWidgetPresetSettings, type IWidgetProcess, type IWidgetProps, type IWidgetSortingIndicator, type IWidgetStaticListVariable, type IWidgetStaticVariable, type IWidgetStruct, type IWidgetTable, type IWidgetTableColumn, OuterAggregation, type TAction, type TActionOnClickParameter, type TActionOpenView, type TActionValidator, type TActionsOnClick, type TAddButton, type TAppearanceSettings, type TBoundedContentWithIndicator, type TColor, type TColorBase, type TColorRule, type TColumnIndicatorValue, type TContextMenu, type TContextMenuButton, type TContextMenuButtonActions, type TContextMenuButtonApply, type TContextMenuButtonClose, type TContextMenuButtonCustom, type TContextMenuButtonGroup, type TContextMenuButtonOptions, type TContextMenuList, type TContextMenuPositionUnit, type TContextMenuRow, type TCustomAddButtonSelectOption, type TDefineWidgetOptions, type TDisplayCondition, type TDisplayMode, type TEmptyRecord, type TExtendedFormulaFilterValue, type TFiltrationAccessibility, type TGroupLevelRecord, type TLaunchActionParams, type TMeasureAddButtonSelectOption, type TMigrateProcessor, type TMigrationStruct, type TProcessIndicatorValue, type TRecordAccessor, type TSelectChildOptions, type TSelectFetchNodes, type TSelectivePartial, type TSortDirection, type TUpdateSelection, type TValuePath, type TVersion, type TWidgetActionParameter, type TWidgetContainer, type TWidgetDimensionData, type TWidgetFilterValue, type TWidgetFiltering, type TWidgetIndicatorAggregationValue, type TWidgetIndicatorConversionValue, type TWidgetIndicatorData, type TWidgetIndicatorDurationValue, type TWidgetIndicatorTimeValue, type TWidgetLevelRecord, type TWidgetSortingValue, type TWidgetVariable, bindContentWithIndicator, bindContentsWithIndicators, checkDisplayCondition, clearMultiLineComments, clearSingleLineComments, colors, conversionTemplate, convertFiltersToFormula, convertToFormulasChain, countExecutionsTemplate, dashboardLinkRegExp, dimensionAggregationTemplates, dimensionTemplateFormulas, durationTemplates, escapeSpecialCharacters, eventMeasureTemplateFormulas, fillTemplateString, formattingConfig, formulaFilterMethods, generateColumnFormula, getColorByIndex, getDefaultSortOrders, getDimensionFormula, getDisplayConditionFormula, getEventMeasureFormula, getLocalizedText, getMeasureFormula, getRuleColor, getTransitionMeasureFormula, isDimensionsHierarchy, isFormulaFilterValue, isValidColor, linkNameRegExp, mapDimensionsToInputs, mapEventMeasuresToInputs, mapFormulaFilterToCalculatorInput, mapFormulaFiltersToInputs, mapMeasuresToInputs, mapSortingToInputs, mapTransitionMeasuresToInputs, measureAggregationTemplates, measureTemplateFormulas, parseClickHouseType, parseIndicatorLink, prepareConversionParams, prepareDimensionAggregationParams, prepareDurationParams, prepareFormulaForSql, prepareMeasureAggregationParams, prepareSortOrders, prepareTimeParams, prepareValuesForSql, replaceDisplayCondition, replaceFiltersBySelection, replaceHierarchiesWithDimensions, selectDimensionFromHierarchy, timeTemplates, transitionMeasureTemplateFormulas, unescapeSpecialCharacters, updateDefaultModeSelection, updateMultiModeSelection, updateSingleModeSelection, workspaceLinkRegExp };