@clawos-dev/clawd 0.2.103 → 0.2.104
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/dist/cli.cjs +2 -0
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -40303,6 +40303,7 @@ function buildReadyFrame(deps, client) {
|
|
|
40303
40303
|
fileSharing.httpBaseUrl = httpBaseUrl;
|
|
40304
40304
|
if (deps.httpToken) fileSharing.httpToken = deps.httpToken;
|
|
40305
40305
|
}
|
|
40306
|
+
const daemonSource = process.env.CLAWD_DAEMON_SOURCE === "ota" ? "ota" : "packaged";
|
|
40306
40307
|
return {
|
|
40307
40308
|
version,
|
|
40308
40309
|
protocolVersion: PROTOCOL_VERSION,
|
|
@@ -40312,6 +40313,7 @@ function buildReadyFrame(deps, client) {
|
|
|
40312
40313
|
runningSessions: info.runningSessions,
|
|
40313
40314
|
tunnelUrl,
|
|
40314
40315
|
mode: deps.mode,
|
|
40316
|
+
daemonSource,
|
|
40315
40317
|
...fileSharing
|
|
40316
40318
|
};
|
|
40317
40319
|
}
|