@shopby/shop-sdk 1.63.33 → 1.63.35
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,21 @@
|
|
|
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.63.35](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.63.34...v1.63.35) (2024-01-23)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* 회원가입 타입 수정 ([89aa73f](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/89aa73fb844b6b8d52ad927732293dac13c1ca1c))
|
|
11
|
+
* 회원가입 타입 재수정 ([c897b83](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/c897b837e74ee58af65b739ad0555dce59b8e8a5))
|
|
12
|
+
|
|
13
|
+
### [1.63.34](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.63.33...v1.63.34) (2024-01-18)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* oauthLoginUrlRequest reauthenticate 여부 값 추가 ([a5e45a4](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/a5e45a434deacfca86049289bcc38c4e61a918c4))
|
|
19
|
+
|
|
5
20
|
### [1.63.33](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.63.31...v1.63.33) (2024-01-18)
|
|
6
21
|
|
|
7
22
|
|
|
@@ -230,7 +230,8 @@ export interface PutProfileResponse {
|
|
|
230
230
|
export interface PostProfileRequest {
|
|
231
231
|
requestBody: {
|
|
232
232
|
birthday?: string;
|
|
233
|
-
lastName
|
|
233
|
+
lastName?: string;
|
|
234
|
+
city?: string;
|
|
234
235
|
businessName?: string;
|
|
235
236
|
countryCd?: string;
|
|
236
237
|
memberName?: string;
|
|
@@ -242,9 +243,11 @@ export interface PostProfileRequest {
|
|
|
242
243
|
directMailAgreed?: boolean;
|
|
243
244
|
additionalInfo?: string;
|
|
244
245
|
nickname?: string;
|
|
246
|
+
customTermsNos?: Nullable<number[]>;
|
|
247
|
+
state?: string;
|
|
245
248
|
groupNo?: string;
|
|
246
249
|
email?: string;
|
|
247
|
-
memberId
|
|
250
|
+
memberId: string;
|
|
248
251
|
jibunDetailAddress?: string;
|
|
249
252
|
address?: string;
|
|
250
253
|
certificated?: boolean;
|
|
@@ -255,11 +258,10 @@ export interface PostProfileRequest {
|
|
|
255
258
|
openIdAccessToken?: string;
|
|
256
259
|
mobileNo: string;
|
|
257
260
|
firstName?: string;
|
|
258
|
-
telephoneNo
|
|
261
|
+
telephoneNo?: string;
|
|
259
262
|
registrationNo?: string;
|
|
260
263
|
joinTermsAgreements: Array<string>;
|
|
261
264
|
detailAddress?: string;
|
|
262
|
-
customTermsNos?: Nullable<number[]>;
|
|
263
265
|
};
|
|
264
266
|
}
|
|
265
267
|
export interface PostProfileResponse {
|