import { CFCustomer } from "../../CommonTypes"; export interface AddCustomerParams { /** Requires all fields except those generated by the server/database. */ customer: Omit; } export interface AddCustomerResponse { success: boolean; customer: CFCustomer; timestamp: string; } export type AddCustomer = (params: AddCustomerParams) => Promise;