@interopio/desktop 6.8.0 → 6.8.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.
package/changelog.md CHANGED
@@ -1,3 +1,5 @@
1
+ 6.8.1
2
+ - fix: ignore peerID when invocation target has instance
1
3
  6.8.0
2
4
  - feat: introduces onChannelRestrictionsChanged, isPinned, pin, unpin, executeCode, clearMany, setStates, snoozeMany
3
5
  6.7.0
@@ -2933,7 +2933,7 @@
2933
2933
  }
2934
2934
  };
2935
2935
 
2936
- var version$1 = "6.4.1";
2936
+ var version$1 = "6.4.2";
2937
2937
 
2938
2938
  function prepareConfig$1 (configuration, ext, glue42gd) {
2939
2939
  let nodeStartingContext;
@@ -6164,6 +6164,10 @@
6164
6164
  return [];
6165
6165
  }
6166
6166
  instanceMatch(instanceFilter, instanceDefinition) {
6167
+ if (instanceFilter?.peerId && instanceFilter?.instance) {
6168
+ instanceFilter = { ...instanceFilter };
6169
+ delete instanceFilter.peerId;
6170
+ }
6167
6171
  return this.containsProps(instanceFilter, instanceDefinition);
6168
6172
  }
6169
6173
  methodMatch(methodFilter, methodDefinition) {
@@ -18426,7 +18430,7 @@
18426
18430
  };
18427
18431
  }
18428
18432
 
18429
- var version = "6.8.0";
18433
+ var version = "6.8.1";
18430
18434
 
18431
18435
  var prepareConfig = (options) => {
18432
18436
  function getLibConfig(value, defaultMode, trueMode) {