@shopby/shop-sdk 1.78.25 → 1.78.26
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 +7 -0
- package/build/types/domain/order/index.d.ts +15 -5
- package/package.json +1 -1
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.78.26](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.78.25...v1.78.26) (2024-12-02)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* 앱카드 타입 정리 및 할부 타입 추가 ([137aeba](https://gitlab.e-ncp.com/ncp-client/shop-sdk/commit/137aebae735600fb8b13f1cc0024dd21a10077bc))
|
|
11
|
+
|
|
5
12
|
### [1.78.25](https://gitlab.e-ncp.com/ncp-client/shop-sdk/compare/v1.78.24...v1.78.25) (2024-11-28)
|
|
6
13
|
|
|
7
14
|
|
|
@@ -657,6 +657,7 @@ export interface PostPaymentsReserveRequest extends OptionalAccessTokenRequest {
|
|
|
657
657
|
customTermsAgrees?: CustomTermsAgree[];
|
|
658
658
|
agreementTypes?: TermsType[];
|
|
659
659
|
agreementTermsAgrees?: AgreementTermsAgree[];
|
|
660
|
+
appCardInfo?: Nullable<UpdateAppCardCardInfo>;
|
|
660
661
|
};
|
|
661
662
|
}
|
|
662
663
|
export interface PostPaymentsReserveResponse {
|
|
@@ -1504,6 +1505,15 @@ export interface GetProfilePreviousOrdersSummaryRequest {
|
|
|
1504
1505
|
language?: Lowercase<MallLanguagesType>;
|
|
1505
1506
|
};
|
|
1506
1507
|
}
|
|
1508
|
+
export declare type AppCardInstType = 'STANDARD' | 'NO_INTEREST' | 'STANDARD_5' | 'NO_INTEREST_5' | 'STANDARD_7' | 'NO_INTEREST_7' | 'STANDARD_10' | 'NO_INTEREST_10';
|
|
1509
|
+
export interface UpdateAppCardCardInfo {
|
|
1510
|
+
instType: AppCardInstType;
|
|
1511
|
+
userNo: Nullable<string>;
|
|
1512
|
+
cardCode: string;
|
|
1513
|
+
installment: string;
|
|
1514
|
+
oneClickYn: Yn;
|
|
1515
|
+
acntId: string;
|
|
1516
|
+
}
|
|
1507
1517
|
export interface AppCardCardType {
|
|
1508
1518
|
cardName: string;
|
|
1509
1519
|
cardCode: string;
|
|
@@ -1521,7 +1531,7 @@ export interface AppCardInstInfo {
|
|
|
1521
1531
|
freeInstMin: number;
|
|
1522
1532
|
instMin: number;
|
|
1523
1533
|
cardCode: string;
|
|
1524
|
-
|
|
1534
|
+
instList: number[];
|
|
1525
1535
|
}
|
|
1526
1536
|
export interface GetAppCardInstPlanResponse {
|
|
1527
1537
|
pg: string;
|
|
@@ -1544,16 +1554,16 @@ export interface AppCardCardInfo extends AppCardInstInfo {
|
|
|
1544
1554
|
userNo: string;
|
|
1545
1555
|
cardNumMask: string;
|
|
1546
1556
|
cardBrandName: string;
|
|
1547
|
-
installmentYn: string;
|
|
1548
1557
|
cardCI: AppCardCardCI;
|
|
1549
|
-
oneClickYn: string;
|
|
1550
1558
|
userNameMask: string;
|
|
1551
1559
|
acntId: string;
|
|
1552
1560
|
imgUrl: string;
|
|
1553
|
-
|
|
1561
|
+
installmentYn: Yn;
|
|
1562
|
+
oneClickYn: Yn;
|
|
1563
|
+
bcCardYN: Yn;
|
|
1554
1564
|
}
|
|
1555
1565
|
export interface GetAppCardPayCardsListResponse {
|
|
1556
|
-
oneClickOnOff:
|
|
1566
|
+
oneClickOnOff: 'ON' | 'OFF';
|
|
1557
1567
|
cards: AppCardCardInfo[];
|
|
1558
1568
|
uiType: string;
|
|
1559
1569
|
listCount: number;
|