@shopby/shop-sdk 1.37.0 → 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,27 @@
|
|
|
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
|
+
|
|
19
|
+
### [1.37.1](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.37.0...v1.37.1) (2023-02-07)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
* diplay GetSkinBannersResponse 타입 수정 ([8bbc109](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/8bbc109b1935afe9e7c786c6c205238886cddad1))
|
|
25
|
+
|
|
5
26
|
## [1.37.0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.36.2...v1.37.0) (2023-02-07)
|
|
6
27
|
|
|
7
28
|
|
|
@@ -62,7 +62,7 @@ declare const display: (httpRequest: Function) => {
|
|
|
62
62
|
/**
|
|
63
63
|
* Skin Banner
|
|
64
64
|
*/
|
|
65
|
-
getSkinBanners(request: GetSkinBannersRequest): Promise<ResponseData<GetSkinBannersResponse
|
|
65
|
+
getSkinBanners(request: GetSkinBannersRequest): Promise<ResponseData<GetSkinBannersResponse>>;
|
|
66
66
|
getSkinBannersGroupsBySkin(request: GetSkinBannersGroupsBySkinRequest): Promise<ResponseData<GetSkinBannersGroupsBySkinResponse>>;
|
|
67
67
|
/**
|
|
68
68
|
* Space
|
|
@@ -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
|
@@ -92,7 +92,7 @@ export declare const create: ({ baseURL, headerOption, customHttpRequest, versio
|
|
|
92
92
|
getProductsProductNoInquiresInquiryNo(request: import("../types").GetProductsProductNoInquiresInquiryNoRequest): Promise<import("../types/http").ResponseData<import("../types").GetProductsProductNoInquiresInquiryNoResponse>>;
|
|
93
93
|
getProfileProductInquiries(request: import("../types").GetProfileProductInquiriesRequest): Promise<import("../types/http").ResponseData<import("../types").GetProfileProductInquiriesResponse>>;
|
|
94
94
|
getProfileProductInquiriesCount(request: any): Promise<import("../types/http").ResponseData<any>>;
|
|
95
|
-
getSkinBanners(request: import("../types").GetSkinBannersRequest): Promise<import("../types/http").ResponseData<import("../types").GetSkinBannersResponse
|
|
95
|
+
getSkinBanners(request: import("../types").GetSkinBannersRequest): Promise<import("../types/http").ResponseData<import("../types").GetSkinBannersResponse>>;
|
|
96
96
|
getSkinBannersGroupsBySkin(request: import("../types").GetSkinBannersGroupsBySkinRequest): Promise<import("../types/http").ResponseData<import("../types").GetSkinBannersGroupsBySkinResponse>>;
|
|
97
97
|
getSpaces(request: import("../types").GetSpacesRequest): Promise<import("../types/http").ResponseData<import("../types").GetSpacesResponse>>;
|
|
98
98
|
getSpacesMapping(request: import("../types").GetSpacesMappingRequest): Promise<import("../types/http").ResponseData<import("../types").GetSpacesMappingResponse>>;
|
|
@@ -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
|
};
|
|
@@ -1074,16 +1074,17 @@ export interface GetSkinBannersRequest extends RequestConfig {
|
|
|
1074
1074
|
bannerGroupCodes: string;
|
|
1075
1075
|
};
|
|
1076
1076
|
}
|
|
1077
|
-
export
|
|
1077
|
+
export declare type GetSkinBannersResponse = Array<SkinBanner>;
|
|
1078
|
+
export interface SkinBanner {
|
|
1078
1079
|
skinCode: string;
|
|
1079
1080
|
skinName: string;
|
|
1080
1081
|
bannerGroupType: string;
|
|
1081
1082
|
skinNo: number;
|
|
1082
|
-
banners:
|
|
1083
|
+
banners: Banner[];
|
|
1083
1084
|
bannerGroupName: string;
|
|
1084
1085
|
bannerGroupCode: BannerGroupCode;
|
|
1085
1086
|
}
|
|
1086
|
-
export interface
|
|
1087
|
+
export interface Banner {
|
|
1087
1088
|
visible: boolean;
|
|
1088
1089
|
resizable: boolean;
|
|
1089
1090
|
registerDateTime: string;
|
|
@@ -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;
|