@getlupa/client 1.14.14 → 1.14.16

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.
@@ -31699,6 +31699,7 @@ and ensure you are accounting for this risk.
31699
31699
  const optionsStore = useOptionsStore();
31700
31700
  const searchResultStore = useSearchResultStore();
31701
31701
  const screenStore = useScreenStore();
31702
+ const dynamicDataStore = useDynamicDataStore();
31702
31703
  const { columnCount } = storeToRefs(searchResultStore);
31703
31704
  const recommendations2 = ref([]);
31704
31705
  const recommendationsType = ref(
@@ -31819,6 +31820,9 @@ and ensure you are accounting for this risk.
31819
31820
  return;
31820
31821
  }
31821
31822
  recommendations2.value = result2.recommended;
31823
+ yield dynamicDataStore.enhanceSearchResultsWithDynamicData({
31824
+ result: { items: result2.recommended }
31825
+ });
31822
31826
  } finally {
31823
31827
  loading.value = false;
31824
31828
  }
@@ -31699,6 +31699,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
31699
31699
  const optionsStore = useOptionsStore();
31700
31700
  const searchResultStore = useSearchResultStore();
31701
31701
  const screenStore = useScreenStore();
31702
+ const dynamicDataStore = useDynamicDataStore();
31702
31703
  const { columnCount } = storeToRefs(searchResultStore);
31703
31704
  const recommendations2 = ref([]);
31704
31705
  const recommendationsType = ref(
@@ -31819,6 +31820,9 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
31819
31820
  return;
31820
31821
  }
31821
31822
  recommendations2.value = result2.recommended;
31823
+ yield dynamicDataStore.enhanceSearchResultsWithDynamicData({
31824
+ result: { items: result2.recommended }
31825
+ });
31822
31826
  } finally {
31823
31827
  loading.value = false;
31824
31828
  }
@@ -31697,6 +31697,7 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
31697
31697
  const optionsStore = useOptionsStore();
31698
31698
  const searchResultStore = useSearchResultStore();
31699
31699
  const screenStore = useScreenStore();
31700
+ const dynamicDataStore = useDynamicDataStore();
31700
31701
  const { columnCount } = storeToRefs(searchResultStore);
31701
31702
  const recommendations2 = ref([]);
31702
31703
  const recommendationsType = ref(
@@ -31817,6 +31818,9 @@ const _sfc_main$a = /* @__PURE__ */ defineComponent({
31817
31818
  return;
31818
31819
  }
31819
31820
  recommendations2.value = result2.recommended;
31821
+ yield dynamicDataStore.enhanceSearchResultsWithDynamicData({
31822
+ result: { items: result2.recommended }
31823
+ });
31820
31824
  } finally {
31821
31825
  loading.value = false;
31822
31826
  }
@@ -31701,6 +31701,7 @@ and ensure you are accounting for this risk.
31701
31701
  const optionsStore = useOptionsStore();
31702
31702
  const searchResultStore = useSearchResultStore();
31703
31703
  const screenStore = useScreenStore();
31704
+ const dynamicDataStore = useDynamicDataStore();
31704
31705
  const { columnCount } = storeToRefs(searchResultStore);
31705
31706
  const recommendations2 = ref([]);
31706
31707
  const recommendationsType = ref(
@@ -31821,6 +31822,9 @@ and ensure you are accounting for this risk.
31821
31822
  return;
31822
31823
  }
31823
31824
  recommendations2.value = result2.recommended;
31825
+ yield dynamicDataStore.enhanceSearchResultsWithDynamicData({
31826
+ result: { items: result2.recommended }
31827
+ });
31824
31828
  } finally {
31825
31829
  loading.value = false;
31826
31830
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getlupa/client",
3
- "version": "1.14.14",
3
+ "version": "1.14.16",
4
4
  "main": "dist/lupaSearch.js",
5
5
  "module": "dist/index.mjs",
6
6
  "types": "dist/src/index.d.ts",
@@ -20,7 +20,7 @@
20
20
  },
21
21
  "devDependencies": {
22
22
  "@getlupa/client-sdk": "^1.3.4",
23
- "@getlupa/vue": "0.14.10",
23
+ "@getlupa/vue": "0.14.16",
24
24
  "@rushstack/eslint-patch": "^1.3.2",
25
25
  "@tsconfig/node18": "^2.0.1",
26
26
  "@types/jsdom": "^21.1.1",