@devx-commerce/plugin-product-reviews
Version:
Product Reviews Plugin for Medusa
15 lines (14 loc) • 608 B
TypeScript
import { CustomerDTO } from "@medusajs/framework/types";
export interface FindOrCreateCustomerStepInput {
customerId?: string | null;
email?: string | null;
phone?: string | null;
name?: string | null;
}
export interface FindOrCreateCustomerOutputStepOutput {
customer: CustomerDTO;
email: string;
phone: string | null;
}
export declare const findOrCreateCustomerStepId = "find-or-create-customer-custom";
export declare const findOrCreateCustomerStep: import("@medusajs/framework/workflows-sdk").StepFunction<FindOrCreateCustomerStepInput, FindOrCreateCustomerOutputStepOutput>;