@shopby/shop-sdk 1.69.1 → 1.70.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
|
@@ -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.70.0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.69.1...v1.70.0) (2024-03-25)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* 진열검색에 includeStopProduct 추가 ([fc51471](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/fc51471a66a5eda8237f078e12e3695fa3a70d8d))
|
|
11
|
+
|
|
5
12
|
### [1.69.1](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.69.0...v1.69.1) (2024-03-20)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -402,6 +402,7 @@ export interface GetDisplaySectionsIdsSectionIdRequest extends RequestConfig {
|
|
|
402
402
|
};
|
|
403
403
|
queryString: {
|
|
404
404
|
by?: OrderByType;
|
|
405
|
+
includeStopProduct?: boolean;
|
|
405
406
|
soldout: boolean;
|
|
406
407
|
saleStatus?: SaleStatusType;
|
|
407
408
|
pageNumber: number;
|
|
@@ -1616,6 +1617,7 @@ export interface GetDisplaySectionsSectionNoRequest {
|
|
|
1616
1617
|
pageSize: number;
|
|
1617
1618
|
hasTotalCount: boolean;
|
|
1618
1619
|
hasOptionValues: boolean;
|
|
1620
|
+
includeStopProduct?: boolean;
|
|
1619
1621
|
};
|
|
1620
1622
|
useAccessToken?: boolean;
|
|
1621
1623
|
}
|