@builder.io/sdk 2.2.3 → 2.2.5

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,5 +1,17 @@
1
1
  # @builder.io/sdk
2
2
 
3
+ ## 2.2.5
4
+
5
+ ### Patch Changes
6
+
7
+ - a5b8810: Fix: handle parsing of stringified numeric values in `userAttributes`
8
+
9
+ ## 2.2.4
10
+
11
+ ### Patch Changes
12
+
13
+ - 4aaba38: Fix: bump `isolated-vm` dependency to `5.0.0`, adding support for Node v22.
14
+
3
15
  ## 2.2.3
4
16
 
5
17
  ### Patch Changes
@@ -152,7 +152,7 @@
152
152
  throw new Error("Property name \"".concat(name, "\" is not allowed"));
153
153
  }
154
154
 
155
- var version = "2.2.3";
155
+ var version = "2.2.5";
156
156
 
157
157
  var Subscription = /** @class */ (function () {
158
158
  function Subscription(listeners, listener) {
@@ -2438,7 +2438,7 @@
2438
2438
  }
2439
2439
  // TODO: merge in the attribute from query string ones
2440
2440
  // TODO: make this an option per component/request
2441
- queryParams.userAttributes = userAttributes;
2441
+ queryParams.userAttributes = JSON.stringify(userAttributes);
2442
2442
  if (!usePastQueue && !useQueue) {
2443
2443
  this.priorContentQueue = queue;
2444
2444
  this.getContentQueue = null;