@scayle/storefront-product-listing 1.6.0 → 1.6.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,5 +1,11 @@
1
1
  # @scayle/storefront-product-listing
2
2
 
3
+ ## 1.6.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Added missing exports for `useAllShopCategoriesForId` composable and SEO utils.
8
+
3
9
  ## 1.6.0
4
10
 
5
11
  ### Minor Changes
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@scayle/storefront-product-listing",
3
3
  "configKey": "product-listing",
4
- "version": "1.6.0",
4
+ "version": "1.6.1",
5
5
  "compatibility": {
6
6
  "bridge": false,
7
7
  "nuxt": ">=3.13"
package/dist/module.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  import { defineNuxtModule, createResolver, resolvePath, addImportsDir } from '@nuxt/kit';
2
2
 
3
3
  const PACKAGE_NAME = "@scayle/storefront-product-listing";
4
- const PACKAGE_VERSION = "1.6.0";
4
+ const PACKAGE_VERSION = "1.6.1";
5
5
  const module = defineNuxtModule({
6
6
  meta: {
7
7
  name: PACKAGE_NAME,
@@ -1,3 +1,4 @@
1
+ export * from './useAllShopCategoriesForId.js';
1
2
  export * from './useAppliedFilters.js';
2
3
  export * from './useFiltersForListing.js';
3
4
  export * from './useProductListSort.js';
@@ -1,3 +1,4 @@
1
+ export * from "./useAllShopCategoriesForId.js";
1
2
  export * from "./useAppliedFilters.js";
2
3
  export * from "./useFiltersForListing.js";
3
4
  export * from "./useProductListSort.js";
@@ -1,3 +1,4 @@
1
+ export * from './composables/useAllShopCategoriesForId.js';
1
2
  export * from './composables/useProductListSort.js';
2
3
  export * from './composables/useAppliedFilters.js';
3
4
  export * from './composables/useFiltersForListing.js';
@@ -5,3 +6,4 @@ export * from './composables/useProductListingSeoData.js';
5
6
  export * from './composables/useProductsForListing.js';
6
7
  export * from './utils/filters.js';
7
8
  export * from './utils/category.js';
9
+ export * from './utils/seo.js';
@@ -1,3 +1,4 @@
1
+ export * from "./composables/useAllShopCategoriesForId.js";
1
2
  export * from "./composables/useProductListSort.js";
2
3
  export * from "./composables/useAppliedFilters.js";
3
4
  export * from "./composables/useFiltersForListing.js";
@@ -5,3 +6,4 @@ export * from "./composables/useProductListingSeoData.js";
5
6
  export * from "./composables/useProductsForListing.js";
6
7
  export * from "./utils/filters.js";
7
8
  export * from "./utils/category.js";
9
+ export * from "./utils/seo.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scayle/storefront-product-listing",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "description": "Collection of essential composables and utilities to work with product listing",
5
5
  "author": "SCAYLE Commerce Engine",
6
6
  "license": "MIT",