@shopby/shop-sdk 1.63.22 → 1.63.23
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/order/index.d.ts +10 -0
- 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.63.23](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.63.22...v1.63.23) (2023-10-10)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* 배송지 정보에 해외배송컬럼들 추가 ([e65bd8a](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/e65bd8a81c5981d6d806b5f3623c3e6969f17c0d))
|
|
11
|
+
|
|
5
12
|
### [1.63.22](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.63.21...v1.63.22) (2023-10-10)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -696,6 +696,11 @@ export interface ShippingAddress {
|
|
|
696
696
|
shippingInfoLaterInputContact?: string;
|
|
697
697
|
receiverContact1: string;
|
|
698
698
|
receiverContact2?: string;
|
|
699
|
+
receiverCity?: string;
|
|
700
|
+
receiverState?: string;
|
|
701
|
+
receiverFirstName?: string;
|
|
702
|
+
receiverLastName?: string;
|
|
703
|
+
orderAdditionalInfo?: string;
|
|
699
704
|
}
|
|
700
705
|
export interface ShippingAddressesItem {
|
|
701
706
|
payProductParams: PayProductParams;
|
|
@@ -1147,6 +1152,11 @@ export interface AddressPayload {
|
|
|
1147
1152
|
receiverDetailAddress?: string;
|
|
1148
1153
|
receiverContact1: string;
|
|
1149
1154
|
receiverContact2?: string;
|
|
1155
|
+
receiverCity?: string;
|
|
1156
|
+
receiverState?: string;
|
|
1157
|
+
receiverFirstName?: string;
|
|
1158
|
+
receiverLastName?: string;
|
|
1159
|
+
orderAdditionalInfo?: string;
|
|
1150
1160
|
}
|
|
1151
1161
|
export interface AddressDetail {
|
|
1152
1162
|
lastName: Nullable<string>;
|