@clawos-dev/clawd 0.2.101 → 0.2.102-beta.197.08025e2
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
|
@@ -40240,6 +40240,7 @@ function buildReadyFrame(deps, client) {
|
|
|
40240
40240
|
fileSharing.httpBaseUrl = httpBaseUrl;
|
|
40241
40241
|
if (deps.httpToken) fileSharing.httpToken = deps.httpToken;
|
|
40242
40242
|
}
|
|
40243
|
+
const daemonSource = process.env.CLAWD_DAEMON_SOURCE === "ota" ? "ota" : "packaged";
|
|
40243
40244
|
return {
|
|
40244
40245
|
version,
|
|
40245
40246
|
protocolVersion: PROTOCOL_VERSION,
|
|
@@ -40249,6 +40250,7 @@ function buildReadyFrame(deps, client) {
|
|
|
40249
40250
|
runningSessions: info.runningSessions,
|
|
40250
40251
|
tunnelUrl,
|
|
40251
40252
|
mode: deps.mode,
|
|
40253
|
+
daemonSource,
|
|
40252
40254
|
...fileSharing
|
|
40253
40255
|
};
|
|
40254
40256
|
}
|
package/package.json
CHANGED