buzzcasting-storage 3.15.5 → 3.15.7
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/dist/buzzcasting-storage.d.ts +4 -1
- package/dist/buzzcasting-storage.esm.js +1674 -1599
- package/package.json +19 -16
|
@@ -14,8 +14,9 @@ export declare class BuzzcastingStorageManager {
|
|
|
14
14
|
addSubscriber(query: IQuery): void;
|
|
15
15
|
deleteSubscriber(query: IQuery): void;
|
|
16
16
|
update: (data: any) => Promise<void>;
|
|
17
|
+
stream: () => void;
|
|
17
18
|
apiQuery: (apiQuery: any) => Promise<IprocessResponse>;
|
|
18
|
-
|
|
19
|
+
processResponse: (apiResp: any) => Promise<IprocessResponse>;
|
|
19
20
|
startBroadcastListener: () => void;
|
|
20
21
|
broadcastMessage: (eventName: string, detail: any) => void;
|
|
21
22
|
private broadcastUpdate;
|
|
@@ -106,6 +107,8 @@ export declare class Widget {
|
|
|
106
107
|
/**
|
|
107
108
|
* Data received from BroadcastChannel
|
|
108
109
|
* data that is broadcast needs to be a IMessage[] |ICloud or ISeries structure
|
|
110
|
+
* WIDGET_UPDATE is used to trigger fetching on the broadcast channel,
|
|
111
|
+
* but also to trigger data retrieval on the widget
|
|
109
112
|
*/
|
|
110
113
|
broadcastListener(): void;
|
|
111
114
|
/**
|