@recallai/desktop-sdk 2.0.27 → 2.0.29
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 +20 -0
- package/index.d.ts +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
### 2.0.29 [patch] (MacOS+Windows) - 2026-08-16
|
|
2
|
+
- Added support for Google Meet compliance messaging on Safari on macOS
|
|
3
|
+
- Fixed issue capturing video and active speakers when using vertical tabs for Google Meet on macOS
|
|
4
|
+
- Fixed issue capturing video and active speakers when using vertical tabs for Google Meet on macOS
|
|
5
|
+
- Improved error message when network issues cause `startRecording` to fail on macOS
|
|
6
|
+
- Fixed crash for macOS
|
|
7
|
+
- Support retention configuration on Windows
|
|
8
|
+
- Fixed DPI scaling issue for Windows
|
|
9
|
+
- Support proxy settings and socks proxies on Windows
|
|
10
|
+
- Fixed Google Meet detection issue on macOS
|
|
11
|
+
- Fixed issue where a "Reducing Noise" is captured as a participant for Google Meet on macOS
|
|
12
|
+
|
|
13
|
+
### 2.0.28 [patch] (MacOS+Windows) - 2026-08-09
|
|
14
|
+
- Fixed issue where `meeting-detected` would not fire if modal was open for Teams Desktop on Windows
|
|
15
|
+
- Fixed issue where memory usage would cyclically rise and fall while idle on macOS
|
|
16
|
+
- Fixed several issues where URL could not be retrieved for Teams Desktop on macOS
|
|
17
|
+
- Fixed issue where compliance messages would not send properly if vertical tabs enabled on Google Chrome on macOS
|
|
18
|
+
- Fixed issue where active speaker would be incorrect if participants were collapsed into a single tile for Google Meet on macOS
|
|
19
|
+
- Fixed issue where local screenshare would not be captured in certain circumstances for Teams Desktop on Windows
|
|
20
|
+
|
|
1
21
|
### 2.0.27 [patch] (MacOS+Windows) - 2026-07-30
|
|
2
22
|
- Fixed issue where `is_host` was not set to true for host participant events on macOS
|
|
3
23
|
- Fixed issue where active speakers were Host and Guest for collapsed PIP window for Teams Desktop on macOS
|
package/index.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ export type EventTypeToPayloadMap = {
|
|
|
24
24
|
'log': LogEvent;
|
|
25
25
|
'network-status': NetworkStatusEvent;
|
|
26
26
|
};
|
|
27
|
-
export type Permission = 'accessibility' | 'screen-capture' | 'microphone' | 'system-audio' | 'full-disk-access';
|
|
27
|
+
export type Permission = 'accessibility' | 'screen-capture' | 'microphone' | 'system-audio' | 'full-disk-access' | 'teams-automation';
|
|
28
28
|
export interface RecallAiSdkWindow {
|
|
29
29
|
id: string;
|
|
30
30
|
title?: string;
|
|
@@ -34,7 +34,7 @@ export interface RecallAiSdkWindow {
|
|
|
34
34
|
export interface RecallAiSdkConfig {
|
|
35
35
|
api_url?: string;
|
|
36
36
|
apiUrl?: string;
|
|
37
|
-
acquirePermissionsOnStartup?: Permission[];
|
|
37
|
+
acquirePermissionsOnStartup?: Exclude<Permission, 'teams-automation'>[];
|
|
38
38
|
[key: string]: any;
|
|
39
39
|
}
|
|
40
40
|
export interface StartRecordingConfig {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@recallai/desktop-sdk",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.29",
|
|
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": "1c0ea15419afd259015a68e28912342656244b33"
|
|
24
24
|
}
|