@recallai/desktop-sdk 2.0.16 → 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 +8 -2
- package/index.d.ts +4 -7
- package/index.js +3 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
### 2.0.
|
|
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
|
|
2
8
|
- Fixed meeting detection issues for Zoom on Windows
|
|
3
9
|
- Performance improvements for Windows and macOS
|
|
4
10
|
- Fixed microphone capturing issues for Google Meets on Windows
|
|
@@ -277,4 +283,4 @@
|
|
|
277
283
|
|
|
278
284
|
### 1.0.0 [major] (MacOS+Windows) - 2025-07-24 (deprecated)
|
|
279
285
|
|
|
280
|
-
- 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
|
-
|
|
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:
|
|
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.
|
|
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": "
|
|
23
|
+
"commit_sha": "8a418759fd57ad636519d68ec69867337152de81"
|
|
24
24
|
}
|