113 lines
2.7 KiB
TypeScript
113 lines
2.7 KiB
TypeScript
export interface ActiveOrdersResponse {
|
|
id: string;
|
|
orderId: string;
|
|
deliveryPartnerId: string;
|
|
deliveryNumber: string;
|
|
status: string;
|
|
estimatedDistanceKm: string;
|
|
actualDistanceKm: string;
|
|
proofOfPickupKey: string;
|
|
proofOfDeliveryKey: string;
|
|
pickedUpAt: string;
|
|
deliveredAt: string;
|
|
order: {
|
|
id: string;
|
|
orderNumber: string;
|
|
customerId: string;
|
|
merchantId: string;
|
|
couponCode: string;
|
|
appliedPromotionId: string;
|
|
status: string;
|
|
orderType: string;
|
|
paymentMethodId: string;
|
|
paymentMethod: string;
|
|
currency: string;
|
|
subtotal: string;
|
|
deliveryFee: string;
|
|
platformFee: string;
|
|
serviceFee: string;
|
|
taxAmount: string;
|
|
discountAmount: string;
|
|
totalAmount: string;
|
|
pickupAddress: {
|
|
city: string;
|
|
label: string;
|
|
phone: string;
|
|
state: string;
|
|
landmark: string;
|
|
latitude: number;
|
|
longitude: number;
|
|
postalCode: string;
|
|
houseNumber: string;
|
|
addressLine1: string;
|
|
};
|
|
dropAddress: {
|
|
city: string;
|
|
label: string;
|
|
phone: string;
|
|
state: string;
|
|
landmark: string;
|
|
latitude: number;
|
|
longitude: number;
|
|
postalCode: string;
|
|
houseNumber: string;
|
|
addressLine1: string;
|
|
};
|
|
// "metadata": {
|
|
// "idempotencyKey": "idemp-key-12345",
|
|
// "trackingHistory": {
|
|
// "CONFIRMED": "2026-07-13T10:21:35.863Z"
|
|
// },
|
|
// "rejectedDriverIds": [
|
|
// "e5f639a8-f0cf-4357-ab45-919ebc3012bd"
|
|
// ]
|
|
// },
|
|
version: 1;
|
|
createdAt: string;
|
|
updatedAt: string;
|
|
deletedAt: string;
|
|
customer: {
|
|
id: string;
|
|
userId: string;
|
|
customerCode: string;
|
|
createdAt: string;
|
|
deletedAt: string;
|
|
user: {
|
|
id: string;
|
|
name: string;
|
|
phone: string;
|
|
profileImage: string;
|
|
};
|
|
};
|
|
// "merchant": {
|
|
// "id": "f53b10bf-1d72-42e6-9d4e-b78032ad051b",
|
|
// "name": "eererer",
|
|
// "imageUrl": null,
|
|
// "addresses": [
|
|
// {
|
|
// "id": "5476dd01-4b9c-4597-ad0f-1898ad333af6",
|
|
// "mapAddress": "Bantra, Jaynagar - I, South 24 Parganas, West Bengal, India",
|
|
// "latitude": "22.204311",
|
|
// "longitude": "88.509444",
|
|
// "city": "New York",
|
|
// "landmark": "Near Central Park",
|
|
// "phone": "+19999999999"
|
|
// }
|
|
// ]
|
|
// },
|
|
orderItems: OrderItem[];
|
|
};
|
|
}
|
|
|
|
export interface OrderItem {
|
|
id: string;
|
|
orderId: string;
|
|
productId: string;
|
|
itemType: string;
|
|
name: string;
|
|
quantity: string;
|
|
unitPrice: string;
|
|
totalAmount: string;
|
|
attributes: object;
|
|
}
|