@crowdstrike/logscale-dashboard 1.145.0--build-1507--sha-74f86973051e9df3e774871987e9e60e1cab4bd0 → 1.147.0--build-1596--sha-fe60771eed98b34bfbc5d9ec586d0bc95e933c72

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/index.d.ts CHANGED
@@ -102,11 +102,13 @@ export declare class Dashboard extends WebcomponentBase<Options> {
102
102
  /**
103
103
  * Set the state of a dashboard.
104
104
  *
105
+ * todo [kfrank] extend this to take repoOrViewName and timezone
106
+ *
105
107
  * @param dashboardParams - the new dashboard state
106
108
  *
107
109
  * @public
108
110
  */
109
- setState(dashboardParams: DashboardParams): void;
111
+ setState(dashboardParams: SetStateParams): void;
110
112
  /**
111
113
  * Set parameter values on dashboard.
112
114
  *
@@ -567,6 +569,16 @@ export declare type SetParametersOptions = {
567
569
  apply?: boolean;
568
570
  };
569
571
 
572
+ /**
573
+ * Params to use when calling Dashboard.setState.
574
+ *
575
+ * @public
576
+ */
577
+ export declare type SetStateParams = DashboardParams & {
578
+ repoOrViewName?: string;
579
+ timezone?: string;
580
+ };
581
+
570
582
  /**
571
583
  * The shared properties of all interaction types.
572
584
  *