fern
fern copied to clipboard
[Feature] Add `proxy` support to the generated TypeScript SDK
Describe the Bug
The TypeScript SDK does not support passing in a custom proxy. The SDK should support an httpAgent
argument that takes a proxy agent.
Expected SDK
const client = new Client({
httpAgent: new HttpsProxyAgent(...),
});