When running in Cloudflare Workers environment, any request to Intercom fails with: ```json { "code": "media_type_not_acceptable", "message": "The Accept header should send a media type of application/json" } ``` It doesn't happen in Node, which I assume is because of different undici `fetch` implementation. Possible (but noisy) workaround is: ```diff - await intercom.articles.list() + await intercom.articles.list({} , { headers: { Accept: "application/json" } }) ``` Versions: - intercom-client: 6.0.0 - wrangler: 3.100.0