@recallai/desktop-sdk 1.3.2 → 1.3.3

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,11 @@
1
+ ### 1.3.3 [patch] (MacOS+Windows) - 2025-11-10
2
+
3
+ - Fixed json parse issue that caused missing realtime events in some cases.
4
+ - Fixed cases where windows audio capture would drop out.
5
+ - Properly raise an error when `startRecording` fails to get the config.
6
+ - Support `transcript.partial_data` realtime event on windows.
7
+ - CoreAudio crash fix when capturing on macOS.
8
+
1
9
  ### 1.3.2 [patch] (MacOS+Windows) - 2025-11-01
2
10
 
3
11
  - Increased timeout on DSDK uploads to prevent failures on network constrained connections.
package/index.d.ts CHANGED
@@ -15,7 +15,7 @@ export type EventTypeToPayloadMap = {
15
15
  'realtime-event': RealtimeEvent;
16
16
  'shutdown': ShutdownEvent;
17
17
  };
18
- export type Permission = 'accessibility' | 'screen-capture' | 'microphone' | 'system-audio';
18
+ export type Permission = 'accessibility' | 'screen-capture' | 'microphone' | 'system-audio' | 'full-disk-access';
19
19
  export interface RecallAiSdkWindow {
20
20
  id: string;
21
21
  title?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@recallai/desktop-sdk",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
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": "0e8efe570dab12a1adfebea742f869341d06cc4c"
23
+ "commit_sha": "70d942170376c4e685fbfb53873d5303373a8973"
24
24
  }