@interopio/desktop 6.12.0 → 6.13.0

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.13.0
2
+ - feat: windows - group.reload method added
1
3
  6.12.0
2
4
  - feat: channels - works outside from the platform
3
5
  - feat: channels - add clearChannelData method
package/desktop.d.ts CHANGED
@@ -4787,6 +4787,11 @@ export declare namespace IOConnectDesktop {
4787
4787
  */
4788
4788
  hide(): Promise<void>;
4789
4789
 
4790
+ /**
4791
+ * Reloads a window group. Available only for web groups.
4792
+ */
4793
+ reload(): Promise<void>;
4794
+
4790
4795
  /**
4791
4796
  * Closes the window group.
4792
4797
  * @param options Options for closing the group that can be used to prevent closing the group and control whether to show a confirmation dialog before closing it.
@@ -16262,6 +16262,11 @@
16262
16262
  groupId: id
16263
16263
  });
16264
16264
  },
16265
+ reload: () => {
16266
+ return executor.executeGroup("reloadGroup", {
16267
+ groupId: id
16268
+ });
16269
+ },
16265
16270
  close: () => {
16266
16271
  return executor.executeGroup("closeGroup", {
16267
16272
  groupId: id
@@ -19176,7 +19181,7 @@
19176
19181
  };
19177
19182
  }
19178
19183
 
19179
- var version = "6.12.0";
19184
+ var version = "6.13.0";
19180
19185
 
19181
19186
  var prepareConfig = (options) => {
19182
19187
  function getLibConfig(value, defaultMode, trueMode) {