@wix/headless-stores 0.0.26 → 0.0.27
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/cjs/dist/react/index.d.ts +1 -0
- package/cjs/dist/react/index.js +1 -0
- package/cjs/dist/services/index.d.ts +2 -3
- package/cjs/dist/services/index.js +12 -3
- package/dist/react/index.d.ts +1 -0
- package/dist/react/index.js +1 -0
- package/dist/services/index.d.ts +2 -3
- package/dist/services/index.js +12 -3
- package/package.json +1 -1
|
@@ -11,3 +11,4 @@ export * as Product from "./Product.js";
|
|
|
11
11
|
export * as ProductModifiers from "./ProductModifiers.js";
|
|
12
12
|
export * as SelectedVariant from "./SelectedVariant.js";
|
|
13
13
|
export * as ProductActions from "./ProductActions.js";
|
|
14
|
+
export * as ProductsList from "./ProductsList.js";
|
package/cjs/dist/react/index.js
CHANGED
|
@@ -11,3 +11,4 @@ export * as Product from "./Product.js";
|
|
|
11
11
|
export * as ProductModifiers from "./ProductModifiers.js";
|
|
12
12
|
export * as SelectedVariant from "./SelectedVariant.js";
|
|
13
13
|
export * as ProductActions from "./ProductActions.js";
|
|
14
|
+
export * as ProductsList from "./ProductsList.js";
|
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export { payNowServiceBinding, loadPayNowServiceInitialData, } from "./pay-now-service.js";
|
|
3
|
-
export { CatalogService, CatalogServiceDefinition, loadCatalogServiceConfig, } from "./catalog-service.js";
|
|
1
|
+
export { CatalogService, CatalogServiceDefinition, } from "./catalog-service.js";
|
|
4
2
|
export { CategoryService, CategoryServiceDefinition, loadCategoriesConfig, } from "./category-service.js";
|
|
5
3
|
export { CollectionService, CollectionServiceDefinition, loadCollectionServiceConfig, } from "./collection-service.js";
|
|
6
4
|
export { FilterService, FilterServiceDefinition, Filter, AvailableOptions, } from "./filter-service.js";
|
|
@@ -9,4 +7,5 @@ export { ProductService, ProductServiceDefinition, loadProductServiceConfig, } f
|
|
|
9
7
|
export { RelatedProductsService, RelatedProductsServiceDefinition, loadRelatedProductsServiceConfig, } from "./related-products-service.js";
|
|
10
8
|
export { SelectedVariantService, SelectedVariantServiceDefinition, } from "./selected-variant-service.js";
|
|
11
9
|
export { SocialSharingService, SocialSharingServiceDefinition, } from "./social-sharing-service.js";
|
|
10
|
+
export { ProductListService, ProductsListServiceDefinition, loadProductsListServiceConfig } from "./products-list-service.js";
|
|
12
11
|
export { SortService, SortServiceDefinition, SortBy } from "./sort-service.js";
|
|
@@ -1,6 +1,14 @@
|
|
|
1
|
-
export {
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
// export {
|
|
2
|
+
// buyNowServiceBinding,
|
|
3
|
+
// loadBuyNowServiceInitialData,
|
|
4
|
+
// } from "./buy-now-service.js";
|
|
5
|
+
// export {
|
|
6
|
+
// payNowServiceBinding,
|
|
7
|
+
// loadPayNowServiceInitialData,
|
|
8
|
+
// } from "./pay-now-service.js";
|
|
9
|
+
export { CatalogService, CatalogServiceDefinition,
|
|
10
|
+
// loadCatalogServiceConfig,
|
|
11
|
+
} from "./catalog-service.js";
|
|
4
12
|
export { CategoryService, CategoryServiceDefinition, loadCategoriesConfig, } from "./category-service.js";
|
|
5
13
|
export { CollectionService, CollectionServiceDefinition, loadCollectionServiceConfig, } from "./collection-service.js";
|
|
6
14
|
export { FilterService, FilterServiceDefinition, } from "./filter-service.js";
|
|
@@ -9,4 +17,5 @@ export { ProductService, ProductServiceDefinition, loadProductServiceConfig, } f
|
|
|
9
17
|
export { RelatedProductsService, RelatedProductsServiceDefinition, loadRelatedProductsServiceConfig, } from "./related-products-service.js";
|
|
10
18
|
export { SelectedVariantService, SelectedVariantServiceDefinition, } from "./selected-variant-service.js";
|
|
11
19
|
export { SocialSharingService, SocialSharingServiceDefinition, } from "./social-sharing-service.js";
|
|
20
|
+
export { ProductListService, ProductsListServiceDefinition, loadProductsListServiceConfig } from "./products-list-service.js";
|
|
12
21
|
export { SortService, SortServiceDefinition } from "./sort-service.js";
|
package/dist/react/index.d.ts
CHANGED
|
@@ -11,3 +11,4 @@ export * as Product from "./Product.js";
|
|
|
11
11
|
export * as ProductModifiers from "./ProductModifiers.js";
|
|
12
12
|
export * as SelectedVariant from "./SelectedVariant.js";
|
|
13
13
|
export * as ProductActions from "./ProductActions.js";
|
|
14
|
+
export * as ProductsList from "./ProductsList.js";
|
package/dist/react/index.js
CHANGED
|
@@ -11,3 +11,4 @@ export * as Product from "./Product.js";
|
|
|
11
11
|
export * as ProductModifiers from "./ProductModifiers.js";
|
|
12
12
|
export * as SelectedVariant from "./SelectedVariant.js";
|
|
13
13
|
export * as ProductActions from "./ProductActions.js";
|
|
14
|
+
export * as ProductsList from "./ProductsList.js";
|
package/dist/services/index.d.ts
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
export {
|
|
2
|
-
export { payNowServiceBinding, loadPayNowServiceInitialData, } from "./pay-now-service.js";
|
|
3
|
-
export { CatalogService, CatalogServiceDefinition, loadCatalogServiceConfig, } from "./catalog-service.js";
|
|
1
|
+
export { CatalogService, CatalogServiceDefinition, } from "./catalog-service.js";
|
|
4
2
|
export { CategoryService, CategoryServiceDefinition, loadCategoriesConfig, } from "./category-service.js";
|
|
5
3
|
export { CollectionService, CollectionServiceDefinition, loadCollectionServiceConfig, } from "./collection-service.js";
|
|
6
4
|
export { FilterService, FilterServiceDefinition, Filter, AvailableOptions, } from "./filter-service.js";
|
|
@@ -9,4 +7,5 @@ export { ProductService, ProductServiceDefinition, loadProductServiceConfig, } f
|
|
|
9
7
|
export { RelatedProductsService, RelatedProductsServiceDefinition, loadRelatedProductsServiceConfig, } from "./related-products-service.js";
|
|
10
8
|
export { SelectedVariantService, SelectedVariantServiceDefinition, } from "./selected-variant-service.js";
|
|
11
9
|
export { SocialSharingService, SocialSharingServiceDefinition, } from "./social-sharing-service.js";
|
|
10
|
+
export { ProductListService, ProductsListServiceDefinition, loadProductsListServiceConfig } from "./products-list-service.js";
|
|
12
11
|
export { SortService, SortServiceDefinition, SortBy } from "./sort-service.js";
|
package/dist/services/index.js
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
|
-
export {
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
// export {
|
|
2
|
+
// buyNowServiceBinding,
|
|
3
|
+
// loadBuyNowServiceInitialData,
|
|
4
|
+
// } from "./buy-now-service.js";
|
|
5
|
+
// export {
|
|
6
|
+
// payNowServiceBinding,
|
|
7
|
+
// loadPayNowServiceInitialData,
|
|
8
|
+
// } from "./pay-now-service.js";
|
|
9
|
+
export { CatalogService, CatalogServiceDefinition,
|
|
10
|
+
// loadCatalogServiceConfig,
|
|
11
|
+
} from "./catalog-service.js";
|
|
4
12
|
export { CategoryService, CategoryServiceDefinition, loadCategoriesConfig, } from "./category-service.js";
|
|
5
13
|
export { CollectionService, CollectionServiceDefinition, loadCollectionServiceConfig, } from "./collection-service.js";
|
|
6
14
|
export { FilterService, FilterServiceDefinition, } from "./filter-service.js";
|
|
@@ -9,4 +17,5 @@ export { ProductService, ProductServiceDefinition, loadProductServiceConfig, } f
|
|
|
9
17
|
export { RelatedProductsService, RelatedProductsServiceDefinition, loadRelatedProductsServiceConfig, } from "./related-products-service.js";
|
|
10
18
|
export { SelectedVariantService, SelectedVariantServiceDefinition, } from "./selected-variant-service.js";
|
|
11
19
|
export { SocialSharingService, SocialSharingServiceDefinition, } from "./social-sharing-service.js";
|
|
20
|
+
export { ProductListService, ProductsListServiceDefinition, loadProductsListServiceConfig } from "./products-list-service.js";
|
|
12
21
|
export { SortService, SortServiceDefinition } from "./sort-service.js";
|