@recallai/desktop-sdk 0.0.0-nightly.20260129T000010-60f79b1365fc291318c6e63ae17a19c26e33df7c → 0.0.0-nightly.20260129T180828-ec293eb2126172f92542561164aecfe1caa4330e

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.
Files changed (2) hide show
  1. package/index.js +5 -1
  2. package/package.json +2 -2
package/index.js CHANGED
@@ -238,7 +238,11 @@ function startProcess() {
238
238
  catch { }
239
239
  }
240
240
  if (!envExtra["EXE_NAME"]) {
241
- envExtra["EXE_NAME"] = path.basename(process.execPath);
241
+ envExtra["EXE_NAME"] = path.parse(process.execPath).name;
242
+ }
243
+ let sdk_version = getPackageVersion();
244
+ if (sdk_version) {
245
+ envExtra["SDK_VERSION"] = sdk_version;
242
246
  }
243
247
  const gst_dump_dir = process.env.RECALLAI_DESKTOP_SDK_DEV ? path.join(os.tmpdir(), "gst.nocommit") : os.tmpdir();
244
248
  if (!fs.existsSync(gst_dump_dir)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@recallai/desktop-sdk",
3
- "version": "0.0.0-nightly.20260129T000010-60f79b1365fc291318c6e63ae17a19c26e33df7c",
3
+ "version": "0.0.0-nightly.20260129T180828-ec293eb2126172f92542561164aecfe1caa4330e",
4
4
  "description": "Recall Desktop SDK",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",
@@ -20,5 +20,5 @@
20
20
  "@types/node": "^24.2.0",
21
21
  "typescript": "^5.3.3"
22
22
  },
23
- "commit_sha": "60f79b1365fc291318c6e63ae17a19c26e33df7c"
23
+ "commit_sha": "ec293eb2126172f92542561164aecfe1caa4330e"
24
24
  }