@recallai/desktop-sdk 2025.7.14-f194efc0e861e4fb15f31b8d79ce637bb3f9b39e → 2025.7.15-3680a5407b185fc17b833d405c2e12621a00b3e0

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 (3) hide show
  1. package/index.d.ts +3 -1
  2. package/index.js +4 -1
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -34,7 +34,9 @@ declare module '@recallai/desktop-sdk' {
34
34
  export type Permission =
35
35
  | 'accessibility'
36
36
  | 'screen-capture'
37
- | 'microphone';
37
+ | 'microphone'
38
+ | 'system-audio' // not necessary if you have screen-capture
39
+ ;
38
40
 
39
41
  export function addEventListener<T extends keyof EventTypeToPayloadMap>(
40
42
  type: T,
package/index.js CHANGED
@@ -130,7 +130,10 @@ function startProcess() {
130
130
  stdio: "pipe",
131
131
  env: {
132
132
  "GST_DEBUG": "2",
133
- "GST_DEBUG_DUMP_DOT_DIR": os.tmpdir(),
133
+ "GST_DEBUG_DUMP_DOT_DIR": process.env.RECALLAI_DESKTOP_SDK_DEV ? "/tmp/gst.nocommit" : os.tmpdir(),
134
+ // "DYLD_INSERT_LIBRARIES":"/opt/homebrew/lib/libjemalloc.dylib",
135
+ // "MALLOC_CONF":"prof:true,prof_active:true,prof_prefix:jeprof",
136
+ // "DYLD_FORCE_FLAT_NAMESPACE":"1",
134
137
  ...envExtra,
135
138
  }
136
139
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@recallai/desktop-sdk",
3
- "version": "2025.07.14-f194efc0e861e4fb15f31b8d79ce637bb3f9b39e",
3
+ "version": "2025.07.15-3680a5407b185fc17b833d405c2e12621a00b3e0",
4
4
  "description": "Recall Desktop SDK (Alpha)",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",