```typescript const request = got<T>(url, { ...options, responseType: 'json', isStream: false, }); ``` Why responseType: 'json'? I removed this prop and now I can receive XML-response too. It seems to me I missed this point the in docs.