interface MyCustomerSignin {
    activeCartSignInMode?: string;
    email: string;
    password: string;
    updateProductData?: boolean;
}

Properties

activeCartSignInMode?: string
  • If MergeWithExistingCustomerCart, LineItems of the anonymous Cart are merged with the recently modified active Customer Cart.
    • If UseAsNewActiveCustomerCart, the anonymous Cart is used as the new active Customer Cart, and no LineItems are merged.
email: string

Email address of the Customer treated as case-insensitive.

password: string

Password of the Customer.

updateProductData?: boolean
  • If true, the LineItem Product data (name, variant, and productType) of the returned Cart is updated.
    • If false, only the prices, discounts, and tax rates are updated.

Generated using TypeDoc