@vue-skuilder/db 0.2.12 → 0.2.14
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/core/index.js +5 -0
- package/dist/core/index.js.map +1 -1
- package/dist/core/index.mjs +5 -0
- package/dist/core/index.mjs.map +1 -1
- package/dist/impl/couch/index.js +13 -0
- package/dist/impl/couch/index.js.map +1 -1
- package/dist/impl/couch/index.mjs +13 -0
- package/dist/impl/couch/index.mjs.map +1 -1
- package/dist/impl/static/index.js +5 -0
- package/dist/impl/static/index.js.map +1 -1
- package/dist/impl/static/index.mjs +5 -0
- package/dist/impl/static/index.mjs.map +1 -1
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +46 -27
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +46 -27
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
- package/src/impl/common/BaseUserDB.ts +13 -0
- package/src/impl/couch/CouchDBSyncStrategy.ts +17 -0
- package/src/study/services/EloService.ts +20 -8
- package/src/study/services/ResponseProcessor.ts +62 -50
package/dist/core/index.js
CHANGED
|
@@ -6892,6 +6892,11 @@ Currently logged-in as ${this._username}.`
|
|
|
6892
6892
|
return { ok: true };
|
|
6893
6893
|
}
|
|
6894
6894
|
const ret = await this.syncStrategy.logout();
|
|
6895
|
+
try {
|
|
6896
|
+
localStorage.removeItem("sk-guest-uuid");
|
|
6897
|
+
} catch (e) {
|
|
6898
|
+
logger.warn("localStorage not available (Node.js environment):", e);
|
|
6899
|
+
}
|
|
6895
6900
|
this._username = await this.syncStrategy.getCurrentUsername();
|
|
6896
6901
|
await this.init();
|
|
6897
6902
|
return ret;
|