@expressms/smartapp-sdk 1.13.0-alpha.5 → 1.13.0-alpha.8

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.
@@ -1396,7 +1396,7 @@
1396
1396
  console.log('Bridge ~ Outgoing event', JSON.stringify(logEvent, null, ' '));
1397
1397
  }
1398
1398
  logRecvEvent(event) {
1399
- const hideLogPayload = !!this.hideRecvLogPayload.get(event.ref) || this.hideRecvLogNullRefPayload;
1399
+ const hideLogPayload = !!this.hideRecvLogPayload.get(event.ref) || (this.hideRecvLogNullRefPayload && !event.ref);
1400
1400
  this.hideRecvLogPayload.delete(event.ref);
1401
1401
  if (!this.logsEnabled)
1402
1402
  return;
@@ -1945,7 +1945,7 @@
1945
1945
  }
1946
1946
  }
1947
1947
 
1948
- const LIB_VERSION = "1.4.2";
1948
+ const LIB_VERSION = "1.4.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.13.0-alpha.5",
3
+ "version": "1.13.0-alpha.8",
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.9.5"
39
39
  },
40
40
  "dependencies": {
41
- "@expressms/smartapp-bridge": "1.4.2"
41
+ "@expressms/smartapp-bridge": "1.4.5"
42
42
  },
43
43
  "files": [
44
44
  "build/main",