@etsoo/react 1.3.73 → 1.3.74

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.
@@ -10,6 +10,10 @@ export declare type RefreshTokenRQ = {
10
10
  * Login password
11
11
  */
12
12
  pwd?: string;
13
+ /**
14
+ * Service device id
15
+ */
16
+ serviceDeviceId?: string;
13
17
  /**
14
18
  * Service id
15
19
  */
@@ -48,6 +48,8 @@ export class ServiceApp extends ReactApp {
48
48
  coreUrl +
49
49
  '?serviceId=' +
50
50
  this.settings.serviceId +
51
+ '&serviceDeviceId=' +
52
+ this.deviceId +
51
53
  '&' +
52
54
  DomUtils.Culture +
53
55
  '=' +
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/react",
3
- "version": "1.3.73",
3
+ "version": "1.3.74",
4
4
  "description": "TypeScript ReactJs framework",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -50,7 +50,7 @@
50
50
  "@emotion/react": "^11.7.1",
51
51
  "@emotion/style": "^0.8.0",
52
52
  "@emotion/styled": "^11.6.0",
53
- "@etsoo/appscript": "^1.1.86",
53
+ "@etsoo/appscript": "^1.1.89",
54
54
  "@etsoo/notificationbase": "^1.0.95",
55
55
  "@etsoo/shared": "^1.0.82",
56
56
  "@mui/icons-material": "^5.2.5",
@@ -12,6 +12,11 @@ export type RefreshTokenRQ = {
12
12
  */
13
13
  pwd?: string;
14
14
 
15
+ /**
16
+ * Service device id
17
+ */
18
+ serviceDeviceId?: string;
19
+
15
20
  /**
16
21
  * Service id
17
22
  */
@@ -76,6 +76,8 @@ export class ServiceApp<
76
76
  coreUrl +
77
77
  '?serviceId=' +
78
78
  this.settings.serviceId +
79
+ '&serviceDeviceId=' +
80
+ this.deviceId +
79
81
  '&' +
80
82
  DomUtils.Culture +
81
83
  '=' +