@shopgate/pwa-common-commerce 7.30.3 → 7.31.0-alpha.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/cart/helpers/fulfillmentSlots.js +1 -0
- package/cart/reducers/data.js +1 -0
- package/cart/streams/index.js +1 -0
- package/cart/subscriptions/index.js +1 -0
- package/category/helpers/index.js +1 -1
- package/category/subscriptions/index.js +1 -0
- package/favorites/reducers/products.js +1 -0
- package/favorites/streams/index.js +1 -0
- package/favorites/subscriptions/index.js +1 -0
- package/filter/actions/helpers/buildFilterParams.js +1 -0
- package/market/helpers/showReturnPolicy.js +1 -0
- package/market/helpers/showTaxDisclaimer.js +1 -0
- package/package.json +4 -3
- package/product/actions/fetchProducts.js +1 -0
- package/product/reducers/descriptionsByProductId.js +1 -0
- package/product/reducers/imagesByProductId.js +1 -0
- package/product/reducers/mediaByProductId.js +1 -0
- package/product/reducers/productsById.js +1 -0
- package/product/reducers/resultsByHash.js +1 -0
- package/product/selectors/variants.js +1 -0
- package/product/streams/index.js +1 -0
- package/reviews/streams/index.js +1 -0
- package/reviews/streams/spec.js +1 -0
- package/scanner/streams/index.js +1 -0
- package/search/subscriptions/index.js +1 -0
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import "core-js/modules/es.array.includes.js";
|
|
1
2
|
import { getFulfillmentSchedulingEnabled } from '@shopgate/engage/core/selectors';
|
|
2
3
|
import { getPreferredLocation } from '@shopgate/engage/locations';
|
|
3
4
|
import { forceOpenFulfillmentSlotDialog } from '@shopgate/engage/locations/components/FulfillmentSlotSwitcher/FulfillmentSlotProvider';
|
package/cart/reducers/data.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import "core-js/modules/es.array.includes.js";
|
|
1
2
|
import "core-js/modules/es.regexp.flags.js";
|
|
2
3
|
import remove from 'lodash/remove';
|
|
3
4
|
import { ADD_PRODUCTS_TO_CART, DELETE_PRODUCTS_FROM_CART, UPDATE_PRODUCTS_IN_CART, ERROR_ADD_PRODUCTS_TO_CART, REQUEST_CART, RECEIVE_CART, ERROR_CART, SET_CART_PENDING_PRODUCT_COUNT, SET_FULFILLMENT_SLOT } from "../constants";
|
package/cart/streams/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import "core-js/modules/es.array.includes.js";
|
|
1
2
|
import { ACTION_PUSH, ACTION_REPLACE } from '@virtuous/conductor';
|
|
2
3
|
import { buildFetchCategoryProductsParams, getProductsResult } from '@shopgate/engage/product';
|
|
3
4
|
import { getCurrentRoute } from '@shopgate/pwa-common/selectors/router';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import "core-js/modules/es.array.includes.js";
|
|
1
2
|
import { getCurrentRoute } from '@shopgate/pwa-common/selectors/router';
|
|
2
3
|
import { CATEGORY_ALL_PATTERN, CATEGORY_ALL_FILTER_PATTERN } from '@shopgate/pwa-common-commerce/category/constants';
|
|
3
4
|
import { hex2bin } from '@shopgate/pwa-common/helpers/data';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shopgate/pwa-common-commerce",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.31.0-alpha.1",
|
|
4
4
|
"description": "Commerce library for the Shopgate Connect PWA.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Shopgate <support@shopgate.com>",
|
|
@@ -20,8 +20,9 @@
|
|
|
20
20
|
"reselect": "^4.1.8"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"@shopgate/pwa-common": "7.
|
|
24
|
-
"@shopgate/pwa-core": "7.
|
|
23
|
+
"@shopgate/pwa-common": "7.31.0-alpha.1",
|
|
24
|
+
"@shopgate/pwa-core": "7.31.0-alpha.1",
|
|
25
|
+
"@types/lodash": "^4.17.24",
|
|
25
26
|
"lodash": "^4.17.23",
|
|
26
27
|
"react": "^17.0.2",
|
|
27
28
|
"react-dom": "^17.0.2"
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import "core-js/modules/es.array.includes.js";
|
|
1
2
|
import "core-js/modules/es.array.reduce.js";
|
|
2
3
|
import { ENOTFOUND } from '@shopgate/pwa-core/constants/Pipeline';
|
|
3
4
|
import { PRODUCT_LIFETIME, REQUEST_PRODUCT, RECEIVE_PRODUCT, RECEIVE_PRODUCTS, ERROR_PRODUCT, UPDATE_METADATA, EXPIRE_PRODUCT_BY_ID, DELETE_PRODUCTS_BY_IDS, RECEIVE_PRODUCT_RELATIONS, EXPIRE_PRODUCT_DATA } from "../constants";
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import "core-js/modules/es.array.includes.js";
|
|
1
2
|
import "core-js/modules/es.regexp.flags.js";
|
|
2
3
|
import { createSelector } from 'reselect';
|
|
3
4
|
import { getProducts, getProductById, getProductVariants, hasBaseProductVariants, isVariantSelected, getSelectedVariant, getVariantProductId } from "./product";
|
package/product/streams/index.js
CHANGED
package/reviews/streams/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import "core-js/modules/es.array.includes.js";
|
|
1
2
|
import { main$ } from '@shopgate/pwa-common/streams/main';
|
|
2
3
|
import { routeWillEnter$, routeWillLeave$ } from '@shopgate/pwa-common/streams/router';
|
|
3
4
|
import { ITEM_PATH, RECEIVE_PRODUCT, RECEIVE_PRODUCT_CACHED } from '@shopgate/pwa-common-commerce/product/constants';
|
package/reviews/streams/spec.js
CHANGED
package/scanner/streams/index.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import "core-js/modules/es.array.includes.js";
|
|
1
2
|
import { main$ } from '@shopgate/pwa-common/streams/main';
|
|
2
3
|
import { routeDidEnter$ } from '@shopgate/pwa-common/streams/router';
|
|
3
4
|
import { START_SCANNER, SCANNER_STARTED, SCANNER_CANCELLED, SCANNER_FINISHED, SCANNER_PATH, SCANNER_FORMATS_BARCODE, SCANNER_FORMATS_QR_CODE } from "../constants";
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import "core-js/modules/es.array.includes.js";
|
|
1
2
|
import { LoadingProvider } from '@shopgate/pwa-common/providers';
|
|
2
3
|
import { ACTION_PUSH, ACTION_REPLACE } from '@virtuous/conductor';
|
|
3
4
|
import { buildFetchSearchResultsParams, getProductsResult } from '@shopgate/engage/product';
|