@crowdstrike/logscale-search 1.135.0--build-1077--sha-96faf780527e4e787b35aa7b6885ca30cce9d302 → 1.136.0--build-1093--sha-79e81f65f3475d1356318149af241973c7f30ec4
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 +9 -1
- package/index.js +493 -472
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -193,7 +193,7 @@ export declare interface DashboardParams {
|
|
193
193
|
*/
|
194
194
|
end?: string;
|
195
195
|
/** Set to true to make the dashboard `live`. Defaults to `false` */
|
196
|
-
|
196
|
+
live?: boolean;
|
197
197
|
/**
|
198
198
|
* Set to `true` to make all dashboard queries use `start` and `end` as time window.
|
199
199
|
*/
|
@@ -538,6 +538,14 @@ export declare type SearchNavigationTargetInfo = SearchViewParams & {
|
|
538
538
|
* @public
|
539
539
|
*/
|
540
540
|
export declare class SearchView extends WebcomponentBase<Options> {
|
541
|
+
/**
|
542
|
+
* Set the state of the SearchView.
|
543
|
+
*
|
544
|
+
* @param searchViewParams - the new search view state
|
545
|
+
*
|
546
|
+
* @public
|
547
|
+
*/
|
548
|
+
setState(searchViewParams: SearchViewParams): void;
|
541
549
|
/**
|
542
550
|
* Set the query string of the SearchView query editor.
|
543
551
|
*
|