@interopio/desktop 6.7.0-next.0 → 6.7.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.7.0
2
+ - feat: Extend channels methods with fdc3 options
1
3
  6.6.0
2
4
  - feat: layouts - add new methods - reset, getRestoredLayoutsInfo
3
5
  - feat: layouts - resume/restore methods now returns the restored instances
@@ -2933,7 +2933,7 @@
2933
2933
  }
2934
2934
  };
2935
2935
 
2936
- var version$1 = "6.4.0-next.0";
2936
+ var version$1 = "6.4.0";
2937
2937
 
2938
2938
  function prepareConfig$1 (configuration, ext, glue42gd) {
2939
2939
  let nodeStartingContext;
@@ -19201,6 +19201,7 @@
19201
19201
  const DEFAULT_RESOLVER_RESPONSE_TIMEOUT = 60 * 1000;
19202
19202
  const INTENT_HANDLER_DEFAULT_PROPS = ["applicationName", "type"];
19203
19203
  const INTENTS_RESOLVER_APP_NAME = "intentsResolver";
19204
+ const MAX_SET_TIMEOUT_DELAY = 2147483647;
19204
19205
  const DEFAULT_METHOD_RESPONSE_TIMEOUT_MS = 60 * 1000;
19205
19206
  const DEFAULT_RAISE_TIMEOUT_MS = 90 * 1000;
19206
19207
  const DEFAULT_PICK_HANDLER_BY_TIMEOUT_MS = 90 * 1000;
@@ -19470,7 +19471,7 @@
19470
19471
  await this.removeRememberedHandler(intentRequest.intent);
19471
19472
  }
19472
19473
  const resolverInstance = {};
19473
- const timeout = intentRequest.timeout || DEFAULT_RAISE_TIMEOUT_MS;
19474
+ const timeout = intentRequest.waitUserResponseIndefinitely ? MAX_SET_TIMEOUT_DELAY : intentRequest.timeout || DEFAULT_RAISE_TIMEOUT_MS;
19474
19475
  const resultFromRememberedHandler = await this.checkHandleRaiseWithRememberedHandler(intentRequest, resolverInstance, timeout);
19475
19476
  if (resultFromRememberedHandler) {
19476
19477
  return resultFromRememberedHandler;