myio-js-library 0.1.502 → 0.1.503

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.cjs CHANGED
@@ -583,6 +583,7 @@ __export(index_exports, {
583
583
  CONSUMPTION_CHART_DEFAULTS: () => DEFAULT_CONFIG,
584
584
  CONSUMPTION_THEME_COLORS: () => THEME_COLORS,
585
585
  CardGridPanel: () => CardGridPanel,
586
+ ColumnSummaryTooltip: () => ColumnSummaryTooltip,
586
587
  ConnectionStatusType: () => ConnectionStatusType,
587
588
  ContractSummaryTooltip: () => ContractSummaryTooltip,
588
589
  CustomerCardV1: () => CustomerCardV1,
@@ -1162,7 +1163,7 @@ module.exports = __toCommonJS(index_exports);
1162
1163
  // package.json
1163
1164
  var package_default = {
1164
1165
  name: "myio-js-library",
1165
- version: "0.1.502",
1166
+ version: "0.1.503",
1166
1167
  description: "A clean, standalone JS SDK for MYIO projects",
1167
1168
  license: "MIT",
1168
1169
  repository: "github:gh-myio/myio-js-library",
@@ -27305,8 +27306,8 @@ var EnergyDataFetcher = class {
27305
27306
  // src/components/premium-modals/internal/engines/CsvExporter.ts
27306
27307
  var toCsv = (rows, locale = "pt-BR", sep = ";") => {
27307
27308
  const fmt2 = new Intl.NumberFormat(locale, { minimumFractionDigits: 2, maximumFractionDigits: 2 });
27308
- const esc3 = (v) => (typeof v === "number" ? fmt2.format(v) : String(v)).replace(/"/g, '""');
27309
- return rows.map((r) => r.map((c) => `"${esc3(c)}"`).join(sep)).join("\r\n");
27309
+ const esc4 = (v) => (typeof v === "number" ? fmt2.format(v) : String(v)).replace(/"/g, '""');
27310
+ return rows.map((r) => r.map((c) => `"${esc4(c)}"`).join(sep)).join("\r\n");
27310
27311
  };
27311
27312
 
27312
27313
  // src/utils/telemetryUtils.ts
@@ -33611,27 +33612,23 @@ var AllReportModal = class {
33611
33612
  // Premium tooltip content for the exclusion-flag info icon. Uses the library
33612
33613
  // InfoTooltip CSS classes (myio-info-tooltip__*) — injected by InfoTooltip itself.
33613
33614
  buildExclusionTooltipContent() {
33615
+ const p = "margin:0 0 8px;font-size:11px;line-height:1.5;color:#475569;";
33616
+ const pLast = "margin:0;font-size:11px;line-height:1.5;color:#475569;";
33614
33617
  return `
33615
33618
  <div class="myio-info-tooltip__section" style="max-width:280px;">
33616
- <div class="myio-info-tooltip__row" style="align-items:flex-start;padding:3px 0;">
33617
- <span class="myio-info-tooltip__label" style="font-size:11px;line-height:1.5;white-space:normal;">
33618
- Alguns dispositivos t\xEAm o atributo <strong>exclude_groups_totals</strong> e s\xE3o
33619
- propositalmente removidos dos totais do dashboard (ex.: medidor de locat\xE1rio que
33620
- n\xE3o \xE9 consumo operacional do shopping).
33621
- </span>
33622
- </div>
33623
- <div class="myio-info-tooltip__row" style="align-items:flex-start;padding:3px 0;">
33624
- <span class="myio-info-tooltip__label" style="font-size:11px;line-height:1.5;white-space:normal;">
33625
- <strong>Ligado</strong> (padr\xE3o): esses dispositivos s\xE3o omitidos do relat\xF3rio \u2014
33626
- o total bate com os cards do dashboard.
33627
- </span>
33628
- </div>
33629
- <div class="myio-info-tooltip__row" style="align-items:flex-start;padding:3px 0;">
33630
- <span class="myio-info-tooltip__label" style="font-size:11px;line-height:1.5;white-space:normal;">
33631
- <strong>Desligado</strong>: todos os dispositivos do grupo entram \u2014 mostra o
33632
- consumo bruto, inclusive os exclu\xEDdos.
33633
- </span>
33634
- </div>
33619
+ <p style="${p}">
33620
+ Alguns dispositivos t\xEAm o atributo <strong>exclude_groups_totals</strong> e s\xE3o
33621
+ propositalmente removidos dos totais do dashboard (ex.: medidor de locat\xE1rio que
33622
+ n\xE3o \xE9 consumo operacional do shopping).
33623
+ </p>
33624
+ <p style="${p}">
33625
+ <strong>Ligado</strong> (padr\xE3o): esses dispositivos s\xE3o omitidos do relat\xF3rio \u2014
33626
+ o total bate com os cards do dashboard.
33627
+ </p>
33628
+ <p style="${pLast}">
33629
+ <strong>Desligado</strong>: todos os dispositivos do grupo entram \u2014 mostra o
33630
+ consumo bruto, inclusive os exclu\xEDdos.
33631
+ </p>
33635
33632
  </div>
33636
33633
  <div class="myio-info-tooltip__notice">
33637
33634
  <span class="myio-info-tooltip__notice-icon">\u{1F4A1}</span>
@@ -73846,6 +73843,185 @@ var WaterSummaryTooltip = {
73846
73843
  }
73847
73844
  };
73848
73845
 
73846
+ // src/utils/ColumnSummaryTooltip.ts
73847
+ var COLUMN_SUMMARY_CSS = `
73848
+ .myio-col-summary {
73849
+ max-width: 300px;
73850
+ font-family: 'Nunito', 'Segoe UI', system-ui, sans-serif;
73851
+ }
73852
+ .myio-col-summary__kpis {
73853
+ display: flex; flex-direction: column; gap: 4px;
73854
+ padding: 8px 10px; margin-bottom: 10px;
73855
+ background: #faf8ff; border: 1px solid #e3d9f3; border-radius: 8px;
73856
+ }
73857
+ .myio-col-summary__kpi {
73858
+ display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
73859
+ }
73860
+ .myio-col-summary__kpi-label {
73861
+ font-size: 10px; font-weight: 700; letter-spacing: 0.3px;
73862
+ text-transform: uppercase; color: #64748b;
73863
+ }
73864
+ .myio-col-summary__kpi-value {
73865
+ font-size: 12px; font-weight: 700; color: #1e293b; text-align: right;
73866
+ }
73867
+ .myio-col-summary__kpi-value--accent {
73868
+ font-size: 14px; color: #3e1a7d;
73869
+ }
73870
+ .myio-col-summary__group {
73871
+ display: flex; flex-direction: column; gap: 1px; margin-top: 8px;
73872
+ }
73873
+ .myio-col-summary__group-label {
73874
+ font-size: 10px; font-weight: 800; letter-spacing: 0.3px;
73875
+ text-transform: uppercase; color: #64748b; margin-bottom: 3px;
73876
+ }
73877
+ .myio-col-summary__row {
73878
+ display: flex; align-items: center; gap: 8px; padding: 2px 0;
73879
+ font-size: 11px; color: #1e293b;
73880
+ }
73881
+ .myio-col-summary__name {
73882
+ flex: 1 1 auto; min-width: 0;
73883
+ overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
73884
+ }
73885
+ .myio-col-summary__val {
73886
+ flex: 0 0 auto; font-weight: 700; color: #16a34a; text-align: right;
73887
+ }
73888
+ .myio-col-summary__pct {
73889
+ flex: 0 0 auto; min-width: 44px; text-align: right;
73890
+ font-size: 10px; font-weight: 600; color: #64748b;
73891
+ }
73892
+ .myio-col-summary__empty {
73893
+ padding: 14px 0; text-align: center; font-style: italic;
73894
+ font-size: 11px; color: #94a3b8;
73895
+ }
73896
+ `;
73897
+ var _cssInjected2 = false;
73898
+ function injectCSS10() {
73899
+ if (_cssInjected2 || typeof document === "undefined") return;
73900
+ const STYLE_ID4 = "myio-column-summary-tooltip-css";
73901
+ if (document.getElementById(STYLE_ID4)) {
73902
+ _cssInjected2 = true;
73903
+ return;
73904
+ }
73905
+ const style = document.createElement("style");
73906
+ style.id = STYLE_ID4;
73907
+ style.textContent = COLUMN_SUMMARY_CSS;
73908
+ document.head.appendChild(style);
73909
+ _cssInjected2 = true;
73910
+ }
73911
+ function esc3(value) {
73912
+ return String(value == null ? "" : value).replace(
73913
+ /[&<>"]/g,
73914
+ (c) => ({ "&": "&amp;", "<": "&lt;", ">": "&gt;", '"': "&quot;" })[c]
73915
+ );
73916
+ }
73917
+ function defaultFormatter(unit) {
73918
+ const nf = new Intl.NumberFormat("pt-BR", { maximumFractionDigits: 2 });
73919
+ return (v) => nf.format(Number(v) || 0) + (unit ? " " + unit : "");
73920
+ }
73921
+ function fmtPct(value, total) {
73922
+ const p = total > 0 ? (Number(value) || 0) / total * 100 : 0;
73923
+ return p.toFixed(1).replace(".", ",") + "%";
73924
+ }
73925
+ function buildContent(data) {
73926
+ const devices = Array.isArray(data.devices) ? data.devices.slice() : [];
73927
+ const fmt2 = data.formatValue || defaultFormatter(data.unit || "");
73928
+ const count = devices.length;
73929
+ const total = devices.reduce((s, d) => s + (Number(d.value) || 0), 0);
73930
+ const avg = count ? total / count : 0;
73931
+ const periodRow = data.periodLabel ? `<div class="myio-col-summary__kpi">
73932
+ <span class="myio-col-summary__kpi-label">Per\xEDodo</span>
73933
+ <span class="myio-col-summary__kpi-value">${esc3(data.periodLabel)}</span>
73934
+ </div>` : "";
73935
+ if (!count) {
73936
+ return `<div class="myio-col-summary">
73937
+ <div class="myio-col-summary__kpis">
73938
+ ${periodRow}
73939
+ <div class="myio-col-summary__kpi">
73940
+ <span class="myio-col-summary__kpi-label">Dispositivos</span>
73941
+ <span class="myio-col-summary__kpi-value">0</span>
73942
+ </div>
73943
+ </div>
73944
+ <div class="myio-col-summary__empty">Nenhum dispositivo.</div>
73945
+ </div>`;
73946
+ }
73947
+ const desc = devices.slice().sort((a, b) => (Number(b.value) || 0) - (Number(a.value) || 0));
73948
+ const top3 = desc.slice(0, 3);
73949
+ const bottom3 = desc.slice(-3).reverse();
73950
+ const near3 = devices.slice().sort(
73951
+ (a, b) => Math.abs((Number(a.value) || 0) - avg) - Math.abs((Number(b.value) || 0) - avg)
73952
+ ).slice(0, 3);
73953
+ const row = (d) => `
73954
+ <div class="myio-col-summary__row">
73955
+ <span class="myio-col-summary__name" title="${esc3(d.name)}">${esc3(d.name)}</span>
73956
+ <span class="myio-col-summary__val">${esc3(fmt2(Number(d.value) || 0))}</span>
73957
+ <span class="myio-col-summary__pct">${fmtPct(Number(d.value) || 0, total)}</span>
73958
+ </div>`;
73959
+ const group = (label, list) => list.length ? `<div class="myio-col-summary__group">
73960
+ <span class="myio-col-summary__group-label">${label}</span>
73961
+ ${list.map(row).join("")}
73962
+ </div>` : "";
73963
+ return `<div class="myio-col-summary">
73964
+ <div class="myio-col-summary__kpis">
73965
+ ${periodRow}
73966
+ <div class="myio-col-summary__kpi">
73967
+ <span class="myio-col-summary__kpi-label">Dispositivos</span>
73968
+ <span class="myio-col-summary__kpi-value">${count}</span>
73969
+ </div>
73970
+ <div class="myio-col-summary__kpi">
73971
+ <span class="myio-col-summary__kpi-label">Consumo m\xE9dio</span>
73972
+ <span class="myio-col-summary__kpi-value myio-col-summary__kpi-value--accent">${esc3(
73973
+ fmt2(avg)
73974
+ )}</span>
73975
+ </div>
73976
+ <div class="myio-col-summary__kpi">
73977
+ <span class="myio-col-summary__kpi-label">Consumo total</span>
73978
+ <span class="myio-col-summary__kpi-value">${esc3(fmt2(total))}</span>
73979
+ </div>
73980
+ </div>
73981
+ ${group("\u25B2 3 maiores", top3)}
73982
+ ${group("\u25BC 3 menores", bottom3)}
73983
+ ${group("\u25CF 3 na m\xE9dia", near3)}
73984
+ </div>`;
73985
+ }
73986
+ var ColumnSummaryTooltip = {
73987
+ /** Shows the column summary tooltip anchored to the trigger element. */
73988
+ show(triggerElement, data) {
73989
+ injectCSS10();
73990
+ InfoTooltip.show(triggerElement, {
73991
+ icon: "\u{1F4CA}",
73992
+ title: data.title ? `Resumo \u2014 ${data.title}` : "Resumo da Coluna",
73993
+ content: buildContent(data)
73994
+ });
73995
+ },
73996
+ /** Hides the tooltip immediately. */
73997
+ hide() {
73998
+ InfoTooltip.hide();
73999
+ },
74000
+ /** Starts the delayed hide (use on mouseleave). */
74001
+ startDelayedHide() {
74002
+ InfoTooltip.startDelayedHide();
74003
+ },
74004
+ /**
74005
+ * Attaches hover behavior to a trigger element. `getData` is called on each
74006
+ * hover so the summary always reflects the latest data. Returns a cleanup fn.
74007
+ */
74008
+ attach(triggerElement, getData) {
74009
+ injectCSS10();
74010
+ const handleEnter = () => {
74011
+ ColumnSummaryTooltip.show(triggerElement, getData());
74012
+ };
74013
+ const handleLeave = () => {
74014
+ InfoTooltip.startDelayedHide();
74015
+ };
74016
+ triggerElement.addEventListener("mouseenter", handleEnter);
74017
+ triggerElement.addEventListener("mouseleave", handleLeave);
74018
+ return () => {
74019
+ triggerElement.removeEventListener("mouseenter", handleEnter);
74020
+ triggerElement.removeEventListener("mouseleave", handleLeave);
74021
+ };
74022
+ }
74023
+ };
74024
+
73849
74025
  // src/utils/TempSensorSummaryTooltip.ts
73850
74026
  var TEMP_SENSOR_TOOLTIP_CSS = `
73851
74027
  /* ============================================
@@ -74336,7 +74512,7 @@ var TEMP_SENSOR_TOOLTIP_CSS = `
74336
74512
  }
74337
74513
  `;
74338
74514
  var cssInjected9 = false;
74339
- function injectCSS10() {
74515
+ function injectCSS11() {
74340
74516
  if (cssInjected9) return;
74341
74517
  if (typeof document === "undefined") return;
74342
74518
  const styleId = "myio-temp-sensor-tooltip-styles";
@@ -74723,7 +74899,7 @@ var TempSensorSummaryTooltip = {
74723
74899
  * Get or create container
74724
74900
  */
74725
74901
  getContainer() {
74726
- injectCSS10();
74902
+ injectCSS11();
74727
74903
  let container = document.getElementById(this.containerId);
74728
74904
  if (!container) {
74729
74905
  container = document.createElement("div");
@@ -75317,7 +75493,7 @@ var CONTRACT_SUMMARY_TOOLTIP_CSS = `
75317
75493
  }
75318
75494
  `;
75319
75495
  var cssInjected10 = false;
75320
- function injectCSS11() {
75496
+ function injectCSS12() {
75321
75497
  if (cssInjected10) return;
75322
75498
  if (typeof document === "undefined") return;
75323
75499
  const styleId = "myio-contract-summary-tooltip-styles";
@@ -75760,7 +75936,7 @@ var ContractSummaryTooltip = {
75760
75936
  * Get or create container
75761
75937
  */
75762
75938
  getContainer() {
75763
- injectCSS11();
75939
+ injectCSS12();
75764
75940
  let container = document.getElementById(this.containerId);
75765
75941
  if (!container) {
75766
75942
  container = document.createElement("div");
@@ -76246,7 +76422,7 @@ var USERS_SUMMARY_TOOLTIP_CSS = `
76246
76422
  }
76247
76423
  `;
76248
76424
  var cssInjected11 = false;
76249
- function injectCSS12() {
76425
+ function injectCSS13() {
76250
76426
  if (cssInjected11) return;
76251
76427
  if (typeof document === "undefined") return;
76252
76428
  const styleId = "myio-users-summary-tooltip-styles";
@@ -76277,7 +76453,7 @@ var UsersSummaryTooltip = {
76277
76453
  * Create or get the tooltip container
76278
76454
  */
76279
76455
  getContainer() {
76280
- injectCSS12();
76456
+ injectCSS13();
76281
76457
  let container = document.getElementById(this.containerId);
76282
76458
  if (!container) {
76283
76459
  container = document.createElement("div");
@@ -76954,7 +77130,7 @@ var ALARMS_SUMMARY_TOOLTIP_CSS = `
76954
77130
  }
76955
77131
  `;
76956
77132
  var cssInjected12 = false;
76957
- function injectCSS13() {
77133
+ function injectCSS14() {
76958
77134
  if (cssInjected12) return;
76959
77135
  if (typeof document === "undefined") return;
76960
77136
  const styleId = "myio-alarms-summary-tooltip-styles";
@@ -76985,7 +77161,7 @@ var AlarmsSummaryTooltip = {
76985
77161
  * Create or get the tooltip container
76986
77162
  */
76987
77163
  getContainer() {
76988
- injectCSS13();
77164
+ injectCSS14();
76989
77165
  let container = document.getElementById(this.containerId);
76990
77166
  if (!container) {
76991
77167
  container = document.createElement("div");
@@ -77400,7 +77576,7 @@ var NOTIFICATIONS_SUMMARY_TOOLTIP_CSS = `
77400
77576
  }
77401
77577
  `;
77402
77578
  var cssInjected13 = false;
77403
- function injectCSS14() {
77579
+ function injectCSS15() {
77404
77580
  if (cssInjected13) return;
77405
77581
  if (typeof document === "undefined") return;
77406
77582
  const styleId = "myio-notifications-summary-tooltip-styles";
@@ -77431,7 +77607,7 @@ var NotificationsSummaryTooltip = {
77431
77607
  * Create or get the tooltip container
77432
77608
  */
77433
77609
  getContainer() {
77434
- injectCSS14();
77610
+ injectCSS15();
77435
77611
  let container = document.getElementById(this.containerId);
77436
77612
  if (!container) {
77437
77613
  container = document.createElement("div");
@@ -119183,10 +119359,10 @@ var AlarmsNotificationsPanelView = class {
119183
119359
  const renderListPanel = (group, items, sel) => {
119184
119360
  if (items.length === 0) return '<div class="afm-empty">Nenhum item encontrado</div>';
119185
119361
  return items.map((item) => {
119186
- const esc3 = this.esc(item);
119362
+ const esc4 = this.esc(item);
119187
119363
  return `<label class="afm-check-item">
119188
- <input type="checkbox" class="afm-checkbox" data-group="${group}" data-value="${esc3}"${sel.has(item) ? " checked" : ""}>
119189
- <span class="afm-check-label">${esc3}</span>
119364
+ <input type="checkbox" class="afm-checkbox" data-group="${group}" data-value="${esc4}"${sel.has(item) ? " checked" : ""}>
119365
+ <span class="afm-check-label">${esc4}</span>
119190
119366
  </label>`;
119191
119367
  }).join("");
119192
119368
  };
@@ -141469,6 +141645,7 @@ var version = package_default.version || "0.0.0";
141469
141645
  CONSUMPTION_CHART_DEFAULTS,
141470
141646
  CONSUMPTION_THEME_COLORS,
141471
141647
  CardGridPanel,
141648
+ ColumnSummaryTooltip,
141472
141649
  ConnectionStatusType,
141473
141650
  ContractSummaryTooltip,
141474
141651
  CustomerCardV1,
package/dist/index.d.cts CHANGED
@@ -7785,6 +7785,56 @@ declare const InfoTooltip: {
7785
7785
  attach(triggerElement: HTMLElement, getOptions: () => InfoTooltipOptions): () => void;
7786
7786
  };
7787
7787
 
7788
+ /**
7789
+ * ColumnSummaryTooltip - Premium summary tooltip for a device column.
7790
+ *
7791
+ * Inspired by EnergySummaryTooltip. Renders inside the library InfoTooltip
7792
+ * panel and injects its own content CSS (fully self-contained). Shows:
7793
+ * - the column's search period
7794
+ * - total device count
7795
+ * - average and total consumption
7796
+ * - top 3 / bottom 3 / 3-closest-to-average devices, each with its % of the total
7797
+ *
7798
+ * @example
7799
+ * const cleanup = ColumnSummaryTooltip.attach(iconEl, () => ({
7800
+ * title: 'Lojas',
7801
+ * periodLabel: '01/05/2026 — 21/05/2026',
7802
+ * unit: 'kWh',
7803
+ * devices: items.map((i) => ({ name: i.label, value: i.value })),
7804
+ * formatValue: (v) => MyIO.formatEnergy(v),
7805
+ * }));
7806
+ * // later: cleanup();
7807
+ */
7808
+ interface ColumnSummaryDevice {
7809
+ name: string;
7810
+ value: number;
7811
+ }
7812
+ interface ColumnSummaryData {
7813
+ /** Column label shown in the tooltip header (e.g. "Lojas"). */
7814
+ title?: string;
7815
+ /** Human-readable search period (e.g. "01/05/2026 — 21/05/2026"). */
7816
+ periodLabel?: string;
7817
+ /** Unit suffix used by the default formatter (e.g. "kWh", "m³"). */
7818
+ unit?: string;
7819
+ /** Devices that make up the column. */
7820
+ devices: ColumnSummaryDevice[];
7821
+ /** Optional value formatter — overrides the default pt-BR + unit formatting. */
7822
+ formatValue?: (value: number) => string;
7823
+ }
7824
+ declare const ColumnSummaryTooltip: {
7825
+ /** Shows the column summary tooltip anchored to the trigger element. */
7826
+ show(triggerElement: HTMLElement, data: ColumnSummaryData): void;
7827
+ /** Hides the tooltip immediately. */
7828
+ hide(): void;
7829
+ /** Starts the delayed hide (use on mouseleave). */
7830
+ startDelayedHide(): void;
7831
+ /**
7832
+ * Attaches hover behavior to a trigger element. `getData` is called on each
7833
+ * hover so the summary always reflects the latest data. Returns a cleanup fn.
7834
+ */
7835
+ attach(triggerElement: HTMLElement, getData: () => ColumnSummaryData): () => void;
7836
+ };
7837
+
7788
7838
  /**
7789
7839
  * DeviceComparisonTooltip - Premium Device Comparison Tooltip Component
7790
7840
  * RFC-0110: Premium tooltip showing device consumption comparisons
@@ -19136,4 +19186,4 @@ declare function writeFreshdeskSyncedAtToTB(tbBaseUrl: string, tbDeviceId: strin
19136
19186
 
19137
19187
  declare const version: string;
19138
19188
 
19139
- export { ACTION_BUTTON_CSS_PREFIX, ALARMS_NOTIFICATIONS_PANEL_STYLES, SEVERITY_CONFIG as ALARM_SEVERITY_CONFIG, ALARM_SORT_OPTIONS, STATE_CONFIG as ALARM_STATE_CONFIG, AMBIENTE_GROUP_CSS_PREFIX, AMBIENTE_MODAL_CSS_PREFIX, ANNOTATION_TYPE_COLORS, ANNOTATION_TYPE_LABELS, ANNOTATION_TYPE_LABELS_EN, ActionButtonController, type ActionButtonInstance, type ActionButtonParams, type ActionButtonSettings, type ActionButtonSize, type ActionButtonThemeMode, type ActionButtonVariant, ActionButtonView, type AggregatedGroupMetrics, type Alarm, type AlarmAction, type AlarmAnnotation, type AlarmApiResponse, type AlarmBundleMapParams, type AlarmCardParams, type AlarmComparisonModalInstance, type AlarmComparisonModalParams, type AlarmFilterTab, type AlarmFilters, type AlarmInfo, type AlarmListApiResponse, type AlarmListParams, AlarmService, type AlarmSeverity, type AlarmSortMode, type AlarmSortOption, type AlarmState, type AlarmStats, type AlarmStatsApiResponse, type AlarmTrendApiPoint, type AlarmsEventHandler, type AlarmsEventType, AlarmsNotificationsPanelController, type AlarmsNotificationsPanelInstance, type AlarmsNotificationsPanelParams, type AlarmsNotificationsPanelState, AlarmsNotificationsPanelView, type AlarmsSummaryData, AlarmsSummaryTooltip, type AlarmsTab, type AmbienteChildDevice, type AmbienteData as AmbienteDetailData, type AmbienteDetailModalConfig, type AmbienteDetailModalInstance, type AmbienteEnergyDevice, type AmbienteGroupData, type AmbienteGroupModalConfig, type AmbienteGroupModalInstance, type AmbienteHierarchyNode, type AmbienteRemoteDevice, type Annotation, type AnnotationFilterState, AnnotationIndicator, type AnnotationIndicatorConfig, type AnnotationIndicatorTheme, type AnnotationStatus, type AnnotationSummary, AnnotationTooltip, type AnnotationType$2 as AnnotationType, type AppliedFilters, type AuditAction, type AuditEntry, type AuthConfig, type AuthContextSnapshot, type AvailabilityFleet, type AvailabilityParams, type AvailabilityResponse, type AvailabilityStatus, type AvailabilitySummary, BASDashboardController, type BASDashboardData, type BASDashboardInstance, type BASDashboardParams, type BASDashboardSettings, type BASDashboardState, type BASDashboardThemeMode, BASDashboardView, type BASEventType, type HVACDevice as BASHVACDevice, type HVACDeviceStatus as BASHVACDeviceStatus, type MotorDevice as BASMotorDevice, type MotorDeviceStatus as BASMotorDeviceStatus, type MotorDeviceType as BASMotorDeviceType, type WaterDevice as BASWaterDevice, type WaterDeviceStatus as BASWaterDeviceStatus, type WaterDeviceType as BASWaterDeviceType, BAS_DASHBOARD_CSS_PREFIX, BAS_DASHBOARD_STYLES, type BarChartOptions, type BuildTemplateExportParams, CHART_COLORS, DEFAULT_COLORS as CONSUMPTION_CHART_COLORS, DEFAULT_CONFIG as CONSUMPTION_CHART_DEFAULTS, THEME_COLORS as CONSUMPTION_THEME_COLORS, type CardGridCustomStyle, type CardGridItem, CardGridPanel, type CardGridPanelOptions, type CardKPIs, type CategorySummary, type ChartDomain, type ClampRange, ConnectionStatusType, type Consumption7DaysColors, type Consumption7DaysConfig, type Consumption7DaysData, type Consumption7DaysInstance, type ChartType$2 as ConsumptionChartType, type ConsumptionDataPoint$2 as ConsumptionDataPoint, type IdealRangeConfig as ConsumptionIdealRangeConfig, type ConsumptionModalConfig, type ConsumptionModalInstance, type TemperatureConfig as ConsumptionTemperatureConfig, type TemperatureReferenceLine as ConsumptionTemperatureReferenceLine, type ThemeColors as ConsumptionThemeColors, type ThemeMode$e as ConsumptionThemeMode, type VizMode$2 as ConsumptionVizMode, type ConsumptionWidgetConfig, type ConsumptionWidgetInstance, type ContextOption, type ContractDeviceCounts, type ContractDevicesError, type ContractDevicesPersistResult, type ContractDomain, type ContractDomainCounts, type ContractSummaryData, ContractSummaryTooltip, type ContractTemperatureCounts, type CreateAssetDto, type CreateCustomerDto, type CreateDateRangePickerOptions, type CreateDeviceDto, type CreateInputDateRangePickerInsideDIVParams, type CustomerCardData$1 as CustomerCardData, type CustomerCardDeviceCounts$1 as CustomerCardDeviceCounts, type CustomerCardMetaCounts$1 as CustomerCardMetaCounts, type ThemeMode$b as CustomerCardThemeMode, CustomerCardV1, type CustomerCardV1Instance, type CustomerCardV1Params, CustomerCardV2, type CustomerCardV2Instance, type CustomerCardV2Params, type CustomerOption, DAY_LABELS, DAY_LABELS_FULL, DECIMAL_OPTIONS, DEFAULT_ACTION_BUTTON_SETTINGS, DEFAULT_ALARM_FILTERS, DEFAULT_ALARM_FILTER_TABS, DEFAULT_ALARM_STATS, DEFAULT_BAS_SETTINGS, DEFAULT_CLAMP_RANGE, DEFAULT_DASHBOARD_KPIS$1 as DEFAULT_DASHBOARD_KPIS, DEFAULT_DAYS_WEEK, DEFAULT_DEVICE_OPERATIONAL_CARD_FILTER_STATE, DEFAULT_ENERGY_GROUP_COLORS, DEFAULT_EQUIPMENT_FILTER_STATE, DEFAULT_EQUIPMENT_STATS, DEFAULT_FANCOIL_SETTINGS, DEFAULT_FANCOIL_STATE, DEFAULT_FOOTER_COLORS, DEFAULT_GAS_GROUP_COLORS, DEFAULT_GRID_FILTER_STATE, DEFAULT_GRID_FILTER_TABS, DEFAULT_HEADER_DARK_THEME, DEFAULT_HEADER_LIGHT_THEME, DEFAULT_HEADER_SHOPPING_CONFIG, DEFAULT_HOLIDAY_SETTINGS, DEFAULT_HOLIDAY_STATE, DEFAULT_INTEGRATION_TABS, DEFAULT_IR_SCHEDULE, DEFAULT_IR_SETTINGS, DEFAULT_IR_STATE, DEFAULT_SETTINGS as DEFAULT_MEASUREMENT_SETTINGS, DEFAULT_MENU_CONFIG, DEFAULT_MENU_SHOPPING_CONFIG, DEFAULT_ON_OFF_SCHEDULE, DEFAULT_ON_OFF_SETTINGS, DEFAULT_ON_OFF_STATE, DEFAULT_SETPOINT_SCHEDULE, DEFAULT_SETPOINT_SETTINGS, DEFAULT_SETPOINT_STATE, DEFAULT_SHOPPING_CARDS, DEFAULT_SHOPPING_COLORS, DEFAULT_SIDEBAR_CONFIG, DEFAULT_SOLENOID_SETTINGS, DEFAULT_SOLENOID_STATE, DEFAULT_SWITCH_SETTINGS, DEFAULT_SWITCH_STATE, DEFAULT_TABS, DEFAULT_WATER_GROUP_COLORS, DEVICE_COUNT_KEYS, DEVICE_OPERATIONAL_CARD_GRID_STYLES, DEVICE_OPERATIONAL_CARD_STYLES, DEVICE_TYPES, DEVICE_TYPE_DOMAIN, type DashboardEnergySummary, type DashboardKPIs$1 as DashboardKPIs, type DashboardPeriod$1 as DashboardPeriod, type DashboardWaterSummary, type DateRangeControl, type DateRangeInputController, type DateRangeResult, type DaysWeek, type DemandModalInstance, type DemandModalParams, type DemandModalPdfConfig, type DemandModalStyles, type DeviceAlarmStatApiItem, type DeviceAttributes, type DeviceAvailability, DeviceCategory, type DeviceComparisonData, DeviceComparisonTooltip, ContextType as DeviceContextType, type DeviceCountKeys, DomainType$2 as DeviceDomainType, DeviceGridV6Controller, type CardGridCustomStyle as DeviceGridV6CustomStyle, type DeviceGridV6Instance, type CardGridItem as DeviceGridV6Item, type DeviceGridV6Params, type SortMode as DeviceGridV6SortMode, type DeviceGridV6Stats, DeviceGridV6View, DeviceGridWidgetFactory, type DeviceInfo$2 as DeviceInfo, type DeviceMultipliers, DeviceOperationalCardController, type DeviceOperationalCardEventHandler, type DeviceOperationalCardEventType, type DeviceOperationalCardFilterState, DeviceOperationalCardGridController, type DeviceOperationalCardGridEventHandler, type DeviceOperationalCardGridEventType, type DeviceOperationalCardGridFilterState, type DeviceOperationalCardGridInstance, type DeviceOperationalCardGridParams, type SortMode$1 as DeviceOperationalCardGridSortMode, type DeviceOperationalCardGridState, type DeviceOperationalCardGridStats, type ThemeMode$1 as DeviceOperationalCardGridThemeMode, DeviceOperationalCardGridView, type DeviceOperationalCardInstance, type DeviceOperationalCardParams, type DeviceOperationalCardState, type ThemeMode$2 as DeviceOperationalCardThemeMode, DeviceOperationalCardView, type DeviceRelation, type DeviceStatusName, DeviceStatusType, type DeviceType, type DeviceTypeConfig, type DeviceTypeLimits, type DistributionChartConfig, type DistributionChartInstance, type DistributionData, type DistributionDomain, type DistributionMode$2 as DistributionMode, type DistributionThemeColors, DomainType$3 as DomainType, type DonutChartOptions, type DowntimeEntry$1 as DowntimeEntry, ENERGY_SORT_OPTIONS, ENERGY_UNITS, EQUIPMENT_CLASSIFICATION_CONFIG, STATUS_CONFIG as EQUIPMENT_STATUS_CONFIG, TYPE_CONFIG as EQUIPMENT_TYPE_CONFIG, EXPORT_DEFAULT_COLORS, EXPORT_DOMAIN_ICONS, EXPORT_DOMAIN_LABELS, EXPORT_DOMAIN_UNITS, type EnergyDisplaySettings, type EnergyEntityData, type EnergyKPI, type EnergyModalContext, type EnergyModalError, type EnergyModalI18n, type EnergyModalStyleOverrides, type ChartType$1 as EnergyPanelChartType, type ConsumptionDataPoint$1 as EnergyPanelConsumptionDataPoint, type DistributionDataPoint$1 as EnergyPanelDistributionDataPoint, type DistributionMode$1 as EnergyPanelDistributionMode, type EnergyCategoryData as EnergyPanelEnergyCategoryData, type EnergySummaryData as EnergyPanelEnergySummaryData, type FetchConsumptionFn$1 as EnergyPanelFetchConsumptionFn, type FetchDistributionFn$1 as EnergyPanelFetchDistributionFn, type EnergyPanelInstance, type OnFilterChangeCallback$2 as EnergyPanelOnFilterChangeCallback, type OnMaximizeCallback$1 as EnergyPanelOnMaximizeCallback, type OnPeriodChangeCallback$2 as EnergyPanelOnPeriodChangeCallback, type OnRefreshCallback$2 as EnergyPanelOnRefreshCallback, type OnVizModeChangeCallback$1 as EnergyPanelOnVizModeChangeCallback, type EnergyPanelParams, type PeriodDays$1 as EnergyPanelPeriodDays, type EnergyPanelState, type ThemeMode$9 as EnergyPanelThemeMode, type VizMode$1 as EnergyPanelVizMode, EnergyRangeTooltip, type EnergyStatus, type EnergyStatusResult, EnergySummaryTooltip, type EnergyUnit, type EntityListItem, EntityListPanel, type EntityListPanelOptions, type EquipmentAction, type EquipmentCardData, EquipmentCategory, type EquipmentFilterState, type EquipmentKPI, type EquipmentStats, type EquipmentStatus$1 as EquipmentStatus, type EquipmentType$1 as EquipmentType, type ExcludeGroupsTotals, ExclusionGroupsTab, type ExclusionGroupsTabConfig, type ExportColorsPallet, type ExportComparisonData, type ExportConfigTemplate, type ExportCustomerData, type ExportCustomerInfo, type ExportData, type ExportDataInput, type ExportDataInstance, type ExportDataPoint, type ExportDeviceInfo, type ExportDomain, type ExportFormat, type ExportGroupData, type ExportOptions, type ExportProgressCallback, type ExportResult, type ExportStats, type ExportType, FANCOIL_IMAGES, FANCOIL_REMOTE_CSS_PREFIX, FILTER_GROUPS, FILTER_TAB_ICONS, DEFAULT_CONFIG_TEMPLATE as FOOTER_DEFAULT_CONFIG_TEMPLATE, DEFAULT_DARK_THEME as FOOTER_DEFAULT_DARK_THEME, DEFAULT_LIGHT_THEME as FOOTER_DEFAULT_LIGHT_THEME, type FancoilMode, FancoilRemoteController, type FancoilRemoteInstance, type FancoilRemoteParams, type FancoilRemoteSettings, FancoilRemoteView, type FancoilState, type FancoilStatus, type FancoilThemeMode, type FilterCategory, type FilterState$1 as FilterCategoryState, type FilterGroup, FilterModalComponent, FilterModalController, type FilterModalDomain, type FilterModalInstance, type FilterModalOptions, type FilterModalParams, type FilterModalState, type FilterModalThemeMode, FilterModalView, type SortMode$3 as FilterSortMode, type FilterSortOption, type FilterTab, type FilterableDevice, type FooterColors, type FooterComponentInstance, type FooterComponentParams, type FooterConfigTemplate, type SelectedEntity as FooterSelectedEntity, type FooterThemeConfig, type FooterThemeMode, type UnitType as FooterUnitType, type FreshDeskConversation, type FreshDeskTicket, FreshdeskClientModule as FreshdeskClient, type FreshdeskTicketSummary, type GCDRAssignment, type GCDRBundleAsset, type GCDRBundleDevice, type GCDRBundleRule, type GCDRCustomerBundle, type GCDREntity, type GCDRPolicy, type ProgressCallback as GCDRProgressCallback, type GCDRRole, type GCDRSyncModalParams, type GCDRSyncPlan, type GCDRSyncResult, type TBAsset as GCDRTBAsset, type TBCustomer as GCDRTBCustomer, type TBDevice as GCDRTBDevice, type TBServerScopeAttrs as GCDRTBServerScopeAttrs, GRID_SORT_OPTIONS, type GatewayInfo, type CustomerOption$1 as GridCustomerOption, type EquipmentStatus as GridEquipmentStatus, type EquipmentType as GridEquipmentType, type GridFilterTab, type GridSortOption, type GroupColors, HEADER_CSS_PREFIX, DEFAULT_CARD_COLORS as HEADER_DEFAULT_CARD_COLORS, HEADER_DEFAULT_CONFIG_TEMPLATE, HEADER_DEFAULT_LOGO_URL, HEADER_DEVICES_GRID_STYLES, HEADER_SHOPPING_CSS_PREFIX, HEADER_STYLE_DARK, HEADER_STYLE_DEFAULT, HEADER_STYLE_PREMIUM_GREEN, HEADER_STYLE_SLIM, type CardColorConfig as HeaderCardColorConfig, type HeaderCardColors, type CardType as HeaderCardType, type HeaderComponentInstance, type HeaderComponentParams, type HeaderConfigTemplate, type HeaderDevice, type HeaderDevicesDomain, HeaderDevicesGridController, type HeaderDevicesGridInstance, type HeaderDevicesGridParams, HeaderDevicesGridView, type HeaderDevicesThemeMode, type HeaderDomainConfig, type HeaderEventType, HeaderFilterModal, type FilterPreset as HeaderFilterPreset, type FilterSelection as HeaderFilterSelection, type HeaderLabels, HeaderPanelComponent, type HeaderPanelOptions, type HeaderPanelStyle, type Shopping$2 as HeaderShopping, type HeaderShoppingConfigTemplate, type ContractState as HeaderShoppingContractState, type DomainType$1 as HeaderShoppingDomainType, type HeaderShoppingEventHandler, type HeaderShoppingEventType, type HeaderShoppingInstance, type HeaderShoppingParams, type HeaderShoppingPeriod, HeaderShoppingView, type HeaderStats, type HeaderThemeConfig, type HeaderThemeMode, HeaderView, type HolidayEntry, IMPORTANCE_COLORS, IMPORTANCE_LABELS, IMPORTANCE_LABELS_EN, type IRCommand, type IRGroupScheduleEntry, type IRScheduleEntry, type ImportanceLevel$2 as ImportanceLevel, type InferredDeviceType, InfoTooltip, type InstantaneousPowerLimits, type IntegrationTab, type IntegrationTabId, type IntegrationsModalInstance, type IntegrationsModalOptions, type IntegrationsThemeMode, LoadingSpinner, type LogAnnotationsAttribute, LogHelper, DOMAIN_CONFIG$2 as MEASUREMENT_DOMAIN_CONFIG, MENU_SHOPPING_CSS_PREFIX, METRO_TILE_COLORS, MOTOR_SORT_OPTIONS, type MeasurementDisplaySettings, type MeasurementSetupError, type MeasurementSetupFormData, type MeasurementSetupModalInstance, type MeasurementSetupModalParams, type MeasurementSetupModalStyles, type PersistResult as MeasurementSetupPersistResult, type MenuComponentInstance, type MenuComponentParams, type MenuConfigTemplate, MenuController, type MenuEventHandler, type MenuEventType, type MenuShoppingConfigTemplate, type DashboardStateEvent as MenuShoppingDashboardStateEvent, type DomainType as MenuShoppingDomainType, type MenuShoppingEventHandler, type MenuShoppingEventType, type MenuShoppingInstance, type MenuShoppingParams, type MenuShoppingSettings, type MenuShoppingTab, type MenuShoppingUserInfo, MenuShoppingView, type MenuState, type ThingsboardWidgetContext as MenuThingsboardWidgetContext, MenuView, type MetroTile, type ExportFormat$2 as ModalExportFormat, ModalHeader, type ModalHeaderConfig, type ModalHeaderController, type ModalHeaderControllerOptions, type ModalHeaderHandlers, type ModalHeaderInstance, type ModalHeaderOptions, type ModalTheme, type MyIOAuthConfig, MyIOAuthContext, type MyIOAuthInstance, MyIOChartModal, MyIODraggableCard, MyIOSelectionStore, MyIOSelectionStoreClass, MyIOToast, type NewAnnotationData, NewTicketWizard, type NewTicketWizardConfig, type NotificationInfo, type NotificationsSummaryData, NotificationsSummaryTooltip, OFFLINE_STATUSES, ONLINE_STATUSES, ONOFF_TIMELINE_CSS_PREFIX, DEFAULT_DEVICE_CONFIG as ON_OFF_DEFAULT_DEVICE_CONFIG, DEFAULT_MODAL_STATE as ON_OFF_DEFAULT_MODAL_STATE, DEVICE_CONFIG as ON_OFF_DEVICE_CONFIG, ON_OFF_DEVICE_PROFILES, ON_OFF_MODAL_CSS_PREFIX, AVAILABILITY_THRESHOLDS as OPERATIONAL_AVAILABILITY_THRESHOLDS, DEFAULT_DASHBOARD_KPIS as OPERATIONAL_DASHBOARD_DEFAULT_KPIS, PERIOD_OPTIONS as OPERATIONAL_DASHBOARD_PERIOD_OPTIONS, OPERATIONAL_DASHBOARD_STYLES, OPERATIONAL_GENERAL_LIST_STYLES, OPERATIONAL_HEADER_DEVICES_GRID_STYLES, STATUS_CONFIG$1 as OPERATIONAL_STATUS_CONFIG, type OnAlarmActionCallback, type OnAlarmClickCallback, type OnAlarmFilterChangeCallback, type OnAlarmStatsUpdateCallback, type OnEquipmentActionCallback, type OnEquipmentClickCallback, type OnGridFilterChangeCallback, type OnGridStatsUpdateCallback, type OnOffActivationPoint, type OnOffDeviceData, OnOffDeviceModalController, type OnOffDeviceModalInstance, type OnOffDeviceModalParams, type OnOffDeviceModalState, OnOffDeviceModalView, type OnOffScheduleEntry as OnOffDeviceScheduleEntry, type OnOffDeviceThemeMode, type OnOffDeviceType, type OnOffGroupScheduleEntry, type OnOffModalView, type OnOffScheduleEntry$1 as OnOffScheduleEntry, type OnOffTimelineChartConfig, type OnOffTimelineChartInstance, type OnOffTimelineChartParams, type OnOffTimelineData, type OnOffTimelineSegment, type OnboardFooterLink, type OnboardModalConfig, type OnboardModalHandle, OnboardModalView, type OpenContractDevicesModalParams, type OpenDashboardPopupEnergyOptions, type OpenDashboardPopupSettingsParams, type OpenDashboardPopupWaterTankOptions, type OpenUserManagementParams, type OperationalComparisonModalInstance, type OperationalComparisonModalParams, type OperationalContextChangeEvent, type OperationalDashboardInstance, type DashboardKPIs as OperationalDashboardKPIs, type OperationalDashboardParams, type DashboardPeriod as OperationalDashboardPeriod, type DashboardThemeMode as OperationalDashboardThemeMode, type OperationalDevice, type DowntimeEntry as OperationalDowntimeEntry, type OperationalEquipment, type OperationalEquipmentReadyEvent, OperationalGeneralListController, type OperationalGeneralListInstance, type OperationalGeneralListParams, type OperationalGeneralListState, OperationalGeneralListView, type OperationalHeaderDevicesGridInstance, type OperationalHeaderDevicesGridParams, OperationalHeaderDevicesGridView, type OperationalHeaderLabels, type OperationalHeaderStats, type OperationalHeaderThemeMode, type OperationalIndicatorsAccessEvent, type OperationalIndicatorsAttributes, type OperationalListEventHandler, type OperationalListEventType, type ThemeMode$3 as OperationalListThemeMode, type StatusConfig as OperationalStatusConfig, type OperationalStore, type TrendDataPoint as OperationalTrendDataPoint, PERM, DEVICE_TYPES$1 as POWER_LIMITS_DEVICE_TYPES, STATUS_CONFIG$2 as POWER_LIMITS_STATUS_CONFIG, TELEMETRY_TYPES as POWER_LIMITS_TELEMETRY_TYPES, type PaginationState, type PdfLayout, type Period, type Permission, type PermissionSet, type PersistResult$1 as PersistResult, type PowerLimitsError, type PowerLimitsFormData, type PowerLimitsModalInstance, type PowerLimitsModalParams, type PowerLimitsModalStyles, type PowerRange, type PowerRanges, type PresetupDevice, type PresetupGatewayInstance, type PresetupGatewayOptions, type RealTimeTelemetryInstance, type RealTimeTelemetryParams, SCHEDULE_HOLIDAY_CSS_PREFIX, SCHEDULE_IR_CSS_PREFIX, SCHEDULE_ON_OFF_CSS_PREFIX, SCHEDULE_SETPOINT_CSS_PREFIX, SCHED_CSS_PREFIX, SEVERITY_ORDER, SIDEBAR_ICONS, SIDEBAR_MENU_CSS_PREFIX, SOLENOID_CONTROL_CSS_PREFIX, SOLENOID_IMAGES, STATUS_COLORS, STATUS_LABELS, STATUS_LABELS_EN, STATUS_TO_CONNECTIVITY, SWITCH_CONTROL_CSS_PREFIX, type ScheduleEntryBase, ScheduleHolidayController, type ScheduleHolidayInstance, type ScheduleHolidayParams, type ScheduleHolidaySettings, type ScheduleHolidayState, ScheduleHolidayView, ScheduleIRController, type ScheduleIRInstance, type ScheduleIRParams, type ScheduleIRSettings, type ScheduleIRState, ScheduleIRView, ScheduleOnOffController, type ScheduleOnOffInstance, type ScheduleOnOffParams, type ScheduleOnOffSettings, type ScheduleOnOffState, ScheduleOnOffView, ScheduleSetpointController, type ScheduleSetpointDevices, type ScheduleSetpointInstance, type ScheduleSetpointParams, type ScheduleSetpointSettings, type ScheduleSetpointState, ScheduleSetpointView, type SchedulingBaseSettings, type ConfirmFn as SchedulingConfirmFn, type NotifyFn as SchedulingNotifyFn, type SchedulingThemeMode, type SetpointScheduleEntry, type SettingsError, type SettingsEvent, type Shopping$1 as Shopping, type ShoppingCard, type ShoppingCardDeviceCounts, type ShoppingCardMetaCounts, type ShoppingColors, type ShoppingDataPoint, type SidebarFooterConfig, type SidebarHeaderConfig, type SidebarMenuConfig, SidebarMenuController, type SidebarMenuInstance, type SidebarMenuItem, type SidebarMenuSection, SidebarMenuView, type SidebarState, type SidebarThemeMode, SolenoidControlController, type SolenoidControlInstance, type SolenoidControlParams, type SolenoidControlSettings, SolenoidControlView, type SolenoidState, type SolenoidStatus, type SolenoidThemeMode, type StatusLimits, type StatusSummary$1 as StatusSummary, type StoreRow, type SubAmbienteItem, SwitchControlController, type SwitchControlInstance, type SwitchControlParams, type SwitchControlSettings, SwitchControlView, type SwitchState, type SwitchStatus, type SwitchThemeMode, type SyncAction, type SyncActionType, type SyncOutcome, type SyncResult, type TBCurrentUser, type TBUser, type TBUserPage, CONTEXT_CONFIG$1 as TELEMETRY_CONTEXT_CONFIG, DEFAULT_FILTER_TABS as TELEMETRY_DEFAULT_FILTER_TABS, DOMAIN_CONFIG$1 as TELEMETRY_DOMAIN_CONFIG, CONTEXT_CONFIG as TELEMETRY_GRID_SHOPPING_CONTEXT_CONFIG, DOMAIN_CONFIG as TELEMETRY_GRID_SHOPPING_DOMAIN_CONFIG, DEFAULT_CHART_COLORS as TELEMETRY_INFO_DEFAULT_CHART_COLORS, ENERGY_CATEGORY_CONFIG as TELEMETRY_INFO_ENERGY_CATEGORY_CONFIG, WATER_CATEGORY_CONFIG as TELEMETRY_INFO_WATER_CATEGORY_CONFIG, TEMPERATURE_SORT_OPTIONS, TEMPERATURE_UNITS, type TabConfig, type TbScope, type TelemetryConfigTemplate, type TelemetryContext$1 as TelemetryContext, type TelemetryDevice$1 as TelemetryDevice, type TelemetryDomain$2 as TelemetryDomain, type TelemetryFetcher, type FilterState$2 as TelemetryFilterState, TelemetryGridController, type TelemetryGridEventType, type TelemetryGridInstance, type TelemetryGridParams, type CardAction as TelemetryGridShoppingCardAction, type TelemetryContext as TelemetryGridShoppingContext, type TelemetryDevice as TelemetryGridShoppingDevice, type TelemetryDomain$1 as TelemetryGridShoppingDomain, type FilterState as TelemetryGridShoppingFilterState, type TelemetryGridShoppingInstance, type TelemetryGridShoppingParams, type SortMode$2 as TelemetryGridShoppingSortMode, type TelemetryStats as TelemetryGridShoppingStats, type ThemeMode$5 as TelemetryGridShoppingThemeMode, TelemetryGridView, type CategoryType as TelemetryInfoCategoryType, type ChartColors as TelemetryInfoChartColors, type EnergyState as TelemetryInfoEnergyState, type EnergySummary as TelemetryInfoEnergySummary, type TelemetryDomain as TelemetryInfoShoppingDomain, type TelemetryInfoShoppingInstance, type TelemetryInfoShoppingParams, type ThemeMode$4 as TelemetryInfoShoppingThemeMode, type WaterState as TelemetryInfoWaterState, type WaterSummary as TelemetryInfoWaterSummary, type Shopping as TelemetryShopping, type SortMode$4 as TelemetrySortMode, type TelemetryStats$1 as TelemetryStats, type ThemeMode$c as TelemetryThemeMode, type TelemetryTypeLimits, type TempComparisonData, TempComparisonTooltip, type TempEntityData, TempRangeTooltip, type TempSensorDevice, type TempSensorSummaryData, TempSensorSummaryTooltip, type TempStatus, type TempStatusResult, type TemperatureComparisonModalInstance, type TemperatureComparisonModalParams, type TemperatureDevice, type TemperatureDisplaySettings, type TemperatureGranularity, type TemperatureKPI, type TemperatureModalInstance, type TemperatureModalParams, type TemperatureSettingsInstance, type TemperatureSettingsParams, type TemperatureStats, type TemperatureTelemetry, type TemperatureUnit, type ThingsboardCustomerAttrsConfig, type TicketDetailModalConfig, type TicketDetailModalHandle, type TicketMotivo, type TicketServiceOrchestratorShape, type TicketTypeId, type TicketsTabConfig, type TimedValue, type TopOffenderApiItem, type TrendChartOptions, type TrendDataPoint$1 as TrendDataPoint, type Customer as UpsellCustomer, type Device as UpsellDevice, type UpsellModalError, type UpsellModalInstance, type UpsellModalParams, type UpsellModalStyles, type UsageDataPoint, type UserInfo$2 as UserInfo, type UserRoleAssignmentsSnapshot, type UsersByRole, type UsersSummaryData, UsersSummaryTooltip, type UserInfo as UsersTooltipUserInfo, type ValidationMap, WAITING_STATUSES, WATER_DEVICE_CATEGORIES, WATER_SORT_OPTIONS, WATER_UNITS, DEFAULT_PALETTE as WELCOME_DEFAULT_PALETTE, type WaterCategorySummary, type WaterDisplaySettings, type WaterKPI, type ChartType as WaterPanelChartType, type ConsumptionDataPoint as WaterPanelConsumptionDataPoint, type DistributionDataPoint as WaterPanelDistributionDataPoint, type DistributionMode as WaterPanelDistributionMode, type FetchConsumptionFn as WaterPanelFetchConsumptionFn, type FetchDistributionFn as WaterPanelFetchDistributionFn, type WaterPanelInstance, type OnFilterChangeCallback$1 as WaterPanelOnFilterChangeCallback, type OnMaximizeCallback as WaterPanelOnMaximizeCallback, type OnPeriodChangeCallback$1 as WaterPanelOnPeriodChangeCallback, type OnRefreshCallback$1 as WaterPanelOnRefreshCallback, type OnVizModeChangeCallback as WaterPanelOnVizModeChangeCallback, type WaterPanelParams, type PeriodDays as WaterPanelPeriodDays, type WaterPanelState, type ThemeMode$8 as WaterPanelThemeMode, type VizMode as WaterPanelVizMode, type WaterCategoryData as WaterPanelWaterCategoryData, type WaterSummaryData as WaterPanelWaterSummaryData, type WaterRow, WaterSummaryTooltip, type WaterTankDataPoint, type WaterTankModalContext, type WaterTankModalError, type WaterTankModalI18n, type WaterTankModalStyleOverrides, type WaterTankTelemetryData, type WaterUnit, type WelcomeModalInstance, type WelcomeModalParams, type WelcomePalette, type UserInfo$1 as WelcomeUserInfo, type WizardDevice, addDetectionContext, addTicketNote as addFreshdeskTicketNote, addNamespace, aggregateByDay, appendFreshdeskTicketToTB, applyFilters as applyDeviceGridFilters, archiveAlarmAnnotation, assignShoppingColors, averageByDay, buildAmbienteGroupData, buildEntityObject as buildDeviceGridEntityObject, buildEquipmentCategoryDataForTooltip, buildEquipmentCategorySummary, buildListItemsThingsboardByUniqueDatasource, buildMyioIngestionAuth, buildTemplateExport, buildTicketServiceOrchestrator, buildWaterReportCSV, buildWaterStoresCSV, calcDeltaPercent, calculateAvailability$1 as calculateAvailability, calculateAvailability as calculateDashboardAvailability, calculateMTBF as calculateDashboardMTBF, calculateMTTR as calculateDashboardMTTR, calculateDeviceStatus, calculateDeviceStatusMasterRules, calculateDeviceStatusWithRanges, calculateStats as calculateExportStats, calculateFleetKPIs, calculateGroupMetrics, calculateMTBF$1 as calculateMTBF, calculateMTTR$1 as calculateMTTR, calculateShoppingDeviceCounts, calculateShoppingDeviceStats, calculateStats$1 as calculateStats, canModifyAnnotation, clampTemperature, classify, classifyEquipment, classifyEquipmentSubcategory, classifyWaterLabel, classifyWaterLabels, clearAllAuthCaches, clearFreshdeskTicketsOnTB, connectionStatusIcons, createActionButton, createAlarmCardElement, createAlarmsNotificationsPanelComponent, createAmbienteDetailModal, createAmbienteGroupModal, createAnnotationIndicator, createBASDashboard, createButtonBar, createConsumption7DaysChart, createConsumptionChartWidget, createConsumptionModal, createCustomerCardV1, createCustomerCardV2, createDateRangePicker, createDaysGrid, createBusyModal as createDeviceGridBusyModal, createState as createDeviceGridState, createDeviceGridV6, createDeviceItem, createDeviceItemsFromMap, createDeviceOperationalCardComponent, createDeviceOperationalCardGridComponent, createDistributionChartWidget, createEnergyPanelComponent, createErrorSpan, createFancoilRemote, createFilterModalComponent, createFooterComponent, createTicket as createFreshdeskTicket, createGroupScheduleCard, createHeaderComponent, createHeaderDevicesGridComponent, createHeaderShoppingComponent, createInputDateRangePickerInsideDIV, createLibraryVersionChecker, createLoadingSpinner, createLogHelper, createMenuComponent, createMenuShoppingComponent, createModalHeader, createNewTicketWizard, createOnOffDeviceModal, createOnOffTimelineChart, createOperationalDashboardComponent, createOperationalGeneralListComponent, createOperationalHeaderDevicesGridComponent, createPresetupGateway, createScheduleCard, createScheduleHoliday, createScheduleIR, createScheduleOnOff, createScheduleSetpoint, createSidebarMenu, createSolenoidControl, createSwitchControl, createTelemetryGridComponent, createTelemetryGridShoppingComponent, createTelemetryInfoShoppingComponent, createTicketDetailModal, createTicketsTab, createToggleSwitch, createWaterPanelComponent, createWidgetController, decodePayload, decodePayloadBase64Xor, deleteTicket as deleteFreshdeskTicket, detectContext, detectDeviceType, detectDomainAndContext, detectSuperAdminHolding, detectSuperAdminMyio, determineInterval, deviceStatusIcons, doSchedulesOverlap, exportGridCsv, exportGridPdf, exportGridXls, exportTemperatureCSV, exportToCSV, exportToCSVAll, extractEntityId, extractMyIOCredentials, extractPowerLimitsForDevice, fetchCurrentUserInfo, fetchTicketDetail as fetchFreshdeskTicketDetail, fetchBundle as fetchGCDRBundle, fetchOpenTickets, fetchTemperatureData, fetchThingsboardCustomerAttrsFromStorage, fetchThingsboardCustomerServerScopeAttrs, fetchTicketsForDevice, findValue, findValueWithDefault, fmtPerc$1 as fmtPerc, fmtPerc as fmtPercLegacy, formatAlarmRelativeTime, formatAllInSameUnit, formatAllInSameWaterUnit, formatPercentage as formatDashboardPercentage, formatDateForInput, formatDateToYMD, formatDateWithTimezoneOffset, formatDuration, formatEnergy$1 as formatEnergy, formatHours, formatNumberReadable, formatPower, formatRelativeTime, formatTankHeadFromCm, formatTemperature, formatTrend, formatWater$1 as formatWater, formatWaterByGroup, formatWaterVolumeM3, formatarDuracao, generateFilename as generateExportFilename, generateFilterModalStyles, generateMockDowntimeList, generateMockKPIs, generateMockOnOffTimelineData, generateMockTrendData, getActiveAnnotationCount, getAlarmAnnotations, getSeverityConfig as getAlarmSeverityConfig, getStateConfig as getAlarmStateConfig, getAnnotationPermissions, getAuthCacheStats, getAvailabilityColorFromThresholds, getAvailableContexts, getCategoryDisplayInfo, getConnectionStatusIcon, getDateRangeArray, getDefaultGroupColors, getDefaultPeriodCurrentDaySoFar, getDefaultPeriodCurrentMonthSoFar, getCachedData as getDeviceGridCachedData, getStatusCategory as getDeviceGridV6StatusCategory, getDeviceStatusCategory, getDeviceStatusIcon, getDeviceStatusInfo, getThemeColors as getDistributionThemeColors, getDomainFromDeviceType, getFirstDayOfMonth, getFirstDayOfMonthFor, getGroupColor, getHashColor, getImageByConsumption, getLastDayOfMonth, getModalHeaderStyles, getDeviceConfig as getOnOffDeviceConfig, getDeviceType as getOnOffDeviceType, getModalTitle as getOnOffModalTitle, getAvailabilityColor as getOperationalAvailabilityColor, getStatusColors as getOperationalStatusColors, getPeriodDateRange, getSaoPauloISOString, getSaoPauloISOStringFixed, getShoppingColor, getIcon as getSidebarIcon, getSuggestedIdentifier, getSuggestedProfiles, getTrendClass, getTrendIcon, getValueByDatakey, getValueByDatakeyLegacy, getWaterCategories, groupByDay, handleDeviceType, hasSelectedDays, initMyIOAuthContext, initOnOffTimelineTooltips, injectActionButtonStyles, injectAlarmsNotificationsPanelStyles, injectAmbienteGroupModalStyles, injectAmbienteModalStyles, injectBASDashboardStyles, injectCustomerCardV1Styles, injectCustomerCardV2Styles, injectStyles as injectDeviceGridV6Styles, injectDeviceOperationalCardGridStyles, injectDeviceOperationalCardStyles, injectFancoilRemoteStyles, injectHeaderDevicesGridStyles, injectHeaderShoppingStyles, injectMenuShoppingStyles, injectOnOffDeviceModalStyles, injectOnOffTimelineStyles, injectOperationalDashboardStyles, injectOperationalGeneralListStyles, injectOperationalHeaderDevicesGridStyles, injectScheduleHolidayStyles, injectScheduleIRStyles, injectScheduleOnOffStyles, injectScheduleSetpointStyles, injectSchedulingSharedStyles, injectSidebarMenuStyles, injectSolenoidControlStyles, injectSwitchControlStyles, interpolateTemperature, isAlarmActive, isConnectionStale, isDeviceOffline, isEndAfterStart, isEnergyDevice, isEntradaDevice, isEquipmentDevice, isHydrometerDevice, isInRange, isOnOffDeviceProfile, isSolenoidDevice, isStoreDevice, isTankDevice, isTelemetryStale, isTemperatureDevice, isValidConnectionStatus, isValidDeviceStatus, isValidTimeFormat, isWaterCategory, mapConnectionStatus, mapDeviceStatusToCardStatus, mapDeviceToConnectionStatus, myioExportData, normalizeConnectionStatus, normalizeRecipients, numbers, openAlarmBundleMapModal, openAlarmComparisonModal, openAlarmDetailsModal, openAmbienteDetailModal, openAmbienteGroupModal, openContractDevicesModal, openDashboardPopup, openDashboardPopupAllReport, openDashboardPopupEnergy, openDashboardPopupReport, openDashboardPopupSettings, openDashboardPopupWaterTank, openDemandModal, openGCDRSyncModal, openGoalsPanel, openHelpModal, openIntegrationsModal, openMeasurementSetupModal, openOnOffDeviceModal, openOnboardModal, openOperationalComparisonModal, openPowerLimitsSetupModal, openRealTimeTelemetryModal, openTemperatureComparisonModal, openTemperatureModal, openTemperatureSettingsModal, openTutorialModal, openUpsellModal, openUserManagementModal, openWelcomeModal, parseInputDateToDate, periodKey, readFreshdeskTicketsFromTB, recalculateDeviceStatus, recomputePercentages as recomputeDeviceGridPercentages, removeAlarmsNotificationsPanelStyles, removeBASDashboardStyles, removeDeviceOperationalCardGridStyles, removeDeviceOperationalCardStyles, removeOperationalDashboardStyles, removeOperationalGeneralListStyles, removeOperationalHeaderDevicesGridStyles, removeSchedulingSharedStyles, renderAlarmCard, renderCardAmbienteV6, renderCardComponent$3 as renderCardComponent, renderCardComponent$2 as renderCardComponentEnhanced, renderCardComponentHeadOffice, renderCardComponentLegacy, renderCardComponentV2, renderCardComponent$1 as renderCardComponentV5, renderCardComponentV6, renderCardComponent as renderCardComponentV6Alias, renderCardComponentV5 as renderCardV5, renderDowntimeList as renderDashboardDowntimeList, renderList as renderDeviceGridList, renderDualLineChart, renderKPICards, renderLineChart, renderOnOffTimelineChart, renderSeverityBarChart, renderStateDonutChart, renderStatusDonutChart, renderTrendChart, reopenTicket as reopenFreshdeskTicket, createDateInput as schedCreateDateInput, createNumberInput as schedCreateNumberInput, createSelect as schedCreateSelect, createTimeInput as schedCreateTimeInput, escapeHtml as schedEscapeHtml, showConfirmModal as schedShowConfirmModal, showNotificationModal as schedShowNotificationModal, shouldFlashIcon, sortDevices as sortDeviceGridDevices, strings, formatEnergy as telemetryInfoFormatEnergy, formatPercentage$1 as telemetryInfoFormatPercentage, formatWater as telemetryInfoFormatWater, temperatureDeviceStatusIcons, timeToMinutes, timeWindowFromInputYMD, toCSV, toFixedSafe, toSummary as toFreshdeskTicketSummary, updateStats as updateDeviceGridStats, updateTicket as updateFreshdeskTicket, upsertAlarmAnnotation, version, waterDeviceStatusIcons, writeFreshdeskSyncedAtToTB, writeFreshdeskTicketsToTB };
19189
+ export { ACTION_BUTTON_CSS_PREFIX, ALARMS_NOTIFICATIONS_PANEL_STYLES, SEVERITY_CONFIG as ALARM_SEVERITY_CONFIG, ALARM_SORT_OPTIONS, STATE_CONFIG as ALARM_STATE_CONFIG, AMBIENTE_GROUP_CSS_PREFIX, AMBIENTE_MODAL_CSS_PREFIX, ANNOTATION_TYPE_COLORS, ANNOTATION_TYPE_LABELS, ANNOTATION_TYPE_LABELS_EN, ActionButtonController, type ActionButtonInstance, type ActionButtonParams, type ActionButtonSettings, type ActionButtonSize, type ActionButtonThemeMode, type ActionButtonVariant, ActionButtonView, type AggregatedGroupMetrics, type Alarm, type AlarmAction, type AlarmAnnotation, type AlarmApiResponse, type AlarmBundleMapParams, type AlarmCardParams, type AlarmComparisonModalInstance, type AlarmComparisonModalParams, type AlarmFilterTab, type AlarmFilters, type AlarmInfo, type AlarmListApiResponse, type AlarmListParams, AlarmService, type AlarmSeverity, type AlarmSortMode, type AlarmSortOption, type AlarmState, type AlarmStats, type AlarmStatsApiResponse, type AlarmTrendApiPoint, type AlarmsEventHandler, type AlarmsEventType, AlarmsNotificationsPanelController, type AlarmsNotificationsPanelInstance, type AlarmsNotificationsPanelParams, type AlarmsNotificationsPanelState, AlarmsNotificationsPanelView, type AlarmsSummaryData, AlarmsSummaryTooltip, type AlarmsTab, type AmbienteChildDevice, type AmbienteData as AmbienteDetailData, type AmbienteDetailModalConfig, type AmbienteDetailModalInstance, type AmbienteEnergyDevice, type AmbienteGroupData, type AmbienteGroupModalConfig, type AmbienteGroupModalInstance, type AmbienteHierarchyNode, type AmbienteRemoteDevice, type Annotation, type AnnotationFilterState, AnnotationIndicator, type AnnotationIndicatorConfig, type AnnotationIndicatorTheme, type AnnotationStatus, type AnnotationSummary, AnnotationTooltip, type AnnotationType$2 as AnnotationType, type AppliedFilters, type AuditAction, type AuditEntry, type AuthConfig, type AuthContextSnapshot, type AvailabilityFleet, type AvailabilityParams, type AvailabilityResponse, type AvailabilityStatus, type AvailabilitySummary, BASDashboardController, type BASDashboardData, type BASDashboardInstance, type BASDashboardParams, type BASDashboardSettings, type BASDashboardState, type BASDashboardThemeMode, BASDashboardView, type BASEventType, type HVACDevice as BASHVACDevice, type HVACDeviceStatus as BASHVACDeviceStatus, type MotorDevice as BASMotorDevice, type MotorDeviceStatus as BASMotorDeviceStatus, type MotorDeviceType as BASMotorDeviceType, type WaterDevice as BASWaterDevice, type WaterDeviceStatus as BASWaterDeviceStatus, type WaterDeviceType as BASWaterDeviceType, BAS_DASHBOARD_CSS_PREFIX, BAS_DASHBOARD_STYLES, type BarChartOptions, type BuildTemplateExportParams, CHART_COLORS, DEFAULT_COLORS as CONSUMPTION_CHART_COLORS, DEFAULT_CONFIG as CONSUMPTION_CHART_DEFAULTS, THEME_COLORS as CONSUMPTION_THEME_COLORS, type CardGridCustomStyle, type CardGridItem, CardGridPanel, type CardGridPanelOptions, type CardKPIs, type CategorySummary, type ChartDomain, type ClampRange, type ColumnSummaryData, type ColumnSummaryDevice, ColumnSummaryTooltip, ConnectionStatusType, type Consumption7DaysColors, type Consumption7DaysConfig, type Consumption7DaysData, type Consumption7DaysInstance, type ChartType$2 as ConsumptionChartType, type ConsumptionDataPoint$2 as ConsumptionDataPoint, type IdealRangeConfig as ConsumptionIdealRangeConfig, type ConsumptionModalConfig, type ConsumptionModalInstance, type TemperatureConfig as ConsumptionTemperatureConfig, type TemperatureReferenceLine as ConsumptionTemperatureReferenceLine, type ThemeColors as ConsumptionThemeColors, type ThemeMode$e as ConsumptionThemeMode, type VizMode$2 as ConsumptionVizMode, type ConsumptionWidgetConfig, type ConsumptionWidgetInstance, type ContextOption, type ContractDeviceCounts, type ContractDevicesError, type ContractDevicesPersistResult, type ContractDomain, type ContractDomainCounts, type ContractSummaryData, ContractSummaryTooltip, type ContractTemperatureCounts, type CreateAssetDto, type CreateCustomerDto, type CreateDateRangePickerOptions, type CreateDeviceDto, type CreateInputDateRangePickerInsideDIVParams, type CustomerCardData$1 as CustomerCardData, type CustomerCardDeviceCounts$1 as CustomerCardDeviceCounts, type CustomerCardMetaCounts$1 as CustomerCardMetaCounts, type ThemeMode$b as CustomerCardThemeMode, CustomerCardV1, type CustomerCardV1Instance, type CustomerCardV1Params, CustomerCardV2, type CustomerCardV2Instance, type CustomerCardV2Params, type CustomerOption, DAY_LABELS, DAY_LABELS_FULL, DECIMAL_OPTIONS, DEFAULT_ACTION_BUTTON_SETTINGS, DEFAULT_ALARM_FILTERS, DEFAULT_ALARM_FILTER_TABS, DEFAULT_ALARM_STATS, DEFAULT_BAS_SETTINGS, DEFAULT_CLAMP_RANGE, DEFAULT_DASHBOARD_KPIS$1 as DEFAULT_DASHBOARD_KPIS, DEFAULT_DAYS_WEEK, DEFAULT_DEVICE_OPERATIONAL_CARD_FILTER_STATE, DEFAULT_ENERGY_GROUP_COLORS, DEFAULT_EQUIPMENT_FILTER_STATE, DEFAULT_EQUIPMENT_STATS, DEFAULT_FANCOIL_SETTINGS, DEFAULT_FANCOIL_STATE, DEFAULT_FOOTER_COLORS, DEFAULT_GAS_GROUP_COLORS, DEFAULT_GRID_FILTER_STATE, DEFAULT_GRID_FILTER_TABS, DEFAULT_HEADER_DARK_THEME, DEFAULT_HEADER_LIGHT_THEME, DEFAULT_HEADER_SHOPPING_CONFIG, DEFAULT_HOLIDAY_SETTINGS, DEFAULT_HOLIDAY_STATE, DEFAULT_INTEGRATION_TABS, DEFAULT_IR_SCHEDULE, DEFAULT_IR_SETTINGS, DEFAULT_IR_STATE, DEFAULT_SETTINGS as DEFAULT_MEASUREMENT_SETTINGS, DEFAULT_MENU_CONFIG, DEFAULT_MENU_SHOPPING_CONFIG, DEFAULT_ON_OFF_SCHEDULE, DEFAULT_ON_OFF_SETTINGS, DEFAULT_ON_OFF_STATE, DEFAULT_SETPOINT_SCHEDULE, DEFAULT_SETPOINT_SETTINGS, DEFAULT_SETPOINT_STATE, DEFAULT_SHOPPING_CARDS, DEFAULT_SHOPPING_COLORS, DEFAULT_SIDEBAR_CONFIG, DEFAULT_SOLENOID_SETTINGS, DEFAULT_SOLENOID_STATE, DEFAULT_SWITCH_SETTINGS, DEFAULT_SWITCH_STATE, DEFAULT_TABS, DEFAULT_WATER_GROUP_COLORS, DEVICE_COUNT_KEYS, DEVICE_OPERATIONAL_CARD_GRID_STYLES, DEVICE_OPERATIONAL_CARD_STYLES, DEVICE_TYPES, DEVICE_TYPE_DOMAIN, type DashboardEnergySummary, type DashboardKPIs$1 as DashboardKPIs, type DashboardPeriod$1 as DashboardPeriod, type DashboardWaterSummary, type DateRangeControl, type DateRangeInputController, type DateRangeResult, type DaysWeek, type DemandModalInstance, type DemandModalParams, type DemandModalPdfConfig, type DemandModalStyles, type DeviceAlarmStatApiItem, type DeviceAttributes, type DeviceAvailability, DeviceCategory, type DeviceComparisonData, DeviceComparisonTooltip, ContextType as DeviceContextType, type DeviceCountKeys, DomainType$2 as DeviceDomainType, DeviceGridV6Controller, type CardGridCustomStyle as DeviceGridV6CustomStyle, type DeviceGridV6Instance, type CardGridItem as DeviceGridV6Item, type DeviceGridV6Params, type SortMode as DeviceGridV6SortMode, type DeviceGridV6Stats, DeviceGridV6View, DeviceGridWidgetFactory, type DeviceInfo$2 as DeviceInfo, type DeviceMultipliers, DeviceOperationalCardController, type DeviceOperationalCardEventHandler, type DeviceOperationalCardEventType, type DeviceOperationalCardFilterState, DeviceOperationalCardGridController, type DeviceOperationalCardGridEventHandler, type DeviceOperationalCardGridEventType, type DeviceOperationalCardGridFilterState, type DeviceOperationalCardGridInstance, type DeviceOperationalCardGridParams, type SortMode$1 as DeviceOperationalCardGridSortMode, type DeviceOperationalCardGridState, type DeviceOperationalCardGridStats, type ThemeMode$1 as DeviceOperationalCardGridThemeMode, DeviceOperationalCardGridView, type DeviceOperationalCardInstance, type DeviceOperationalCardParams, type DeviceOperationalCardState, type ThemeMode$2 as DeviceOperationalCardThemeMode, DeviceOperationalCardView, type DeviceRelation, type DeviceStatusName, DeviceStatusType, type DeviceType, type DeviceTypeConfig, type DeviceTypeLimits, type DistributionChartConfig, type DistributionChartInstance, type DistributionData, type DistributionDomain, type DistributionMode$2 as DistributionMode, type DistributionThemeColors, DomainType$3 as DomainType, type DonutChartOptions, type DowntimeEntry$1 as DowntimeEntry, ENERGY_SORT_OPTIONS, ENERGY_UNITS, EQUIPMENT_CLASSIFICATION_CONFIG, STATUS_CONFIG as EQUIPMENT_STATUS_CONFIG, TYPE_CONFIG as EQUIPMENT_TYPE_CONFIG, EXPORT_DEFAULT_COLORS, EXPORT_DOMAIN_ICONS, EXPORT_DOMAIN_LABELS, EXPORT_DOMAIN_UNITS, type EnergyDisplaySettings, type EnergyEntityData, type EnergyKPI, type EnergyModalContext, type EnergyModalError, type EnergyModalI18n, type EnergyModalStyleOverrides, type ChartType$1 as EnergyPanelChartType, type ConsumptionDataPoint$1 as EnergyPanelConsumptionDataPoint, type DistributionDataPoint$1 as EnergyPanelDistributionDataPoint, type DistributionMode$1 as EnergyPanelDistributionMode, type EnergyCategoryData as EnergyPanelEnergyCategoryData, type EnergySummaryData as EnergyPanelEnergySummaryData, type FetchConsumptionFn$1 as EnergyPanelFetchConsumptionFn, type FetchDistributionFn$1 as EnergyPanelFetchDistributionFn, type EnergyPanelInstance, type OnFilterChangeCallback$2 as EnergyPanelOnFilterChangeCallback, type OnMaximizeCallback$1 as EnergyPanelOnMaximizeCallback, type OnPeriodChangeCallback$2 as EnergyPanelOnPeriodChangeCallback, type OnRefreshCallback$2 as EnergyPanelOnRefreshCallback, type OnVizModeChangeCallback$1 as EnergyPanelOnVizModeChangeCallback, type EnergyPanelParams, type PeriodDays$1 as EnergyPanelPeriodDays, type EnergyPanelState, type ThemeMode$9 as EnergyPanelThemeMode, type VizMode$1 as EnergyPanelVizMode, EnergyRangeTooltip, type EnergyStatus, type EnergyStatusResult, EnergySummaryTooltip, type EnergyUnit, type EntityListItem, EntityListPanel, type EntityListPanelOptions, type EquipmentAction, type EquipmentCardData, EquipmentCategory, type EquipmentFilterState, type EquipmentKPI, type EquipmentStats, type EquipmentStatus$1 as EquipmentStatus, type EquipmentType$1 as EquipmentType, type ExcludeGroupsTotals, ExclusionGroupsTab, type ExclusionGroupsTabConfig, type ExportColorsPallet, type ExportComparisonData, type ExportConfigTemplate, type ExportCustomerData, type ExportCustomerInfo, type ExportData, type ExportDataInput, type ExportDataInstance, type ExportDataPoint, type ExportDeviceInfo, type ExportDomain, type ExportFormat, type ExportGroupData, type ExportOptions, type ExportProgressCallback, type ExportResult, type ExportStats, type ExportType, FANCOIL_IMAGES, FANCOIL_REMOTE_CSS_PREFIX, FILTER_GROUPS, FILTER_TAB_ICONS, DEFAULT_CONFIG_TEMPLATE as FOOTER_DEFAULT_CONFIG_TEMPLATE, DEFAULT_DARK_THEME as FOOTER_DEFAULT_DARK_THEME, DEFAULT_LIGHT_THEME as FOOTER_DEFAULT_LIGHT_THEME, type FancoilMode, FancoilRemoteController, type FancoilRemoteInstance, type FancoilRemoteParams, type FancoilRemoteSettings, FancoilRemoteView, type FancoilState, type FancoilStatus, type FancoilThemeMode, type FilterCategory, type FilterState$1 as FilterCategoryState, type FilterGroup, FilterModalComponent, FilterModalController, type FilterModalDomain, type FilterModalInstance, type FilterModalOptions, type FilterModalParams, type FilterModalState, type FilterModalThemeMode, FilterModalView, type SortMode$3 as FilterSortMode, type FilterSortOption, type FilterTab, type FilterableDevice, type FooterColors, type FooterComponentInstance, type FooterComponentParams, type FooterConfigTemplate, type SelectedEntity as FooterSelectedEntity, type FooterThemeConfig, type FooterThemeMode, type UnitType as FooterUnitType, type FreshDeskConversation, type FreshDeskTicket, FreshdeskClientModule as FreshdeskClient, type FreshdeskTicketSummary, type GCDRAssignment, type GCDRBundleAsset, type GCDRBundleDevice, type GCDRBundleRule, type GCDRCustomerBundle, type GCDREntity, type GCDRPolicy, type ProgressCallback as GCDRProgressCallback, type GCDRRole, type GCDRSyncModalParams, type GCDRSyncPlan, type GCDRSyncResult, type TBAsset as GCDRTBAsset, type TBCustomer as GCDRTBCustomer, type TBDevice as GCDRTBDevice, type TBServerScopeAttrs as GCDRTBServerScopeAttrs, GRID_SORT_OPTIONS, type GatewayInfo, type CustomerOption$1 as GridCustomerOption, type EquipmentStatus as GridEquipmentStatus, type EquipmentType as GridEquipmentType, type GridFilterTab, type GridSortOption, type GroupColors, HEADER_CSS_PREFIX, DEFAULT_CARD_COLORS as HEADER_DEFAULT_CARD_COLORS, HEADER_DEFAULT_CONFIG_TEMPLATE, HEADER_DEFAULT_LOGO_URL, HEADER_DEVICES_GRID_STYLES, HEADER_SHOPPING_CSS_PREFIX, HEADER_STYLE_DARK, HEADER_STYLE_DEFAULT, HEADER_STYLE_PREMIUM_GREEN, HEADER_STYLE_SLIM, type CardColorConfig as HeaderCardColorConfig, type HeaderCardColors, type CardType as HeaderCardType, type HeaderComponentInstance, type HeaderComponentParams, type HeaderConfigTemplate, type HeaderDevice, type HeaderDevicesDomain, HeaderDevicesGridController, type HeaderDevicesGridInstance, type HeaderDevicesGridParams, HeaderDevicesGridView, type HeaderDevicesThemeMode, type HeaderDomainConfig, type HeaderEventType, HeaderFilterModal, type FilterPreset as HeaderFilterPreset, type FilterSelection as HeaderFilterSelection, type HeaderLabels, HeaderPanelComponent, type HeaderPanelOptions, type HeaderPanelStyle, type Shopping$2 as HeaderShopping, type HeaderShoppingConfigTemplate, type ContractState as HeaderShoppingContractState, type DomainType$1 as HeaderShoppingDomainType, type HeaderShoppingEventHandler, type HeaderShoppingEventType, type HeaderShoppingInstance, type HeaderShoppingParams, type HeaderShoppingPeriod, HeaderShoppingView, type HeaderStats, type HeaderThemeConfig, type HeaderThemeMode, HeaderView, type HolidayEntry, IMPORTANCE_COLORS, IMPORTANCE_LABELS, IMPORTANCE_LABELS_EN, type IRCommand, type IRGroupScheduleEntry, type IRScheduleEntry, type ImportanceLevel$2 as ImportanceLevel, type InferredDeviceType, InfoTooltip, type InstantaneousPowerLimits, type IntegrationTab, type IntegrationTabId, type IntegrationsModalInstance, type IntegrationsModalOptions, type IntegrationsThemeMode, LoadingSpinner, type LogAnnotationsAttribute, LogHelper, DOMAIN_CONFIG$2 as MEASUREMENT_DOMAIN_CONFIG, MENU_SHOPPING_CSS_PREFIX, METRO_TILE_COLORS, MOTOR_SORT_OPTIONS, type MeasurementDisplaySettings, type MeasurementSetupError, type MeasurementSetupFormData, type MeasurementSetupModalInstance, type MeasurementSetupModalParams, type MeasurementSetupModalStyles, type PersistResult as MeasurementSetupPersistResult, type MenuComponentInstance, type MenuComponentParams, type MenuConfigTemplate, MenuController, type MenuEventHandler, type MenuEventType, type MenuShoppingConfigTemplate, type DashboardStateEvent as MenuShoppingDashboardStateEvent, type DomainType as MenuShoppingDomainType, type MenuShoppingEventHandler, type MenuShoppingEventType, type MenuShoppingInstance, type MenuShoppingParams, type MenuShoppingSettings, type MenuShoppingTab, type MenuShoppingUserInfo, MenuShoppingView, type MenuState, type ThingsboardWidgetContext as MenuThingsboardWidgetContext, MenuView, type MetroTile, type ExportFormat$2 as ModalExportFormat, ModalHeader, type ModalHeaderConfig, type ModalHeaderController, type ModalHeaderControllerOptions, type ModalHeaderHandlers, type ModalHeaderInstance, type ModalHeaderOptions, type ModalTheme, type MyIOAuthConfig, MyIOAuthContext, type MyIOAuthInstance, MyIOChartModal, MyIODraggableCard, MyIOSelectionStore, MyIOSelectionStoreClass, MyIOToast, type NewAnnotationData, NewTicketWizard, type NewTicketWizardConfig, type NotificationInfo, type NotificationsSummaryData, NotificationsSummaryTooltip, OFFLINE_STATUSES, ONLINE_STATUSES, ONOFF_TIMELINE_CSS_PREFIX, DEFAULT_DEVICE_CONFIG as ON_OFF_DEFAULT_DEVICE_CONFIG, DEFAULT_MODAL_STATE as ON_OFF_DEFAULT_MODAL_STATE, DEVICE_CONFIG as ON_OFF_DEVICE_CONFIG, ON_OFF_DEVICE_PROFILES, ON_OFF_MODAL_CSS_PREFIX, AVAILABILITY_THRESHOLDS as OPERATIONAL_AVAILABILITY_THRESHOLDS, DEFAULT_DASHBOARD_KPIS as OPERATIONAL_DASHBOARD_DEFAULT_KPIS, PERIOD_OPTIONS as OPERATIONAL_DASHBOARD_PERIOD_OPTIONS, OPERATIONAL_DASHBOARD_STYLES, OPERATIONAL_GENERAL_LIST_STYLES, OPERATIONAL_HEADER_DEVICES_GRID_STYLES, STATUS_CONFIG$1 as OPERATIONAL_STATUS_CONFIG, type OnAlarmActionCallback, type OnAlarmClickCallback, type OnAlarmFilterChangeCallback, type OnAlarmStatsUpdateCallback, type OnEquipmentActionCallback, type OnEquipmentClickCallback, type OnGridFilterChangeCallback, type OnGridStatsUpdateCallback, type OnOffActivationPoint, type OnOffDeviceData, OnOffDeviceModalController, type OnOffDeviceModalInstance, type OnOffDeviceModalParams, type OnOffDeviceModalState, OnOffDeviceModalView, type OnOffScheduleEntry as OnOffDeviceScheduleEntry, type OnOffDeviceThemeMode, type OnOffDeviceType, type OnOffGroupScheduleEntry, type OnOffModalView, type OnOffScheduleEntry$1 as OnOffScheduleEntry, type OnOffTimelineChartConfig, type OnOffTimelineChartInstance, type OnOffTimelineChartParams, type OnOffTimelineData, type OnOffTimelineSegment, type OnboardFooterLink, type OnboardModalConfig, type OnboardModalHandle, OnboardModalView, type OpenContractDevicesModalParams, type OpenDashboardPopupEnergyOptions, type OpenDashboardPopupSettingsParams, type OpenDashboardPopupWaterTankOptions, type OpenUserManagementParams, type OperationalComparisonModalInstance, type OperationalComparisonModalParams, type OperationalContextChangeEvent, type OperationalDashboardInstance, type DashboardKPIs as OperationalDashboardKPIs, type OperationalDashboardParams, type DashboardPeriod as OperationalDashboardPeriod, type DashboardThemeMode as OperationalDashboardThemeMode, type OperationalDevice, type DowntimeEntry as OperationalDowntimeEntry, type OperationalEquipment, type OperationalEquipmentReadyEvent, OperationalGeneralListController, type OperationalGeneralListInstance, type OperationalGeneralListParams, type OperationalGeneralListState, OperationalGeneralListView, type OperationalHeaderDevicesGridInstance, type OperationalHeaderDevicesGridParams, OperationalHeaderDevicesGridView, type OperationalHeaderLabels, type OperationalHeaderStats, type OperationalHeaderThemeMode, type OperationalIndicatorsAccessEvent, type OperationalIndicatorsAttributes, type OperationalListEventHandler, type OperationalListEventType, type ThemeMode$3 as OperationalListThemeMode, type StatusConfig as OperationalStatusConfig, type OperationalStore, type TrendDataPoint as OperationalTrendDataPoint, PERM, DEVICE_TYPES$1 as POWER_LIMITS_DEVICE_TYPES, STATUS_CONFIG$2 as POWER_LIMITS_STATUS_CONFIG, TELEMETRY_TYPES as POWER_LIMITS_TELEMETRY_TYPES, type PaginationState, type PdfLayout, type Period, type Permission, type PermissionSet, type PersistResult$1 as PersistResult, type PowerLimitsError, type PowerLimitsFormData, type PowerLimitsModalInstance, type PowerLimitsModalParams, type PowerLimitsModalStyles, type PowerRange, type PowerRanges, type PresetupDevice, type PresetupGatewayInstance, type PresetupGatewayOptions, type RealTimeTelemetryInstance, type RealTimeTelemetryParams, SCHEDULE_HOLIDAY_CSS_PREFIX, SCHEDULE_IR_CSS_PREFIX, SCHEDULE_ON_OFF_CSS_PREFIX, SCHEDULE_SETPOINT_CSS_PREFIX, SCHED_CSS_PREFIX, SEVERITY_ORDER, SIDEBAR_ICONS, SIDEBAR_MENU_CSS_PREFIX, SOLENOID_CONTROL_CSS_PREFIX, SOLENOID_IMAGES, STATUS_COLORS, STATUS_LABELS, STATUS_LABELS_EN, STATUS_TO_CONNECTIVITY, SWITCH_CONTROL_CSS_PREFIX, type ScheduleEntryBase, ScheduleHolidayController, type ScheduleHolidayInstance, type ScheduleHolidayParams, type ScheduleHolidaySettings, type ScheduleHolidayState, ScheduleHolidayView, ScheduleIRController, type ScheduleIRInstance, type ScheduleIRParams, type ScheduleIRSettings, type ScheduleIRState, ScheduleIRView, ScheduleOnOffController, type ScheduleOnOffInstance, type ScheduleOnOffParams, type ScheduleOnOffSettings, type ScheduleOnOffState, ScheduleOnOffView, ScheduleSetpointController, type ScheduleSetpointDevices, type ScheduleSetpointInstance, type ScheduleSetpointParams, type ScheduleSetpointSettings, type ScheduleSetpointState, ScheduleSetpointView, type SchedulingBaseSettings, type ConfirmFn as SchedulingConfirmFn, type NotifyFn as SchedulingNotifyFn, type SchedulingThemeMode, type SetpointScheduleEntry, type SettingsError, type SettingsEvent, type Shopping$1 as Shopping, type ShoppingCard, type ShoppingCardDeviceCounts, type ShoppingCardMetaCounts, type ShoppingColors, type ShoppingDataPoint, type SidebarFooterConfig, type SidebarHeaderConfig, type SidebarMenuConfig, SidebarMenuController, type SidebarMenuInstance, type SidebarMenuItem, type SidebarMenuSection, SidebarMenuView, type SidebarState, type SidebarThemeMode, SolenoidControlController, type SolenoidControlInstance, type SolenoidControlParams, type SolenoidControlSettings, SolenoidControlView, type SolenoidState, type SolenoidStatus, type SolenoidThemeMode, type StatusLimits, type StatusSummary$1 as StatusSummary, type StoreRow, type SubAmbienteItem, SwitchControlController, type SwitchControlInstance, type SwitchControlParams, type SwitchControlSettings, SwitchControlView, type SwitchState, type SwitchStatus, type SwitchThemeMode, type SyncAction, type SyncActionType, type SyncOutcome, type SyncResult, type TBCurrentUser, type TBUser, type TBUserPage, CONTEXT_CONFIG$1 as TELEMETRY_CONTEXT_CONFIG, DEFAULT_FILTER_TABS as TELEMETRY_DEFAULT_FILTER_TABS, DOMAIN_CONFIG$1 as TELEMETRY_DOMAIN_CONFIG, CONTEXT_CONFIG as TELEMETRY_GRID_SHOPPING_CONTEXT_CONFIG, DOMAIN_CONFIG as TELEMETRY_GRID_SHOPPING_DOMAIN_CONFIG, DEFAULT_CHART_COLORS as TELEMETRY_INFO_DEFAULT_CHART_COLORS, ENERGY_CATEGORY_CONFIG as TELEMETRY_INFO_ENERGY_CATEGORY_CONFIG, WATER_CATEGORY_CONFIG as TELEMETRY_INFO_WATER_CATEGORY_CONFIG, TEMPERATURE_SORT_OPTIONS, TEMPERATURE_UNITS, type TabConfig, type TbScope, type TelemetryConfigTemplate, type TelemetryContext$1 as TelemetryContext, type TelemetryDevice$1 as TelemetryDevice, type TelemetryDomain$2 as TelemetryDomain, type TelemetryFetcher, type FilterState$2 as TelemetryFilterState, TelemetryGridController, type TelemetryGridEventType, type TelemetryGridInstance, type TelemetryGridParams, type CardAction as TelemetryGridShoppingCardAction, type TelemetryContext as TelemetryGridShoppingContext, type TelemetryDevice as TelemetryGridShoppingDevice, type TelemetryDomain$1 as TelemetryGridShoppingDomain, type FilterState as TelemetryGridShoppingFilterState, type TelemetryGridShoppingInstance, type TelemetryGridShoppingParams, type SortMode$2 as TelemetryGridShoppingSortMode, type TelemetryStats as TelemetryGridShoppingStats, type ThemeMode$5 as TelemetryGridShoppingThemeMode, TelemetryGridView, type CategoryType as TelemetryInfoCategoryType, type ChartColors as TelemetryInfoChartColors, type EnergyState as TelemetryInfoEnergyState, type EnergySummary as TelemetryInfoEnergySummary, type TelemetryDomain as TelemetryInfoShoppingDomain, type TelemetryInfoShoppingInstance, type TelemetryInfoShoppingParams, type ThemeMode$4 as TelemetryInfoShoppingThemeMode, type WaterState as TelemetryInfoWaterState, type WaterSummary as TelemetryInfoWaterSummary, type Shopping as TelemetryShopping, type SortMode$4 as TelemetrySortMode, type TelemetryStats$1 as TelemetryStats, type ThemeMode$c as TelemetryThemeMode, type TelemetryTypeLimits, type TempComparisonData, TempComparisonTooltip, type TempEntityData, TempRangeTooltip, type TempSensorDevice, type TempSensorSummaryData, TempSensorSummaryTooltip, type TempStatus, type TempStatusResult, type TemperatureComparisonModalInstance, type TemperatureComparisonModalParams, type TemperatureDevice, type TemperatureDisplaySettings, type TemperatureGranularity, type TemperatureKPI, type TemperatureModalInstance, type TemperatureModalParams, type TemperatureSettingsInstance, type TemperatureSettingsParams, type TemperatureStats, type TemperatureTelemetry, type TemperatureUnit, type ThingsboardCustomerAttrsConfig, type TicketDetailModalConfig, type TicketDetailModalHandle, type TicketMotivo, type TicketServiceOrchestratorShape, type TicketTypeId, type TicketsTabConfig, type TimedValue, type TopOffenderApiItem, type TrendChartOptions, type TrendDataPoint$1 as TrendDataPoint, type Customer as UpsellCustomer, type Device as UpsellDevice, type UpsellModalError, type UpsellModalInstance, type UpsellModalParams, type UpsellModalStyles, type UsageDataPoint, type UserInfo$2 as UserInfo, type UserRoleAssignmentsSnapshot, type UsersByRole, type UsersSummaryData, UsersSummaryTooltip, type UserInfo as UsersTooltipUserInfo, type ValidationMap, WAITING_STATUSES, WATER_DEVICE_CATEGORIES, WATER_SORT_OPTIONS, WATER_UNITS, DEFAULT_PALETTE as WELCOME_DEFAULT_PALETTE, type WaterCategorySummary, type WaterDisplaySettings, type WaterKPI, type ChartType as WaterPanelChartType, type ConsumptionDataPoint as WaterPanelConsumptionDataPoint, type DistributionDataPoint as WaterPanelDistributionDataPoint, type DistributionMode as WaterPanelDistributionMode, type FetchConsumptionFn as WaterPanelFetchConsumptionFn, type FetchDistributionFn as WaterPanelFetchDistributionFn, type WaterPanelInstance, type OnFilterChangeCallback$1 as WaterPanelOnFilterChangeCallback, type OnMaximizeCallback as WaterPanelOnMaximizeCallback, type OnPeriodChangeCallback$1 as WaterPanelOnPeriodChangeCallback, type OnRefreshCallback$1 as WaterPanelOnRefreshCallback, type OnVizModeChangeCallback as WaterPanelOnVizModeChangeCallback, type WaterPanelParams, type PeriodDays as WaterPanelPeriodDays, type WaterPanelState, type ThemeMode$8 as WaterPanelThemeMode, type VizMode as WaterPanelVizMode, type WaterCategoryData as WaterPanelWaterCategoryData, type WaterSummaryData as WaterPanelWaterSummaryData, type WaterRow, WaterSummaryTooltip, type WaterTankDataPoint, type WaterTankModalContext, type WaterTankModalError, type WaterTankModalI18n, type WaterTankModalStyleOverrides, type WaterTankTelemetryData, type WaterUnit, type WelcomeModalInstance, type WelcomeModalParams, type WelcomePalette, type UserInfo$1 as WelcomeUserInfo, type WizardDevice, addDetectionContext, addTicketNote as addFreshdeskTicketNote, addNamespace, aggregateByDay, appendFreshdeskTicketToTB, applyFilters as applyDeviceGridFilters, archiveAlarmAnnotation, assignShoppingColors, averageByDay, buildAmbienteGroupData, buildEntityObject as buildDeviceGridEntityObject, buildEquipmentCategoryDataForTooltip, buildEquipmentCategorySummary, buildListItemsThingsboardByUniqueDatasource, buildMyioIngestionAuth, buildTemplateExport, buildTicketServiceOrchestrator, buildWaterReportCSV, buildWaterStoresCSV, calcDeltaPercent, calculateAvailability$1 as calculateAvailability, calculateAvailability as calculateDashboardAvailability, calculateMTBF as calculateDashboardMTBF, calculateMTTR as calculateDashboardMTTR, calculateDeviceStatus, calculateDeviceStatusMasterRules, calculateDeviceStatusWithRanges, calculateStats as calculateExportStats, calculateFleetKPIs, calculateGroupMetrics, calculateMTBF$1 as calculateMTBF, calculateMTTR$1 as calculateMTTR, calculateShoppingDeviceCounts, calculateShoppingDeviceStats, calculateStats$1 as calculateStats, canModifyAnnotation, clampTemperature, classify, classifyEquipment, classifyEquipmentSubcategory, classifyWaterLabel, classifyWaterLabels, clearAllAuthCaches, clearFreshdeskTicketsOnTB, connectionStatusIcons, createActionButton, createAlarmCardElement, createAlarmsNotificationsPanelComponent, createAmbienteDetailModal, createAmbienteGroupModal, createAnnotationIndicator, createBASDashboard, createButtonBar, createConsumption7DaysChart, createConsumptionChartWidget, createConsumptionModal, createCustomerCardV1, createCustomerCardV2, createDateRangePicker, createDaysGrid, createBusyModal as createDeviceGridBusyModal, createState as createDeviceGridState, createDeviceGridV6, createDeviceItem, createDeviceItemsFromMap, createDeviceOperationalCardComponent, createDeviceOperationalCardGridComponent, createDistributionChartWidget, createEnergyPanelComponent, createErrorSpan, createFancoilRemote, createFilterModalComponent, createFooterComponent, createTicket as createFreshdeskTicket, createGroupScheduleCard, createHeaderComponent, createHeaderDevicesGridComponent, createHeaderShoppingComponent, createInputDateRangePickerInsideDIV, createLibraryVersionChecker, createLoadingSpinner, createLogHelper, createMenuComponent, createMenuShoppingComponent, createModalHeader, createNewTicketWizard, createOnOffDeviceModal, createOnOffTimelineChart, createOperationalDashboardComponent, createOperationalGeneralListComponent, createOperationalHeaderDevicesGridComponent, createPresetupGateway, createScheduleCard, createScheduleHoliday, createScheduleIR, createScheduleOnOff, createScheduleSetpoint, createSidebarMenu, createSolenoidControl, createSwitchControl, createTelemetryGridComponent, createTelemetryGridShoppingComponent, createTelemetryInfoShoppingComponent, createTicketDetailModal, createTicketsTab, createToggleSwitch, createWaterPanelComponent, createWidgetController, decodePayload, decodePayloadBase64Xor, deleteTicket as deleteFreshdeskTicket, detectContext, detectDeviceType, detectDomainAndContext, detectSuperAdminHolding, detectSuperAdminMyio, determineInterval, deviceStatusIcons, doSchedulesOverlap, exportGridCsv, exportGridPdf, exportGridXls, exportTemperatureCSV, exportToCSV, exportToCSVAll, extractEntityId, extractMyIOCredentials, extractPowerLimitsForDevice, fetchCurrentUserInfo, fetchTicketDetail as fetchFreshdeskTicketDetail, fetchBundle as fetchGCDRBundle, fetchOpenTickets, fetchTemperatureData, fetchThingsboardCustomerAttrsFromStorage, fetchThingsboardCustomerServerScopeAttrs, fetchTicketsForDevice, findValue, findValueWithDefault, fmtPerc$1 as fmtPerc, fmtPerc as fmtPercLegacy, formatAlarmRelativeTime, formatAllInSameUnit, formatAllInSameWaterUnit, formatPercentage as formatDashboardPercentage, formatDateForInput, formatDateToYMD, formatDateWithTimezoneOffset, formatDuration, formatEnergy$1 as formatEnergy, formatHours, formatNumberReadable, formatPower, formatRelativeTime, formatTankHeadFromCm, formatTemperature, formatTrend, formatWater$1 as formatWater, formatWaterByGroup, formatWaterVolumeM3, formatarDuracao, generateFilename as generateExportFilename, generateFilterModalStyles, generateMockDowntimeList, generateMockKPIs, generateMockOnOffTimelineData, generateMockTrendData, getActiveAnnotationCount, getAlarmAnnotations, getSeverityConfig as getAlarmSeverityConfig, getStateConfig as getAlarmStateConfig, getAnnotationPermissions, getAuthCacheStats, getAvailabilityColorFromThresholds, getAvailableContexts, getCategoryDisplayInfo, getConnectionStatusIcon, getDateRangeArray, getDefaultGroupColors, getDefaultPeriodCurrentDaySoFar, getDefaultPeriodCurrentMonthSoFar, getCachedData as getDeviceGridCachedData, getStatusCategory as getDeviceGridV6StatusCategory, getDeviceStatusCategory, getDeviceStatusIcon, getDeviceStatusInfo, getThemeColors as getDistributionThemeColors, getDomainFromDeviceType, getFirstDayOfMonth, getFirstDayOfMonthFor, getGroupColor, getHashColor, getImageByConsumption, getLastDayOfMonth, getModalHeaderStyles, getDeviceConfig as getOnOffDeviceConfig, getDeviceType as getOnOffDeviceType, getModalTitle as getOnOffModalTitle, getAvailabilityColor as getOperationalAvailabilityColor, getStatusColors as getOperationalStatusColors, getPeriodDateRange, getSaoPauloISOString, getSaoPauloISOStringFixed, getShoppingColor, getIcon as getSidebarIcon, getSuggestedIdentifier, getSuggestedProfiles, getTrendClass, getTrendIcon, getValueByDatakey, getValueByDatakeyLegacy, getWaterCategories, groupByDay, handleDeviceType, hasSelectedDays, initMyIOAuthContext, initOnOffTimelineTooltips, injectActionButtonStyles, injectAlarmsNotificationsPanelStyles, injectAmbienteGroupModalStyles, injectAmbienteModalStyles, injectBASDashboardStyles, injectCustomerCardV1Styles, injectCustomerCardV2Styles, injectStyles as injectDeviceGridV6Styles, injectDeviceOperationalCardGridStyles, injectDeviceOperationalCardStyles, injectFancoilRemoteStyles, injectHeaderDevicesGridStyles, injectHeaderShoppingStyles, injectMenuShoppingStyles, injectOnOffDeviceModalStyles, injectOnOffTimelineStyles, injectOperationalDashboardStyles, injectOperationalGeneralListStyles, injectOperationalHeaderDevicesGridStyles, injectScheduleHolidayStyles, injectScheduleIRStyles, injectScheduleOnOffStyles, injectScheduleSetpointStyles, injectSchedulingSharedStyles, injectSidebarMenuStyles, injectSolenoidControlStyles, injectSwitchControlStyles, interpolateTemperature, isAlarmActive, isConnectionStale, isDeviceOffline, isEndAfterStart, isEnergyDevice, isEntradaDevice, isEquipmentDevice, isHydrometerDevice, isInRange, isOnOffDeviceProfile, isSolenoidDevice, isStoreDevice, isTankDevice, isTelemetryStale, isTemperatureDevice, isValidConnectionStatus, isValidDeviceStatus, isValidTimeFormat, isWaterCategory, mapConnectionStatus, mapDeviceStatusToCardStatus, mapDeviceToConnectionStatus, myioExportData, normalizeConnectionStatus, normalizeRecipients, numbers, openAlarmBundleMapModal, openAlarmComparisonModal, openAlarmDetailsModal, openAmbienteDetailModal, openAmbienteGroupModal, openContractDevicesModal, openDashboardPopup, openDashboardPopupAllReport, openDashboardPopupEnergy, openDashboardPopupReport, openDashboardPopupSettings, openDashboardPopupWaterTank, openDemandModal, openGCDRSyncModal, openGoalsPanel, openHelpModal, openIntegrationsModal, openMeasurementSetupModal, openOnOffDeviceModal, openOnboardModal, openOperationalComparisonModal, openPowerLimitsSetupModal, openRealTimeTelemetryModal, openTemperatureComparisonModal, openTemperatureModal, openTemperatureSettingsModal, openTutorialModal, openUpsellModal, openUserManagementModal, openWelcomeModal, parseInputDateToDate, periodKey, readFreshdeskTicketsFromTB, recalculateDeviceStatus, recomputePercentages as recomputeDeviceGridPercentages, removeAlarmsNotificationsPanelStyles, removeBASDashboardStyles, removeDeviceOperationalCardGridStyles, removeDeviceOperationalCardStyles, removeOperationalDashboardStyles, removeOperationalGeneralListStyles, removeOperationalHeaderDevicesGridStyles, removeSchedulingSharedStyles, renderAlarmCard, renderCardAmbienteV6, renderCardComponent$3 as renderCardComponent, renderCardComponent$2 as renderCardComponentEnhanced, renderCardComponentHeadOffice, renderCardComponentLegacy, renderCardComponentV2, renderCardComponent$1 as renderCardComponentV5, renderCardComponentV6, renderCardComponent as renderCardComponentV6Alias, renderCardComponentV5 as renderCardV5, renderDowntimeList as renderDashboardDowntimeList, renderList as renderDeviceGridList, renderDualLineChart, renderKPICards, renderLineChart, renderOnOffTimelineChart, renderSeverityBarChart, renderStateDonutChart, renderStatusDonutChart, renderTrendChart, reopenTicket as reopenFreshdeskTicket, createDateInput as schedCreateDateInput, createNumberInput as schedCreateNumberInput, createSelect as schedCreateSelect, createTimeInput as schedCreateTimeInput, escapeHtml as schedEscapeHtml, showConfirmModal as schedShowConfirmModal, showNotificationModal as schedShowNotificationModal, shouldFlashIcon, sortDevices as sortDeviceGridDevices, strings, formatEnergy as telemetryInfoFormatEnergy, formatPercentage$1 as telemetryInfoFormatPercentage, formatWater as telemetryInfoFormatWater, temperatureDeviceStatusIcons, timeToMinutes, timeWindowFromInputYMD, toCSV, toFixedSafe, toSummary as toFreshdeskTicketSummary, updateStats as updateDeviceGridStats, updateTicket as updateFreshdeskTicket, upsertAlarmAnnotation, version, waterDeviceStatusIcons, writeFreshdeskSyncedAtToTB, writeFreshdeskTicketsToTB };