@recallai/desktop-sdk 2.0.17 → 2.0.19
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 +16 -0
- package/index.d.ts +2 -1
- package/index.js +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
### 2.0.19 [patch] (MacOS+Windows) - 2026-06-12
|
|
2
|
+
- Fixed crash on Windows during video capture
|
|
3
|
+
- Improve google meet active speaker detection on macOS and Windows
|
|
4
|
+
- Encoding performance improvements on macOS and Windows
|
|
5
|
+
- Improved google meet detection on macOS
|
|
6
|
+
- Improved speaker audio capture on macOS
|
|
7
|
+
- Improved end of call detection for Teams on macOS
|
|
8
|
+
- Fatal errors now trigger recording ended on Windows
|
|
9
|
+
- Fixed glitched video capture rectangles on macOS
|
|
10
|
+
- Add retries to presigned urls and error handling when failure occurs
|
|
11
|
+
|
|
12
|
+
### 2.0.18 [patch] (MacOS+Windows) - 2026-06-04
|
|
13
|
+
- Fixed prepareDesktopAudioRecording signature
|
|
14
|
+
- Fixed zoom meeting title and url support on Windows
|
|
15
|
+
- Fixed for phantom meeting detected events on macOS
|
|
16
|
+
|
|
1
17
|
### 2.0.17 [patch] (MacOS+Windows) - 2026-05-31
|
|
2
18
|
- Fixed teams localization on Windows
|
|
3
19
|
- Increase noise suppression on macOS
|
package/index.d.ts
CHANGED
|
@@ -56,6 +56,7 @@ export interface UploadRecordingConfig {
|
|
|
56
56
|
windowId: string;
|
|
57
57
|
}
|
|
58
58
|
interface PrepareDesktopAudioRecordingConfig {
|
|
59
|
+
[key: string]: any;
|
|
59
60
|
}
|
|
60
61
|
export interface RecordingStartEvent {
|
|
61
62
|
window: RecallAiSdkWindow;
|
|
@@ -140,7 +141,7 @@ export declare function resumeRecording({ windowId }: ResumeRecordingConfig): Pr
|
|
|
140
141
|
* @deprecated Recordings are automatically uploaded based on your rentention configuration. This is now a no-op.
|
|
141
142
|
*/
|
|
142
143
|
export declare function uploadRecording({ windowId }: UploadRecordingConfig): Promise<null>;
|
|
143
|
-
export declare function prepareDesktopAudioRecording(
|
|
144
|
+
export declare function prepareDesktopAudioRecording(config?: PrepareDesktopAudioRecordingConfig): Promise<string>;
|
|
144
145
|
export declare function requestPermission(permission: Permission): Promise<null>;
|
|
145
146
|
export declare function testUnexpectedShutdown(): Promise<null>;
|
|
146
147
|
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(
|
|
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.
|
|
3
|
+
"version": "2.0.19",
|
|
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": "
|
|
23
|
+
"commit_sha": "41a8616c8efb68ac234eb9fbf79f1100e2fc0495"
|
|
24
24
|
}
|