@recallai/desktop-sdk 2.0.15 → 2.0.17

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/CHANGELOG.md CHANGED
@@ -1,3 +1,20 @@
1
+ ### 2.0.17 [patch] (MacOS+Windows) - 2026-05-31
2
+ - Fixed teams localization on Windows
3
+ - Increase noise suppression on macOS
4
+ - Fixes for capturing fullscreen chrome meetings on macOS
5
+ - Fixes for zoom fallback video tiles on macOS
6
+
7
+ ### 2.0.16 [patch] (MacOS+Windows) - 2026-05-26
8
+ - Fixed meeting detection issues for Zoom on Windows
9
+ - Performance improvements for Windows and macOS
10
+ - Fixed microphone capturing issues for Google Meets on Windows
11
+ - Support capturing Zoom meeting titles on macOS
12
+ - Fixed Zoom meeting detection issues on macOS
13
+ - Fixed issue with audio-only recordings in Safari triggered screenshare permission mid-recording on macOS
14
+ - Fixed meeting detection issues for Teams on macOS
15
+ - Fixed meeting detection issues for Google Meets on macOS
16
+ - Fixed issues with incorrect speaker attribution for Google Meets on macOS
17
+
1
18
  ### 2.0.15 [patch] (MacOS+Windows) - 2026-05-13
2
19
  - Fixed meeting detection issue for Google Meets on macOS
3
20
  - Fixed issue with failing to capture window and emitting only Guest / Host labels for Google Meets on macOS
@@ -266,4 +283,4 @@
266
283
 
267
284
  ### 1.0.0 [major] (MacOS+Windows) - 2025-07-24 (deprecated)
268
285
 
269
- - Initial Changelog Entry
286
+ - Initial Changelog Entry
package/index.d.ts CHANGED
@@ -34,12 +34,7 @@ export interface RecallAiSdkConfig {
34
34
  api_url?: string;
35
35
  apiUrl?: string;
36
36
  acquirePermissionsOnStartup?: Permission[];
37
- restartOnError?: boolean;
38
- dev?: boolean;
39
- testMode?: boolean;
40
- testSpeedModifier?: string;
41
- testTargetBundleId?: string;
42
- testTargetBundleIdRemapped?: string;
37
+ [key: string]: any;
43
38
  }
44
39
  export interface StartRecordingConfig {
45
40
  windowId: string;
@@ -60,6 +55,8 @@ export interface ResumeRecordingConfig {
60
55
  export interface UploadRecordingConfig {
61
56
  windowId: string;
62
57
  }
58
+ interface PrepareDesktopAudioRecordingConfig {
59
+ }
63
60
  export interface RecordingStartEvent {
64
61
  window: RecallAiSdkWindow;
65
62
  }
@@ -143,7 +140,7 @@ export declare function resumeRecording({ windowId }: ResumeRecordingConfig): Pr
143
140
  * @deprecated Recordings are automatically uploaded based on your rentention configuration. This is now a no-op.
144
141
  */
145
142
  export declare function uploadRecording({ windowId }: UploadRecordingConfig): Promise<null>;
146
- export declare function prepareDesktopAudioRecording(): Promise<string>;
143
+ export declare function prepareDesktopAudioRecording({ useDefaultDevices }: PrepareDesktopAudioRecordingConfig): Promise<string>;
147
144
  export declare function requestPermission(permission: Permission): Promise<null>;
148
145
  export declare function testUnexpectedShutdown(): Promise<null>;
149
146
  export declare function addEventListener<T extends keyof EventTypeToPayloadMap>(type: T, callback: (event: EventTypeToPayloadMap[T]) => void): void;
package/index.js CHANGED
@@ -446,7 +446,7 @@ function startProcess() {
446
446
  stdio: (process.platform === "darwin" ? ["pipe", "pipe", "pipe", "pipe"] : "pipe"),
447
447
  env: {
448
448
  GST_RECALL_DEBUG: "2,transcriber:4,rtewebsocketsink:4,rtewebhooksink:4,audiomixer:4,galleryview:4,dsdks3sink:5" + annotatorDebug,
449
- GST_DEBUG: "3,GST_CAPS:3,GST_SCHEDULING:2,GST_PADS:2,video-scaler:1,transcriber:4,filebuffereds3sink:4,seekables3sink:4,rtpsession:1,audioresample:1,videodecoder:2,basesink:2,webrtcbin:2,websocketsink:4,audiomixer:4,galleryview:4,removeonsinkeosbin:4,fallbackswitch:4,sendmessageonsinkeosbin:4,dsdks3sink:5" + annotatorDebug,
449
+ GST_DEBUG: "3,GST_CAPS:3,GST_SCHEDULING:2,GST_PADS:2,video-scaler:1,transcriber:4,filebuffereds3sink:4,seekables3sink:4,rtpsession:1,audioresample:1,videodecoder:2,basesink:2,webrtcbin:2,websocketsink:4,audiomixer:4,galleryview:4,removeonsinkeosbin:4,fallbackswitch:6,sendmessageonsinkeosbin:4,dsdks3sink:5" + annotatorDebug,
450
450
  GST_DEBUG_DUMP_DOT_DIR: gst_dump_dir,
451
451
  GST_REGISTRY_FORK: "no",
452
452
  RUST_BACKTRACE: "1",
@@ -637,8 +637,8 @@ function resumeRecording({ windowId }) {
637
637
  function uploadRecording({ windowId }) {
638
638
  return sendCommand("uploadRecording", { windowId });
639
639
  }
640
- function prepareDesktopAudioRecording() {
641
- return sendCommand("prepareDesktopAudioRecording");
640
+ function prepareDesktopAudioRecording({ useDefaultDevices }) {
641
+ return sendCommand("prepareDesktopAudioRecording", { useDefaultDevices });
642
642
  }
643
643
  function requestPermission(permission) {
644
644
  return sendCommand("requestPermission", { permission });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@recallai/desktop-sdk",
3
- "version": "2.0.15",
3
+ "version": "2.0.17",
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": "b37329353ad9867676052525ab8c6237e0a502ae"
23
+ "commit_sha": "8a418759fd57ad636519d68ec69867337152de81"
24
24
  }