@etsoo/materialui 1.3.85 → 1.3.86

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.
@@ -48,6 +48,7 @@ export class CommonApp extends ReactApp {
48
48
  // Reqest data
49
49
  const rq = {
50
50
  deviceId: this.deviceId,
51
+ region: this.region,
51
52
  timezone: this.getTimeZone(),
52
53
  ...data
53
54
  };
@@ -101,6 +101,7 @@ export class ServiceApp extends ReactApp {
101
101
  // Merge additional data passed
102
102
  const rq = {
103
103
  deviceId: this.deviceId,
104
+ region: this.region,
104
105
  timezone: this.getTimeZone(),
105
106
  ...data
106
107
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/materialui",
3
- "version": "1.3.85",
3
+ "version": "1.3.86",
4
4
  "description": "TypeScript Material-UI Implementation",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -50,7 +50,7 @@
50
50
  "@emotion/css": "^11.13.0",
51
51
  "@emotion/react": "^11.13.0",
52
52
  "@emotion/styled": "^11.13.0",
53
- "@etsoo/appscript": "^1.5.10",
53
+ "@etsoo/appscript": "^1.5.11",
54
54
  "@etsoo/notificationbase": "^1.1.47",
55
55
  "@etsoo/react": "^1.7.63",
56
56
  "@etsoo/shared": "^1.2.44",
@@ -77,6 +77,7 @@ export abstract class CommonApp<
77
77
  // Reqest data
78
78
  const rq: RefreshTokenRQ = {
79
79
  deviceId: this.deviceId,
80
+ region: this.region,
80
81
  timezone: this.getTimeZone(),
81
82
  ...data
82
83
  };
@@ -160,6 +160,7 @@ export class ServiceApp<
160
160
  // Merge additional data passed
161
161
  const rq: RefreshTokenRQ = {
162
162
  deviceId: this.deviceId,
163
+ region: this.region,
163
164
  timezone: this.getTimeZone(),
164
165
  ...data
165
166
  };