@recallai/desktop-sdk 2025.3.5-a64df2e2565c6b883460b03c73a06716c9eb778c → 2025.3.10-c18606cef6870cb32f0a93f033607151e239d235

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.
Binary file
package/index.d.ts CHANGED
@@ -36,6 +36,13 @@ declare module '@recallai/desktop-sdk' {
36
36
  export function uploadRecording(config: UploadRecordingConfig): void;
37
37
  export function prepareDesktopAudioRecording(): string;
38
38
 
39
+ export interface RecallAiSdkWindow {
40
+ id: string;
41
+ title: string | undefined;
42
+ url: string | undefined;
43
+ platform: string;
44
+ }
45
+
39
46
  export interface RecallAiSdkConfig {
40
47
  api_url: string;
41
48
  }
@@ -51,24 +58,23 @@ declare module '@recallai/desktop-sdk' {
51
58
  }
52
59
 
53
60
  export interface RecordingStartEvent {
54
- window: { id: string };
61
+ window: RecallAiSdkWindow;
55
62
  }
56
63
  export interface RecordingStopEvent {
57
- window: { id: string };
64
+ window: RecallAiSdkWindow;
58
65
  }
59
66
  export interface UploadProgressEvent {
60
67
  window: { id: string };
61
68
  progress: number;
62
69
  }
63
70
  export interface MeetingDetectedEvent {
64
- window: { id: string; url: string; title: string };
71
+ window: RecallAiSdkWindow;
65
72
  }
66
73
  export interface MeetingUpdatedEvent {
67
- window: { id: string };
68
- title: string;
74
+ window: RecallAiSdkWindow;
69
75
  }
70
76
  export interface MeetingClosedEvent {
71
- window: { id: string };
77
+ window: RecallAiSdkWindow;
72
78
  }
73
79
  export interface SdkStateChangeEvent {
74
80
  sdk: {
@@ -78,7 +84,7 @@ declare module '@recallai/desktop-sdk' {
78
84
  };
79
85
  }
80
86
  export interface MediaCaptureStatusEvent {
81
- window: { id: string };
87
+ window: RecallAiSdkWindow;
82
88
  type: 'video' | 'audio';
83
89
  capturing: boolean;
84
90
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@recallai/desktop-sdk",
3
- "version": "2025.03.05-a64df2e2565c6b883460b03c73a06716c9eb778c",
3
+ "version": "2025.03.10-c18606cef6870cb32f0a93f033607151e239d235",
4
4
  "description": "Recall Desktop SDK (Alpha)",
5
5
  "gypfile": true,
6
6
  "main": "./index.js",