buzzcasting-storage 3.0.22 → 3.1.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.
- package/dist/buzzcasting-storage.d.ts +3 -6
- package/dist/buzzcasting-storage.esm.js +777 -791
- package/package.json +5 -5
|
@@ -107,9 +107,6 @@ export declare enum EVENTS {
|
|
|
107
107
|
ADD_SLIDE = "addSlide",
|
|
108
108
|
APP_READY = "appReady",
|
|
109
109
|
API_UPDATE = "apiUpdate",
|
|
110
|
-
WS_API_REQUEST = "wsApiRequest",
|
|
111
|
-
WS_API_RESPONSE = "wsApiResponse",
|
|
112
|
-
WS_API_UPDATE = "wsApiUpdate",
|
|
113
110
|
APPROVE_MESSAGE = "approveMessage",
|
|
114
111
|
CHANNEL = "channel",
|
|
115
112
|
CLEAN_MESSAGES = "cleanMessages",
|
|
@@ -308,14 +305,14 @@ export declare interface IQuery {
|
|
|
308
305
|
labels?: string[];
|
|
309
306
|
compare?: string;
|
|
310
307
|
period?: number;
|
|
311
|
-
type?:
|
|
312
|
-
order?:
|
|
308
|
+
type?: 'cloud' | 'messages' | 'series' | 'proxy' | 'slide';
|
|
309
|
+
order?: 'utc' | 'reach' | 'engagement' | 'impressions';
|
|
313
310
|
media?: number;
|
|
314
311
|
dynamics?: number;
|
|
315
312
|
geo?: number;
|
|
316
313
|
delay?: string;
|
|
317
314
|
approved?: string;
|
|
318
|
-
moderation?:
|
|
315
|
+
moderation?: 'realtime' | 'delayed' | 'approved' | 'none';
|
|
319
316
|
hrm?: string;
|
|
320
317
|
before?: number;
|
|
321
318
|
since?: number;
|