@shopby/shop-sdk 1.38.0 → 1.39.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,20 @@
|
|
|
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.39.1](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.39.0...v1.39.1) (2023-02-10)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* 관련상품 응답 값 수정 ([3d572e3](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/3d572e3af8611bcf1f334961ee80917eaa5ae667))
|
|
11
|
+
|
|
12
|
+
## [1.39.0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.37.3...v1.39.0) (2023-02-10)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* display / cateogory, productSection request, response type 추가 ([f109dde](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/f109dde42a94f2bf1a48bcfaf534bc693e2a0e0a))
|
|
18
|
+
|
|
5
19
|
## [1.38.0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.37.3...v1.38.0) (2023-02-08)
|
|
6
20
|
|
|
7
21
|
|
|
@@ -202,7 +202,7 @@ export declare type Sticker = {
|
|
|
202
202
|
name: string;
|
|
203
203
|
label: string;
|
|
204
204
|
};
|
|
205
|
-
export interface
|
|
205
|
+
export interface RelatedProduct {
|
|
206
206
|
productNo: number;
|
|
207
207
|
productName: string;
|
|
208
208
|
stickers: Array<Sticker>;
|
|
@@ -214,6 +214,7 @@ export interface GetProductsProductNoRelatedProductsResponse {
|
|
|
214
214
|
additionalDiscountAmt: number;
|
|
215
215
|
requiresAgeVerification: boolean;
|
|
216
216
|
}
|
|
217
|
+
export declare type GetProductsProductNoRelatedProductsResponse = Array<RelatedProduct>;
|
|
217
218
|
export interface PostProfileRecentProductsRequest extends RequestConfig {
|
|
218
219
|
requestBody: {
|
|
219
220
|
productNos: number;
|