buzzcasting-storage 3.7.5 → 3.7.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.
@@ -56,10 +56,10 @@ export declare class BuzzcastingStorageManager {
56
56
  setPreference: (preference: IPreference) => Promise<IResponse | undefined>;
57
57
  loadPreference: (preference: IPreference) => Promise<IResponse | undefined>;
58
58
  storePreference: (preference: IPreference) => Promise<IResponse | number>;
59
- loadDashboards: (query?: IQuery) => Promise<IResponse | undefined>;
60
59
  getWidget: (query: IQuery) => Promise<IResponse | undefined>;
61
60
  getWidgets: (query?: IQuery) => Promise<IResponse | undefined>;
62
61
  setWidget: (query: IQuery) => Promise<IResponse | undefined>;
62
+ loadDashboards: (query?: IQuery) => Promise<IResponse | undefined>;
63
63
  getDashboard: (query: IQuery) => Promise<IResponse | undefined>;
64
64
  getDashboards: (query: IQuery) => Promise<IResponse | undefined>;
65
65
  setDashboard: (query: IQuery) => Promise<IResponse | undefined>;
@@ -114,15 +114,16 @@ declare enum CSS_2 {
114
114
  API = "color:white;background-color:grey;padding:0 4px 0 4px;border-radius:5px;",
115
115
  APP = "color:white;background-color:navy;padding:0 4px 0 4px;border-radius:5px;",
116
116
  BROADCAST = "color:navy;background-color:orange;padding:0 4px 0 4px;border-radius:5px;",
117
+ CLOUD = "color:purple;background-color:mistyrose;padding:0 4px 0 4px;border-radius:5px;",
117
118
  DATA = "color:grey;background-color:lightskyblue;padding:0 4px 0 4px;border-radius:5px;",
118
- CLOUD = "color:grey;background-color:mistyrose;padding:0 4px 0 4px;border-radius:5px;",
119
+ ERROR = "color:white;background-color:red;padding:0 4px 0 4px;border-radius:5px;",
119
120
  GET_DATA = "color:black;background-color:lime;padding:0 4px 0 4px;border-radius:5px;",
120
121
  HIDE = "color:white;background-color:red;padding:0 4px 0 4px;border-radius:5px;",
121
122
  MESSAGES = "color:white;background-color:darkslateblue;padding:0 4px 0 4px;border-radius:5px;",
122
123
  NO_UPDATES = "color:grey;border:1px solid grey;padding:0 4px 0 4px;border-radius:5px;",
123
124
  NONE = "color:transparent;background-color:transparent;",
124
125
  PRESENTATION = "color:white;background-color:darkred;padding:0 4px 0 4px;border-radius:5px;",
125
- SERIES = "color:grey;background-color:thistle;padding:0 4px 0 4px;border-radius:5px;",
126
+ SERIES = "color:purple;background-color:thistle;padding:0 4px 0 4px;border-radius:5px;",
126
127
  SLIDE = "color:black;background-color:yellow;padding:0 4px 0 4px;border-radius:5px;",
127
128
  STORAGE = "color:black;background-color:cyan;padding:0 4px 0 4px;border-radius:5px;",
128
129
  SUBSCRIBE = "color:white;background-color:dodgerblue;padding:0 4px 0 4px;border-radius:5px;",
@@ -151,8 +152,6 @@ export declare enum EVENTS {
151
152
  HIDE_MESSAGE = "hideMessage",
152
153
  HIDE_LABELS = "hideLabels",
153
154
  MAUPPUT_UPDATE = "layoutUpdate",
154
- PAUSE_PRESENTATION = "pausePresentation",
155
- PRESENTATION_READY = "presentationReady",
156
155
  PREV_SLIDE = "prevSlide",
157
156
  RELOAD_PRESENTATION = "reloadPresentation",
158
157
  SHOW_MODAL = "showModal",
@@ -161,6 +160,8 @@ export declare enum EVENTS {
161
160
  NEXT_SLIDE = "nextSlide",
162
161
  PREFERENCE_LOAD = "loadPreference",
163
162
  PREFERENCE_STORE = "storePreference",
163
+ PAUSE_PRESENTATION = "pausePresentation",
164
+ PRESENTATION_READY = "presentationReady",
164
165
  PRESENTATION_LOAD = "loadPresentation",
165
166
  PRESENTATION_STORE = "storePresentation",
166
167
  SHOW_BUILDER_MODAL = "showBuilderModal",