@shopby/shop-sdk 1.61.2 → 1.62.0

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.62.0](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.61.2...v1.62.0) (2023-08-02)
6
+
7
+
8
+ ### Features
9
+
10
+ * 결제에 MyPayInfo 추가 ([e5ba3e9](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/e5ba3e9f239574c367fc84035960055cf8a1cf49))
11
+
5
12
  ### [1.61.2](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.61.1...v1.61.2) (2023-07-27)
6
13
 
7
14
 
@@ -601,6 +601,7 @@ export interface PostPaymentsReserveRequest extends OptionalAccessTokenRequest {
601
601
  subPayAmt: number;
602
602
  cashReceipt?: CashReceipt;
603
603
  shippingAddresses?: ShippingAddressesItem[];
604
+ myPayInfo: Nullable<MyPayInfo>;
604
605
  };
605
606
  }
606
607
  export interface PostPaymentsReserveResponse {
@@ -1047,6 +1048,32 @@ export interface ReceiptInfo {
1047
1048
  receiptType: ReceiptType;
1048
1049
  url: `http://${string}`;
1049
1050
  }
1051
+ export interface MyPayMobileInfo {
1052
+ flagPin: Nullable<string>;
1053
+ hppType: Nullable<string>;
1054
+ }
1055
+ export interface MyPayAccountInfo {
1056
+ bankCardCode: Nullable<string>;
1057
+ cshRecpSave: Nullable<string>;
1058
+ cshRecpInfo: Nullable<string>;
1059
+ cshRecpCode: Nullable<string>;
1060
+ }
1061
+ export interface MyPayCardInfo {
1062
+ cardQuota: Nullable<string>;
1063
+ bankCardCode: Nullable<string>;
1064
+ flagPin: Nullable<string>;
1065
+ flagCardPoint: Nullable<string>;
1066
+ couponCode: Nullable<string>;
1067
+ cardInterest: Nullable<string>;
1068
+ }
1069
+ export interface MyPayInfo {
1070
+ wpayToken: Nullable<string>;
1071
+ payMethod: Nullable<string>;
1072
+ ci: Nullable<string>;
1073
+ mobileInfo: Nullable<MyPayMobileInfo>;
1074
+ accountInfo: Nullable<MyPayAccountInfo>;
1075
+ cardInfo: Nullable<MyPayCardInfo>;
1076
+ }
1050
1077
  export interface FirstOrderAmount {
1051
1078
  totalProductAmt: number;
1052
1079
  additionalDiscountAmt: number;
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/order/index.ts"],"names":[],"mappings":"AAsDA,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAA"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../types/domain/order/index.ts"],"names":[],"mappings":"AAsDA,cAAc,UAAU,CAAC;AACzB,cAAc,SAAS,CAAC;AACxB,cAAc,YAAY,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shopby/shop-sdk",
3
- "version": "1.61.2",
3
+ "version": "1.62.0",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "types": "build/types/index.d.ts",