@builder.io/dev-tools 1.18.40-dev.202512081806.78246177d → 1.18.40-dev.202512081828.78246177d

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.
@@ -3,13 +3,15 @@ import type { LaunchServerStatus } from "$/ai-utils";
3
3
  export declare const BUILDER_ENDPOINT_PREFIX = "/_builder.io";
4
4
  export declare const BUILDER_API_ENDPOINT_PREFIX: string;
5
5
  /**
6
- * Endpoints that are not authenticated because they are used by the fly.io health check.
6
+ * Endpoints that are not authenticated because they are used by the fly.io health check
7
+ * or are called from the customer's iframe.
7
8
  */
8
9
  export declare const NON_AUTHENTICATED_ENDPOINTS: {
9
10
  readonly STATUS: "/status";
10
11
  readonly PROXY_STATUS: "/proxy-status";
11
12
  readonly STATUS_V2: "/status-v2";
12
13
  readonly INIT_LOGS: "/init-logs";
14
+ readonly COMPONENT_MAP: "/component-map";
13
15
  };
14
16
  export declare const configureServer: ({ app, validBuilderPrivateKey, authenticateProxy, isLocal, sharedState, sys, }: {
15
17
  app: Express;