buzzcasting-storage 2.10.14 → 2.11.1

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.
@@ -21,6 +21,8 @@ export declare class BuzzcastingStorageManager {
21
21
  hide: (query: IQuery) => void;
22
22
  private actions;
23
23
  cleanMessages: () => Promise<void | undefined>;
24
+ hideMessage: (query: IQuery) => Promise<IResponse>;
25
+ hideLabels: (query: IQuery) => Promise<IResponse>;
24
26
  getSubscribers: () => Promise<IQuery[] | undefined>;
25
27
  }
26
28
 
@@ -245,6 +247,7 @@ export declare interface IQuery {
245
247
  topics?: string;
246
248
  dashboard?: string;
247
249
  widget?: string;
250
+ labels?: string[];
248
251
  compare?: string;
249
252
  period?: number;
250
253
  type?: 'cloud' | 'messages' | 'series' | 'proxy';