@recallai/desktop-sdk 2.0.28 → 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 CHANGED
@@ -1,3 +1,15 @@
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
+
1
13
  ### 2.0.28 [patch] (MacOS+Windows) - 2026-08-09
2
14
  - Fixed issue where `meeting-detected` would not fire if modal was open for Teams Desktop on Windows
3
15
  - Fixed issue where memory usage would cyclically rise and fall while idle 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.28",
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": "62bf3a1f8995af470272b2198f39f2f53c150fdc"
23
+ "commit_sha": "1c0ea15419afd259015a68e28912342656244b33"
24
24
  }