@crowdstrike/logscale-search 1.126.0--build-684--sha-1de8e2885c1117489d131c478ebf5a572b6881cf → 1.133.0--build-1000--sha-eda0b20aa7989fb26e09b9fc1d187b51b1281400
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 +7 -10
- package/index.js +631 -560
- package/index.js.map +2 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -120,6 +120,7 @@ export declare type CustomLinkInteraction = {
|
|
120
120
|
*/
|
121
121
|
export declare type DashbboardNavigationTarget = {
|
122
122
|
type: "dashboard";
|
123
|
+
openInNewTab: boolean;
|
123
124
|
targetInfo: DashboardNavigationTargetInfo;
|
124
125
|
};
|
125
126
|
|
@@ -227,12 +228,6 @@ export declare type EditState = {
|
|
227
228
|
} | {
|
228
229
|
dashboardId: string;
|
229
230
|
widgetId?: string;
|
230
|
-
} | {
|
231
|
-
alertId: string;
|
232
|
-
} | {
|
233
|
-
filterAlertId: string;
|
234
|
-
} | {
|
235
|
-
scheduledSearchId: string;
|
236
231
|
};
|
237
232
|
|
238
233
|
/**
|
@@ -427,12 +422,12 @@ export declare type ParameterValues = Record<string, string | string[]>;
|
|
427
422
|
export declare type Query = {
|
428
423
|
queryString: string;
|
429
424
|
/** Arguments for parameters in `query`. */
|
430
|
-
|
425
|
+
parameterArgs?: {
|
431
426
|
[key: string]: string;
|
432
427
|
};
|
433
428
|
start: string;
|
434
429
|
end?: string;
|
435
|
-
|
430
|
+
live: boolean;
|
436
431
|
around?: QueryPaginationOptions;
|
437
432
|
};
|
438
433
|
|
@@ -486,6 +481,7 @@ export declare type SearchLinkInteraction = {
|
|
486
481
|
*/
|
487
482
|
export declare type SearchNavigationTarget = {
|
488
483
|
type: "search";
|
484
|
+
openInNewTab: boolean;
|
489
485
|
targetInfo: SearchNavigationTargetInfo;
|
490
486
|
};
|
491
487
|
|
@@ -559,7 +555,7 @@ export declare class SearchView extends WebcomponentBase<Options> {
|
|
559
555
|
*/
|
560
556
|
export declare interface SearchViewParams {
|
561
557
|
/** The query string set in the query editor. */
|
562
|
-
|
558
|
+
queryString?: string;
|
563
559
|
/** Start of time window used when querying. */
|
564
560
|
start?: string;
|
565
561
|
/** End of time window used when querying. */
|
@@ -595,7 +591,8 @@ export declare interface SearchViewParams {
|
|
595
591
|
/**
|
596
592
|
* A LogScale widget with configuration.
|
597
593
|
*
|
598
|
-
* @public
|
594
|
+
* @public
|
595
|
+
*/
|
599
596
|
export declare type SearchViewVisualization = {
|
600
597
|
type?: WidgetType;
|
601
598
|
/** The configuration options of a LogScale visualization. */
|