@builder.io/sdk-qwik 0.4.3 → 0.4.4
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/lib/index.qwik.cjs
CHANGED
|
@@ -2585,7 +2585,7 @@ async function _track(eventProps) {
|
|
|
2585
2585
|
return;
|
|
2586
2586
|
if (!(isBrowser() || TARGET === "reactNative"))
|
|
2587
2587
|
return;
|
|
2588
|
-
return fetch(`https://builder.io/api/v1/track`, {
|
|
2588
|
+
return fetch(`https://cdn.builder.io/api/v1/track`, {
|
|
2589
2589
|
method: "POST",
|
|
2590
2590
|
body: JSON.stringify({
|
|
2591
2591
|
events: [
|
|
@@ -2654,7 +2654,7 @@ const getInteractionPropertiesForEvent = (event) => {
|
|
|
2654
2654
|
}
|
|
2655
2655
|
};
|
|
2656
2656
|
};
|
|
2657
|
-
const SDK_VERSION = "0.4.
|
|
2657
|
+
const SDK_VERSION = "0.4.4";
|
|
2658
2658
|
const registry = {};
|
|
2659
2659
|
function register(type, info) {
|
|
2660
2660
|
let typeList = registry[type];
|
package/lib/index.qwik.mjs
CHANGED
|
@@ -2583,7 +2583,7 @@ async function _track(eventProps) {
|
|
|
2583
2583
|
return;
|
|
2584
2584
|
if (!(isBrowser() || TARGET === "reactNative"))
|
|
2585
2585
|
return;
|
|
2586
|
-
return fetch(`https://builder.io/api/v1/track`, {
|
|
2586
|
+
return fetch(`https://cdn.builder.io/api/v1/track`, {
|
|
2587
2587
|
method: "POST",
|
|
2588
2588
|
body: JSON.stringify({
|
|
2589
2589
|
events: [
|
|
@@ -2652,7 +2652,7 @@ const getInteractionPropertiesForEvent = (event) => {
|
|
|
2652
2652
|
}
|
|
2653
2653
|
};
|
|
2654
2654
|
};
|
|
2655
|
-
const SDK_VERSION = "0.4.
|
|
2655
|
+
const SDK_VERSION = "0.4.4";
|
|
2656
2656
|
const registry = {};
|
|
2657
2657
|
function register(type, info) {
|
|
2658
2658
|
let typeList = registry[type];
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "0.4.
|
|
1
|
+
export declare const SDK_VERSION = "0.4.4";
|