@scayle/storefront-core 7.52.0 → 7.53.0

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,23 @@
1
1
  # @scayle/storefront-core
2
2
 
3
+ ## 7.53.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Deprecate `isCmsPreview` flag in `RpcContext`. This flag indicated that the current session is or has been inside of a CMS editor. With the the introduction of 'Live Preview' for the cms provider 'contentful' and 'storyblok' this flag is no longer necessary.
8
+
9
+ ### Patch Changes
10
+
11
+ - Removes option `considerItemGroupForUniqueness` from `addItemsToBasket` since this is now enabled by default.
12
+ - Updated dependencies
13
+ - @scayle/storefront-api@17.2.0
14
+
15
+ ## 7.52.1
16
+
17
+ ### Patch Changes
18
+
19
+ - Fix `getWishlist` falling back to basket `withParams` instead of wishlist `withParams`
20
+
3
21
  ## 7.52.0
4
22
 
5
23
  ### Minor Changes
@@ -90,8 +90,7 @@ const addItemsToBasket = exports.addItemsToBasket = async function addItemsToBas
90
90
  skipAvailabilityCheck: false,
91
91
  includeItemsWithoutProductData: resolvedWith?.includeItemsWithoutProductData
92
92
  }, {
93
- existingItemHandling: params.existingItemHandling || _constants.ExistingItemHandling.AddQuantityToExisting,
94
- considerItemGroupForUniqueness: Boolean(params.considerItemGroupForUniqueness ?? null)
93
+ existingItemHandling: params.existingItemHandling || _constants.ExistingItemHandling.AddQuantityToExisting
95
94
  });
