UNPKG

@devx-commerce/plugin-product-reviews

Version:
15 lines (14 loc) 608 B
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>;