@shopby/shop-sdk 1.50.1 → 1.51.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 +14 -0
- package/build/types/domain/auth/index.d.ts +5 -0
- package/package.json +1 -1
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.51.0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.48.8...v1.51.0) (2023-03-16)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* display/event api 호출 메서드 추가 ([e607c01](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/e607c01197d363beb34a4916df156c569bb029b0))
|
|
11
|
+
* display/events 타입 추가 ([f49bf51](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/f49bf51dc2fa2013cbcd243a90b6e2fecf8ad7ea))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* build 오류 수정 ([57cac83](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/57cac831beef0801a22cbc3071058468755f834f))
|
|
17
|
+
* 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))
|
|
18
|
+
|
|
5
19
|
### [1.50.1](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.50.0...v1.50.1) (2023-03-16)
|
|
6
20
|
|
|
7
21
|
|
|
@@ -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: {
|