appback-remoteagent 0.13.6 → 0.13.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.
@@ -404,7 +404,7 @@ export class FileStore {
404
404
  }
405
405
  async writeJsonFileAtomic(filePath, value) {
406
406
  await fs.mkdir(path.dirname(filePath), { recursive: true });
407
- const temporaryPath = `${filePath}.${process.pid}.${Date.now()}.tmp`;
407
+ const temporaryPath = `${filePath}.${process.pid}.${Date.now()}.${randomUUID()}.tmp`;
408
408
  await fs.writeFile(temporaryPath, `${JSON.stringify(value, null, 2)}\n`, "utf8");
409
409
  await fs.rename(temporaryPath, filePath);
410
410
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "appback-remoteagent",
3
- "version": "0.13.6",
3
+ "version": "0.13.7",
4
4
  "description": "Personal installable session server for continuing local AI work across PC and Telegram",
5
5
  "license": "MIT",
6
6
  "type": "module",