@interopio/desktop 6.8.0 → 6.8.2

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,7 @@
1
+ 6.8.2
2
+ - chore: Update ChannelContext's data type
3
+ 6.8.1
4
+ - fix: ignore peerID when invocation target has instance
1
5
  6.8.0
2
6
  - feat: introduces onChannelRestrictionsChanged, isPinned, pin, unpin, executeCode, clearMany, setStates, snoozeMany
3
7
  6.7.0
package/desktop.d.ts CHANGED
@@ -3,6 +3,7 @@ import { ApplicationConfig } from "@interopio/schemas";
3
3
  import { IOConnectCore } from "@interopio/core";
4
4
  import { IOConnectWorkspaces } from "@interopio/workspaces-api";
5
5
  import { UnsubscribeFunction } from "callback-registry";
6
+ import { Context as FDC3Context } from "@finos/fdc3";
6
7
 
7
8
  /**
8
9
  * Factory function that creates a new io.Connect instance.
@@ -6271,7 +6272,13 @@ export declare namespace IOConnectDesktop {
6271
6272
  /**
6272
6273
  * Channel context data.
6273
6274
  */
6274
- data: any;
6275
+ data: {
6276
+ /**
6277
+ * FDC3 context data. Will be present only if FDC3 context data has been published to the respective Channel.
6278
+ */
6279
+ fdc3?: FDC3Context;
6280
+ [key: string]: any
6281
+ };
6275
6282
  }
6276
6283
 
6277
6284
  /**
@@ -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.2";
18430
18434
 
18431
18435
  var prepareConfig = (options) => {
18432
18436
  function getLibConfig(value, defaultMode, trueMode) {