부가서비스

- 일부 클래스,타입명 변경
- 불필요 파일 삭제
This commit is contained in:
HyeonJongKim
2025-09-24 09:21:25 +09:00
parent 0e1d624b41
commit 152510e514
14 changed files with 32 additions and 172 deletions

View File

@@ -29,10 +29,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',
}
@@ -106,6 +107,11 @@ export interface FilterProps {
setFilterOn: (filterOn: boolean) => void;
}
// ========================================
// SMS 결제 통보 관련 타입들
// ========================================
// ========================================
// 키인결제 관련 타입들
// ========================================
@@ -321,7 +327,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;
@@ -714,6 +720,7 @@ export interface ExtensionKeyinApplyResponse {
// ========================================
// SMS 결제알림 확장 서비스
// ========================================
export interface ExtensionSmsResendParams extends ExtensionRequestParams {
tid: string;
}
@@ -723,12 +730,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 {
@@ -766,11 +773,10 @@ export interface ExtensionSmsDetailResponse {
receiverName: string;
sendMessage: string;
}
// ========================================
// 알림톡 확장 서비스
// ========================================
export interface SendMerchantInfoItem {
cardApprovalFlag: boolean;
cardCancelFlag: boolean;