import { LoaderOptions } from "@medusajs/framework/types"; /** * Ensures the Global Commission (the `is_default` rate) always exists. * * The migration seeds it too, but the test infra applies schema from the * models (not the migration data steps), so a boot-time loader is the * reliable mechanism. It is idempotent — it only creates the row when no * `is_default` rate is present — and guarded by the same flag as the * migration seed, so the two never both create. */ export default function seedDefaultCommissionRateLoader({ container, logger, }: LoaderOptions): Promise;