@builder.io/sdk 1.1.26 → 1.1.27-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/dist/index.cjs.js CHANGED
@@ -129,7 +129,7 @@ function assertAllowedPropertyName(name) {
129
129
  throw new Error("Property name \"" + name + "\" is not allowed");
130
130
  }
131
131
 
132
- var version = "1.1.25";
132
+ var version = "1.1.26";
133
133
 
134
134
  var Subscription = /** @class */ (function () {
135
135
  function Subscription(listeners, listener) {
@@ -2098,6 +2098,8 @@ var Builder = /** @class */ (function () {
2098
2098
  module
2099
2099
  .get(requestOptions, function (resp) {
2100
2100
  var data = '';
2101
+ // We are collecting textual data
2102
+ resp.setEncoding('utf8');
2101
2103
  // A chunk of data has been recieved.
2102
2104
  resp.on('data', function (chunk) {
2103
2105
  data += chunk;