@shopby/shop-sdk 1.55.1 → 1.55.3
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,24 @@
|
|
|
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.3](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.55.0...v1.55.3) (2023-03-22)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* [클레임] ClaimDefaultRequestBody 타입 일부 옵셔널로 수정 & exchange api requestBody 타입 수정 ([#197](https://gitlab.e-ncp.com/ncp-client/shop-sdk/issues/197)) ([dbedf9a](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/dbedf9a39e4eb30552d7c95c224fbd8a2cc437af))
|
|
11
|
+
* getDisplayEventsEventNo order EventNoOrderBy 타입으로 union.ts로 분리 ([beccf31](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/beccf315126c5574e6a5265a893c7af30c15702c))
|
|
12
|
+
* postProfileOrderOptionsOrderOptionNoClaimsExchange api requestBody 타입 수정 ([#197](https://gitlab.e-ncp.com/ncp-client/shop-sdk/issues/197)) ([4d6ecd5](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/4d6ecd54c40a7b8098198e9db2d4ecbac4035826))
|
|
13
|
+
* 클레임 ClaimDefaultRequestBody > returnWayType 옵셔널로 수정 ([#197](https://gitlab.e-ncp.com/ncp-client/shop-sdk/issues/197)) ([93596b0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/93596b0968661acbe796f6f69f5943b45a036ea6))
|
|
14
|
+
* 클레임 RETURN_WAY_TYPE_MAP value에 띄어쓰기 삽입 ([#197](https://gitlab.e-ncp.com/ncp-client/shop-sdk/issues/197)) ([10a0e5b](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/10a0e5b17713dd7513c6bc1ae80df9e4e01cd062))
|
|
15
|
+
|
|
16
|
+
### [1.55.2](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.55.1...v1.55.2) (2023-03-22)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
* [클레임] ClaimDefaultRequestBody 타입 일부 옵셔널로 수정 & exchange api requestBody 타입 수정 ([#197](https://gitlab.e-ncp.com/ncp-client/shop-sdk/issues/197)) ([dbedf9a](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/dbedf9a39e4eb30552d7c95c224fbd8a2cc437af))
|
|
22
|
+
|
|
5
23
|
### [1.55.1](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.55.0...v1.55.1) (2023-03-22)
|
|
6
24
|
|
|
7
25
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ClaimClassType, ClaimOptionType, ClaimReasonLabel, ClaimReasonType, ClaimStatusType, ClaimStatusTypeLabel, ClaimType, ClaimWithdrawValidationType, ExchangePayInfoPayType, NextActionType, RefundType, ResponsibleObjectType, ReturnWayType } from './unions';
|
|
2
|
-
import { Bank, BankAccountInfo, BankCdAndLabel, DefaultOrderStatusType, DeliveryAmtInfo, DeliveryCompanyType, DeliveryCompanyTypeLabel, OptionInputResponse, OrderOptionPrice, OrderStatusDate, PayType, PgType, ProductAmtInfo, SubtractionAmtInfo } from '../../domain/order';
|
|
2
|
+
import { Bank, BankAccountInfo, BankCdAndLabel, BankLabel, DefaultOrderStatusType, DeliveryAmtInfo, DeliveryCompanyType, DeliveryCompanyTypeLabel, OptionInputResponse, OrderOptionPrice, OrderStatusDate, PayType, PgType, ProductAmtInfo, SubtractionAmtInfo } from '../../domain/order';
|
|
3
3
|
import { CountryCode, DateYmdt, Yn } from '../../common';
|
|
4
4
|
export * from './unions';
|
|
5
5
|
export * from './guest/index';
|
|
@@ -59,7 +59,7 @@ export interface PostProfileClaimsReturnRequestBody extends ClaimDefaultRequestB
|
|
|
59
59
|
}
|
|
60
60
|
export interface ClaimDefaultRequestBody {
|
|
61
61
|
claimReasonDetail: string;
|
|
62
|
-
responsibleObjectType
|
|
62
|
+
responsibleObjectType?: ResponsibleObjectType;
|
|
63
63
|
bankAccountInfo?: BankAccountInfo;
|
|
64
64
|
productCnt: number;
|
|
65
65
|
claimReasonType: ClaimReasonType;
|
|
@@ -68,7 +68,7 @@ export interface ClaimDefaultRequestBody {
|
|
|
68
68
|
claimImageUrls: string[];
|
|
69
69
|
returnAddress?: ClaimRequestAddress;
|
|
70
70
|
claimType: ClaimType;
|
|
71
|
-
saveBankAccountInfo
|
|
71
|
+
saveBankAccountInfo?: boolean;
|
|
72
72
|
invoiceNo?: string;
|
|
73
73
|
}
|
|
74
74
|
export interface ClaimAddress {
|
|
@@ -325,6 +325,13 @@ export interface PostProfileOrderOptionsOrderOptionNoClaimsExchangeRequestBody e
|
|
|
325
325
|
exchangeAddress: ExchangeAddress;
|
|
326
326
|
exchangeOption: ExchangeOption;
|
|
327
327
|
additionalPayRemitter?: string;
|
|
328
|
+
additionalPayBankAccount?: AdditionalPayBankAccount;
|
|
329
|
+
}
|
|
330
|
+
export interface AdditionalPayBankAccount {
|
|
331
|
+
bank?: Bank;
|
|
332
|
+
bankName: BankLabel;
|
|
333
|
+
account?: string;
|
|
334
|
+
depositorName?: string;
|
|
328
335
|
}
|
|
329
336
|
export interface ExchangeAddress {
|
|
330
337
|
addressView: string;
|
|
@@ -4,7 +4,7 @@ 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 } from './unions';
|
|
7
|
+
import { ProductInquiryType, ProviderType, DisplayStatusType, SearchType, ReviewOrderByType, ReviewOrderDirectionType, BestReviewType, PlatformType, BoardType, BoardImageType, PhotoReviewDisplayType, InquiryBoardType, InquiryBoardImageType, SlideCountType, ScreenSizeUnitType, PopupPageType, EventUrlType, EventProgressStatus, EventOrderBy, DiscountUnitType, EventNoOrderBy } from './unions';
|
|
8
8
|
import { Space, SpaceMappingResult } from './space';
|
|
9
9
|
import { DateYmdt, Nullable } from 'types/common';
|
|
10
10
|
import { DefaultOrderStatusType, OrderOptionType } from 'types';
|
|
@@ -136,7 +136,7 @@ export interface GetDisplayEventsEventNoRequest {
|
|
|
136
136
|
eventNo: string;
|
|
137
137
|
};
|
|
138
138
|
queryString: {
|
|
139
|
-
order?:
|
|
139
|
+
order?: EventNoOrderBy;
|
|
140
140
|
soldout?: boolean;
|
|
141
141
|
saleStatus?: SaleStatusType;
|
|
142
142
|
};
|
|
@@ -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":"AA4CA,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC"}
|
|
@@ -20,3 +20,4 @@ export declare type EventUrlType = 'EVENT_NUMBER' | 'DIRECT';
|
|
|
20
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';
|
|
23
|
+
export declare type EventNoOrderBy = 'SALE' | 'ADMIN_SETTING' | 'BEST_SELLER' | 'BEST_REVIEW';
|