@etsoo/appscript 1.1.94 → 1.1.98
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/__tests__/app/CoreApp.ts
CHANGED
package/lib/cjs/app/CoreApp.js
CHANGED
|
@@ -228,7 +228,7 @@ class CoreApp {
|
|
|
228
228
|
return;
|
|
229
229
|
// Update device id and cache it
|
|
230
230
|
this._deviceId = data.deviceId;
|
|
231
|
-
this.storage.setData(CoreApp.deviceIdField, this.
|
|
231
|
+
this.storage.setData(CoreApp.deviceIdField, this._deviceId);
|
|
232
232
|
// Current passphrase
|
|
233
233
|
this.passphrase = passphrase;
|
|
234
234
|
this.storage.setData(CoreApp.devicePassphraseField, this.encrypt(passphrase, this.name));
|
package/lib/mjs/app/CoreApp.js
CHANGED
|
@@ -225,7 +225,7 @@ export class CoreApp {
|
|
|
225
225
|
return;
|
|
226
226
|
// Update device id and cache it
|
|
227
227
|
this._deviceId = data.deviceId;
|
|
228
|
-
this.storage.setData(CoreApp.deviceIdField, this.
|
|
228
|
+
this.storage.setData(CoreApp.deviceIdField, this._deviceId);
|
|
229
229
|
// Current passphrase
|
|
230
230
|
this.passphrase = passphrase;
|
|
231
231
|
this.storage.setData(CoreApp.devicePassphraseField, this.encrypt(passphrase, this.name));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsoo/appscript",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.98",
|
|
4
4
|
"description": "Applications shared TypeScript framework",
|
|
5
5
|
"main": "lib/cjs/index.js",
|
|
6
6
|
"module": "lib/mjs/index.js",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@etsoo/notificationbase": "^1.0.95",
|
|
56
56
|
"@etsoo/restclient": "^1.0.63",
|
|
57
|
-
"@etsoo/shared": "^1.0.
|
|
57
|
+
"@etsoo/shared": "^1.0.89",
|
|
58
58
|
"@types/crypto-js": "^4.0.2",
|
|
59
59
|
"crypto-js": "^4.1.1"
|
|
60
60
|
},
|
package/src/app/CoreApp.ts
CHANGED
|
@@ -768,7 +768,7 @@ export abstract class CoreApp<
|
|
|
768
768
|
|
|
769
769
|
// Update device id and cache it
|
|
770
770
|
this._deviceId = data.deviceId;
|
|
771
|
-
this.storage.setData(CoreApp.deviceIdField, this.
|
|
771
|
+
this.storage.setData(CoreApp.deviceIdField, this._deviceId);
|
|
772
772
|
|
|
773
773
|
// Current passphrase
|
|
774
774
|
this.passphrase = passphrase;
|