This commit is contained in:
natib21
2026-06-19 11:42:27 +00:00
parent b4ed7d492d
commit 8d69630f01
65 changed files with 8980 additions and 6 deletions

View File

@@ -336,4 +336,14 @@ export const URL_CONSTANTS = {
FOR_BOOKING: (bookingId: string) => `/bookings/${bookingId}/warehouse-fee-invoices`,
GATE_CLEARANCE: (inventoryId: string) => `/warehouse-inventory/${inventoryId}/gate-clearance`,
},
VEHICLES: {
BASE: '/vehicles',
BY_ID: (id: string) => `/vehicles/${id}`,
},
DRIVERS: {
BASE: '/drivers',
BY_ID: (id: string) => `/drivers/${id}`,
},
};