@opentok/client 2.30.0-alpha.11 → 2.30.0-alpha.12

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.
@@ -1,11 +1,11 @@
1
1
  /**
2
- * @license OpenTok.js 2.30.0 55a461a
2
+ * @license OpenTok.js 2.30.0 27b0a4f
3
3
  *
4
4
  * Copyright (c) 2010-2025 TokBox, Inc.
5
5
  * Subject to the applicable Software Development Kit (SDK) License Agreement:
6
6
  * https://www.vonage.com/legal/communications-apis/terms-of-use/
7
7
  *
8
- * Date: Thu, 24 Apr 2025 17:23:53 GMT
8
+ * Date: Thu, 24 Apr 2025 17:50:29 GMT
9
9
  */
10
10
 
11
11
  (function webpackUniversalModuleDefinition(root, factory) {
@@ -8672,7 +8672,7 @@ const logging = (0, _log.default)('StaticConfig');
8672
8672
  */
8673
8673
 
8674
8674
  /** @type builtInConfig */
8675
- const builtInConfig = (0, _cloneDeep.default)({"version":"v2.30.0","buildHash":"55a461a","minimumVersion":{"firefox":52,"chrome":49},"debug":false,"websiteURL":"http://www.tokbox.com","configURL":"https://config.opentok.com","ipWhitelistConfigURL":"","cdnURL":"","loggingURL":"https://hlg.tokbox.com/prod","apiURL":"https://anvil.opentok.com"});
8675
+ const builtInConfig = (0, _cloneDeep.default)({"version":"v2.30.0","buildHash":"27b0a4f","minimumVersion":{"firefox":52,"chrome":49},"debug":false,"websiteURL":"http://www.tokbox.com","configURL":"https://config.opentok.com","ipWhitelistConfigURL":"","cdnURL":"","loggingURL":"https://hlg.tokbox.com/prod","apiURL":"https://anvil.opentok.com"});
8676
8676
  const whitelistAllowedRuntimeProperties = (0, _pick.default)(['apiURL', 'assetURL', 'cdnURL', 'sessionInfoOverrides', 'loggingURL']);
8677
8677
  const liveConfigMap = {
8678
8678
  apiUrl: 'apiURL',
@@ -83818,8 +83818,27 @@ function initSessionFactory(deps) {
83818
83818
  * Set this to <code>true</code> if IP white listing is enabled for your project.
83819
83819
  * The default value is <code>false</code>.
83820
83820
  * </li>
83821
- * <li><code>iceConfig</code> &mdash; (Object) This feature is part of the configurable TURN
83822
- * <a href="https://www.vonage.com/communications-apis/video/pricing/" target="_blank">add-on feature</a>.
83821
+ * <li><code>iceConfig</code> &mdash; (Object) This object includes the following properties:
83822
+ * <p>
83823
+ * <ul>
83824
+ * <li>
83825
+ * <code>includeServers</code> (String) &mdash; Set this to <code>'custom'</code> and client will use only the custom TURN servers you provide in the <code>customServers</code> array. Set this to <code>'all'</code> (the default) and the client will use both the custom TURN servers you provide along with OpenTok TURN servers.
83826
+ * </li>
83827
+ * <li>
83828
+ * <code>transportPolicy</code> (String) &mdash; Set this to <code>'all'</code> (the default) and the client will use all ICE transport types (such as host, srflx, and TURN) to establish media connectivity. Set this to <code>'relay'</code> to force connectivity through TURN always and ignore all other ICE candidates.
83829
+ * </li>
83830
+ * <li>
83831
+ * <code>customServers</code> (Array) &mdash; Set this to an array of objects defining your custom TURN servers. Each object corresponds to one custom TURN server, and it includes the following properties: <code>urls</code> &mdash; a string or an array of strings, where each string is a URL supported by the TURN server (and this may be only one URL); <code>username</code> &mdash; the username (string) for the TURN server defined in this object; <code>credential</code> &mdash; the credential string for the TURN server defined in this object.
83832
+ * </li>
83833
+ * </ul>
83834
+ * </p>
83835
+ * <p>
83836
+ * This feature is part of the configurable TURN
83837
+ * <a href="https://www.vonage.com/communications-apis/video/pricing/" target="_blank">add-on feature</a>. For more information
83838
+ * and a code sample, see the
83839
+ * <a href="https://tokbox.com/developer/guides/configurable-turn-servers/">Configurable TURN servers</a>
83840
+ * developer guide.
83841
+ * </p>
83823
83842
  * </li>
83824
83843
  * <li><code>encryptionSecret</code> &mdash; (String) This is the initial encryption secret used by the
83825
83844
  * end-to-end encryption feature. See <a href="https://tokbox.com/developer/guides/end-to-end-encryption/">