import { CartDeliveryPreferenceInput } from '@daffodil/driver/shopify'
Delivery preferences can be used to prefill the delivery section at checkout.
type CartDeliveryPreferenceInput = {
coordinates?: InputMaybe<CartDeliveryCoordinatesPreferenceInput>;
deliveryMethod?: InputMaybe<Array<PreferenceDeliveryMethodType>>;
pickupHandle?: InputMaybe<Array<Scalars['String']['input']>>;
}