buzzcasting-storage 2.9.3 → 2.9.5

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.
@@ -45,6 +45,20 @@ export declare class BuzzcastingStorageReader {
45
45
  getSeries: (query: IQuery) => Promise<IResponse>;
46
46
  }
47
47
 
48
+ /**
49
+ * Convert string containing hyphens to camelCase
50
+ * @param str
51
+ * @returns string
52
+ */
53
+ export declare function camelCase(str: string): string;
54
+
55
+ /**
56
+ * Convert string containing hyphens to camelCase
57
+ * @param str
58
+ * @returns camilized string
59
+ */
60
+ export declare function camelize(str: string): string;
61
+
48
62
  declare enum CSS_2 {
49
63
  API = "color:white;background-color:grey;padding:0 4px 0 4px;border-radius:5px;",
50
64
  APP = "color:white;background-color:navy;padding:0 4px 0 4px;border-radius:5px;",
@@ -70,6 +84,7 @@ export declare enum EVENTS {
70
84
  ADD_SLIDE = "addSlide",
71
85
  APP_READY = "appReady",
72
86
  API_UPDATE = "apiUpdate",
87
+ APPROVE_MESSAGE = "approveMessage",
73
88
  CHANNEL = "channel",
74
89
  ERROR = "error",
75
90
  GOTO_SLIDE = "gotoSlide",
@@ -80,6 +95,7 @@ export declare enum EVENTS {
80
95
  PREV_SLIDE = "prevSlide",
81
96
  RELOAD_PRESENTATION = "reloadPresentation",
82
97
  SHOW_MODAL = "showModal",
98
+ STAR_MESSAGE = "starMessage",
83
99
  SLIDE_DID_LOAD = "slideDidLoad",
84
100
  SLIDE_GOTO = "slideGoto",
85
101
  SLIDE_READY = "slideReady",