@recallai/desktop-sdk 0.0.0-nightly.20260115T184506-96b1dd980f49c9c89442dfc9d9d25bf6f5a9ec2d → 0.0.0-nightly.20260115T201028-177b0162a4537f4bc7a40e58aa838c66f03a07a6
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/index.d.ts +1 -0
- package/index.js +4 -0
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -114,6 +114,7 @@ export interface LogEvent {
|
|
|
114
114
|
export declare function init(options: RecallAiSdkConfig): Promise<null>;
|
|
115
115
|
export declare function shutdown(): Promise<null>;
|
|
116
116
|
export declare function dumpAXTree(procName: string): Promise<any>;
|
|
117
|
+
export declare function dumpAllApplications(): Promise<any>;
|
|
117
118
|
export declare function startRecording(config: StartRecordingConfig): Promise<null>;
|
|
118
119
|
export declare function stopRecording({ windowId }: StopRecordingConfig): Promise<null>;
|
|
119
120
|
export declare function pauseRecording({ windowId }: PauseRecordingConfig): Promise<null>;
|
package/index.js
CHANGED
|
@@ -36,6 +36,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
36
36
|
exports.init = init;
|
|
37
37
|
exports.shutdown = shutdown;
|
|
38
38
|
exports.dumpAXTree = dumpAXTree;
|
|
39
|
+
exports.dumpAllApplications = dumpAllApplications;
|
|
39
40
|
exports.startRecording = startRecording;
|
|
40
41
|
exports.stopRecording = stopRecording;
|
|
41
42
|
exports.pauseRecording = pauseRecording;
|
|
@@ -390,6 +391,9 @@ async function shutdown() {
|
|
|
390
391
|
function dumpAXTree(procName) {
|
|
391
392
|
return sendCommand("dumpAXTree", { procName });
|
|
392
393
|
}
|
|
394
|
+
function dumpAllApplications() {
|
|
395
|
+
return sendCommand("dumpAllApplications", {});
|
|
396
|
+
}
|
|
393
397
|
function startRecording(config) {
|
|
394
398
|
return sendCommand("startRecording", { config: JSON.stringify(config) });
|
|
395
399
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@recallai/desktop-sdk",
|
|
3
|
-
"version": "0.0.0-nightly.
|
|
3
|
+
"version": "0.0.0-nightly.20260115T201028-177b0162a4537f4bc7a40e58aa838c66f03a07a6",
|
|
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": "177b0162a4537f4bc7a40e58aa838c66f03a07a6"
|
|
24
24
|
}
|