@devx-commerce/plugin-product-reviews
Version:
Product Reviews Plugin for Medusa
11 lines (10 loc) • 441 B
TypeScript
type ValidateProductExistsStepInput = {
product_id: string | string[];
};
export declare const validateProductExistsStepId = "validate-product-exists-step";
/**̦
* This step ensures that the products with the specified IDs exist.
* If not valid, the step will throw an error.
*/
export declare const validateProductExists: import("@medusajs/framework/workflows-sdk").StepFunction<ValidateProductExistsStepInput, unknown>;
export {};