buzzcasting-storage 3.19.3 → 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.
|
@@ -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 = "";
|
|
@@ -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);
|