35 lines
992 B
TypeScript
Raw Normal View History

2025-05-09 17:00:27 +00:00
/**
* SmartProxy implementation
2025-05-10 00:01:02 +00:00
*
* Version 14.0.0: Unified Route-Based Configuration API
2025-05-09 17:00:27 +00:00
*/
// Re-export models
export * from './models/index.js';
2025-05-09 21:21:28 +00:00
// Export the main SmartProxy class
export { SmartProxy } from './smart-proxy.js';
2025-05-10 00:01:02 +00:00
// Export core supporting classes
2025-05-09 21:21:28 +00:00
export { ConnectionManager } from './connection-manager.js';
export { SecurityManager } from './security-manager.js';
export { TimeoutManager } from './timeout-manager.js';
export { TlsManager } from './tls-manager.js';
export { NetworkProxyBridge } from './network-proxy-bridge.js';
2025-05-10 00:01:02 +00:00
// Export route-based components
export { RouteManager } from './route-manager.js';
export { RouteConnectionHandler } from './route-connection-handler.js';
// Export route helpers for configuration
export {
createRoute,
createHttpRoute,
createHttpsRoute,
createPassthroughRoute,
createRedirectRoute,
createHttpToHttpsRedirect,
createBlockRoute,
createLoadBalancerRoute,
createHttpsServer
} from './route-helpers.js';