usebeeline 0.0.5 → 0.0.23
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/usebeeline.mjs +5 -1
- package/package.json +1 -1
package/dist/usebeeline.mjs
CHANGED
|
@@ -48961,7 +48961,9 @@ Deliver artifacts from this corner; there is no branch to land.`;
|
|
|
48961
48961
|
await api.execute("postAgentPresence", {
|
|
48962
48962
|
agentId: this.agentIdentity.publicKey,
|
|
48963
48963
|
roomId: channelId,
|
|
48964
|
-
status
|
|
48964
|
+
status,
|
|
48965
|
+
...this.config.daemonReleaseVersion ? { releaseVersion: this.config.daemonReleaseVersion } : {},
|
|
48966
|
+
...this.config.daemonSourceSha ? { sourceSha: this.config.daemonSourceSha } : {}
|
|
48965
48967
|
});
|
|
48966
48968
|
this.onRoomPresence?.(channelId, status);
|
|
48967
48969
|
};
|
|
@@ -57626,6 +57628,8 @@ async function runStoredDaemon(pathOrPointer) {
|
|
|
57626
57628
|
}
|
|
57627
57629
|
loadedRelease = await activeReleaseId(layout);
|
|
57628
57630
|
loadedReleaseIdentity = await readInstalledBundleIdentity(layout);
|
|
57631
|
+
config.daemonReleaseVersion = loadedReleaseIdentity?.version;
|
|
57632
|
+
config.daemonSourceSha = loadedReleaseIdentity?.commit;
|
|
57629
57633
|
update = await ManagedUpdateHandoff.create(layout, runtimeDir, Date.now, {
|
|
57630
57634
|
requiredProbeIds: [...await runningRuntimeProbeIds(process.env), runtime.agent.publicKey]
|
|
57631
57635
|
});
|