@builder.io/dev-tools 1.18.33-dev.202512040930.ffc3e5487 → 1.18.33-dev.202512041006.ffc3e5487

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.
@@ -2,7 +2,7 @@ import type { DevToolsSys } from "../../types";
2
2
  import type { ProxyMiddleware } from "../../types/proxy-middleware";
3
3
  import type { IncomingMessage } from "http";
4
4
  export declare const createPassThroughProxy: () => import("http-proxy-3").ProxyServer<typeof IncomingMessage, typeof import("http").ServerResponse, Error>;
5
- export declare const createProxyMiddleware: (serverUrl: string, sys: DevToolsSys) => ProxyMiddleware;
5
+ export declare const createProxyMiddleware: (serverUrl: URL, sys: DevToolsSys) => ProxyMiddleware | undefined;
6
6
  /**
7
7
  * Detects if HTML was server-side rendered by checking for framework-specific markers.
8
8
  * Returns whether SSR was used and whether the header/head was server-rendered.
@@ -11,3 +11,4 @@ export declare const detectSSR: (body: string) => {
11
11
  hasSSR: boolean;
12
12
  hasHeaderSSR: boolean;
13
13
  };
14
+ export declare const permissiveHTTPS: any;