@builder.io/dev-tools 1.18.20-dev.202511280810.8f0dc2130 → 1.18.20-dev.202511280821.8f0dc2130
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/cli/index.cjs +9 -4
- package/cli/index.cjs.map +2 -2
- package/core/index.cjs +1 -1
- package/core/index.mjs +1 -1
- package/node/index.cjs +1 -1
- package/node/index.mjs +1 -1
- package/package.json +1 -1
- package/server/index.cjs +2 -2
- package/server/index.mjs +2 -2
- package/types/cli/launch/server.d.ts +1 -0
- package/types/tsconfig.tsbuildinfo +1 -1
|
@@ -9,6 +9,7 @@ export declare const NON_AUTHENTICATED_ENDPOINTS: {
|
|
|
9
9
|
readonly STATUS: "/status";
|
|
10
10
|
readonly PROXY_STATUS: "/proxy-status";
|
|
11
11
|
readonly STATUS_V2: "/status-v2";
|
|
12
|
+
readonly LONG_PING: "/long-ping";
|
|
12
13
|
readonly INIT_LOGS: "/init-logs";
|
|
13
14
|
};
|
|
14
15
|
export declare const configureServer: ({ app, validBuilderPrivateKey, authenticateProxy, isLocal, sharedState, }: {
|