Which is not the way ketting implements it since it uses URL resolution.
const client = new Client('https://domain.com/api');
client.go('/projects/d123');
// Will go to https://domain.com/projects/d123
// According to OAS, should go to : https://domain.com/api/projects/d123
From OAS 3.1 spec :
Which is not the way ketting implements it since it uses URL resolution.
Exemple :
What to you think ?