bt-core-app 1.4.99 → 1.4.101
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.
- package/dist/bt-core-app.js +17 -6
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -2094,12 +2094,23 @@ function qr(e) {
|
|
|
2094
2094
|
return `${e.storeName}_${((i = e.auth) == null ? void 0 : i.credentials.value.userID) ?? "no-user-id"}`;
|
|
2095
2095
|
}
|
|
2096
2096
|
async function M() {
|
|
2097
|
-
console.log("trying save"), C == !0
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2097
|
+
if (console.log("trying save"), C == !0) {
|
|
2098
|
+
console.log("saving");
|
|
2099
|
+
var i = {
|
|
2100
|
+
meta: g.value,
|
|
2101
|
+
data: t.value,
|
|
2102
|
+
count: l.value,
|
|
2103
|
+
filters: []
|
|
2104
|
+
};
|
|
2105
|
+
console.log(i);
|
|
2106
|
+
try {
|
|
2107
|
+
await ve().setItem(_(), i);
|
|
2108
|
+
} catch (E) {
|
|
2109
|
+
console.log("sav err"), console.log(E);
|
|
2110
|
+
} finally {
|
|
2111
|
+
console.log("done");
|
|
2112
|
+
}
|
|
2113
|
+
}
|
|
2103
2114
|
}
|
|
2104
2115
|
function $(i) {
|
|
2105
2116
|
const E = _();
|
package/package.json
CHANGED