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

60 lines (59 loc) • 816 B
JavaScript
const e = {
emailAddress: {
max: 500
},
merchantReference: {
min: 3,
max: 256
},
shopperName: {
firstName: {
max: 80
},
lastName: {
max: 80
}
},
telephoneNumber: {
max: 32
},
billingAddress: {
street: {
max: 3e3
},
houseNumberOrName: {
max: 3e3
},
postalCode: {
max: 10
},
city: {
max: 3e3
}
},
deliveryAddress: {
street: {
max: 3e3
},
houseNumberOrName: {
max: 3e3
},
postalCode: {
max: 10
},
city: {
max: 3e3
}
},
shopperReference: {
min: 3,
max: 256
},
description: {
max: 280
}
}, m = ["hour", "minute", "day", "week"];
export {
m as LINK_VALIDITY_DURATION_UNITS,
e as PAYMENT_LINK_CREATION_FIELD_LENGTHS
};