@shopby/shop-sdk 1.54.9 → 1.54.11
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.54.11](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.54.10...v1.54.11) (2023-03-22)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* event issuablePlatformTypes, usablePlatformTypes string[] 타입으로 변경 ([977d01c](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/977d01cbe0f4bb38742a75a03695644b372a7cff))
|
|
11
|
+
|
|
12
|
+
### [1.54.10](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.54.9...v1.54.10) (2023-03-22)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* type DiscountUnitType import 경로 수정 ([54c26c8](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/54c26c86ca4c4092ace2b8ebf8cbdf86aa358a00))
|
|
18
|
+
|
|
5
19
|
### [1.54.9](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.54.8...v1.54.9) (2023-03-22)
|
|
6
20
|
|
|
7
21
|
|
|
@@ -2,10 +2,9 @@ import { Accumulation } from './../product/index';
|
|
|
2
2
|
import { CouponTargetType, DeliveryConditionType } from './../order/unions';
|
|
3
3
|
import { EventCouponType } from './../promotion/unions';
|
|
4
4
|
import { BrandNameType, ProductSalePeriodType, SaleStatus } from './../product/core/unions/index';
|
|
5
|
-
import { DiscountUnitType } from './../product/amount/unions/index';
|
|
6
5
|
import { OptionalAccessTokenRequest, RequestConfig } from '../../http';
|
|
7
6
|
import { OrderByType, SaleStatusType, SectionDisplayType, Yn } from '../../common/unions';
|
|
8
|
-
import { ProductInquiryType, ProviderType, DisplayStatusType, SearchType, ReviewOrderByType, ReviewOrderDirectionType, BestReviewType, PlatformType, BoardType, BoardImageType, PhotoReviewDisplayType, InquiryBoardType, InquiryBoardImageType, SlideCountType, ScreenSizeUnitType, PopupPageType, EventUrlType, EventProgressStatus, EventOrderBy } from './unions';
|
|
7
|
+
import { ProductInquiryType, ProviderType, DisplayStatusType, SearchType, ReviewOrderByType, ReviewOrderDirectionType, BestReviewType, PlatformType, BoardType, BoardImageType, PhotoReviewDisplayType, InquiryBoardType, InquiryBoardImageType, SlideCountType, ScreenSizeUnitType, PopupPageType, EventUrlType, EventProgressStatus, EventOrderBy, DiscountUnitType } from './unions';
|
|
9
8
|
import { Space, SpaceMappingResult } from './space';
|
|
10
9
|
import { DateYmdt, Nullable } from 'types/common';
|
|
11
10
|
import { DefaultOrderStatusType, OrderOptionType } from 'types';
|
|
@@ -213,7 +212,7 @@ export interface DisplayEventsEventNoCouponDiscountInfo {
|
|
|
213
212
|
export interface DisplayEventsEventNoCouponIssueConstraint {
|
|
214
213
|
dailyIssueLimitCnt?: number;
|
|
215
214
|
issuePerPersonLimitCnt?: number;
|
|
216
|
-
issuablePlatformTypes?: PlatformType
|
|
215
|
+
issuablePlatformTypes?: Array<PlatformType>;
|
|
217
216
|
memberGradeName?: string;
|
|
218
217
|
dailyIssuePerPersonLimitCnt?: number;
|
|
219
218
|
dailyIssueLimit?: boolean;
|
|
@@ -223,7 +222,7 @@ export interface DisplayEventsEventNoCouponUseConstraint {
|
|
|
223
222
|
limitPayType?: string;
|
|
224
223
|
useDays?: number;
|
|
225
224
|
minSalePrice?: number;
|
|
226
|
-
usablePlatformTypes?: PlatformType
|
|
225
|
+
usablePlatformTypes?: Array<PlatformType>;
|
|
227
226
|
useEndYmdt?: string;
|
|
228
227
|
minDeliveryAmt?: number;
|
|
229
228
|
maxSalePrice?: number;
|