buzzcasting-storage 3.19.2 → 3.19.4
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.
|
@@ -40,7 +40,7 @@ export declare class BuzzcastingStorageManager {
|
|
|
40
40
|
loadPresentation: (query: IQuery) => Promise<number>;
|
|
41
41
|
storePresentation: (query: IQuery) => Promise<IResponse | number>;
|
|
42
42
|
deletePresentation: (query: IQuery) => Promise<IResponse | number | undefined>;
|
|
43
|
-
|
|
43
|
+
deletePresentations: () => Promise<IResponse | number | undefined>;
|
|
44
44
|
getPreference: (preference: IPreference) => Promise<IResponse | undefined>;
|
|
45
45
|
getPreferences: (query?: IQuery) => Promise<IResponse | undefined>;
|
|
46
46
|
setPreference: (preference: IPreference) => Promise<IResponse | undefined>;
|
|
@@ -54,7 +54,7 @@ export declare class BuzzcastingStorageManager {
|
|
|
54
54
|
loadDashboards: (query?: IQuery) => Promise<IResponse | undefined>;
|
|
55
55
|
getDashboard: (query: IQuery) => Promise<IResponse | undefined>;
|
|
56
56
|
deleteDashboard: (query: IQuery) => Promise<IResponse | number | undefined>;
|
|
57
|
-
|
|
57
|
+
deleteDashboards: () => Promise<IResponse | number | undefined>;
|
|
58
58
|
getDashboards: () => Promise<IResponse | undefined>;
|
|
59
59
|
setDashboard: (query: IQuery) => Promise<IResponse | undefined>;
|
|
60
60
|
loadImages: (folder: string) => Promise<IResponse | undefined>;
|
|
@@ -118,7 +118,7 @@ function Pt(f, t) {
|
|
|
118
118
|
}
|
|
119
119
|
return t;
|
|
120
120
|
}
|
|
121
|
-
const $a = "3.19.
|
|
121
|
+
const $a = "3.19.3";
|
|
122
122
|
async function* Ga(f) {
|
|
123
123
|
const t = f.pipeThrough(new TextDecoderStream("utf-8")).getReader();
|
|
124
124
|
let i = "";
|
|
@@ -6180,7 +6180,7 @@ class rs {
|
|
|
6180
6180
|
loadPresentation = async (t) => await this.api.loadPresentation(t);
|
|
6181
6181
|
storePresentation = async (t) => await this.api.storePresentation(t);
|
|
6182
6182
|
deletePresentation = async (t) => await this.sm?.deletePresentation(t);
|
|
6183
|
-
|
|
6183
|
+
deletePresentations = async () => await this.sm?.deletePresentations();
|
|
6184
6184
|
getPreference = async (t) => await this.sm?.getPreference(t);
|
|
6185
6185
|
getPreferences = async (t) => await this.sm?.getPreferences(t);
|
|
6186
6186
|
setPreference = async (t) => await this.sm?.setPreference(t);
|
|
@@ -6197,7 +6197,7 @@ class rs {
|
|
|
6197
6197
|
loadDashboards = async (t) => await this.api.loadDashboards(t);
|
|
6198
6198
|
getDashboard = async (t) => await this.sm?.getDashboard(t);
|
|
6199
6199
|
deleteDashboard = async (t) => await this.sm?.deleteDashboard(t);
|
|
6200
|
-
|
|
6200
|
+
deleteDashboards = async () => await this.sm?.deleteDashboards();
|
|
6201
6201
|
getDashboards = async () => await this.sm?.getDashboards();
|
|
6202
6202
|
setDashboard = async (t) => await this.sm?.setDashboard(t);
|
|
6203
6203
|
loadImages = async (t) => await this.api.loadImages(t);
|