import { CartBuyerIdentity } from '@daffodil/driver/shopify'
Represents information about the buyer that is interacting with the cart.
type CartBuyerIdentity = {
__typename?: 'CartBuyerIdentity';
countryCode?: Maybe<CountryCode>;
customer?: Maybe<Customer>;
deliveryAddressPreferences: Array<DeliveryAddress>;
email?: Maybe<Scalars['String']['output']>;
phone?: Maybe<Scalars['String']['output']>;
preferences?: Maybe<CartPreferences>;
purchasingCompany?: Maybe<PurchasingCompany>;
walletPreferences: Array<Scalars['String']['output']>;
}