@shopby/shop-sdk 1.55.4 → 1.55.5
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,13 @@
|
|
|
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.55.5](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.55.4...v1.55.5) (2023-03-23)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* profile > 상품평 타입 수정 ([3e94fe8](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/3e94fe87c43e0f3c4fa50985717a36ce69b6d4e9))
|
|
11
|
+
|
|
5
12
|
### [1.55.4](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.55.3...v1.55.4) (2023-03-23)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
import { Accumulation } from './../product/index';
|
|
2
|
-
import { CouponTargetType, DeliveryCompanyType, DeliveryCompanyTypeLabel, DeliveryConditionType } from
|
|
2
|
+
import { CouponTargetType, DeliveryCompanyType, DeliveryCompanyTypeLabel, DeliveryConditionType } from './../order/unions';
|
|
3
3
|
import { EventCouponType } from './../promotion/unions';
|
|
4
4
|
import { BrandNameType, ProductSalePeriodType, SaleStatus } from './../product/core/unions/index';
|
|
5
5
|
import { OptionalAccessTokenRequest, RequestConfig } from '../../http';
|
|
6
6
|
import { OrderByType, SaleStatusType, SectionDisplayType, Yn } from '../../common/unions';
|
|
7
|
-
import { ProductInquiryType, ProviderType, DisplayStatusType, SearchType, ReviewOrderByType, ReviewOrderDirectionType, BestReviewType, PlatformType, BoardType, BoardImageType, PhotoReviewDisplayType, InquiryBoardType, InquiryBoardImageType, SlideCountType, ScreenSizeUnitType, PopupPageType, EventUrlType, EventProgressStatus, EventOrderBy, DiscountUnitType, EventNoOrderBy, DisplayOptionType } from
|
|
7
|
+
import { ProductInquiryType, ProviderType, DisplayStatusType, SearchType, ReviewOrderByType, ReviewOrderDirectionType, BestReviewType, PlatformType, BoardType, BoardImageType, PhotoReviewDisplayType, InquiryBoardType, InquiryBoardImageType, SlideCountType, ScreenSizeUnitType, PopupPageType, EventUrlType, EventProgressStatus, EventOrderBy, DiscountUnitType, EventNoOrderBy, DisplayOptionType } from './unions';
|
|
8
8
|
import { Space, SpaceMappingResult } from './space';
|
|
9
9
|
import { DateYmdt, Nullable } from 'types/common';
|
|
10
|
-
import { ClaimStatusType, DefaultOrderStatusType, OrderOptionType } from
|
|
10
|
+
import { ClaimStatusType, DefaultOrderStatusType, OrderOptionType } from 'types';
|
|
11
11
|
import { ProductDeliveryConditionType } from '../product/search/union';
|
|
12
12
|
export * from './space';
|
|
13
13
|
export * from './unions';
|
|
@@ -986,10 +986,6 @@ export interface ProductsProductReviewsOrderedOption {
|
|
|
986
986
|
optionName?: string;
|
|
987
987
|
orderOptionNo?: number;
|
|
988
988
|
}
|
|
989
|
-
export interface ProfileOrderOptionsProductReviewable {
|
|
990
|
-
totalCount?: number;
|
|
991
|
-
items?: Array<ProfileOrderOptionsProductReviewableItem>;
|
|
992
|
-
}
|
|
993
989
|
export interface ProfileOrderOptionsProductReviewableDelivery {
|
|
994
990
|
deliveryCompanyTypeLabel?: DeliveryCompanyTypeLabel;
|
|
995
991
|
deliveryCompanyType?: DeliveryCompanyType;
|
|
@@ -1026,13 +1022,14 @@ export interface ProfileOrderOptionsProductReviewableItem {
|
|
|
1026
1022
|
orderStatusType?: DefaultOrderStatusType;
|
|
1027
1023
|
optionValue?: string;
|
|
1028
1024
|
orderCnt?: number;
|
|
1029
|
-
exchangeYn?:
|
|
1025
|
+
exchangeYn?: Yn;
|
|
1030
1026
|
accumulationAmt?: number;
|
|
1031
1027
|
orderStatusDate?: ProfileOrderOptionsProductReviewableOrderStatusDate;
|
|
1032
1028
|
brandNameEn?: string;
|
|
1033
1029
|
productNameEn?: string;
|
|
1034
1030
|
optionManagementCd?: string;
|
|
1035
1031
|
optionName?: string;
|
|
1032
|
+
photoReviewAccumulationAmt: number;
|
|
1036
1033
|
}
|
|
1037
1034
|
export interface ProfileOrderOptionsProductReviewableNextAction {
|
|
1038
1035
|
nextActionType?: string;
|
|
@@ -1088,11 +1085,8 @@ export interface ProfileProductInquiriesItems {
|
|
|
1088
1085
|
displayStatusType?: string;
|
|
1089
1086
|
inquiryNo?: number;
|
|
1090
1087
|
}
|
|
1091
|
-
export interface ProfileProductReviews {
|
|
1092
|
-
totalCount?: number;
|
|
1093
|
-
items?: Array<ProfileProductReviewsItem>;
|
|
1094
|
-
}
|
|
1095
1088
|
export interface ProfileProductReviewsItem {
|
|
1089
|
+
isDeletedProductReview: boolean;
|
|
1096
1090
|
productManagementCd?: string;
|
|
1097
1091
|
blindReportCnt?: number;
|
|
1098
1092
|
brandName?: string;
|
|
@@ -1426,8 +1420,9 @@ export interface GetProfileProductReviewsRequest {
|
|
|
1426
1420
|
searchKeyword?: string;
|
|
1427
1421
|
};
|
|
1428
1422
|
}
|
|
1429
|
-
export interface GetProfileProductReviewsResponse
|
|
1430
|
-
|
|
1423
|
+
export interface GetProfileProductReviewsResponse {
|
|
1424
|
+
totalCount: number;
|
|
1425
|
+
items: Array<NonNullable<ProfileProductReviewsItem>>;
|
|
1431
1426
|
}
|
|
1432
1427
|
export interface GetProfileOrderOptionsProductReviewableRequest {
|
|
1433
1428
|
queryString: {
|
|
@@ -1441,8 +1436,9 @@ export interface GetProfileOrderOptionsProductReviewableRequest {
|
|
|
1441
1436
|
orderNo?: string;
|
|
1442
1437
|
};
|
|
1443
1438
|
}
|
|
1444
|
-
export interface GetProfileOrderOptionsProductReviewableResponse
|
|
1445
|
-
|
|
1439
|
+
export interface GetProfileOrderOptionsProductReviewableResponse {
|
|
1440
|
+
totalCount: number;
|
|
1441
|
+
items: Array<NonNullable<ProfileOrderOptionsProductReviewableItem>>;
|
|
1446
1442
|
}
|
|
1447
1443
|
export interface PostDesignPopupsRequest {
|
|
1448
1444
|
useAccessToken?: 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":"AAkDA,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC"}
|