@etsoo/appscript 1.5.25 → 1.5.27

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.
@@ -90,6 +90,7 @@ export declare abstract class CoreApp<U extends IUser, S extends IAppSettings, N
90
90
  * Device id, randome string from ServiceBase.InitCallAsync
91
91
  */
92
92
  get deviceId(): string;
93
+ protected set deviceId(value: string);
93
94
  /**
94
95
  * Label delegate
95
96
  */
@@ -41,6 +41,9 @@ class CoreApp {
41
41
  get deviceId() {
42
42
  return this._deviceId;
43
43
  }
44
+ set deviceId(value) {
45
+ this._deviceId = value;
46
+ }
44
47
  /**
45
48
  * Label delegate
46
49
  */
@@ -90,6 +90,7 @@ export declare abstract class CoreApp<U extends IUser, S extends IAppSettings, N
90
90
  * Device id, randome string from ServiceBase.InitCallAsync
91
91
  */
92
92
  get deviceId(): string;
93
+ protected set deviceId(value: string);
93
94
  /**
94
95
  * Label delegate
95
96
  */
@@ -38,6 +38,9 @@ export class CoreApp {
38
38
  get deviceId() {
39
39
  return this._deviceId;
40
40
  }
41
+ set deviceId(value) {
42
+ this._deviceId = value;
43
+ }
41
44
  /**
42
45
  * Label delegate
43
46
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/appscript",
3
- "version": "1.5.25",
3
+ "version": "1.5.27",
4
4
  "description": "Applications shared TypeScript framework",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
@@ -52,9 +52,9 @@
52
52
  },
53
53
  "homepage": "https://github.com/ETSOO/AppScript#readme",
54
54
  "dependencies": {
55
- "@etsoo/notificationbase": "^1.1.48",
56
- "@etsoo/restclient": "^1.1.10",
57
- "@etsoo/shared": "^1.2.46",
55
+ "@etsoo/notificationbase": "^1.1.49",
56
+ "@etsoo/restclient": "^1.1.11",
57
+ "@etsoo/shared": "^1.2.48",
58
58
  "crypto-js": "^4.2.0"
59
59
  },
60
60
  "devDependencies": {
@@ -68,6 +68,6 @@
68
68
  "jest": "^29.7.0",
69
69
  "jest-environment-jsdom": "^29.7.0",
70
70
  "ts-jest": "^29.2.5",
71
- "typescript": "^5.6.2"
71
+ "typescript": "^5.6.3"
72
72
  }
73
73
  }
@@ -172,6 +172,9 @@ export abstract class CoreApp<
172
172
  get deviceId() {
173
173
  return this._deviceId;
174
174
  }
175
+ protected set deviceId(value: string) {
176
+ this._deviceId = value;
177
+ }
175
178
 
176
179
  /**
177
180
  * Label delegate