buzzcasting-storage 3.14.4 → 3.14.6

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.
@@ -14,6 +14,7 @@ export declare class BuzzcastingStorageManager {
14
14
  addSubscriber(query: IQuery): void;
15
15
  deleteSubscriber(query: IQuery): void;
16
16
  update: (data: any) => Promise<void>;
17
+ apiQuery: (apiQuery: any) => Promise<IprocessResponse>;
17
18
  private processResponse;
18
19
  startBroadcastListener: () => void;
19
20
  private broadcastUpdate;
@@ -76,6 +77,11 @@ export declare class BuzzcastingStorageReader {
76
77
  getSeries: (query: IQuery) => Promise<IResponse>;
77
78
  }
78
79
 
80
+ declare interface IprocessResponse {
81
+ code: number;
82
+ hash: string;
83
+ }
84
+
79
85
  /**
80
86
  * Main class for managing widgets and data updates
81
87
  */
@@ -104,6 +110,8 @@ export declare class Widget {
104
110
  * This takes place when the container indicates it has finished loading (ready)
105
111
  */
106
112
  subscribe(): void;
113
+ setHash(hash: string): void;
114
+ getHash(): string | undefined;
107
115
  /**
108
116
  * Generic call to any query type
109
117
  *