@medusajs/core-flows
Version:
Set of workflow definitions for Medusa
12 lines • 625 B
TypeScript
import { PriceListDTO, UpdatePriceListDTO } from "@medusajs/framework/types";
/**
* The IDs of price lists to validate that they exist.
*/
export type ValidatePriceListsStepInput = Pick<UpdatePriceListDTO, "id">[];
export declare const validatePriceListsStepId = "validate-price-lists";
/**
* This step validates that the specified price lists exist.
* If not valid, the step throws an error.
*/
export declare const validatePriceListsStep: import("@medusajs/framework/workflows-sdk").StepFunction<ValidatePriceListsStepInput, Record<string, PriceListDTO> | undefined>;
//# sourceMappingURL=validate-price-lists.d.ts.map