@ibm-aspera/sdk 0.7.0 → 0.7.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.
@@ -113,8 +113,7 @@ var init = function (options) {
113
113
  var _a, _b, _c;
114
114
  var appId = (_a = options === null || options === void 0 ? void 0 : options.appId) !== null && _a !== void 0 ? _a : (0, helpers_1.randomUUID)();
115
115
  index_1.asperaSdk.globals.appId = appId;
116
- // For now ignore multi user support in Safari
117
- if ((options === null || options === void 0 ? void 0 : options.supportMultipleUsers) && !(0, helpers_1.isSafari)()) {
116
+ if (options === null || options === void 0 ? void 0 : options.supportMultipleUsers) {
118
117
  index_1.asperaSdk.globals.supportMultipleUsers = true;
119
118
  index_1.asperaSdk.globals.sessionId = (0, helpers_1.randomUUID)();
120
119
  }
@@ -133,6 +132,7 @@ var init = function (options) {
133
132
  sdkLocation: options.connectSettings.sdkLocation,
134
133
  correlationId: options.connectSettings.correlationId,
135
134
  style: 'carbon',
135
+ version: options.connectSettings.version,
136
136
  });
137
137
  index_1.asperaSdk.globals.connectAW4 = {
138
138
  Connect: connect_sdk_js_1.Connect,
@@ -795,6 +795,8 @@ export interface InitOptions {
795
795
  correlationId?: string;
796
796
  /** Indicate if default Connect installer window should not be shown */
797
797
  hideIncludedInstaller?: boolean;
798
+ /** Connect installer version to offer for downloads. This option is ignored if `sdkLocation` is specified. Only supports versions `4.x.x`. */
799
+ version?: string;
798
800
  };
799
801
  }
800
802
  export interface InstallerUrlInfo {