@recallai/desktop-sdk 2.0.17 → 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,3 +1,8 @@
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
+
1
6
  ### 2.0.17 [patch] (MacOS+Windows) - 2026-05-31
2
7
  - Fixed teams localization on Windows
3
8
  - Increase noise suppression on macOS
package/index.d.ts CHANGED
@@ -140,7 +140,7 @@ export declare function resumeRecording({ windowId }: ResumeRecordingConfig): Pr
140
140
  * @deprecated Recordings are automatically uploaded based on your rentention configuration. This is now a no-op.
141
141
  */
142
142
  export declare function uploadRecording({ windowId }: UploadRecordingConfig): Promise<null>;
143
- export declare function prepareDesktopAudioRecording({ useDefaultDevices }: PrepareDesktopAudioRecordingConfig): Promise<string>;
143
+ export declare function prepareDesktopAudioRecording(config?: PrepareDesktopAudioRecordingConfig): Promise<string>;
144
144
  export declare function requestPermission(permission: Permission): Promise<null>;
145
145
  export declare function testUnexpectedShutdown(): Promise<null>;
146
146
  export declare function addEventListener<T extends keyof EventTypeToPayloadMap>(type: T, callback: (event: EventTypeToPayloadMap[T]) => void): void;
package/index.js CHANGED
@@ -637,8 +637,8 @@ function resumeRecording({ windowId }) {
637
637
  function uploadRecording({ windowId }) {
638
638
  return sendCommand("uploadRecording", { windowId });
639
639
  }
640
- function prepareDesktopAudioRecording({ useDefaultDevices }) {
641
- return sendCommand("prepareDesktopAudioRecording", { useDefaultDevices });
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.17",
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": "8a418759fd57ad636519d68ec69867337152de81"
23
+ "commit_sha": "06995397e307be150994eec2db80a66a3b17d74f"
24
24
  }