@recallai/desktop-sdk 2.0.16 → 2.0.18

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,4 +1,15 @@
1
- ### 2.0.16 [patch] (MacOS+Windows) - 2026-05-13
1
+ ### 2.0.18 [patch] (MacOS+Windows) - 2026-06-04
2
+ - Fixed prepareDesktopAudioRecording signature.
3
+ - Fixed zoom meeting title and url support on Windows.
4
+ - Fixed for phantom meeting detected events on macOS.x
5
+
6
+ ### 2.0.17 [patch] (MacOS+Windows) - 2026-05-31
7
+ - Fixed teams localization on Windows
8
+ - Increase noise suppression on macOS
9
+ - Fixes for capturing fullscreen chrome meetings on macOS
10
+ - Fixes for zoom fallback video tiles on macOS
11
+
12
+ ### 2.0.16 [patch] (MacOS+Windows) - 2026-05-26
2
13
  - Fixed meeting detection issues for Zoom on Windows
3
14
  - Performance improvements for Windows and macOS
4
15
  - Fixed microphone capturing issues for Google Meets on Windows
@@ -277,4 +288,4 @@
277
288
 
278
289
  ### 1.0.0 [major] (MacOS+Windows) - 2025-07-24 (deprecated)
279
290
 
280
- - Initial Changelog Entry
291
+ - 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(config?: 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(config) {
641
+ return sendCommand("prepareDesktopAudioRecording", { ...config });
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.16",
3
+ "version": "2.0.18",
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": "06bdb6e635ec5c4e48c08a83aea7580004e8b304"
23
+ "commit_sha": "06995397e307be150994eec2db80a66a3b17d74f"
24
24
  }