- ✅ Ticket 1.1: Estructura Clean Architecture en backend - ✅ Ticket 1.2: Schemas Zod compartidos - ✅ Ticket 1.3: Refactorización drugs.ts (1362 → 8 archivos modulares) - ✅ Ticket 1.4: Refactorización procedures.ts (3583 → 6 archivos modulares) - ✅ Ticket 1.5: Eliminación de duplicidades (~50 líneas) Cambios principales: - Creada estructura Clean Architecture en backend/src/ - Schemas Zod compartidos en backend/src/shared/schemas/ - Refactorización modular de drugs y procedures - Utilidades genéricas en src/utils/ (filter, validation) - Eliminados scripts obsoletos y documentación antigua - Corregidos errores: QueryClient, import test-error-handling - Build verificado y funcionando correctamente
24 lines
970 B
TypeScript
24 lines
970 B
TypeScript
/// <reference types="node" />
|
|
import net from 'net';
|
|
import tls from 'tls';
|
|
import { Url } from 'url';
|
|
import { AgentOptions } from 'agent-base';
|
|
import { OutgoingHttpHeaders } from 'http';
|
|
import _HttpsProxyAgent from './agent';
|
|
declare function createHttpsProxyAgent(opts: string | createHttpsProxyAgent.HttpsProxyAgentOptions): _HttpsProxyAgent;
|
|
declare namespace createHttpsProxyAgent {
|
|
interface BaseHttpsProxyAgentOptions {
|
|
headers?: OutgoingHttpHeaders;
|
|
secureProxy?: boolean;
|
|
host?: string | null;
|
|
path?: string | null;
|
|
port?: string | number | null;
|
|
}
|
|
export interface HttpsProxyAgentOptions extends AgentOptions, BaseHttpsProxyAgentOptions, Partial<Omit<Url & net.NetConnectOpts & tls.ConnectionOptions, keyof BaseHttpsProxyAgentOptions>> {
|
|
}
|
|
export type HttpsProxyAgent = _HttpsProxyAgent;
|
|
export const HttpsProxyAgent: typeof _HttpsProxyAgent;
|
|
export {};
|
|
}
|
|
export = createHttpsProxyAgent;
|