@scayle/storefront-core 7.39.1 → 7.40.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,11 @@
1
1
  # @scayle/storefront-core
2
2
 
3
+ ## 7.40.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Export Campaign types from @aboutyou/backbone
8
+
3
9
  ## 7.39.1
4
10
 
5
11
  ### Patch Changes
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1 @@
1
+ export type { Campaign } from '@aboutyou/backbone/types/campaign';
File without changes
@@ -91,6 +91,17 @@ Object.keys(_brand).forEach(function (key) {
91
91
  }
92
92
  });
93
93
  });
94
+ var _campaign = require("./bapi/campaign.cjs");
95
+ Object.keys(_campaign).forEach(function (key) {
96
+ if (key === "default" || key === "__esModule") return;
97
+ if (key in exports && exports[key] === _campaign[key]) return;
98
+ Object.defineProperty(exports, key, {
99
+ enumerable: true,
100
+ get: function () {
101
+ return _campaign[key];
102
+ }
103
+ });
104
+ });
94
105
  var _category = require("./bapi/category.cjs");
95
106
  Object.keys(_category).forEach(function (key) {
96
107
  if (key === "default" || key === "__esModule") return;
@@ -7,6 +7,7 @@ export * from './api/auth';
7
7
  export type { BapiClient } from '@aboutyou/backbone';
8
8
  export * from './bapi/basket';
9
9
  export * from './bapi/brand';
10
+ export * from './bapi/campaign';
10
11
  export * from './bapi/category';
11
12
  export * from './bapi/filter';
12
13
  export * from './bapi/navigation';
@@ -6,6 +6,7 @@ export * from "./api/context.mjs";
6
6
  export * from "./api/auth.mjs";
7
7
  export * from "./bapi/basket.mjs";
8
8
  export * from "./bapi/brand.mjs";
9
+ export * from "./bapi/campaign.mjs";
9
10
  export * from "./bapi/category.mjs";
10
11
  export * from "./bapi/filter.mjs";
11
12
  export * from "./bapi/navigation.mjs";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scayle/storefront-core",
3
- "version": "7.39.1",
3
+ "version": "7.40.0",
4
4
  "description": "Collection of essential utilities to work with the Storefront API",
5
5
  "author": "SCAYLE Commerce Engine",
6
6
  "license": "MIT",
@@ -61,7 +61,7 @@
61
61
  "dependencies": {
62
62
  "@aboutyou/backbone": "16.1.1",
63
63
  "crypto-js": "4.2.0",
64
- "jose": "5.2.1",
64
+ "jose": "5.2.2",
65
65
  "radash": "11.0.0",
66
66
  "slugify": "1.6.6",
67
67
  "ufo": "1.4.0",