@shopby/shop-sdk 1.71.0 → 1.71.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
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.71.1](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.71.0...v1.71.1) (2024-03-29)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * search products summary 타입내 export 추가 ([1899206](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/189920623a8f090121c7fbca949c187744431a58))
11
+
5
12
  ## [1.71.0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.70.1...v1.71.0) (2024-03-29)
6
13
 
7
14
 
@@ -1,12 +1,12 @@
1
1
  import type { AND_OR, DELIVERY_CONDITION_TYPE, DISCOUNTED_COMPARISON, SALE_STATUS, SHIPPING_AREA_TYPE } from 'types';
2
- interface SearchSummaryCategory {
2
+ export interface SearchSummaryCategory {
3
3
  parentCategoryNo: number;
4
4
  displayOrder: number;
5
5
  count: number;
6
6
  categoryNo: number;
7
7
  label: string;
8
8
  }
9
- interface SearchSummaryMultiLevelCategory extends SearchSummaryCategory {
9
+ export interface SearchSummaryMultiLevelCategory extends SearchSummaryCategory {
10
10
  childCategories: Array<SearchSummaryMultiLevelCategory>;
11
11
  }
12
12
  export interface GetProductsSearchSummaryRequest {
@@ -60,4 +60,3 @@ export interface GetProductsSearchSummaryResponse {
60
60
  depth4Categories: Array<SearchSummaryCategory>;
61
61
  depth5Categories: Array<SearchSummaryCategory>;
62
62
  }
63
- export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.71.0",
3
+ "version": "1.71.1",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",