@opentap/runner-client 2.8.0-alpha.1.1 → 2.8.1-alpha.1.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.
- package/lib/BaseClient.js +3 -1
- package/package.json +1 -1
package/lib/BaseClient.js
CHANGED
|
@@ -599,7 +599,9 @@ var BaseClient = /** @class */ (function () {
|
|
|
599
599
|
* @returns {Promise<Uint8Array>} A byte array containing the downloaded .TapSettings file
|
|
600
600
|
*/
|
|
601
601
|
BaseClient.prototype.downloadComponentSettings = function (tapSettingsRequest) {
|
|
602
|
-
return this.request('DownloadComponentSettings', tapSettingsRequest)
|
|
602
|
+
return this.request('DownloadComponentSettings', tapSettingsRequest, { rawResponse: true })
|
|
603
|
+
.then(this.success())
|
|
604
|
+
.catch(this.error());
|
|
603
605
|
};
|
|
604
606
|
/**
|
|
605
607
|
* Load a component settings TapPackage by referencing a package in a package repository
|