96
95
  if (result.type === "success") {
97
96
  return result.basket;
@@ -9,7 +9,6 @@ export declare const addItemsToBasket: (params: {
9
9
  items: AddOrUpdateItemType[];
10
10
  existingItemHandling: ExistingItemHandling;
11
11
  with?: BasketWithOptions | undefined;
12
- considerItemGroupForUniqueness?: boolean | undefined;
13
12
  }, context: RpcContext) => Promise<BasketResponseData<Product, Variant>>;
14
13
  export declare const getBasket: (options: BasketWithOptions | undefined, context: RpcContext) => Promise<BasketResponseData<Product, Variant>>;
15
14
  export declare const removeItemFromBasket: (options: {
@@ -90,10 +90,7 @@ export const addItemsToBasket = async function addItemsToBasket2(params, context
90
90
  includeItemsWithoutProductData: resolvedWith?.includeItemsWithoutProductData
91
91
  },
92
92
  {
93
- existingItemHandling: params.existingItemHandling || ExistingItemHandling.AddQuantityToExisting,
94
- considerItemGroupForUniqueness: Boolean(
95
- params.considerItemGroupForUniqueness ?? null
96
- )
93
+ existingItemHandling: params.existingItemHandling || ExistingItemHandling.AddQuantityToExisting
97
94
  }
98
95
  );
99
96
  if (result.type === "success") {
@@ -24,7 +24,7 @@ const getCheckoutToken = exports.getCheckoutToken = async function getCheckoutTo
24
24
  carrier,
25
25
  basketId: context.basketKey,
26
26
  campaignKey: context.campaignKey
27
- }).setIssuedAt(now).setNotBefore(now).setExpirationTime("1h").setIssuer(`${"@scayle/storefront-core"}@${"7.51.1"}`).setProtectedHeader({
27
+ }).setIssuedAt(now).setNotBefore(now).setExpirationTime("1h").setIssuer(`${"@scayle/storefront-core"}@${"7.52.1"}`).setProtectedHeader({
28
28
  alg: "HS256",
29
29
  typ: "JWT"
30
30
  }).sign(secret);
@@ -13,7 +13,7 @@ export const getCheckoutToken = async function getCheckoutToken2(jwtPayload, con
13
13
  carrier,
14
14
  basketId: context.basketKey,
15
15
  campaignKey: context.campaignKey
16
- }).setIssuedAt(now).setNotBefore(now).setExpirationTime("1h").setIssuer(`${"@scayle/storefront-core"}@${"7.51.1"}`).setProtectedHeader({ alg: "HS256", typ: "JWT" }).sign(secret);
16
+ }).setIssuedAt(now).setNotBefore(now).setExpirationTime("1h").setIssuer(`${"@scayle/storefront-core"}@${"7.52.1"}`).setProtectedHeader({ alg: "HS256", typ: "JWT" }).sign(secret);
17
17
  return {
18
18
  accessToken: context.accessToken,
19
19
  checkoutJwt
@@ -8,7 +8,7 @@ var _types = require("../../types/index.cjs");
8
8
  var _constants = require("../../constants/index.cjs");
9
9
  var _response = require("../../utils/response.cjs");
10
10
  function getWithParams(params, context) {
11
- return params.with ?? context.withParams?.basket ?? _constants.MIN_WITH_PARAMS_WISHLIST;
11
+ return params.with ?? context.withParams?.wishlist ?? _constants.MIN_WITH_PARAMS_WISHLIST;
12
12
  }
13
13
  const getWishlist = exports.getWishlist = async function getWishlist2(options, context) {
14
14
  (0, _types.assertSession)(context);
@@ -2,7 +2,7 @@ import { assertSession } from "../../types/index.mjs";
2
2
  import { MIN_WITH_PARAMS_WISHLIST } from "../../constants/index.mjs";
3
3
  import { unwrap } from "../../utils/response.mjs";
4
4
  function getWithParams(params, context) {
5
- return params.with ?? context.withParams?.basket ?? MIN_WITH_PARAMS_WISHLIST;
5
+ return params.with ?? context.withParams?.wishlist ?? MIN_WITH_PARAMS_WISHLIST;
6
6
  }
7
7
  export const getWishlist = async function getWishlist2(options, context) {
8
8
  assertSession(context);
@@ -58,6 +58,9 @@ export type RpcContext = {
58
58
  };
59
59
  bapiClient: StorefrontAPIClient;
60
60
  cached: CachedType;
61
+ /**
62
+ * @deprecated this flag will be removed in a future release.
63
+ */
61
64
  isCmsPreview: boolean;
62
65
  shopId: number;
63
66
  domain: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scayle/storefront-core",
3
- "version": "7.52.0",
3
+ "version": "7.53.0",
4
4
  "description": "Collection of essential utilities to work with the Storefront API",
5
5
  "author": "SCAYLE Commerce Engine",
6
6
  "license": "MIT",
@@ -59,9 +59,9 @@
59
59
  "test:ci": "vitest --run --passWithNoTests --coverage --reporter=default --reporter=junit"
60
60
  },
61
61
  "dependencies": {
62
- "@scayle/storefront-api": "17.1.0",
62
+ "@scayle/storefront-api": "17.2.0",
63
63
  "crypto-js": "4.2.0",
64
- "jose": "5.3.0",
64
+ "jose": "5.4.0",
65
65
  "radash": "12.1.0",
66
66
  "slugify": "1.6.6",
67
67
  "ufo": "1.5.3",
@@ -71,11 +71,11 @@
71
71
  "devDependencies": {
72
72
  "@scayle/eslint-config-storefront": "4.2.0",
73
73
  "@types/crypto-js": "4.2.2",
74
- "@types/node": "20.12.12",
74
+ "@types/node": "20.14.1",
75
75
  "@types/webpack-env": "1.18.5",
76
76
  "@vitest/coverage-v8": "1.6.0",
77
- "dprint": "0.45.1",
78
- "eslint": "9.3.0",
77
+ "dprint": "0.46.1",
78
+ "eslint": "9.4.0",
79
79
  "eslint-formatter-gitlab": "5.1.0",
80
80
  "publint": "0.2.8",
81
81
  "rimraf": "5.0.7",