@shopby/shop-sdk 1.37.1 → 1.37.3
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.37.3](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.37.2...v1.37.3) (2023-02-08)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* post like 응답값 배열 타입으로 수정 ([5dfc8a3](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/5dfc8a3aca7dc920bcf31ea804e7d6e1547d8c1e))
|
|
11
|
+
|
|
12
|
+
### [1.37.2](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.37.1...v1.37.2) (2023-02-08)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* post like 응답값 배열 타입으로 수정 ([0f37861](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/0f37861b93c2831e490f5a0655e31898f306d8fd))
|
|
18
|
+
|
|
5
19
|
### [1.37.1](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.37.0...v1.37.1) (2023-02-07)
|
|
6
20
|
|
|
7
21
|
|
|
@@ -31,7 +31,7 @@ declare const product: (httpRequest: Function) => {
|
|
|
31
31
|
* Profile
|
|
32
32
|
*/
|
|
33
33
|
getProfileLikeProducts(request: any): Promise<ResponseData<any>>;
|
|
34
|
-
postProfileLikeProducts(request: PostProfileLikeProductsRequest): Promise<ResponseData<PostProfileLikeProductsResponse
|
|
34
|
+
postProfileLikeProducts(request: PostProfileLikeProductsRequest): Promise<ResponseData<PostProfileLikeProductsResponse>>;
|
|
35
35
|
/**
|
|
36
36
|
* Shopby
|
|
37
37
|
*/
|
package/build/src/index.d.ts
CHANGED
|
@@ -261,7 +261,7 @@ export declare const create: ({ baseURL, headerOption, customHttpRequest, versio
|
|
|
261
261
|
getProductsProductNoOptionsImages(request: any): Promise<import("../types/http").ResponseData<any>>;
|
|
262
262
|
getProductsProductNoOptionsOptionNoImages(request: any): Promise<import("../types/http").ResponseData<any>>;
|
|
263
263
|
getProfileLikeProducts(request: any): Promise<import("../types/http").ResponseData<any>>;
|
|
264
|
-
postProfileLikeProducts(request: import("../types").PostProfileLikeProductsRequest): Promise<import("../types/http").ResponseData<import("../types").PostProfileLikeProductsResponse
|
|
264
|
+
postProfileLikeProducts(request: import("../types").PostProfileLikeProductsRequest): Promise<import("../types/http").ResponseData<import("../types").PostProfileLikeProductsResponse>>;
|
|
265
265
|
getShopbyProductsDisplay(request: any): Promise<import("../types/http").ResponseData<any>>;
|
|
266
266
|
getShopbyProductsProductNoUrlShortening(request: any): Promise<import("../types/http").ResponseData<any>>;
|
|
267
267
|
};
|
|
@@ -86,10 +86,10 @@ export interface PostProfileLikeProductsRequest extends RequestConfig {
|
|
|
86
86
|
productNos: number[];
|
|
87
87
|
};
|
|
88
88
|
}
|
|
89
|
-
export
|
|
89
|
+
export declare type PostProfileLikeProductsResponse = Array<{
|
|
90
90
|
result: boolean;
|
|
91
91
|
productNo: number;
|
|
92
|
-
}
|
|
92
|
+
}>;
|
|
93
93
|
interface DepthCategory {
|
|
94
94
|
parentCategoryNo: number;
|
|
95
95
|
displayOrder: number;
|