autoql-fe-utils 1.0.106 → 1.0.107

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/index.d.ts CHANGED
@@ -78,12 +78,6 @@ declare enum QueryErrorTypes {
78
78
  NO_QUERY_SUPPLIED = "No query supplied",
79
79
  NO_QUERY_ID_SUPPLIED = "No query ID supplied"
80
80
  }
81
- declare enum Operators {
82
- ADDITION = "ADDITION",
83
- MULTIPLICATION = "MULTIPLICATION",
84
- SUBTRACTION = "SUBTRACTION",
85
- DIVISION = "DIVISION"
86
- }
87
81
 
88
82
  type ColumnTypeParams = {
89
83
  type: string;
@@ -95,7 +89,6 @@ type ColumnTypeParams = {
95
89
  isNumber?: boolean;
96
90
  icon?: string;
97
91
  unit?: string;
98
- supportedOperators?: string[];
99
92
  };
100
93
  declare class ColumnType {
101
94
  type: string;
@@ -107,8 +100,7 @@ declare class ColumnType {
107
100
  isNumber?: boolean;
108
101
  icon?: string;
109
102
  unit?: string;
110
- supportedOperators?: string[];
111
- constructor({ type, description, continuous, ordinal, aggOptions, aggregable, isNumber, icon, unit, supportedOperators, }: ColumnTypeParams);
103
+ constructor({ type, description, continuous, ordinal, aggOptions, aggregable, isNumber, icon, unit, }: ColumnTypeParams);
112
104
  }
113
105
 
114
106
  declare class Column$1 {
@@ -381,12 +373,6 @@ declare const DATA_ALERT_OPERATORS: {
381
373
  conditionText: string;
382
374
  conditionTextPast: string;
383
375
  };
384
- NOT_EQUAL_TO: {
385
- displayName: string;
386
- symbol: string;
387
- conditionText: string;
388
- conditionTextPast: string;
389
- };
390
376
  };
391
377
  declare const DATA_ALERT_CONDITION_TYPES: {
392
378
  COMPARE: {
@@ -543,8 +529,6 @@ interface Column extends RawColumn {
543
529
  formatter?: Function;
544
530
  drilldownGroupby?: any;
545
531
  additional?: boolean;
546
- custom?: boolean;
547
- id?: string;
548
532
  }
549
533
  interface AvailableSelect {
550
534
  table_column: string;
@@ -755,7 +739,6 @@ declare const autoQLConfigDefault: {
755
739
  enableNotifications: boolean;
756
740
  enableCSVDownload: boolean;
757
741
  enableReportProblem: boolean;
758
- projectId: string;
759
742
  };
760
743
  declare const dataConfigDefault: {
761
744
  stringColumnIndices: any[];
@@ -784,7 +767,6 @@ declare const getAutoQLConfig: (prop?: {}) => {
784
767
  enableNotifications: boolean;
785
768
  enableCSVDownload: boolean;
786
769
  enableReportProblem: boolean;
787
- projectId: string;
788
770
  };
789
771
  declare const getDataConfig: (prop?: {}) => {
790
772
  stringColumnIndices: any[];
@@ -931,18 +913,8 @@ declare const formatEpochDate: (value: any, col: Column, config?: DataFormatting
931
913
  declare const dateStringSortFn: (a: any, b: any, col: Column) => number;
932
914
  declare const numberSortFn: (a: any, b: any) => number;
933
915
  declare const dateSortFn: (a: any, b: any, col: Column, isTable: any) => number;
934
- declare const filterDataByColumn: (data: any, columns: any, columnIndex: any, value: any, operator?: string, dataFormatting?: {
935
- currencyCode: string;
936
- languageCode: string;
937
- currencyDecimals: number;
938
- quantityDecimals: number;
939
- ratioDecimals: number;
940
- comparisonDisplay: string;
941
- monthYearFormat: string;
942
- dayMonthYearFormat: string;
943
- }) => any;
944
916
  declare const sortDataByColumn: (data: any, columns: any, columnIndex: any, sortDirection?: string) => any;
945
- declare const sortDataByDate: (data: any, tableColumns: any, sortDirection: string, reverse: any) => any;
917
+ declare const sortDataByDate: (data: any, tableColumns: any, sortDirection: string, isTable: any) => any;
946
918
  declare const sortDataByAlphabet: (data: any, tableColumns: any, sortDirection: string, isTable: any) => any;
947
919
  interface formatElementParams {
948
920
  element: string | number;
@@ -995,7 +967,6 @@ declare const getTimeObjFromTimeStamp: (timestamp: any, timezone: any) => {
995
967
  hour: number;
996
968
  };
997
969
  declare const getWeekdayFromTimeStamp: (timestamp: any, timezone: any) => string;
998
- declare const getFormattedTimestamp: () => string;
999
970
 
1000
971
  declare const isColumnNumberType: (col: any) => boolean;
1001
972
  declare const isColumnStringType: (col: any) => boolean;
@@ -1198,7 +1169,6 @@ declare const initializeQueryValidationOptions: ({ responseBody, initialSelectio
1198
1169
  declare const getQueryValidationQueryText: (newSelectedSuggestions: any, plainTextList: any) => string;
1199
1170
 
1200
1171
  declare const isError500Type: (referenceId: any) => boolean;
1201
- declare const getCurrentTimezone: () => any;
1202
1172
  declare const fetchSuggestions: ({ query, queryId, domain, apiKey, token, cancelToken, }?: {
1203
1173
  query?: string;
1204
1174
  queryId?: string;
@@ -1345,98 +1315,6 @@ declare const formatAdditionalSelectColumn: (column: ColumnSelect, sqlFn?: Funct
1345
1315
  columns: string[];
1346
1316
  };
1347
1317
 
1348
- declare const GLOBAL_OPERATORS: string[];
1349
- declare const FUNCTION_OPERATOR = "FUNCTION";
1350
- declare const HIGHLIGHTED_CLASS = "highlighted-column";
1351
- declare const DISABLED_CLASS = "disabled-column";
1352
- declare const FORMULA_CLASS = "formula-column";
1353
- declare const DEFAULT_COLUMN_NAME = "New Column";
1354
- declare const OPERATORS: {
1355
- CONCAT: {
1356
- value: string;
1357
- label: string;
1358
- js: string;
1359
- };
1360
- ADDITION: {
1361
- value: string;
1362
- icon: string;
1363
- fn: (a: any, b: any) => any;
1364
- js: string;
1365
- };
1366
- SUBTRACTION: {
1367
- value: string;
1368
- icon: string;
1369
- fn: (a: any, b: any) => number;
1370
- js: string;
1371
- };
1372
- MULTIPLICATION: {
1373
- value: string;
1374
- icon: string;
1375
- fn: (a: any, b: any) => number;
1376
- js: string;
1377
- };
1378
- DIVISION: {
1379
- value: string;
1380
- icon: string;
1381
- fn: (a: any, b: any) => number;
1382
- js: string;
1383
- };
1384
- LEFT_BRACKET: {
1385
- value: string;
1386
- label: string;
1387
- js: string;
1388
- };
1389
- RIGHT_BRACKET: {
1390
- value: string;
1391
- label: string;
1392
- js: string;
1393
- };
1394
- FUNCTION: {
1395
- value: string;
1396
- label: string;
1397
- js: any;
1398
- };
1399
- };
1400
- declare const getOperators: (enableWindowFns: any) => any;
1401
- declare const ORDERABLE_WINDOW_FN_TYPES: string[];
1402
- declare const WINDOW_FUNCTIONS: {
1403
- SUM: {
1404
- value: string;
1405
- label: string;
1406
- };
1407
- AVG: {
1408
- value: string;
1409
- label: string;
1410
- };
1411
- COUNT: {
1412
- value: string;
1413
- label: string;
1414
- };
1415
- RANK: {
1416
- value: string;
1417
- label: string;
1418
- };
1419
- };
1420
- declare const isValueEmpty: (value: any) => boolean;
1421
- declare const convertToFunctionStr: (origColumnFnArray: any) => {
1422
- fn: Function;
1423
- error?: undefined;
1424
- } | {
1425
- error: any;
1426
- fn?: undefined;
1427
- };
1428
- declare const createMutatorFn: (columnFnArray: any) => {
1429
- fn: Function;
1430
- error?: undefined;
1431
- } | {
1432
- error: any;
1433
- fn?: undefined;
1434
- } | ((val: any, data: any, type: any, params: any, component: any) => any);
1435
- declare const getFnSummary: (columnFnArray: any) => string;
1436
- declare const getSelectableColumns: (columns: any) => Column[];
1437
- declare const getNumericalColumns: (columns: any) => Column[];
1438
- declare const getStringColumns: (columns: any) => Column[];
1439
-
1440
1318
  declare const dataStructureChanged: (props: any, prevProps: any) => boolean;
1441
1319
  declare const onlySeriesVisibilityChanged: (props: any, prevProps: any) => boolean;
1442
1320
  declare const scaleZero: (scale: any) => any;
@@ -2196,12 +2074,6 @@ declare const fetchNotificationData: ({ id, domain, apiKey, token }: {
2196
2074
  apiKey: any;
2197
2075
  token: any;
2198
2076
  }) => Promise<TransformedAxiosResponse>;
2199
- declare const fetchNotification: ({ id, domain, apiKey, token }: {
2200
- id: any;
2201
- domain: any;
2202
- apiKey: any;
2203
- token: any;
2204
- }) => Promise<any>;
2205
2077
  declare const isExpressionQueryValid: ({ query, domain, apiKey, token }: {
2206
2078
  query: any;
2207
2079
  domain: any;
@@ -2337,20 +2209,6 @@ declare const createDataAlert: ({ dataAlert, domain, apiKey, token }: {
2337
2209
  apiKey: any;
2338
2210
  token: any;
2339
2211
  }) => Promise<axios.AxiosResponse<any, any>>;
2340
- declare const createManagementDataAlert: ({ dataAlert, domain, apiKey, token, projectId }: {
2341
- dataAlert?: {};
2342
- domain: any;
2343
- apiKey: any;
2344
- token: any;
2345
- projectId: any;
2346
- }) => Promise<axios.AxiosResponse<any, any>>;
2347
- declare const updateManagementDataAlert: ({ dataAlert, domain, apiKey, token, projectId }: {
2348
- dataAlert: any;
2349
- domain: any;
2350
- apiKey: any;
2351
- token: any;
2352
- projectId: any;
2353
- }) => Promise<axios.AxiosResponse<any, any>>;
2354
2212
  declare const validateExpression: ({ expression, domain, apiKey, token }: {
2355
2213
  expression: any;
2356
2214
  domain: any;
@@ -2439,4 +2297,4 @@ declare function color(): {
2439
2297
  on(): any;
2440
2298
  };
2441
2299
 
2442
- export { AGG_TYPES, AXIS_TITLE_BORDER_PADDING_LEFT, AXIS_TITLE_BORDER_PADDING_TOP, AXIS_TITLE_PADDING_BOTTOM, AXIS_TITLE_PADDING_TOP, AdditionalSelect, AggType, AggTypeParams, AggTypes, Authentication, AutoQLJWT, AvailableSelect, AxiosResponse, BUTTON_PADDING, CHARTS_WITHOUT_AGGREGATED_DATA, CHARTS_WITHOUT_AXES, CHARTS_WITHOUT_LEGENDS, CHART_PADDING, CHART_TYPES, COLUMN_TYPES, COMPARE_TYPE, CONTINUOUS_TYPE, CUSTOM_TYPE, Column, Column$1 as ColumnObj, ColumnSelect, ColumnType, ColumnTypes, DATA_ALERT_CONDITION_TYPES, DATA_ALERT_ENABLED_STATUSES, DATA_ALERT_FREQUENCY_TYPE_OPTIONS, DATA_ALERT_OPERATORS, DATA_ALERT_STATUSES, DATE_ONLY_CHART_TYPES, DAYJS_PRECISION_FORMATS, DEFAULT_AGG_TYPE, DEFAULT_CHART_CONFIG, DEFAULT_COLUMN_NAME, DEFAULT_CSS_PREFIX, DEFAULT_DATA_PAGE_SIZE, DEFAULT_EVALUATION_FREQUENCY, DEFAULT_LEGEND_PADDING_BOTTOM, DEFAULT_LEGEND_PADDING_LEFT, DEFAULT_LEGEND_PADDING_RIGHT, DEFAULT_LEGEND_PADDING_TOP, DEFAULT_MAX_LEGEND_WIDTH, DEFAULT_SOURCE, DISABLED_CLASS, DISPLAY_TYPES, DOUBLE_AXIS_CHART_TYPES, DOW_STYLES, DataExplorerSubject, DataExplorerSubjectFilter, DataExplorerSubjectGroups, DataExplorerSubjectInterface, DataExplorerSuggestion, DataExplorerTypes, DataFormatting, DateStringPrecisionTypes, DateUTC, DisplayTypes, EVALUATION_FREQUENCY_OPTIONS, EXISTS_TYPE, FORMULA_CLASS, FUNCTION_OPERATOR, FilterLock, FrontendReq, GENERAL_ERROR, GENERAL_HTML_ERROR, GENERAL_QUERY_ERROR, GLOBAL_OPERATORS, GROUP_TERM_TYPE, HIGHLIGHTED_CLASS, HORIZONTAL_LEGEND_SPACING, LABEL_FONT_SIZE, LEGEND_BORDER_PADDING, LEGEND_BORDER_THICKNESS, LEGEND_SHAPE_SIZE, LEGEND_TOP_ADJUSTMENT, LOAD_MORE_DROPDOWN_PADDING_BOTTOM, MAX_CHART_ELEMENTS, MAX_DATA_PAGE_SIZE, MAX_LEGEND_LABELS, MAX_RECENT_SEARCHES, MAX_ROWS_FOR_PIE_CHART, MINIMUM_INNER_HEIGHT, MINIMUM_INNER_WIDTH, MINIMUM_TITLE_LENGTH, MIN_HISTOGRAM_SAMPLE, MONTH_DAY_SELECT_OPTIONS, MONTH_NAMES, NUMBER_TERM_TYPE, OPERATORS, ORDERABLE_WINDOW_FN_TYPES, Operators, PATH_SMOOTHING, PERIODIC_TYPE, PROJECT_TYPE, ParsedInterpretation, ParsedInterpretationChunk, PrecisionTypes, QUERY_TERM_TYPE, QUERY_TIMEOUT_ERROR, QueryData, QueryErrorTypes, QueryResponse, REQUEST_CANCELLED_ERROR, RESET_PERIOD_OPTIONS, RawColumn, Rows, SCHEDULED_TYPE, SCHEDULE_FREQUENCY_OPTIONS, SCHEDULE_INTERVAL_OPTIONS, SEASON_NAMES, SampleQueryReplacementTypes, Scale, SubjectSuggestion, TABLE_TYPES, TITLE_FONT_SIZE, TableConfig, Theme, ThemeType, TransformedAxiosResponse, TransformedQueryResponse, UNAUTHENTICATED_ERROR, VERTICAL_LEGEND_SPACING, ValueLabel, ValueLabelSuggestion, WEEKDAY_NAMES_MON, WEEKDAY_NAMES_SUN, WINDOW_FUNCTIONS, addSubjectToRecentSearches, addUserToProjectRule, adjustBottomTitleToFit, adjustMinAndMaxForScaleRatio, adjustTitleToFit, adjustTopTitleToFit, adjustVerticalTitleToFit, aggregateData, aggregateOtherCategory, animateInputText, applyLegendTitleStyles, applyStylesForHiddenSeries, areAllColumnsHidden, areSomeColumnsHidden, authenticationDefault, autoQLConfigDefault, bezierCommand, calculateMinAndMaxSums, capitalizeFirstChar, cloneObject, configureTheme, constructFilter, constructRTArray, convertToFunctionStr, convertToNumber, countDecimals, createDataAlert, createManagementDataAlert, createMutatorFn, createNotificationChannel, createSVGPath, currentEventLoopEnd, dataConfigDefault, dataFormattingDefault, dataStructureChanged, dateSortFn, dateStringSortFn, deepEqual, deleteDataAlert, deleteNotification, difference, dismissAllNotifications, dismissNotification, distributeListsEvenly, doesElementOverflowContainer, exportCSV, fetchAutocomplete, fetchDataAlerts, fetchDataExplorerAutocomplete, fetchDataExplorerSampleQueries, fetchDataExplorerSuggestions, fetchDataPreview, fetchExploreQueries, fetchFilters, fetchNotification, fetchNotificationChannels, fetchNotificationCount, fetchNotificationData, fetchNotificationFeed, fetchRule, fetchSubjectList, fetchSubjectListV2, fetchSuggestions, fetchTopics, fetchTopicsForVL, fetchVLAutocomplete, filterDataByColumn, formatAdditionalSelectColumn, formatChartLabel, formatDatePivotMonth, formatDatePivotYear, formatDateStringType, formatDateType, formatElement, formatEpochDate, formatFiltersForAPI, formatISODateWithPrecision, formatNextScheduleDate, formatNumberFilterValue, formatQueryColumns, formatResetDate, formatSortersForAPI, formatStringDate, formatStringDateWithPrecision, formatTableParams, functionsEqual, generateDatePivotData, generateFilterDrilldownResponse, generatePivotData, generatePivotTableData, getAggConfig, getAuthentication, getAutoQLConfig, getAxis, getAxisLabelsBbox, getBBoxFromRef, getBandScale, getBarRectObj, getBinData, getBinLinearScale, getBubbleObj, getChartColorVars, getChartScaleRatio, getColorScale, getColorScales, getColumnDateRanges, getColumnIndexConfig, getColumnNameForDateRange, getColumnRectObj, getColumnTypeAmounts, getCombinedFilters, getCurrencySymbol, getCurrentTimezone, getDataConfig, getDataFormatting, getDateColumnIndex, getDateRangeIntersection, getDateRangesFromInterpretation, getDatesFromRT, getDayJSObj, getDayLocalStartDate, getDayjsObjForStringType, getDefaultBucketConfig, getDefaultDisplayType, getDrilldownData, getDrilldownGroupby, getEpochFromDate, getFilterDrilldown, getFilterPrecision, getFirstChartDisplayType, getFnSummary, getFormattedTimestamp, getGroupBys, getGroupBysFromPivotTable, getGroupBysFromTable, getGroupableColumns, getHeatmapRectObj, getHiddenColumns, getHistogramColumnObj, getHistogramScale, getInitialBucketSize, getInitialSelections, getKey, getKeyByValue, getLabelsBBox, getLegendLabels, getLegendLabelsForGroupbyQuery, getLegendLabelsForMultiSeries, getLegendLabelsForSingleColumn, getLegendLocation, getLegendScale, getLegendTitleFromColumns, getLineVertexObj, getLinearAxisTitle, getLinearScale, getLinearScales, getMaxLegendHeight, getMaxLegendSectionWidth, getMaxTickLabelWidth, getMaxValueFromKeyValueObj, getMinAndMaxValues, getMinValueFromKeyValueObj, getMonthLocalStartDate, getMultiSeriesColumnIndex, getNiceDateTickValues, getNiceTickValues, getNumberAxisUnits, getNumberColumnIndices, getNumberFormatConfig, getNumberOfGroupables, getNumberOfSeries, getNumericalColumns, getObjSize, getOpacityScale, getOperators, getPadding, getPieChartData, getPivotColumnIndexConfig, getPlainTextList, getPointObj, getPotentialDisplayTypes, getPrecisionForDayJS, getQueryFn, getQueryParams, getQueryRequestParams, getQueryValidationQueryText, getRadiusScale, getRangeForAxis, getRecentSearchesFromLocalStorage, getRecentSelectionID, getRowNumberListForPopover, getSVGBase64, getSampleQueryRegex, getSampleQueryText, getScheduleFrequencyObject, getSelectableColumns, getStartAndEndDateFromDateStrs, getStringColumnIndices, getStringColumns, getStringFromSource, getSuggestionLists, getSupportedConditionTypes, getSupportedDisplayTypes, getThemeType, getThemeValue, getTickSizeFromNumTicks, getTickValues, getTimeFrameTextFromChunk, getTimeObjFromTimeStamp, getTimeRangeFromDateArray, getTimeRangeFromRT, getTimeScale, getTitleCase, getTooltipContent, getTotalBottomPadding, getTotalHorizontalPadding, getTotalLeftPadding, getTotalPossibleLegendSections, getTotalRightPadding, getTotalTopPadding, getTotalVerticalPadding, getUniqueYearsForColumn, getUnitSymbol, getUnitsForColumn, getVisibleColumns, getWeekLocalStartDate, getWeekdayFromTimeStamp, getlegendLabelSections, handleTooltipBoundaryCollision, hasColumnIndex, hasData, hasDateColumn, hasMoreData, hasNumberColumn, hasStringColumn, initializeAlert, initializeQueryValidationOptions, isAggSeed, isAggregation, isChartType, isColumnDateType, isColumnIndexConfigValid, isColumnIndexValid, isColumnIndicesValid, isColumnNumberType, isColumnStringType, isDataLimited, isDisplayTypeValid, isDrilldown, isError500Type, isExpressionQueryValid, isISODate, isInitialSelectionValid, isListQuery, isNumber, isObject, isSingleValueResponse, isTableType, isValueEmpty, color as legendColor, lineCommand, makeEmptyArray, markNotificationAsUnread, mergeBboxes, mergeBoundingClientRects, mergeSources, nameValueObject, numberIndicesArraysOverlap, numberSortFn, onTableCellClick, onlySeriesVisibilityChanged, onlyUnique, parseJwt, potentiallySupportsDatePivot, potentiallySupportsPivot, removeElementAtIndex, removeFromDOM, removeHiddenLegendLabels, removeNotificationChannel, removeUserFromProjectRule, reportProblem, resetDateIsFuture, resetNotificationCount, rotateArray, roundDownToNearestMultiple, roundToNearestLog10, roundToNearestMultiple, roundUpToNearestMultiple, runDrilldown, runQuery, runQueryNewPage, runQueryOnly, runQueryValidation, scaleZero, sendDataToChannel, sendSuggestion, sendTrainingData, setCaretPosition, setColumnVisibility, setFilterFunction, setFilters, setHeaderFilterPlaceholder, setRecentSearchesInLocalStorage, setSorterFunction, setTickSize, setTickValues, shouldDisableChartScale, shouldLabelsRotate, shouldPlotMultiSeries, showEvaluationFrequencySetting, sortDataByAlphabet, sortDataByColumn, sortDataByDate, supportsDatePivotTable, supportsPieChart, supportsRegularPivotTable, svgPathD, svgToPng, tableFilterParams, toggleCustomDataAlertStatus, toggleProjectDataAlertStatus, transformLabels, transformQueryResponse, transformQueryResponseColumns, unsetFilterFromAPI, updateDataAlert, updateDataAlertStatus, updateManagementDataAlert, updateStartAndEndIndexes, usePivotDataForChart, uuidv4, validateExpression };
2300
+ export { AGG_TYPES, AXIS_TITLE_BORDER_PADDING_LEFT, AXIS_TITLE_BORDER_PADDING_TOP, AXIS_TITLE_PADDING_BOTTOM, AXIS_TITLE_PADDING_TOP, AdditionalSelect, AggType, AggTypeParams, AggTypes, Authentication, AutoQLJWT, AvailableSelect, AxiosResponse, BUTTON_PADDING, CHARTS_WITHOUT_AGGREGATED_DATA, CHARTS_WITHOUT_AXES, CHARTS_WITHOUT_LEGENDS, CHART_PADDING, CHART_TYPES, COLUMN_TYPES, COMPARE_TYPE, CONTINUOUS_TYPE, CUSTOM_TYPE, Column, Column$1 as ColumnObj, ColumnSelect, ColumnType, ColumnTypes, DATA_ALERT_CONDITION_TYPES, DATA_ALERT_ENABLED_STATUSES, DATA_ALERT_FREQUENCY_TYPE_OPTIONS, DATA_ALERT_OPERATORS, DATA_ALERT_STATUSES, DATE_ONLY_CHART_TYPES, DAYJS_PRECISION_FORMATS, DEFAULT_AGG_TYPE, DEFAULT_CHART_CONFIG, DEFAULT_CSS_PREFIX, DEFAULT_DATA_PAGE_SIZE, DEFAULT_EVALUATION_FREQUENCY, DEFAULT_LEGEND_PADDING_BOTTOM, DEFAULT_LEGEND_PADDING_LEFT, DEFAULT_LEGEND_PADDING_RIGHT, DEFAULT_LEGEND_PADDING_TOP, DEFAULT_MAX_LEGEND_WIDTH, DEFAULT_SOURCE, DISPLAY_TYPES, DOUBLE_AXIS_CHART_TYPES, DOW_STYLES, DataExplorerSubject, DataExplorerSubjectFilter, DataExplorerSubjectGroups, DataExplorerSubjectInterface, DataExplorerSuggestion, DataExplorerTypes, DataFormatting, DateStringPrecisionTypes, DateUTC, DisplayTypes, EVALUATION_FREQUENCY_OPTIONS, EXISTS_TYPE, FilterLock, FrontendReq, GENERAL_ERROR, GENERAL_HTML_ERROR, GENERAL_QUERY_ERROR, GROUP_TERM_TYPE, HORIZONTAL_LEGEND_SPACING, LABEL_FONT_SIZE, LEGEND_BORDER_PADDING, LEGEND_BORDER_THICKNESS, LEGEND_SHAPE_SIZE, LEGEND_TOP_ADJUSTMENT, LOAD_MORE_DROPDOWN_PADDING_BOTTOM, MAX_CHART_ELEMENTS, MAX_DATA_PAGE_SIZE, MAX_LEGEND_LABELS, MAX_RECENT_SEARCHES, MAX_ROWS_FOR_PIE_CHART, MINIMUM_INNER_HEIGHT, MINIMUM_INNER_WIDTH, MINIMUM_TITLE_LENGTH, MIN_HISTOGRAM_SAMPLE, MONTH_DAY_SELECT_OPTIONS, MONTH_NAMES, NUMBER_TERM_TYPE, PATH_SMOOTHING, PERIODIC_TYPE, PROJECT_TYPE, ParsedInterpretation, ParsedInterpretationChunk, PrecisionTypes, QUERY_TERM_TYPE, QUERY_TIMEOUT_ERROR, QueryData, QueryErrorTypes, QueryResponse, REQUEST_CANCELLED_ERROR, RESET_PERIOD_OPTIONS, RawColumn, Rows, SCHEDULED_TYPE, SCHEDULE_FREQUENCY_OPTIONS, SCHEDULE_INTERVAL_OPTIONS, SEASON_NAMES, SampleQueryReplacementTypes, Scale, SubjectSuggestion, TABLE_TYPES, TITLE_FONT_SIZE, TableConfig, Theme, ThemeType, TransformedAxiosResponse, TransformedQueryResponse, UNAUTHENTICATED_ERROR, VERTICAL_LEGEND_SPACING, ValueLabel, ValueLabelSuggestion, WEEKDAY_NAMES_MON, WEEKDAY_NAMES_SUN, addSubjectToRecentSearches, addUserToProjectRule, adjustBottomTitleToFit, adjustMinAndMaxForScaleRatio, adjustTitleToFit, adjustTopTitleToFit, adjustVerticalTitleToFit, aggregateData, aggregateOtherCategory, animateInputText, applyLegendTitleStyles, applyStylesForHiddenSeries, areAllColumnsHidden, areSomeColumnsHidden, authenticationDefault, autoQLConfigDefault, bezierCommand, calculateMinAndMaxSums, capitalizeFirstChar, cloneObject, configureTheme, constructFilter, constructRTArray, convertToNumber, countDecimals, createDataAlert, createNotificationChannel, createSVGPath, currentEventLoopEnd, dataConfigDefault, dataFormattingDefault, dataStructureChanged, dateSortFn, dateStringSortFn, deepEqual, deleteDataAlert, deleteNotification, difference, dismissAllNotifications, dismissNotification, distributeListsEvenly, doesElementOverflowContainer, exportCSV, fetchAutocomplete, fetchDataAlerts, fetchDataExplorerAutocomplete, fetchDataExplorerSampleQueries, fetchDataExplorerSuggestions, fetchDataPreview, fetchExploreQueries, fetchFilters, fetchNotificationChannels, fetchNotificationCount, fetchNotificationData, fetchNotificationFeed, fetchRule, fetchSubjectList, fetchSubjectListV2, fetchSuggestions, fetchTopics, fetchTopicsForVL, fetchVLAutocomplete, formatAdditionalSelectColumn, formatChartLabel, formatDatePivotMonth, formatDatePivotYear, formatDateStringType, formatDateType, formatElement, formatEpochDate, formatFiltersForAPI, formatISODateWithPrecision, formatNextScheduleDate, formatNumberFilterValue, formatQueryColumns, formatResetDate, formatSortersForAPI, formatStringDate, formatStringDateWithPrecision, formatTableParams, functionsEqual, generateDatePivotData, generateFilterDrilldownResponse, generatePivotData, generatePivotTableData, getAggConfig, getAuthentication, getAutoQLConfig, getAxis, getAxisLabelsBbox, getBBoxFromRef, getBandScale, getBarRectObj, getBinData, getBinLinearScale, getBubbleObj, getChartColorVars, getChartScaleRatio, getColorScale, getColorScales, getColumnDateRanges, getColumnIndexConfig, getColumnNameForDateRange, getColumnRectObj, getColumnTypeAmounts, getCombinedFilters, getCurrencySymbol, getDataConfig, getDataFormatting, getDateColumnIndex, getDateRangeIntersection, getDateRangesFromInterpretation, getDatesFromRT, getDayJSObj, getDayLocalStartDate, getDayjsObjForStringType, getDefaultBucketConfig, getDefaultDisplayType, getDrilldownData, getDrilldownGroupby, getEpochFromDate, getFilterDrilldown, getFilterPrecision, getFirstChartDisplayType, getGroupBys, getGroupBysFromPivotTable, getGroupBysFromTable, getGroupableColumns, getHeatmapRectObj, getHiddenColumns, getHistogramColumnObj, getHistogramScale, getInitialBucketSize, getInitialSelections, getKey, getKeyByValue, getLabelsBBox, getLegendLabels, getLegendLabelsForGroupbyQuery, getLegendLabelsForMultiSeries, getLegendLabelsForSingleColumn, getLegendLocation, getLegendScale, getLegendTitleFromColumns, getLineVertexObj, getLinearAxisTitle, getLinearScale, getLinearScales, getMaxLegendHeight, getMaxLegendSectionWidth, getMaxTickLabelWidth, getMaxValueFromKeyValueObj, getMinAndMaxValues, getMinValueFromKeyValueObj, getMonthLocalStartDate, getMultiSeriesColumnIndex, getNiceDateTickValues, getNiceTickValues, getNumberAxisUnits, getNumberColumnIndices, getNumberFormatConfig, getNumberOfGroupables, getNumberOfSeries, getObjSize, getOpacityScale, getPadding, getPieChartData, getPivotColumnIndexConfig, getPlainTextList, getPointObj, getPotentialDisplayTypes, getPrecisionForDayJS, getQueryFn, getQueryParams, getQueryRequestParams, getQueryValidationQueryText, getRadiusScale, getRangeForAxis, getRecentSearchesFromLocalStorage, getRecentSelectionID, getRowNumberListForPopover, getSVGBase64, getSampleQueryRegex, getSampleQueryText, getScheduleFrequencyObject, getStartAndEndDateFromDateStrs, getStringColumnIndices, getStringFromSource, getSuggestionLists, getSupportedConditionTypes, getSupportedDisplayTypes, getThemeType, getThemeValue, getTickSizeFromNumTicks, getTickValues, getTimeFrameTextFromChunk, getTimeObjFromTimeStamp, getTimeRangeFromDateArray, getTimeRangeFromRT, getTimeScale, getTitleCase, getTooltipContent, getTotalBottomPadding, getTotalHorizontalPadding, getTotalLeftPadding, getTotalPossibleLegendSections, getTotalRightPadding, getTotalTopPadding, getTotalVerticalPadding, getUniqueYearsForColumn, getUnitSymbol, getUnitsForColumn, getVisibleColumns, getWeekLocalStartDate, getWeekdayFromTimeStamp, getlegendLabelSections, handleTooltipBoundaryCollision, hasColumnIndex, hasData, hasDateColumn, hasMoreData, hasNumberColumn, hasStringColumn, initializeAlert, initializeQueryValidationOptions, isAggSeed, isAggregation, isChartType, isColumnDateType, isColumnIndexConfigValid, isColumnIndexValid, isColumnIndicesValid, isColumnNumberType, isColumnStringType, isDataLimited, isDisplayTypeValid, isDrilldown, isError500Type, isExpressionQueryValid, isISODate, isInitialSelectionValid, isListQuery, isNumber, isObject, isSingleValueResponse, isTableType, color as legendColor, lineCommand, makeEmptyArray, markNotificationAsUnread, mergeBboxes, mergeBoundingClientRects, mergeSources, nameValueObject, numberIndicesArraysOverlap, numberSortFn, onTableCellClick, onlySeriesVisibilityChanged, onlyUnique, parseJwt, potentiallySupportsDatePivot, potentiallySupportsPivot, removeElementAtIndex, removeFromDOM, removeHiddenLegendLabels, removeNotificationChannel, removeUserFromProjectRule, reportProblem, resetDateIsFuture, resetNotificationCount, rotateArray, roundDownToNearestMultiple, roundToNearestLog10, roundToNearestMultiple, roundUpToNearestMultiple, runDrilldown, runQuery, runQueryNewPage, runQueryOnly, runQueryValidation, scaleZero, sendDataToChannel, sendSuggestion, sendTrainingData, setCaretPosition, setColumnVisibility, setFilterFunction, setFilters, setHeaderFilterPlaceholder, setRecentSearchesInLocalStorage, setSorterFunction, setTickSize, setTickValues, shouldDisableChartScale, shouldLabelsRotate, shouldPlotMultiSeries, showEvaluationFrequencySetting, sortDataByAlphabet, sortDataByColumn, sortDataByDate, supportsDatePivotTable, supportsPieChart, supportsRegularPivotTable, svgPathD, svgToPng, tableFilterParams, toggleCustomDataAlertStatus, toggleProjectDataAlertStatus, transformLabels, transformQueryResponse, transformQueryResponseColumns, unsetFilterFromAPI, updateDataAlert, updateDataAlertStatus, updateStartAndEndIndexes, usePivotDataForChart, uuidv4, validateExpression };