@pradip1995/framework-runtime 0.2.7 → 0.2.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pradip1995/framework-runtime",
3
- "version": "0.2.7",
3
+ "version": "0.2.8",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -16,7 +16,7 @@
16
16
  "dependencies": {
17
17
  "@pradip1995/framework-core": "^0.2.1",
18
18
  "@pradip1995/plugin-sdk": "^0.2.2",
19
- "@pradip1995/medusa-connector": "^0.2.3"
19
+ "@pradip1995/medusa-connector": "^0.2.4"
20
20
  },
21
21
  "peerDependencies": {
22
22
  "next": ">=15",
@@ -140,6 +140,13 @@ function applyStorefrontDefaults(
140
140
  }
141
141
  }
142
142
 
143
+ if (next.wishlistProductIds === undefined) {
144
+ const ids = workflowData.wishlistProductIds
145
+ if (Array.isArray(ids)) {
146
+ next.wishlistProductIds = ids
147
+ }
148
+ }
149
+
143
150
  return next
144
151
  }
145
152