@lightcone-ai/daemon 0.14.6 → 0.14.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lightcone-ai/daemon",
3
- "version": "0.14.6",
3
+ "version": "0.14.7",
4
4
  "type": "module",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -1025,7 +1025,7 @@ export class AgentManager {
1025
1025
  }
1026
1026
 
1027
1027
  async _postInternalPublishJobComplete({ jobId, ok, result, error }) {
1028
- const url = `${this.serverUrl.replace(/\/$/, '')}/internal/publish-jobs/${encodeURIComponent(jobId)}/complete`;
1028
+ const url = `${this.serverUrl.replace(/\/$/, '')}/internal/agent/publish-jobs/${encodeURIComponent(jobId)}/complete`;
1029
1029
  const res = await fetch(url, {
1030
1030
  method: 'POST',
1031
1031
  headers: {