@recallai/desktop-sdk 2025.3.12-4c77dcc8975a79e4c576662ff3d14f866a6d134f → 2025.3.12-a89ec271ee4d72726c91f005e6580a810b5dd2db

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
@@ -24,6 +24,7 @@ declare module '@recallai/desktop-sdk' {
24
24
  'error': ErrorEvent;
25
25
  'media-capture-status': MediaCaptureStatusEvent;
26
26
  'permissions-granted': PermissionsGrantedEvent;
27
+ 'realtime-event': RealtimeEvent;
27
28
  };
28
29
 
29
30
  export function addEventListener<T extends keyof EventTypeToPayloadMap>(
@@ -96,4 +97,9 @@ declare module '@recallai/desktop-sdk' {
96
97
  message: string;
97
98
  };
98
99
  }
100
+ export interface RealtimeEvent {
101
+ window: RecallAiSdkWindow;
102
+ event: string;
103
+ data: any;
104
+ }
99
105
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@recallai/desktop-sdk",
3
- "version": "2025.03.12-4c77dcc8975a79e4c576662ff3d14f866a6d134f",
3
+ "version": "2025.03.12-a89ec271ee4d72726c91f005e6580a810b5dd2db",
4
4
  "description": "Recall Desktop SDK (Alpha)",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",