import type { HttpClient } from '@services' import type { ApiError, Response } from '@types' export type GetClientItineraryInput = { contractId: string } const getClientItinerary = (http: HttpClient) => { return { query: ( input: GetClientItineraryInput, ): Promise> => { return http.get( `v3/tailor/contracts/${input.contractId}/client_itinerary`, ) }, } } export default getClientItinerary