@builder.io/sdk 2.0.8 → 2.1.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,7 @@
1
+ ### 2.1.0
2
+
3
+ - Setting `noTraverse` option's default to `true` when fetching multiple content entries.
4
+
1
5
  ### 2.0.8
2
6
 
3
7
  - Fix: remove `setImmediate` usage to fix issue with next.js edge runtime.
@@ -152,7 +152,7 @@
152
152
  throw new Error("Property name \"".concat(name, "\" is not allowed"));
153
153
  }
154
154
 
155
- var version = "2.0.7";
155
+ var version = "2.0.8";
156
156
 
157
157
  var Subscription = /** @class */ (function () {
158
158
  function Subscription(listeners, listener) {
@@ -2398,9 +2398,12 @@
2398
2398
  if (queue[0].format) {
2399
2399
  queryParams.format = queue[0].format;
2400
2400
  }
2401
+ if ('noTraverse' in queue[0]) {
2402
+ queryParams.noTraverse = queue[0].noTraverse;
2403
+ }
2401
2404
  var pageQueryParams = typeof location !== 'undefined'
2402
2405
  ? QueryString.parseDeep(location.search.substr(1))
2403
- : {};
2406
+ : {}; // TODO: WHAT about SSR (this.request) ?
2404
2407
  var userAttributes =
2405
2408
  // FIXME: HACK: only checks first in queue for user attributes overrides, should check all
2406
2409
  // TODO: merge user attributes provided here with defaults and current user attiributes (?)
@@ -2652,6 +2655,10 @@
2652
2655
  this.apiVersion = options.apiVersion;
2653
2656
  }
2654
2657
  }
2658
+ // Set noTraverse=true if NOT already passed by user, for query performance
2659
+ if (!('noTraverse' in options)) {
2660
+ options.noTraverse = true;
2661
+ }
2655
2662
  return instance
2656
2663
  .getContent(modelName, __assign(__assign({ limit: 30 }, options), { key: options.key ||
2657
2664
  // Make the key include all options, so we don't reuse cache for the same content fetched