@shopby/shop-sdk 1.50.1 → 1.51.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,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.51.1](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.51.0...v1.51.1) (2023-03-16)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* domain/product PostProfileRecentProductsRequest requestBody 오타 수정 ([86dae15](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/86dae15098aad374034b4622d30f4bc3ea3afb71))
|
|
11
|
+
|
|
12
|
+
## [1.51.0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.48.8...v1.51.0) (2023-03-16)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* display/event api 호출 메서드 추가 ([e607c01](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/e607c01197d363beb34a4916df156c569bb029b0))
|
|
18
|
+
* display/events 타입 추가 ([f49bf51](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/f49bf51dc2fa2013cbcd243a90b6e2fecf8ad7ea))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* build 오류 수정 ([57cac83](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/57cac831beef0801a22cbc3071058468755f834f))
|
|
24
|
+
* modify GetOauthOpenIdResponse([#141](https://gitlab.e-ncp.com/ncp-client/shop-sdk/issues/141)) ([93b5d72](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/93b5d7288bae0b833cf11b7333fb476b50c42fe1))
|
|
25
|
+
|
|
5
26
|
### [1.50.1](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.50.0...v1.50.1) (2023-03-16)
|
|
6
27
|
|
|
7
28
|
|
|
@@ -73,11 +73,16 @@ export interface DormantMemberResponse {
|
|
|
73
73
|
mobileNo: string;
|
|
74
74
|
email: string;
|
|
75
75
|
}
|
|
76
|
+
export interface OrdinaryMemberResponse {
|
|
77
|
+
signUpDateTime: string;
|
|
78
|
+
email: string;
|
|
79
|
+
}
|
|
76
80
|
export interface OauthOpenIdResponse {
|
|
77
81
|
provider: string;
|
|
78
82
|
dormantMemberResponse?: DormantMemberResponse;
|
|
79
83
|
expireIn: number;
|
|
80
84
|
accessToken: string;
|
|
85
|
+
ordinaryMemberResponse?: OrdinaryMemberResponse;
|
|
81
86
|
}
|
|
82
87
|
export interface PostOauthTokenRequest extends RequestConfig {
|
|
83
88
|
requestBody: {
|
|
@@ -218,6 +218,6 @@ export interface RelatedProduct {
|
|
|
218
218
|
export declare type GetProductsProductNoRelatedProductsResponse = Array<RelatedProduct>;
|
|
219
219
|
export interface PostProfileRecentProductsRequest extends RequestConfig {
|
|
220
220
|
requestBody: {
|
|
221
|
-
|
|
221
|
+
productNo: number;
|
|
222
222
|
};
|
|
223
223
|
}
|