A javascript SDK for the App in the Air API.
This package is written in TypeScript and most of the code is documented.
const client_id = '';
const client_secret = '';
const sdk = new AppInTheAir({client_id, client_secret});
const {access_token} = await sdk.getUserlessAccessToken({scope: 'user_flights'});
const {flights} = await sdk.getUserProfile({access_token, user_id: '123'});