MCPcopy
hub / github.com/usebruno/bruno / OldProxyAuth

Interface OldProxyAuth

packages/bruno-requests/src/utils/proxy-util.ts:7–11  ·  view source on GitHub ↗

* Transform proxy config from old format to new format. * Old format: { enabled: true | false | 'global', protocol, hostname, port, auth: { enabled, ... }, ... } * New format: { disabled?, inherit, config: { protocol, hostname, port, auth: { disabled?, ... }, ... } }

Source from the content-addressed store, hash-verified

5 */
6
7interface OldProxyAuth {
8 enabled?: boolean;
9 username?: string;
10 password?: string;
11}
12
13interface OldProxyConfig {
14 enabled?: true | false | 'global';

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected