@recallai/desktop-sdk 2025.5.30-c1ee674ebff5b7edb2d63a414253f137fb263419 → 2025.6.3-1f9c1e26a4b6d0f36ae35153f217649b3e231f10

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.
Binary file
Binary file
package/index.js CHANGED
@@ -4,9 +4,6 @@ const readline = require('node:readline');
4
4
  const fs = require('node:fs');
5
5
  const { v4: uuidv4 } = require('uuid');
6
6
 
7
- process.env["GST_DEBUG"] = "2";
8
- process.env["GST_DEBUG_DUMP_DOT_DIR"] = "/tmp";
9
-
10
7
  // HACK: This is needed because of https://github.com/electron/electron/issues/6262
11
8
 
12
9
  // Search for the unpacked directory first, since fs.existsSync actually reports
@@ -86,7 +83,14 @@ function startProcess() {
86
83
  return;
87
84
  }
88
85
 
89
- proc = spawn(exe_path, { stdio: ['pipe', 'pipe', 'pipe', 'pipe'] });
86
+ proc = spawn(exe_path, {
87
+ stdio: ['pipe', 'pipe', 'pipe', 'pipe'],
88
+ env: {
89
+ "GST_DEBUG": "2",
90
+ "GST_DEBUG_DUMP_DOT_DIR": "/tmp"
91
+
92
+ }
93
+ });
90
94
 
91
95
  const extraStream = proc.stdio[3];
92
96
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@recallai/desktop-sdk",
3
- "version": "2025.05.30-c1ee674ebff5b7edb2d63a414253f137fb263419",
3
+ "version": "2025.06.03-1f9c1e26a4b6d0f36ae35153f217649b3e231f10",
4
4
  "description": "Recall Desktop SDK (Alpha)",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",