@shopby/shop-sdk 1.51.3 → 1.51.4
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 +7 -0
- package/build/types/domain/claim/index.d.ts +22 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
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.4](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.51.3...v1.51.4) (2023-03-20)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* domain/claim ExchangeAddress, ExchangeOption 추가 작업 ([884ed20](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/884ed2087290bb92d9f0d75ec229270f09431448))
|
|
11
|
+
|
|
5
12
|
### [1.51.3](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.51.2...v1.51.3) (2023-03-17)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -321,8 +321,28 @@ export interface PostProfileOrderOptionsOrderOptionNoClaimsExchangeRequest {
|
|
|
321
321
|
requestBody: PostProfileOrderOptionsOrderOptionNoClaimsExchangeRequestBody;
|
|
322
322
|
}
|
|
323
323
|
export interface PostProfileOrderOptionsOrderOptionNoClaimsExchangeRequestBody extends ClaimDefaultRequestBody {
|
|
324
|
-
exchangeAddress:
|
|
325
|
-
exchangeOption:
|
|
324
|
+
exchangeAddress: ExchangeAddress;
|
|
325
|
+
exchangeOption: ExchangeOption;
|
|
326
|
+
}
|
|
327
|
+
export interface ExchangeAddress {
|
|
328
|
+
addressView: string;
|
|
329
|
+
receiverAddress: string;
|
|
330
|
+
receiverJibunAddress: string;
|
|
331
|
+
receiverName: string;
|
|
332
|
+
customsIdNumber: string;
|
|
333
|
+
countryCd: CountryCode;
|
|
334
|
+
receiverZipCd: string;
|
|
335
|
+
receiverDetailAddress: string;
|
|
336
|
+
deliveryMemo: string;
|
|
337
|
+
receiverContact1: string;
|
|
338
|
+
receiverContact2: string;
|
|
339
|
+
}
|
|
340
|
+
export interface ExchangeOption {
|
|
341
|
+
inputTexts: OptionInputResponse[];
|
|
342
|
+
orderCnt: number;
|
|
343
|
+
optionNo: number;
|
|
344
|
+
productNo: number;
|
|
345
|
+
additionalProductNo: number;
|
|
326
346
|
}
|
|
327
347
|
/**
|
|
328
348
|
* path: /profile/order-options/{orderOptionNo}/claims/result
|