export const mockOrder = { _id: '23hf7t78289yiwy929', packages: [ { weight: 40, size: { width: 20, length: 20, height: 20 } }, { weight: 30, size: { width: 23, length: 23, height: 23 } } ], tenantId: 'vikas_solutions', pickUpAddress: { zipcode: 534460 }, deliveryAddress: { zipcode: 500076 }, currencyCode: 'USD' } as any; export const mockZones = { 'UPS': [ { id: 'ground', zone: '5' }, { id: 'next-day-air', zone: '10' }, { id: '2nd-day-air', zone: '11' } ], 'FedEx': [ { id: 'priority', zone: '4' }, ], 'USPS': [ { id: 'mail', zone: '22' } ], 'Self Delivery': [ { id: 'shipping', zone: '33' } ] };