@shopby/shop-sdk 1.51.2 → 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
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.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
|
+
|
|
12
|
+
### [1.51.3](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.51.2...v1.51.3) (2023-03-17)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* bannerGroupCode -> string으로 변경, unions에서 BannerGroupCode 삭제 ([c07edb3](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/c07edb325bdea2ba4ac68e90a478ce7f4ac7bfd4))
|
|
18
|
+
|
|
5
19
|
### [1.51.2](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.51.1...v1.51.2) (2023-03-17)
|
|
6
20
|
|
|
7
21
|
|
|
@@ -5,6 +5,5 @@ export declare type InquirySearchType = 'ALL' | 'title' | 'content' | 'writer';
|
|
|
5
5
|
export declare type InquiryStatus = 'ISSUED' | 'ANSWERED' | 'IN_PROGRESS' | 'ASKED';
|
|
6
6
|
export declare type OrderByType = 'ADMIN_SETTING' | 'SALE' | 'LOW_PRICE' | 'HIGH_PRICE' | 'REVIEW' | 'REGISTER';
|
|
7
7
|
export declare type SaleStatusType = 'READY_ONSALE' | 'ONSALE' | 'RESERVATION_AND_ONSALE';
|
|
8
|
-
export declare type BannerGroupCode = 'LOGO0001' | 'BANNER01' | 'BANNER02' | 'BANNER03' | 'BANNER04' | 'BANNER05' | 'BANNER06' | 'BANNER07';
|
|
9
8
|
export declare type SectionDisplayType = 'LIST' | 'GALLERY' | 'SWIPE' | 'CART' | 'SIMPLE_IMAGE' | 'PRODUCT_MOVE';
|
|
10
9
|
export declare type AgreementType = keyof typeof AGREEMENT_TYPE_MAP;
|
|
@@ -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
|
|
@@ -4,7 +4,7 @@ import { EventCouponType } from './../promotion/unions';
|
|
|
4
4
|
import { BrandNameType, ProductSalePeriodType, SaleStatus } from './../product/core/unions/index';
|
|
5
5
|
import { DiscountUnitType } from './../product/amount/unions/index';
|
|
6
6
|
import { OptionalAccessTokenRequest, RequestConfig } from '../../http';
|
|
7
|
-
import {
|
|
7
|
+
import { OrderByType, SaleStatusType, SectionDisplayType, Yn } from '../../common/unions';
|
|
8
8
|
import { ProductInquiryType, ProviderType, DisplayStatusType, SearchType, ReviewOrderByType, ReviewOrderDirectionType, BestReviewType, PlatformType, BoardType, BoardImageType, PhotoReviewDisplayType, InquiryBoardType, InquiryBoardImageType, SlideCountType, ScreenSizeUnitType, PopupPageType, EventUrlType, EventProgressStatus, EventOrderBy, AffiliateVisits } from './unions';
|
|
9
9
|
import { Space, SpaceMappingResult } from './space';
|
|
10
10
|
import { DateYmdt, Nullable } from 'types/common';
|
|
@@ -1145,7 +1145,7 @@ export interface SkinBanner {
|
|
|
1145
1145
|
skinNo: number;
|
|
1146
1146
|
banners: Banner[];
|
|
1147
1147
|
bannerGroupName: string;
|
|
1148
|
-
bannerGroupCode:
|
|
1148
|
+
bannerGroupCode: string;
|
|
1149
1149
|
}
|
|
1150
1150
|
export interface Banner {
|
|
1151
1151
|
visible: boolean;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/display/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/display/index.ts"],"names":[],"mappings":"AAuCA,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC"}
|