@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 +12 -0
- package/dist/index.browser.js +2 -2
- package/dist/index.browser.js.map +1 -1
- package/dist/index.cjs.js +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +2 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/package.json +3 -3
- package/dist/src/builder.class.js +1 -1
- package/dist/src/builder.class.js.map +1 -1
- package/dist/src/classes/animator.class.js.map +1 -1
- package/dist/src/classes/cookies.class.js.map +1 -1
- package/dist/src/classes/observable.class.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
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
|
package/dist/index.browser.js
CHANGED
|
@@ -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.
|
|
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;
|