@shopby/shop-sdk 1.54.7 → 1.54.9
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.9](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.54.8...v1.54.9) (2023-03-22)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* eventCoupon allianceRefererType 수정 ([d0739b0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/d0739b0d09a2b1d2d43936328e8df5b16067e4de))
|
|
11
|
+
|
|
12
|
+
### [1.54.8](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.54.7...v1.54.8) (2023-03-21)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* type 오타 수정 ([7741e3b](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/7741e3bfb0d99281d713d92ef5a6ea300021fd78))
|
|
18
|
+
|
|
5
19
|
### [1.54.7](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.54.6...v1.54.7) (2023-03-21)
|
|
6
20
|
|
|
7
21
|
|
|
@@ -5,7 +5,7 @@ import { BrandNameType, ProductSalePeriodType, SaleStatus } from './../product/c
|
|
|
5
5
|
import { DiscountUnitType } from './../product/amount/unions/index';
|
|
6
6
|
import { OptionalAccessTokenRequest, RequestConfig } from '../../http';
|
|
7
7
|
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
|
|
8
|
+
import { ProductInquiryType, ProviderType, DisplayStatusType, SearchType, ReviewOrderByType, ReviewOrderDirectionType, BestReviewType, PlatformType, BoardType, BoardImageType, PhotoReviewDisplayType, InquiryBoardType, InquiryBoardImageType, SlideCountType, ScreenSizeUnitType, PopupPageType, EventUrlType, EventProgressStatus, EventOrderBy } from './unions';
|
|
9
9
|
import { Space, SpaceMappingResult } from './space';
|
|
10
10
|
import { DateYmdt, Nullable } from 'types/common';
|
|
11
11
|
import { DefaultOrderStatusType, OrderOptionType } from 'types';
|
|
@@ -192,7 +192,7 @@ export interface EventCoupon {
|
|
|
192
192
|
dateInfo?: DisplayEventsEventNoCouponDateInfo;
|
|
193
193
|
couponNo?: number;
|
|
194
194
|
couponTargetType?: CouponTargetType;
|
|
195
|
-
allianceRefererType?:
|
|
195
|
+
allianceRefererType?: 'DIRECT' | 'NAVER_KNOWLEDGE_SHOPPING';
|
|
196
196
|
}
|
|
197
197
|
export interface DisplayEventsEventNoCouponDateInfo {
|
|
198
198
|
issueEndYmdt?: string;
|
|
@@ -17,6 +17,6 @@ export declare type ScreenSizeUnitType = keyof typeof SCREEN_SIZE_UNIT_TYPE_MAP;
|
|
|
17
17
|
export declare type PopupPageType = 'MAIN' | 'CATEGORY' | 'EVENT' | 'PRODUCT';
|
|
18
18
|
export declare type DiscountUnitType = 'WON' | 'RATE';
|
|
19
19
|
export declare type EventUrlType = 'EVENT_NUMBER' | 'DIRECT';
|
|
20
|
-
export declare type EventProgressStatus = 'ALL' | 'READY' | '
|
|
20
|
+
export declare type EventProgressStatus = 'ALL' | 'READY' | 'ING' | 'END';
|
|
21
21
|
export declare type EventOrderBy = 'REGISTER_DATE' | 'START_DATE' | 'END_DATE';
|
|
22
22
|
export declare type AffiliateVisits = 'ALL_PRODUCT' | 'PRODUCT' | 'BRAND' | 'CATEGORY' | 'PARTNER' | 'EVENT';
|