mid 셋팅및 코드 정리

This commit is contained in:
focp212@naver.com
2025-10-10 15:26:04 +09:00
parent 306629be53
commit ced334f90f
41 changed files with 692 additions and 582 deletions

View File

@@ -10,7 +10,7 @@ export enum TransactionCategory {
Escrow = 'Escrow',
Billing = 'Billing',
};
export enum InfoWrapKeys {
export enum InfoSectionKeys {
Amount = 'Amount',
Important = 'Important',
Payment = 'Payment',
@@ -451,15 +451,16 @@ export interface BillingDetailResponse extends BillingInfo {
}
export interface DetailInfoProps extends DetailResponse {
export interface InfoSectionProps extends DetailResponse {
transactionCategory?: TransactionCategory;
isOpen?: boolean;
tid?: string;
serviceCode?: string;
purposeType?: CashReceiptPurposeType;
onClickToOpenInfo?: (info: InfoWrapKeys) => void;
onClickToOpenInfo?: (info: InfoSectionKeys) => void;
}
export interface DownloadConfirmationParams {
tid?: string;
};