buzzcasting-storage 3.12.2 → 3.12.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.
@@ -44,7 +44,7 @@ export declare class BuzzcastingStorageManager {
44
44
  getDashboards: (query: IQuery) => Promise<IResponse | undefined>;
45
45
  setDashboard: (query: IQuery) => Promise<IResponse | undefined>;
46
46
  loadImages: (folder: string) => Promise<IResponse | undefined>;
47
- storeImage: (folderName: string, imageFile: FormData) => Promise<IResponse | number>;
47
+ storeImage: (imageFile: FormData) => Promise<IResponse | number>;
48
48
  deleteImage: (folderName: string, imageName: string) => Promise<IResponse | number>;
49
49
  getImages: (query: IQuery) => Promise<IResponse | undefined>;
50
50
  setImage: (query: IQuery) => Promise<IResponse | undefined>;
@@ -133,7 +133,7 @@ function Ot(h, t) {
133
133
  }
134
134
  return t;
135
135
  }
136
- const xa = "3.12.1";
136
+ const xa = "3.12.2";
137
137
  class ka {
138
138
  options;
139
139
  url;
@@ -5818,7 +5818,7 @@ class Ja {
5818
5818
  getDashboards = async (t) => await this.sm?.getDashboards();
5819
5819
  setDashboard = async (t) => await this.sm?.setDashboard(t);
5820
5820
  loadImages = async (t) => await this.api.loadImages(t);
5821
- storeImage = async (t, o) => await this.api.storeImage(o);
5821
+ storeImage = async (t) => await this.api.storeImage(t);
5822
5822
  deleteImage = async (t, o) => await this.api.deleteImage(t, o);
5823
5823
  getImages = async (t) => await this.sm?.getImages(t);
5824
5824
  setImage = async (t) => await this.sm?.setImage(t);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "buzzcasting-storage",
3
3
  "type": "module",
4
- "version": "3.12.2",
4
+ "version": "3.12.3",
5
5
  "private": false,
6
6
  "author": {
7
7
  "name": "Mark Tamis, TouchFlows SAS",