What: - Adds PriceSet, PriceSetMoneyAmount, updates schema - Adds service/repo for PriceSet - Shifts entry point to use PriceSet - Updates link/joiner config RESOLVES CORE-1495
14 lines
223 B
TypeScript
14 lines
223 B
TypeScript
import { CreatePriceSetDTO } from "@medusajs/types"
|
|
|
|
export const defaultPriceSetsData = [
|
|
{
|
|
id: "price-set-1",
|
|
},
|
|
{
|
|
id: "price-set-2",
|
|
},
|
|
{
|
|
id: "price-set-3",
|
|
},
|
|
] as unknown as CreatePriceSetDTO[]
|