buzzcasting-storage 3.19.1 → 3.19.2

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.
@@ -33,14 +33,14 @@ export declare class BuzzcastingStorageManager {
33
33
  loadSlide: (query: IQuery) => Promise<number>;
34
34
  storeSlide: (query: IQuery) => Promise<IResponse | number>;
35
35
  deleteSlide: (query: IQuery) => Promise<IResponse | number | undefined>;
36
- deleteSlidens: (query: IQuery) => Promise<IResponse | number | undefined>;
36
+ deleteSlides: () => Promise<IResponse | number | undefined>;
37
37
  getPresentation: (query: IQuery) => Promise<IResponse | undefined>;
38
38
  getPresentations: (query?: IQuery) => Promise<IResponse | undefined>;
39
39
  setPresentation: (query: IQuery) => Promise<IResponse | undefined>;
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
- deleteWPresentations: (query: IQuery) => Promise<IResponse | number | undefined>;
43
+ deleteWPresentations: () => 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>;
@@ -50,11 +50,11 @@ export declare class BuzzcastingStorageManager {
50
50
  getWidgets: (query?: IQuery) => Promise<IResponse | undefined>;
51
51
  setWidget: (query: IQuery) => Promise<IResponse | number | undefined>;
52
52
  deleteWidget: (query: IQuery) => Promise<IResponse | number | undefined>;
53
- deleteWidgets: (query: IQuery) => Promise<IResponse | number | undefined>;
53
+ deleteWidgets: () => Promise<IResponse | number | undefined>;
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
- deleteWDashboards: (query: IQuery) => Promise<IResponse | number | undefined>;
57
+ deleteWDashboards: () => 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.0";
121
+ const $a = "3.19.1";
122
122
  async function* Ga(f) {
123
123
  const t = f.pipeThrough(new TextDecoderStream("utf-8")).getReader();
124
124
  let i = "";
@@ -6173,14 +6173,14 @@ class rs {
6173
6173
  loadSlide = async (t) => await this.api.loadSlide(t);
6174
6174
  storeSlide = async (t) => await this.api.storeSlide(t);
6175
6175
  deleteSlide = async (t) => await this.sm?.deleteSlide(t);
6176
- deleteSlidens = async (t) => await this.sm?.deleteSlides();
6176
+ deleteSlides = async () => await this.sm?.deleteSlides();
6177
6177
  getPresentation = async (t) => await this.sm?.getPresentation(t);
6178
6178
  getPresentations = async (t) => await this.sm?.getPresentations(t);
6179
6179
  setPresentation = async (t) => await this.sm?.setPresentation(t);
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
- deleteWPresentations = async (t) => await this.sm?.deletePresentations();
6183
+ deleteWPresentations = 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);
@@ -6193,11 +6193,11 @@ class rs {
6193
6193
  getWidgets = async (t) => await this.sm?.getWidgets(t);
6194
6194
  setWidget = async (t) => await this.sm?.setWidget(t);
6195
6195
  deleteWidget = async (t) => await this.sm?.deleteWidget(t);
6196
- deleteWidgets = async (t) => await this.sm?.deleteWidgets();
6196
+ deleteWidgets = async () => await this.sm?.deleteWidgets();
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
- deleteWDashboards = async (t) => await this.sm?.deleteDashboards();
6200
+ deleteWDashboards = 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);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "buzzcasting-storage",
3
3
  "type": "module",
4
- "version": "3.19.1",
4
+ "version": "3.19.2",
5
5
  "private": false,
6
6
  "author": {
7
7
  "name": "Mark Tamis, TouchFlows SAS",