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
|
-
|
|
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.
|
|
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
|
-
|
|
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);
|