@serve.zone/dcrouter 14.0.0 → 14.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/deno.json +1 -1
- package/dist_ts/00_commitinfo_data.js +1 -1
- package/dist_ts/classes.dcrouter.d.ts +5 -0
- package/dist_ts/classes.dcrouter.js +109 -23
- package/dist_ts/config/classes.route-config-manager.d.ts +2 -1
- package/dist_ts/config/classes.route-config-manager.js +8 -3
- package/dist_ts/opsserver/handlers/config.handler.js +2 -9
- package/dist_ts_web/00_commitinfo_data.js +1 -1
- package/package.json +2 -2
- package/ts/00_commitinfo_data.ts +1 -1
- package/ts/classes.dcrouter.ts +127 -22
- package/ts/config/classes.route-config-manager.ts +5 -1
- package/ts/opsserver/handlers/config.handler.ts +1 -8
- package/ts_web/00_commitinfo_data.ts +1 -1
package/deno.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@serve.zone/dcrouter',
|
|
6
|
-
version: '14.0.
|
|
6
|
+
version: '14.0.1',
|
|
7
7
|
description: 'A multifaceted routing service handling mail and SMS delivery functions.'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSxzQkFBc0I7SUFDNUIsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLDBFQUEwRTtDQUN4RixDQUFBIn0=
|
|
@@ -304,6 +304,10 @@ export declare class DcRouter {
|
|
|
304
304
|
private setupSmartProxy;
|
|
305
305
|
applySecurityPolicy(): Promise<void>;
|
|
306
306
|
private mergeSecurityPolicies;
|
|
307
|
+
private applyInboundProxyProtocolPolicies;
|
|
308
|
+
private getDesiredInboundProxyProtocolPolicy;
|
|
309
|
+
private getInboundProxyListenerKeys;
|
|
310
|
+
private mergeInboundProxyProtocolPolicies;
|
|
307
311
|
/**
|
|
308
312
|
* Generate SmartProxy routes for email configuration
|
|
309
313
|
*/
|
|
@@ -316,6 +320,7 @@ export declare class DcRouter {
|
|
|
316
320
|
private getCurrentGeneratedEmailRouteNames;
|
|
317
321
|
private shouldHydrateGeneratedEmailRoute;
|
|
318
322
|
private createServerFirstEmailRuntimeRoute;
|
|
323
|
+
private getRemoteIngressEmailInboundProxyPolicy;
|
|
319
324
|
private createEmailSocketProxyHandler;
|
|
320
325
|
private hydrateStoredRouteForRuntime;
|
|
321
326
|
/**
|