buzzcasting-storage 3.19.2 → 3.19.3

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
- deleteWPresentations: () => Promise<IResponse | number | undefined>;
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>;
@@ -118,7 +118,7 @@ function Pt(f, t) {
118
118
  }
119
119
  return t;
120
120
  }
121
- const $a = "3.19.1";
121
+ const $a = "3.19.2";
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
- deleteWPresentations = async () => await this.sm?.deletePresentations();
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);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "buzzcasting-storage",
3
3
  "type": "module",
4
- "version": "3.19.2",
4
+ "version": "3.19.3",
5
5
  "private": false,
6
6
  "author": {
7
7
  "name": "Mark Tamis, TouchFlows SAS",