const selfDeliveryEstimates = { data: [ { provider: "Self Delivery", serviceType: "Curbside", serviceId: "curbside", amount: 800, currencyCode: "USD", currency: "cents", type: "curbside", }, { provider: "Self Delivery", serviceType: "Shipping", serviceId: "shipping", type: "shipping", currency: 'cents', currencyCode: 'USD', amount: 900 } ] }; const fedExEstimates = { data: [ { provider: "FedEx", serviceType: "Express", serviceId: "express", amount: 1100, currencyCode: "USD", currency: "cents", type: "shipping", }, { provider: "FedEx", serviceType: "Priority", serviceId: "priority", type: "shipping", currency: 'cents', currencyCode: 'USD', amount: 1200 } ] }; const ups2Estimates = { data: [ { provider: "UPS 2", serviceType: "Ground", serviceId: "ground", amount: 2200, currencyCode: "USD", currency: "cents", type: "shipping", }, { provider: "UPS 2", serviceType: "Next Day Air", serviceId: "next-day-air", type: "shipping", currency: 'cents', currencyCode: 'USD', amount: 2300 } ] }; const upsEstimates = { data: [ { provider: "UPS", serviceType: "Next Day Air", serviceId: "next-day-air", type: "shipping", currency: 'cents', currencyCode: 'USD', amount: 700 }, { provider: "UPS", serviceType: "Ground", serviceId: "ground", type: "shipping", expires: null, currency: 'cents', currencyCode: 'USD', amount: 600 }, { provider: "UPS", serviceType: "2nd Day Air", serviceId: "2nd-day-air", type: "shipping", currency: 'cents', currencyCode: 'USD', amount: 800 } ] }; const uspsEstimates = { data: [ { provider: "USPS", serviceType: "Priority", serviceId: "priority", type: "shipping", currency: 'cents', currencyCode: 'USD', amount: 700 } ] } const selfDeliveryError = { message: "Self Delivery does not provides estimates", type: "DSP_DOES_NOT_OFFER_ESTIMATES", code: 0, provider: "Self Delivery", providerResponseError: undefined, }; const uspsError = { message: "Unable to fetch USPS estimates", type: "INTERNAL_SERVICE_ERROR", code: 0, provider: "USPS", providerResponseError: undefined, }; const axleHireError = { message: "AxleHire does not provides estimates", type: "DSP_DOES_NOT_OFFER_ESTIMATES", code: 0, provider: "AxleHire", providerResponseError: undefined, }; export const MOCK_ESTIMATES = { upsEstimates, ups2Estimates, selfDeliveryEstimates, fedExEstimates, selfDeliveryError, uspsError, axleHireError, uspsEstimates };