@builder.io/sdk 3.0.1 → 3.0.2-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/dist/index.browser.js +8 -1
- package/dist/index.browser.js.map +1 -1
- package/dist/index.cjs.js +8 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +8 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +8 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/package.json +1 -1
- package/dist/src/builder.class.d.ts +3 -0
- package/dist/src/builder.class.js +7 -0
- package/dist/src/builder.class.js.map +1 -1
- package/dist/src/classes/promise.class.js +150 -154
- package/dist/src/classes/query-string.class.js +73 -74
- package/dist/src/classes/query-string.class.test.js +20 -20
- package/dist/src/functions/assign.function.js +19 -19
- package/dist/src/functions/fetch.function.js +97 -75
- package/dist/src/functions/finder.function.js +389 -274
- package/dist/src/functions/get-top-level-domain.js +8 -8
- package/dist/src/functions/next-tick.function.js +26 -23
- package/dist/src/functions/omit.function.js +13 -13
- package/dist/src/functions/server-only-require.function.js +10 -9
- package/dist/src/functions/throttle.function.js +35 -37
- package/dist/src/functions/to-error.js +5 -6
- package/dist/src/functions/uuid.js +9 -8
- package/dist/src/types/api-version.js +3 -3
- package/dist/src/types/element.js +3 -3
- package/dist/src/url.test.js +222 -118
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -3
- package/.yarnrc.yml +0 -1
package/dist/index.esm.js
CHANGED
|
@@ -118,7 +118,7 @@ function assertAllowedPropertyName(name) {
|
|
|
118
118
|
throw new Error("Property name \"".concat(name, "\" is not allowed"));
|
|
119
119
|
}
|
|
120
120
|
|
|
121
|
-
var version = "3.0.
|
|
121
|
+
var version = "3.0.2-0";
|
|
122
122
|
|
|
123
123
|
var Subscription = /** @class */ (function () {
|
|
124
124
|
function Subscription(listeners, listener) {
|
|
@@ -2104,6 +2104,12 @@ var Builder = /** @class */ (function () {
|
|
|
2104
2104
|
};
|
|
2105
2105
|
Builder.prototype.setUserAttributes = function (options) {
|
|
2106
2106
|
assign(Builder.overrideUserAttributes, options);
|
|
2107
|
+
try {
|
|
2108
|
+
this.setCookie(Builder.attributesCookieName, JSON.stringify(this.getUserAttributes()));
|
|
2109
|
+
}
|
|
2110
|
+
catch (_a) {
|
|
2111
|
+
// Ignore
|
|
2112
|
+
}
|
|
2107
2113
|
this.userAttributesChanged.next(options);
|
|
2108
2114
|
};
|
|
2109
2115
|
/**
|
|
@@ -2610,6 +2616,7 @@ var Builder = /** @class */ (function () {
|
|
|
2610
2616
|
Builder.plugins = [];
|
|
2611
2617
|
Builder.actions = [];
|
|
2612
2618
|
Builder.registry = {};
|
|
2619
|
+
Builder.attributesCookieName = 'builder.userAttributes';
|
|
2613
2620
|
Builder.registryChange = new BehaviorSubject({});
|
|
2614
2621
|
Builder._editingPage = false;
|
|
2615
2622
|
Builder.isIframe = isIframe;
|