Closed markoleavy closed 1 month ago
Hello! According to the api guide, the departure_time and departure_time in offer request should be an object { from?: string, to?:string }, but on the client are typed as strings.
departure_time
{ from?: string, to?:string }
const result = await duffel.partialOfferRequests.create({ slices: [ { origin: params.origin, destination: params.destination, departure_date: params.departure.date, arrival_time: { from: params.departure.from, to: params.departure.to, }, }, { origin: params.destination, destination: params.origin, departure_date: params.departure.date, departure_time: { from: params.departure.from, to: params.departure.to, }, }, ], passengers: new Array(params.numberOfPassengers).fill({ fare_type: 'adult', }), cabin_class: 'economy', });
Thank you for reporting, these should be objects now: https://github.com/duffelhq/duffel-api-javascript/blob/16bfff388f84f7d7944dd6ff57588335b22fb3eb/src/booking/OfferRequests/OfferRequestsTypes.ts#L321
Hello! According to the api guide, the
departure_time
anddeparture_time
in offer request should be an object{ from?: string, to?:string }
, but on the client are typed as strings.