@recallai/desktop-sdk 2.0.20 → 2.0.22

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,13 @@
1
+ ### 2.0.22 [patch] (MacOS+Windows) - 2026-06-26
2
+ - Support for Teams Web on macOS.
3
+ - Audio capture pipeline performance improvements on macOS.
4
+ - Hide screenshare picker in Google Meet on macOS.
5
+ - Complience message status event on macOS.
6
+ - Complience message improvements on macOS.
7
+
8
+ ### 2.0.21 [patch] (MacOS+Windows) - 2026-06-24
9
+ - Fixed missing words in transcript partial data.
10
+
1
11
  ### 2.0.20 [patch] (MacOS+Windows) - 2026-06-19
2
12
  - General performance improvements for Windows
3
13
  - Fixed issue with occasionally not firing `meeting-closed` when Teams closed on macOS
package/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export type RecallAiSdkEvent = RecordingStartEvent | RecordingStopEvent | UploadProgressEvent | MeetingDetectedEvent | MeetingUpdatedEvent | MeetingClosedEvent | SdkStateChangeEvent | ErrorEvent | MediaCaptureStatusEvent | ParticipantCaptureStatusEvent | PermissionsGrantedEvent | RealtimeEvent | ShutdownEvent | LogEvent | NetworkStatusEvent;
1
+ export type RecallAiSdkEvent = RecordingStartEvent | RecordingStopEvent | UploadProgressEvent | MeetingDetectedEvent | MeetingUpdatedEvent | MeetingClosedEvent | SdkStateChangeEvent | ErrorEvent | MediaCaptureStatusEvent | ParticipantCaptureStatusEvent | ComplianceMessageStatusEvent | PermissionsGrantedEvent | RealtimeEvent | ShutdownEvent | LogEvent | NetworkStatusEvent;
2
2
  export type EventTypeToPayloadMap = {
3
3
  'recording-started': RecordingStartEvent;
4
4
  'recording-ended': RecordingStopEvent;
@@ -16,6 +16,7 @@ export type EventTypeToPayloadMap = {
16
16
  'error': ErrorEvent;
17
17
  'media-capture-status': MediaCaptureStatusEvent;
18
18
  'participant-capture-status': ParticipantCaptureStatusEvent;
19
+ 'compliance-message-status': ComplianceMessageStatusEvent;
19
20
  'permissions-granted': PermissionsGrantedEvent;
20
21
  'permission-status': PermissionStatusEvent;
21
22
  'realtime-event': RealtimeEvent;
@@ -99,6 +100,10 @@ export interface ParticipantCaptureStatusEvent {
99
100
  type: 'video' | 'audio' | 'screenshare';
100
101
  capturing: boolean;
101
102
  }
103
+ export interface ComplianceMessageStatusEvent {
104
+ window: RecallAiSdkWindow;
105
+ status: 'sent' | 'timeout' | 'cancelled';
106
+ }
102
107
  export interface PermissionsGrantedEvent {
103
108
  }
104
109
  export interface PermissionStatusEvent {
package/index.js CHANGED
@@ -449,7 +449,7 @@ function startProcess() {
449
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
- RUST_BACKTRACE: "1",
452
+ RUST_BACKTRACE: "full",
453
453
  // "DYLD_INSERT_LIBRARIES":"/opt/homebrew/lib/libjemalloc.dylib",
454
454
  // "MALLOC_CONF":"prof:true,prof_active:true,prof_prefix:jeprof",
455
455
  // "DYLD_FORCE_FLAT_NAMESPACE":"1",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@recallai/desktop-sdk",
3
- "version": "2.0.20",
3
+ "version": "2.0.22",
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": "d2c250041a6db5c128e7b19a99eabe8bc92f6883"
23
+ "commit_sha": "58d5f7c8d42a48a38cc1f69c7a355bc9ba520eda"
24
24
  }