fix(exports/types): Refactor exports and remove duplicate IReverseProxyConfig interface
This commit is contained in:
parent
cce2aed892
commit
e7243243d0
@ -1,5 +1,12 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-05-04 - 10.0.5 - fix(exports/types)
|
||||||
|
Refactor exports and remove duplicate IReverseProxyConfig interface
|
||||||
|
|
||||||
|
- Removed redundant IReverseProxyConfig extension from ts/common/types.ts
|
||||||
|
- Updated ts/index.ts to export networkproxy via index.js instead of classes.np.networkproxy.js
|
||||||
|
- Simplified module exports to avoid duplicate interface definitions
|
||||||
|
|
||||||
## 2025-05-04 - 10.0.4 - fix(core)
|
## 2025-05-04 - 10.0.4 - fix(core)
|
||||||
Refactor module exports and update packageManager version in package.json
|
Refactor module exports and update packageManager version in package.json
|
||||||
|
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@push.rocks/smartproxy',
|
name: '@push.rocks/smartproxy',
|
||||||
version: '10.0.4',
|
version: '10.0.5',
|
||||||
description: 'A powerful proxy package that effectively handles high traffic, with features such as SSL/TLS support, port proxying, WebSocket handling, dynamic routing with authentication options, and automatic ACME certificate management.'
|
description: 'A powerful proxy package that effectively handles high traffic, with features such as SSL/TLS support, port proxying, WebSocket handling, dynamic routing with authentication options, and automatic ACME certificate management.'
|
||||||
}
|
}
|
||||||
|
@ -89,5 +89,3 @@ export interface IAcmeOptions {
|
|||||||
skipConfiguredCerts?: boolean; // Skip domains with existing certificates
|
skipConfiguredCerts?: boolean; // Skip domains with existing certificates
|
||||||
domainForwards?: IDomainForwardConfig[]; // Domain-specific forwarding configs
|
domainForwards?: IDomainForwardConfig[]; // Domain-specific forwarding configs
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface IReverseProxyConfig extends plugins.tsclass.network.IReverseProxyConfig {}
|
|
@ -1,5 +1,5 @@
|
|||||||
export * from './nfttablesproxy/classes.nftablesproxy.js';
|
export * from './nfttablesproxy/classes.nftablesproxy.js';
|
||||||
export * from './networkproxy/classes.np.networkproxy.js';
|
export * from './networkproxy/index.js';
|
||||||
export * from './port80handler/classes.port80handler.js';
|
export * from './port80handler/classes.port80handler.js';
|
||||||
export * from './redirect/classes.redirect.js';
|
export * from './redirect/classes.redirect.js';
|
||||||
export * from './smartproxy/classes.smartproxy.js';
|
export * from './smartproxy/classes.smartproxy.js';
|
||||||
|
Loading…
x
Reference in New Issue
Block a user