@shopby/shop-sdk 1.63.5 → 1.63.6
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.63.6](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.63.5...v1.63.6) (2023-08-18)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* 마이페이 업데이트 타입 추가 ([5080065](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/5080065e7a4170fbad7cd8ffc43a7ecdc5b76790))
|
|
11
|
+
|
|
5
12
|
### [1.63.5](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.63.4...v1.63.5) (2023-08-17)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AgreementType, CountryCode, Week, Yn, DateYmdt, DateYmd, PhoneNumberString, NumberString, Nullable } from '../../common';
|
|
1
|
+
import { AgreementType, CountryCode, Week, Yn, DateYmdt, DateYmd, PhoneNumberString, NumberString, Nullable, PartiallyRequired } from '../../common';
|
|
2
2
|
import { ActionGroupType, AddressType, CashReceiptIssuePurposeType, DefaultOrderStatusType, DeliveryCompanyType, DeliveryConditionType, DeliveryPayType, DeliveryType, GroupDeliveryAmtType, OrderChannelType, OrderOptionType, OrderRequestType, PayType, PgType, ReceiptType, RecurringCycle, RecurringCycleType, ShippingAreaType, TaxType, Bank, BankLabel, Card, CouponTargetType, CouponType } from './unions';
|
|
3
3
|
import { ClaimClassType, ClaimStatusType, ClaimTypeWithNone, NextActionType, RefundType, ReturnWayType } from '../claim/unions';
|
|
4
4
|
import { ClaimAddress, ClaimReasonTypeInfo, ExchangePayInfo } from '../../domain/claim';
|
|
@@ -1052,28 +1052,39 @@ export interface MyPayMobileInfo {
|
|
|
1052
1052
|
flagPin: Nullable<string>;
|
|
1053
1053
|
hppType: Nullable<string>;
|
|
1054
1054
|
}
|
|
1055
|
-
export interface
|
|
1055
|
+
export interface RequiredMyPayAccountInfo {
|
|
1056
1056
|
bankCardCode: Nullable<string>;
|
|
1057
|
+
}
|
|
1058
|
+
export interface MyPayAccountInfo extends RequiredMyPayAccountInfo {
|
|
1057
1059
|
cshRecpSave: Nullable<string>;
|
|
1058
1060
|
cshRecpInfo: Nullable<string>;
|
|
1059
1061
|
cshRecpCode: Nullable<string>;
|
|
1060
1062
|
}
|
|
1061
|
-
export interface
|
|
1063
|
+
export interface RequiredMyPayCardInfo {
|
|
1062
1064
|
cardQuota: Nullable<string>;
|
|
1063
1065
|
bankCardCode: Nullable<string>;
|
|
1066
|
+
}
|
|
1067
|
+
export interface MyPayCardInfo extends RequiredMyPayCardInfo {
|
|
1064
1068
|
flagPin: Nullable<string>;
|
|
1065
1069
|
flagCardPoint: Nullable<string>;
|
|
1066
1070
|
couponCode: Nullable<string>;
|
|
1067
1071
|
cardInterest: Nullable<string>;
|
|
1068
1072
|
}
|
|
1069
|
-
export interface
|
|
1073
|
+
export interface RequiredMyPayInfo {
|
|
1070
1074
|
wpayToken: Nullable<string>;
|
|
1071
1075
|
payMethod: Nullable<string>;
|
|
1076
|
+
}
|
|
1077
|
+
export interface RequiredUpdateMyPayInfo {
|
|
1078
|
+
accountInfo: PartiallyRequired<MyPayAccountInfo, keyof RequiredMyPayAccountInfo>;
|
|
1079
|
+
cardInfo: PartiallyRequired<MyPayCardInfo, keyof RequiredMyPayCardInfo>;
|
|
1080
|
+
}
|
|
1081
|
+
export interface MyPayInfo extends RequiredMyPayInfo {
|
|
1072
1082
|
ci: Nullable<string>;
|
|
1073
1083
|
mobileInfo: Nullable<MyPayMobileInfo>;
|
|
1074
1084
|
accountInfo: Nullable<MyPayAccountInfo>;
|
|
1075
1085
|
cardInfo: Nullable<MyPayCardInfo>;
|
|
1076
1086
|
}
|
|
1087
|
+
export declare type UpdateMyPayInfo = Nullable<RequiredMyPayInfo & RequiredUpdateMyPayInfo>;
|
|
1077
1088
|
export interface FirstOrderAmount {
|
|
1078
1089
|
totalProductAmt: number;
|
|
1079
1090
|
additionalDiscountAmt: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/order/index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/order/index.ts"],"names":[],"mappings":"AAuDA,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC"}
|