buzzcasting-storage 2.16.19 → 2.16.21
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 +5 -0
- package/dist/buzzcasting-storage.esm.js +1020 -1011
- package/package.json +13 -13
|
@@ -107,6 +107,7 @@ export declare enum EVENTS {
|
|
|
107
107
|
CHANNEL = "channel",
|
|
108
108
|
CLEAN_MESSAGES = "cleanMessages",
|
|
109
109
|
CLOSE_MODAL = "closeModal",
|
|
110
|
+
CLOSE_BUILDER_MODAL = "closeBuilderModal",
|
|
110
111
|
ERROR = "error",
|
|
111
112
|
HIDE_MESSAGE = "hideMessage",
|
|
112
113
|
HIDE_LABELS = "hideLabels",
|
|
@@ -118,6 +119,7 @@ export declare enum EVENTS {
|
|
|
118
119
|
STAR_MESSAGE = "starMessage",
|
|
119
120
|
GOTO_SLIDE = "gotoSlide",
|
|
120
121
|
NEXT_SLIDE = "nextSlide",
|
|
122
|
+
SHOW_BUILDER_MODAL = "showBuilderModal",
|
|
121
123
|
SLIDE_DID_LOAD = "slideDidLoad",
|
|
122
124
|
SLIDE_GOTO = "slideGoto",
|
|
123
125
|
SLIDE_READY = "slideReady",
|
|
@@ -127,6 +129,7 @@ export declare enum EVENTS {
|
|
|
127
129
|
START_TRANSITIONER = "startTransitioner",
|
|
128
130
|
STORAGE_INIT = "storageInit",
|
|
129
131
|
SUBSCRIBE = "subscribe",
|
|
132
|
+
SUSPEND_ACCOUNT = "suspendAccount",
|
|
130
133
|
REMOVE_CLOUD = "removeCloud",
|
|
131
134
|
UPDATE = "update",
|
|
132
135
|
VERSION = "version",
|
|
@@ -261,6 +264,8 @@ export declare interface IMessages {
|
|
|
261
264
|
presentation?: string;
|
|
262
265
|
slide?: string;
|
|
263
266
|
title?: string;
|
|
267
|
+
dashboard?: string;
|
|
268
|
+
widget?: string;
|
|
264
269
|
topics?: string;
|
|
265
270
|
query: IQuery;
|
|
266
271
|
}
|