What: - Adds money amount service / repo / model - Adds money amount to entry service - Adds tests for services - Refreshes schema - Update joiner config to include money amounts RESOLVES CORE-1478 RESOLVES CORE-1479 Co-authored-by: Shahed Nasser <27354907+shahednasser@users.noreply.github.com> Co-authored-by: Carlos R. L. Rodrigues <37986729+carlos-r-l-rodrigues@users.noreply.github.com>
24 lines
410 B
TypeScript
24 lines
410 B
TypeScript
export const defaultMoneyAmountsData = [
|
|
{
|
|
id: "money-amount-USD",
|
|
currency_code: "USD",
|
|
amount: 500,
|
|
min_quantity: 1,
|
|
max_quantity: 10,
|
|
},
|
|
{
|
|
id: "money-amount-EUR",
|
|
currency_code: "EUR",
|
|
amount: 400,
|
|
min_quantity: 1,
|
|
max_quantity: 5,
|
|
},
|
|
{
|
|
id: "money-amount-CAD",
|
|
currency_code: "CAD",
|
|
amount: 600,
|
|
min_quantity: 1,
|
|
max_quantity: 8,
|
|
},
|
|
]
|