@recallai/desktop-sdk 1.2.0 → 1.3.0
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 +12 -0
- package/index.d.ts +2 -0
- package/index.js +5 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
### 1.3.0 [minor] (MacOS+Windows) - 2025-10-17
|
|
2
|
+
|
|
3
|
+
- Initial support for Google Meet on macOS Safari
|
|
4
|
+
- Fixed more issues with missing participants on Windows
|
|
5
|
+
- Fixed active speaker detection on teams for Windows
|
|
6
|
+
- Fixed missing audio on teams for Windows
|
|
7
|
+
- Added enhanced crash detection and reporting for macOS
|
|
8
|
+
- Fixed some audio issues on macOS
|
|
9
|
+
- Fixed issue getting meet urls on multiple profile installs
|
|
10
|
+
- Support more languages for Zoom and Google Meet on macOS
|
|
11
|
+
- Support google meet titles on Windows
|
|
12
|
+
|
|
1
13
|
### 1.2.0 [minor] (MacOS+Windows) - 2025-09-26
|
|
2
14
|
|
|
3
15
|
- Initial support for Google Meet on Windows
|
package/index.d.ts
CHANGED
|
@@ -113,6 +113,7 @@ export declare function resumeRecording({ windowId }: ResumeRecordingConfig): Pr
|
|
|
113
113
|
export declare function uploadRecording({ windowId }: UploadRecordingConfig): Promise<null>;
|
|
114
114
|
export declare function prepareDesktopAudioRecording(): Promise<string>;
|
|
115
115
|
export declare function requestPermission(permission: Permission): Promise<null>;
|
|
116
|
+
export declare function testUnexpectedShutdown(): Promise<null>;
|
|
116
117
|
export declare function addEventListener<T extends keyof EventTypeToPayloadMap>(type: T, callback: (event: EventTypeToPayloadMap[T]) => void): void;
|
|
117
118
|
declare const RecallAiSdk: {
|
|
118
119
|
init: typeof init;
|
|
@@ -125,5 +126,6 @@ declare const RecallAiSdk: {
|
|
|
125
126
|
prepareDesktopAudioRecording: typeof prepareDesktopAudioRecording;
|
|
126
127
|
requestPermission: typeof requestPermission;
|
|
127
128
|
addEventListener: typeof addEventListener;
|
|
129
|
+
testUnexpectedShutdown: typeof testUnexpectedShutdown;
|
|
128
130
|
};
|
|
129
131
|
export default RecallAiSdk;
|
package/index.js
CHANGED
|
@@ -43,6 +43,7 @@ exports.resumeRecording = resumeRecording;
|
|
|
43
43
|
exports.uploadRecording = uploadRecording;
|
|
44
44
|
exports.prepareDesktopAudioRecording = prepareDesktopAudioRecording;
|
|
45
45
|
exports.requestPermission = requestPermission;
|
|
46
|
+
exports.testUnexpectedShutdown = testUnexpectedShutdown;
|
|
46
47
|
exports.addEventListener = addEventListener;
|
|
47
48
|
const path = __importStar(require("path"));
|
|
48
49
|
const child_process_1 = require("child_process");
|
|
@@ -380,6 +381,9 @@ function prepareDesktopAudioRecording() {
|
|
|
380
381
|
function requestPermission(permission) {
|
|
381
382
|
return sendCommand("requestPermission", { permission });
|
|
382
383
|
}
|
|
384
|
+
function testUnexpectedShutdown() {
|
|
385
|
+
return sendCommand("unexpectedShutdown", {});
|
|
386
|
+
}
|
|
383
387
|
function addEventListener(type, callback) {
|
|
384
388
|
listeners.push({ type, callback });
|
|
385
389
|
}
|
|
@@ -394,5 +398,6 @@ const RecallAiSdk = {
|
|
|
394
398
|
prepareDesktopAudioRecording,
|
|
395
399
|
requestPermission,
|
|
396
400
|
addEventListener,
|
|
401
|
+
testUnexpectedShutdown
|
|
397
402
|
};
|
|
398
403
|
exports.default = RecallAiSdk;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@recallai/desktop-sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
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": "
|
|
23
|
+
"commit_sha": "3b3394ac612c9f13bd39bf245ddb8499a0092453"
|
|
24
24
|
}
|