@adyen/adyen-platform-experience-web
Version:

46 lines (45 loc) • 1.54 kB
JavaScript
const s = 10, t = {
mc: "Mastercard",
visa: "Visa",
ach: "ACH Direct Debit",
amex: "American Express",
discover: "Discover",
elo: "Elo",
jcb: "JCB",
pulse: "PULSE",
sepadirectdebit: "SEPA Direct Debit",
others: "Others"
}, e = {
FRAUD: "disputes.reasonCategory.fraud",
CONSUMER_DISPUTE: "disputes.reasonCategory.consumerDispute",
PROCESSING_ERROR: "disputes.reasonCategory.processingError",
REQUEST_FOR_INFORMATION: "disputes.reasonCategory.requestForInformation",
AUTHORISATION_ERROR: "disputes.reasonCategory.authorisationError",
ADJUSTMENT: "disputes.reasonCategory.adjustment",
OTHER: "disputes.reasonCategory.other"
}, r = {
CHARGEBACKS: "disputes.statusGroup.chargebacks",
FRAUD_ALERTS: "disputes.statusGroup.fraudAlerts",
ONGOING_AND_CLOSED: "disputes.statusGroup.ongoingAndClosed"
}, E = {
ACCEPTED: "disputes.status.accepted",
EXPIRED: "disputes.status.expired",
LOST: "disputes.status.lost",
PENDING: "disputes.status.pending",
RESPONDED: "disputes.status.responded",
UNDEFENDED: "disputes.status.undefended",
UNRESPONDED: "disputes.status.unresponded",
WON: "disputes.status.won"
}, o = {
CHARGEBACK: "disputes.type.chargeback",
NOTIFICATION_OF_FRAUD: "disputes.type.notificationOfFraud",
REQUEST_FOR_INFORMATION: "disputes.type.requestForInformation"
};
export {
s as DISPUTE_ACTION_NEEDED_URGENTLY_THRESHOLD_DAYS,
t as DISPUTE_PAYMENT_SCHEMES,
e as DISPUTE_REASON_CATEGORIES,
E as DISPUTE_STATUSES,
r as DISPUTE_STATUS_GROUPS,
o as DISPUTE_TYPES
};