@shopby/shop-sdk 1.63.14 → 1.63.16
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.63.16](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.63.15...v1.63.16) (2023-09-12)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* 주문서 조회 시 필수 약관 및 추가 약관 동의 항목 리스트 타입 추가 ([6212c14](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/6212c1413f5e91203099bdfeb5804aabbca9c540))
|
|
11
|
+
|
|
12
|
+
### [1.63.15](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.63.14...v1.63.15) (2023-09-08)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* 스킨 배너그룹 조회 API 수정 ([63154e8](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/63154e8903ab881eb822c1035b33ed6647a36f14))
|
|
18
|
+
|
|
5
19
|
### [1.63.14](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.63.13...v1.63.14) (2023-09-06)
|
|
6
20
|
|
|
7
21
|
|
|
@@ -1238,11 +1238,20 @@ export interface GetSkinBannersGroupsBySkinRequest extends RequestConfig {
|
|
|
1238
1238
|
isPreview: boolean;
|
|
1239
1239
|
};
|
|
1240
1240
|
}
|
|
1241
|
+
export interface SkinDecorationConfiguration {
|
|
1242
|
+
backgroundColor: string;
|
|
1243
|
+
mainColor: string;
|
|
1244
|
+
}
|
|
1241
1245
|
export interface GetSkinBannersGroupsBySkinResponse {
|
|
1242
1246
|
skinCode: string;
|
|
1243
1247
|
platformType: string;
|
|
1244
1248
|
skinName: string;
|
|
1245
1249
|
bannerGroups: Array<SkinBannersGroupsBySkinBannerGroup>;
|
|
1250
|
+
appIcon: string;
|
|
1251
|
+
decorationConfig: SkinDecorationConfiguration;
|
|
1252
|
+
updateDateTime: string;
|
|
1253
|
+
isLiveSkin: boolean;
|
|
1254
|
+
isWorkSkin: boolean;
|
|
1246
1255
|
}
|
|
1247
1256
|
export interface SkinBannersGroupsBySkinBannerGroup {
|
|
1248
1257
|
groupType?: string;
|
|
@@ -225,6 +225,19 @@ export interface GetOrderSheetsOrderSheetNoRequest extends OptionalAccessTokenRe
|
|
|
225
225
|
includeMemberAddress?: boolean;
|
|
226
226
|
};
|
|
227
227
|
}
|
|
228
|
+
export interface OrderSheetTermsInfo {
|
|
229
|
+
contents: string;
|
|
230
|
+
termsName: string;
|
|
231
|
+
termsType: TermsType[];
|
|
232
|
+
termsNo: number;
|
|
233
|
+
}
|
|
234
|
+
export interface OrderSheetCustomTermsInfo {
|
|
235
|
+
customTermsNo: number;
|
|
236
|
+
contents: string;
|
|
237
|
+
termsName: string;
|
|
238
|
+
required: boolean;
|
|
239
|
+
termsNameEng: string;
|
|
240
|
+
}
|
|
228
241
|
export interface GetOrderSheetsOrderSheetNoResponse {
|
|
229
242
|
rentalInfos: Omit<RentalInfo, 'creditRating'>[];
|
|
230
243
|
deliveryGroups: DeliveryGroup[];
|
|
@@ -248,6 +261,8 @@ export interface GetOrderSheetsOrderSheetNoResponse {
|
|
|
248
261
|
orderSheetAddress: OrderSheetAddress;
|
|
249
262
|
paymentInfo: PaymentInfo;
|
|
250
263
|
foreignPartners: ForeignPartner[];
|
|
264
|
+
termsInfos: OrderSheetTermsInfo[];
|
|
265
|
+
customTermsInfos: OrderSheetCustomTermsInfo[];
|
|
251
266
|
}
|
|
252
267
|
export interface ForeignPartner {
|
|
253
268
|
partnerName: string;
|