@shopby/shop-sdk 1.69.1 → 1.70.1
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.70.1](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.70.0...v1.70.1) (2024-03-26)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* address detail 인터페이스에 shippingEtcInfo 타입 추가 ([33a5134](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/33a5134e01b9fff79149d8b07867ad96676c3b0e))
|
|
11
|
+
|
|
12
|
+
## [1.70.0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.69.1...v1.70.0) (2024-03-25)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* 진열검색에 includeStopProduct 추가 ([fc51471](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/fc51471a66a5eda8237f078e12e3695fa3a70d8d))
|
|
18
|
+
|
|
5
19
|
### [1.69.1](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.69.0...v1.69.1) (2024-03-20)
|
|
6
20
|
|
|
7
21
|
|
|
@@ -402,6 +402,7 @@ export interface GetDisplaySectionsIdsSectionIdRequest extends RequestConfig {
|
|
|
402
402
|
};
|
|
403
403
|
queryString: {
|
|
404
404
|
by?: OrderByType;
|
|
405
|
+
includeStopProduct?: boolean;
|
|
405
406
|
soldout: boolean;
|
|
406
407
|
saleStatus?: SaleStatusType;
|
|
407
408
|
pageNumber: number;
|
|
@@ -1616,6 +1617,7 @@ export interface GetDisplaySectionsSectionNoRequest {
|
|
|
1616
1617
|
pageSize: number;
|
|
1617
1618
|
hasTotalCount: boolean;
|
|
1618
1619
|
hasOptionValues: boolean;
|
|
1620
|
+
includeStopProduct?: boolean;
|
|
1619
1621
|
};
|
|
1620
1622
|
useAccessToken?: boolean;
|
|
1621
1623
|
}
|
|
@@ -1182,6 +1182,11 @@ export interface AddressPayload {
|
|
|
1182
1182
|
receiverLastName?: string;
|
|
1183
1183
|
orderAdditionalInfo?: string;
|
|
1184
1184
|
}
|
|
1185
|
+
export interface ShippingEtcInfo {
|
|
1186
|
+
orderAdditionalInfo: Nullable<string>;
|
|
1187
|
+
receiverFirstName: string;
|
|
1188
|
+
receiverLastName: string;
|
|
1189
|
+
}
|
|
1185
1190
|
export interface AddressDetail {
|
|
1186
1191
|
lastName: Nullable<string>;
|
|
1187
1192
|
receiverJibunAddress?: string;
|
|
@@ -1205,6 +1210,7 @@ export interface AddressDetail {
|
|
|
1205
1210
|
receiverContact1: string;
|
|
1206
1211
|
receiverContact2: Nullable<string>;
|
|
1207
1212
|
registerYmdt: Nullable<string>;
|
|
1213
|
+
shippingEtcInfo?: Nullable<ShippingEtcInfo>;
|
|
1208
1214
|
}
|
|
1209
1215
|
/**
|
|
1210
1216
|
* path: /profile/shipping-addresses/recent
|