@meshmakers/octo-meshboard 3.4.910 → 3.4.930

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meshmakers/octo-meshboard",
3
- "version": "3.4.910",
3
+ "version": "3.4.930",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^22.0.0",
6
6
  "@angular/core": "^22.0.0",
@@ -2804,11 +2804,16 @@ declare class QueryExecutorService {
2804
2804
  * Resolution-aware routing (AB#4290): reads a persisted stream-data query's base archive rtId
2805
2805
  * and target CK type WITHOUT executing the query (the `rows` sub-connection is not selected), so
2806
2806
  * a widget can feed the archive to {@link resolveSeriesQuery} and use the CK type to resolve
2807
- * per-series labels. Returns null when the query is missing or has no archive.
2807
+ * per-series labels. Also reads the query's persisted RtIds pin
2808
+ * (`System/StreamDataQuery.RtIds`) from the runtime entity — the transient downsampling path
2809
+ * bypasses the persisted query execution, so widgets must re-apply the pin themselves
2810
+ * (AB#4818). `rtIds` is null when the query has no pin (or is not a SimpleSdQuery).
2811
+ * Returns null when the query is missing or has no archive.
2808
2812
  */
2809
2813
  fetchQueryArchive(queryRtId: string): Promise<{
2810
2814
  archiveRtId: string;
2811
2815
  ckTypeId: string | null;
2816
+ rtIds: string[] | null;
2812
2817
  } | null>;
2813
2818
  /**
2814
2819
  * Resolution-aware routing (AB#4290): runs the AB#4233 downsampling query against an explicit
@@ -3316,6 +3321,8 @@ type GetEntitiesByCkTypeQueryDto = {
3316
3321
  rtId: any;
3317
3322
  ckTypeId: any;
3318
3323
  rtWellKnownName?: string | null;
3324
+ rtDisplayName: string;
3325
+ rtDisplayDescription?: string | null;
3319
3326
  rtCreationDateTime?: any | null;
3320
3327
  rtChangedDateTime?: any | null;
3321
3328
  attributes?: {
@@ -4682,6 +4689,7 @@ declare class HeatmapWidgetComponent implements DashboardWidget<HeatmapWidgetCon
4682
4689
  */
4683
4690
  private getThresholdColor;
4684
4691
  private aggregate;
4692
+ /** Delegates to {@link toInstant} so naive wire timestamps are pinned to UTC (AB#4818). */
4685
4693
  private parseDate;
4686
4694
  private convertFiltersToDto;
4687
4695
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeatmapWidgetComponent, never>;
@@ -6079,6 +6087,8 @@ declare class MeshBoardViewComponent implements OnInit, OnDestroy, HasUnsavedCha
6079
6087
  * fail with a NavigationError (AB#4457).
6080
6088
  */
6081
6089
  private updateUrlWithRtId;
6090
+ /** The active time-filter selection to mirror into the URL, or null when the filter is off. */
6091
+ private activeTimeFilterSelection;
6082
6092
  ngOnInit(): Promise<void>;
6083
6093
  /**
6084
6094
  * Loads a specific MeshBoard by its rtId.