@expressms/smartapp-sdk 1.1.0 → 1.1.1

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.
@@ -1767,7 +1767,7 @@
1767
1767
  if (getPlatform() === PLATFORM.WEB &&
1768
1768
  event.data.handler === HANDLER.EXPRESS &&
1769
1769
  this.isRenameParamsEnabled)
1770
- this.disableRenameParams();
1770
+ this.isRenameParamsEnabled = false;
1771
1771
  if (typeof event.data !== "object" ||
1772
1772
  typeof event.data.data !== "object" ||
1773
1773
  typeof event.data.data.type !== "string")
@@ -1785,7 +1785,7 @@
1785
1785
  files: eventFiles,
1786
1786
  });
1787
1787
  if (isRenameParamsWasEnabled)
1788
- this.enableRenameParams();
1788
+ this.isRenameParamsEnabled = true;
1789
1789
  });
1790
1790
  }
1791
1791
  /**
@@ -1945,7 +1945,7 @@
1945
1945
  }
1946
1946
  }
1947
1947
 
1948
- const LIB_VERSION = "1.1.4";
1948
+ const LIB_VERSION = "1.1.5";
1949
1949
 
1950
1950
  const getBridge = () => {
1951
1951
  if (process.env.NODE_ENV === 'test')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@expressms/smartapp-sdk",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Smartapp SDK",
5
5
  "main": "build/main/index.js",
6
6
  "typings": "build/main/index.d.ts",
@@ -38,7 +38,7 @@
38
38
  "typescript": "^4.0.2"
39
39
  },
40
40
  "dependencies": {
41
- "@expressms/smartapp-bridge": "^1.1.4",
41
+ "@expressms/smartapp-bridge": "^1.1.5",
42
42
  "webpack-manifest-plugin": "2.2.0",
43
43
  "workbox-cacheable-response": "^6.5.4",
44
44
  "workbox-expiration": "^6.5.4",