This commit is contained in:
focp212@naver.com
2025-09-24 09:51:51 +09:00
14 changed files with 32 additions and 172 deletions

View File

@@ -30,10 +30,11 @@ export enum AdditionalServiceCategory {
AccountHolderAuth = 'AccountHolderAuth',
AccountHolderSearch = 'AccountHolderSearch',
LinkPaymentHistory = 'LinkPaymentHistory',
LinkPaymentPending = 'LinkPaymentPending',
LinkPaymentWait = 'LinkPaymentWait',
FundAccountTransfer = 'FundAccountTransfer',
FundAccountResult = 'FundAccountResult',
SettlementAgency = 'SettlementAgency',
SMSPayment = 'SMSPayment',
Payout = 'Payout',
Ars = 'Ars',
}
@@ -107,6 +108,11 @@ export interface FilterProps {
setFilterOn: (filterOn: boolean) => void;
}
// ========================================
// SMS 결제 통보 관련 타입들
// ========================================
// ========================================
// 키인결제 관련 타입들
// ========================================
@@ -322,7 +328,7 @@ export interface LinkPaymentHistoryFilterProps extends FilterProps {
setSendMethod: (sendMethod: LinkPaymentSendMethod) => void;
}
export interface LinkPaymentPendingSendFilterProps extends FilterProps {
export interface LinkPaymentWaitFilterProps extends FilterProps {
mid: string;
searchType: LinkPaymentSearchType;
searchKeyword: string;
@@ -716,6 +722,7 @@ export interface ExtensionKeyinApplyResponse {
// ========================================
// SMS 결제알림 확장 서비스
// ========================================
export interface ExtensionSmsResendParams extends ExtensionRequestParams {
tid: string;
}
@@ -725,12 +732,12 @@ export interface ExtensionSmsResendResponse {
}
export interface ExtensionSmsListParams extends ExtensionRequestParams {
tid: string;
searchCl: string;
searchValue: string;
fromDate: string;
toDate: string;
smsCl: string;
page?: DefaultRequestPagination;
}
export interface ExtensionSmsListItemProps {
@@ -768,11 +775,10 @@ export interface ExtensionSmsDetailResponse {
receiverName: string;
sendMessage: string;
}
// ========================================
// 알림톡 확장 서비스
// ========================================
export interface SendMerchantInfoItem {
cardApprovalFlag: boolean;
cardCancelFlag: boolean;