@recallai/desktop-sdk 2.0.4 → 2.0.5
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 +11 -1
- package/index.d.ts +9 -0
- package/index.js +5 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
### 2.0.5 [patch] (MacOS+Windows) - 2026-02-11
|
|
2
|
+
|
|
3
|
+
- Support for Google Chrome 145.0.7632.46+
|
|
4
|
+
- Improvements for Brave
|
|
5
|
+
- Automatically detect which microphone is being used by the meeting platform
|
|
6
|
+
- Improvements for energy consumption and CPU usage
|
|
7
|
+
- Fix an issue with flickering video during screenshare
|
|
8
|
+
- Fix an issue with screensharing Chrome tabs in Google Meet
|
|
9
|
+
- Fix an issue where recording Chrome would capture a flash of other content when changing tabs
|
|
10
|
+
|
|
1
11
|
### 2.0.4 [patch] (MacOS+Windows) - 2026-01-29
|
|
2
12
|
|
|
3
13
|
- Teams detection, diarization improvements on windows.
|
|
@@ -162,4 +172,4 @@
|
|
|
162
172
|
|
|
163
173
|
### 1.0.0 [major] (MacOS+Windows) - 2025-07-24 (deprecated)
|
|
164
174
|
|
|
165
|
-
- Initial Changelog Entry
|
|
175
|
+
- Initial Changelog Entry
|
package/index.d.ts
CHANGED
|
@@ -2,6 +2,9 @@ export type RecallAiSdkEvent = RecordingStartEvent | RecordingStopEvent | Upload
|
|
|
2
2
|
export type EventTypeToPayloadMap = {
|
|
3
3
|
'recording-started': RecordingStartEvent;
|
|
4
4
|
'recording-ended': RecordingStopEvent;
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated Recordings are uploaded in parallel to recording now, there is no progress.
|
|
7
|
+
*/
|
|
5
8
|
'upload-progress': UploadProgressEvent;
|
|
6
9
|
'meeting-detected': MeetingDetectedEvent;
|
|
7
10
|
'meeting-updated': MeetingUpdatedEvent;
|
|
@@ -43,6 +46,9 @@ export interface PauseRecordingConfig {
|
|
|
43
46
|
export interface ResumeRecordingConfig {
|
|
44
47
|
windowId: string;
|
|
45
48
|
}
|
|
49
|
+
/**
|
|
50
|
+
* @deprecated Recordings are uploaded based on the upload token config.
|
|
51
|
+
*/
|
|
46
52
|
export interface UploadRecordingConfig {
|
|
47
53
|
windowId: string;
|
|
48
54
|
}
|
|
@@ -119,6 +125,9 @@ export declare function startRecording(config: StartRecordingConfig): Promise<nu
|
|
|
119
125
|
export declare function stopRecording({ windowId }: StopRecordingConfig): Promise<null>;
|
|
120
126
|
export declare function pauseRecording({ windowId }: PauseRecordingConfig): Promise<null>;
|
|
121
127
|
export declare function resumeRecording({ windowId }: ResumeRecordingConfig): Promise<null>;
|
|
128
|
+
/**
|
|
129
|
+
* @deprecated Recordings are uploaded based on the upload token config.
|
|
130
|
+
*/
|
|
122
131
|
export declare function uploadRecording({ windowId }: UploadRecordingConfig): Promise<null>;
|
|
123
132
|
export declare function prepareDesktopAudioRecording(): Promise<string>;
|
|
124
133
|
export declare function requestPermission(permission: Permission): Promise<null>;
|
package/index.js
CHANGED
|
@@ -256,7 +256,8 @@ function startProcess() {
|
|
|
256
256
|
proc = (0, child_process_1.spawn)(exe_path, {
|
|
257
257
|
stdio: (process.platform === "darwin" ? ["pipe", "pipe", "pipe", "pipe"] : "pipe"),
|
|
258
258
|
env: {
|
|
259
|
-
|
|
259
|
+
GST_RECALL_DEBUG: "2,transcriber:4,rtewebsocketsink:4,rtewebhooksink:4,audiomixer:4,galleryview:4,dsdks3sink:5",
|
|
260
|
+
GST_DEBUG: "3,GST_CAPS:5,GST_SCHEDULING:5,GST_PADS:5,video-scaler:1,transcriber:4,filebuffereds3sink:4,seekables3sink:4,rtpsession:1,videodecoder:2,basesink:2,webrtcbin:2,websocketsink:4,audiomixer:4,galleryview:4,removeonsinkeosbin:4,fallbackswitch:6,sendmessageonsinkeosbin:4,dsdks3sink:5",
|
|
260
261
|
GST_DEBUG_DUMP_DOT_DIR: gst_dump_dir,
|
|
261
262
|
RUST_BACKTRACE: "1",
|
|
262
263
|
// "DYLD_INSERT_LIBRARIES":"/opt/homebrew/lib/libjemalloc.dylib",
|
|
@@ -429,6 +430,9 @@ function pauseRecording({ windowId }) {
|
|
|
429
430
|
function resumeRecording({ windowId }) {
|
|
430
431
|
return sendCommand("resumeRecording", { windowId });
|
|
431
432
|
}
|
|
433
|
+
/**
|
|
434
|
+
* @deprecated Recordings are uploaded based on the upload token config.
|
|
435
|
+
*/
|
|
432
436
|
function uploadRecording({ windowId }) {
|
|
433
437
|
return sendCommand("uploadRecording", { windowId });
|
|
434
438
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@recallai/desktop-sdk",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.5",
|
|
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": "1b16e47f85434833b8313ed393df0f1be5a981a5"
|
|
24
24
|
}
|