@builder.io/sdk-solid 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/CHANGELOG.md CHANGED
@@ -1,4 +1,5 @@
1
1
  ### 0.4.3
2
+
2
3
  - Fix: SSR A/B test environment check (`isHydrationTarget`) now accurately checks current environment.
3
4
 
4
5
  ### 0.4.2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/sdk-solid",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./solid-index.jsx",
@@ -1 +1 @@
1
- export const SDK_VERSION = "0.4.3"
1
+ export const SDK_VERSION = "0.4.4"
@@ -108,7 +108,7 @@ function _track(eventProps) {
108
108
  if (!(isBrowser() || TARGET === "reactNative")) {
109
109
  return;
110
110
  }
111
- return fetch(`https://builder.io/api/v1/track`, {
111
+ return fetch(`https://cdn.builder.io/api/v1/track`, {
112
112
  method: "POST",
113
113
  body: JSON.stringify({
114
114
  events: [yield createEvent(eventProps)]