@shopby/shop-sdk 1.73.4 → 1.73.6
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.73.6](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.73.5...v1.73.6) (2024-06-05)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* oauth2 openid에 기존 회원 정보 타입 추가 ([325a4bf](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/325a4bfd3f76ae7654e04708fe4989fd6c93c365))
|
|
11
|
+
|
|
12
|
+
### [1.73.5](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.73.4...v1.73.5) (2024-06-04)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* oauth2 토큰 관련 변경된 응답 타입 추가 ([a2da109](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/a2da1092d4cdf32759b765225c3251e692d22dce))
|
|
18
|
+
|
|
5
19
|
### [1.73.4](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.73.3...v1.73.4) (2024-05-13)
|
|
6
20
|
|
|
7
21
|
|
|
@@ -121,6 +121,7 @@ export interface OauthTokenResponseV2 {
|
|
|
121
121
|
refreshTokenExpiresIn: number;
|
|
122
122
|
passwordChangeRequired: boolean;
|
|
123
123
|
dormantMemberResponse?: DormantMemberResponse;
|
|
124
|
+
ordinaryMemberResponse?: OrdinaryMemberResponse;
|
|
124
125
|
daysFromLastPasswordChange: number;
|
|
125
126
|
accessToken: string;
|
|
126
127
|
tokenType: string;
|
|
@@ -360,6 +360,9 @@ export interface PostProfileSynchronizeRequest {
|
|
|
360
360
|
export interface PostProfileSynchronizeResponse {
|
|
361
361
|
expiresIn: number;
|
|
362
362
|
accessToken: string;
|
|
363
|
+
tokenType: Nullable<string>;
|
|
364
|
+
refreshToken: Nullable<string>;
|
|
365
|
+
refreshTokenExpiresIn: Nullable<number>;
|
|
363
366
|
}
|
|
364
367
|
export interface PostProfileFindIdRequest {
|
|
365
368
|
requestBody: {
|