useB2bQuoteManagement 
Category:
 B2B
Composable to manage quotes in the B2BQuote module.
With this composable you can:
- Get list of quotes
 - Get quote details
 - Decline quote
 - Request change of the quote
 - Change shipping method
 - Change payment method
 - Create order from quote
 - Request quote
 
Types 
ts
export function useB2bQuoteManagement(): UseB2bQuoteManagementts
export type ChangePaymentShippingMethodParams = {
  quoteId: string;
  paymentMethodId?: string;
  shippingMethodId?: string;
};