@builder.io/sdk-solid 0.4.0 → 0.4.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/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### 0.4.1
2
+
3
+ - Fix: bring back `getBuilderSearchParams` export that was accidentally removed.
4
+
1
5
  ### 0.4.0
2
6
 
3
7
  - Feature: A/B tests are now rendered correctly during server-side rendering (SSR) when applicable. This behaviour is backwards compatible with previous versions.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/sdk-solid",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./solid-index.jsx",
@@ -1 +1 @@
1
- export const SDK_VERSION = "0.4.0"
1
+ export const SDK_VERSION = "0.4.1"
package/src/index.js CHANGED
@@ -10,10 +10,12 @@ import {
10
10
  getContent,
11
11
  processContentResult
12
12
  } from "./functions/get-content/index.js";
13
+ import { getBuilderSearchParams } from "./functions/get-builder-search-params/index.js";
13
14
  import { track } from "./functions/track/index.js";
14
15
  export {
15
16
  createRegisterComponentMessage,
16
17
  getAllContent,
18
+ getBuilderSearchParams,
17
19
  getContent,
18
20
  isEditing,
19
21
  isPreviewing,