@etsoo/materialui 1.3.5 → 1.3.6

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.
@@ -25,5 +25,5 @@ export interface IAppApi {
25
25
  /**
26
26
  * Get refresh token data
27
27
  */
28
- getrefreshTokenData(): Partial<RefreshTokenRQ>;
28
+ getRefreshTokenData(): Partial<RefreshTokenRQ>;
29
29
  }
@@ -48,7 +48,7 @@ export class ServiceApp extends ReactApp {
48
48
  apiLogin(appApi, callback) {
49
49
  return this.refreshToken({
50
50
  callback,
51
- data: appApi.getrefreshTokenData(),
51
+ data: appApi.getRefreshTokenData(),
52
52
  relogin: false,
53
53
  showLoading: false,
54
54
  appApi
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/materialui",
3
- "version": "1.3.5",
3
+ "version": "1.3.6",
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.11.2",
51
51
  "@emotion/react": "^11.11.1",
52
52
  "@emotion/styled": "^11.11.0",
53
- "@etsoo/appscript": "^1.4.39",
53
+ "@etsoo/appscript": "^1.4.40",
54
54
  "@etsoo/notificationbase": "^1.1.28",
55
55
  "@etsoo/react": "^1.7.7",
56
56
  "@etsoo/shared": "^1.2.10",
@@ -33,5 +33,5 @@ export interface IAppApi {
33
33
  /**
34
34
  * Get refresh token data
35
35
  */
36
- getrefreshTokenData(): Partial<RefreshTokenRQ>;
36
+ getRefreshTokenData(): Partial<RefreshTokenRQ>;
37
37
  }
@@ -95,7 +95,7 @@ export class ServiceApp<
95
95
  ) {
96
96
  return this.refreshToken({
97
97
  callback,
98
- data: appApi.getrefreshTokenData(),
98
+ data: appApi.getRefreshTokenData(),
99
99
  relogin: false,
100
100
  showLoading: false,
101
101
  appApi